diff --git a/.envrc.local.template b/.envrc.local.template index 428ee99c7d10e627b327b7b9a6c848a1aeab89bb..0d8141b3ef8a2a2af1bb98b928a02c1f73dda251 100644 --- a/.envrc.local.template +++ b/.envrc.local.template @@ -1 +1,3 @@ -JASD_DEVELOPER_API_KEY= Make yours on https://gemeinschaftswerk-nachhaltigkeit.de/app/account/developer \ No newline at end of file +export JASD_DEVELOPER_API_KEY= Make yours on https://gemeinschaftswerk-nachhaltigkeit.de/app/account/developer +export GEO_API_ENDPOINT_URL=http://localhost:8003/graphql +export IMAGE_PROXY_BASE_URL=https://dev-images.holi.social diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a3edf0297ffe829f1cc1360f3dc3d31b3b0b552e..d28a2fddae2fa0862a0e8a3032dbf4fc3c9997f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -70,7 +70,7 @@ cache_lint_test: image: 'europe-north1-docker.pkg.dev/holi-shared/docker-hub-remote/denoland/deno:2.1.10' stage: 'test' script: - - deno cache --allow-import --lock=deno.lock app/deps.ts app/dev_deps.ts + - deno cache --allow-import --lock=deno.lock app/deps.ts - deno fmt --check - deno lint - deno test --allow-import diff --git a/Dockerfile b/Dockerfile index 59e1dfc7d655d3275629f69da213167a5f6d765d..373466fb91d7f6c7ecf69f950dc14ff94991a535 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ COPY deno.lock . COPY deno.json . COPY ./app ./app -RUN deno cache --allow-import --lock=deno.lock app/deps.ts -RUN deno cache --allow-import app/main.ts +RUN deno cache --allow-import --lock=deno.lock --frozen app/deps.ts +RUN deno cache --allow-import --frozen app/main.ts CMD ["deno", "run", "--allow-import", "--allow-net", "--allow-env", "--allow-read", "--lock=deno.lock", "--cached-only", "app/main.ts"] diff --git a/README.md b/README.md index f4be0b9a0bcd23086647759af1c52ca8040b266f..15e061fee6f30431b5ebb5fe2b747938c4555a75 100644 --- a/README.md +++ b/README.md @@ -6,20 +6,20 @@ The backend for handling event aggregation, including a GraphQL API for <!-- TOC --> - [Holi App Events](#holi-app-events) - - [Getting started](#getting-started) - - [Setup](#setup) - - [Code style](#code-style) - - [Dependencies](#dependencies) - - [Compiling (optional)](#compiling-optional) - - [Testing](#testing) - - [Tasks](#tasks) - - [VS Code extension](#vs-code-extension) - - [Local execution](#local-execution) - - [Continuous Integration and Deployment](#continuous-integration-and-deployment) - - [Skipping parts of CI](#skipping-parts-of-ci) - - [noenv Branches](#noenv-branches) - - [Runtime / Deployment](#runtime--deployment) - - [Configuration](#configuration) + - [Getting started](#getting-started) + - [Setup](#setup) + - [Code style](#code-style) + - [Dependencies](#dependencies) + - [Compiling (optional)](#compiling-optional) + - [Testing](#testing) + - [Tasks](#tasks) + - [VS Code extension](#vs-code-extension) + - [Local execution](#local-execution) + - [Continuous Integration and Deployment](#continuous-integration-and-deployment) + - [Skipping parts of CI](#skipping-parts-of-ci) + - [noenv Branches](#noenv-branches) + - [Runtime / Deployment](#runtime--deployment) + - [Configuration](#configuration) <!-- /TOC --> @@ -29,7 +29,6 @@ The backend for handling event aggregation, including a GraphQL API for Install [`deno`](https://github.com/denoland/deno_install) in version 2.2 - ### Code style Linting: @@ -84,7 +83,8 @@ deno task cache ### Testing -#### Unit tests +#### Unit tests + can be executed with ```sh @@ -92,6 +92,7 @@ deno task test ``` #### Smoke test + [Install k6 first](https://grafana.com/docs/k6/latest/set-up/install-k6/) can be locally executed against a started service with @@ -170,8 +171,8 @@ if "you know what you're doing". ### Configuration -| Environment Variable | Default Value | Description | -| ------------------------ |---------------| ------------------------------------------ | -| PORT | 8006 | the port to listen on | -| CACHE_ENABLED | true | wether or not to enable caching | -| CACHE_TTL_MS_BETTERPLACE | 60 seconds | time-to-live in ms for betterplace caching | +| Environment Variable | Default Value | Description | +|------------------------|--------------------------------|------------------| +| JASD_DEVELOPER_API_KEY | | currently unused | +| GEO_API_ENDPOINT_URL | http://localhost:8003/graphql | | +| IMAGE_PROXY_BASE_URL | https://dev-images.holi.social | | diff --git a/app/deps.ts b/app/deps.ts index 94270d824ada056f1fec3e1e95e32b52746fc158..de6d05f50df0d9e86c6c36a879044b25a987234d 100644 --- a/app/deps.ts +++ b/app/deps.ts @@ -1,5 +1,2 @@ -export { serve } from 'https://deno.land/std@0.156.0/http/server.ts' -export { createSchema, createYoga } from 'npm:graphql-yoga@5.0.1' -export { useResponseCache } from 'npm:@graphql-yoga/plugin-response-cache@1.0.0' -export { GraphQLError } from 'npm:graphql@16.8.1' -export { Parser } from 'https://deno.land/x/html_parser@v0.1.3/src/mod.ts' +export { createSchema, createYoga } from 'npm:graphql-yoga@5.13.2' +export { GraphQLError } from 'npm:graphql@16.10.0' diff --git a/app/main.ts b/app/main.ts index 1e0fe64294f909cda08e18e618aca55227dc372d..2cc1e757abd958ed1aa2ed3da5c634a3348a60e3 100644 --- a/app/main.ts +++ b/app/main.ts @@ -27,6 +27,14 @@ const serverConfigFromEnv = () => { return { port: requiredEnv('PORT', Number, DEFAULT_PORT), fake: requiredEnv('FAKE', asBoolean, false), + imageProxyBaseUrl: requiredEnv( + 'IMAGE_PROXY_BASE_URL', + String, + ), + geoAPIEndpointUrl: requiredEnv( + 'GEO_API_ENDPOINT_URL', + String, + ), } } diff --git a/app/providers/geo/GeoApiClient.test.ts b/app/providers/geo/GeoApiClient.test.ts new file mode 100644 index 0000000000000000000000000000000000000000..d5f4211d3956ebb173968a1ca2d9b5878c6746dc --- /dev/null +++ b/app/providers/geo/GeoApiClient.test.ts @@ -0,0 +1,43 @@ +import { GeoApiClient } from './GeoApiClient.ts' +import { beforeEach, describe, it } from '@std/testing/bdd' +import { assertEquals, assertRejects } from '@std/assert' +import { restore, returnsNext, stub } from '@std/testing/mock' +import { aPlaceDetailsReponse } from './tests/fixtures.ts' + +const invalidResponse = {} + +export type ResponsePayload = Record<string, unknown> | Array<unknown> | Error + +export const fakeFetch = (response: ResponsePayload) => { + return stub( + globalThis, + 'fetch', + returnsNext([Promise.resolve(new Response(JSON.stringify(response)))]), + ) +} + +describe('GeoAPIClient', () => { + let client: GeoApiClient + + beforeEach(() => { + restore() + client = new GeoApiClient('http://holi.geo.gedoenz.doesntexist') + }) + + it('throws error for invalid response when fetching geometry', async () => { + using _ = fakeFetch(invalidResponse) + + await assertRejects(() => client.resolveCoordinates('somePlaceId')) + }) + + it('fetches lat lon for place id', async () => { + using _ = fakeFetch(aPlaceDetailsReponse) + + const response = await client.resolveCoordinates('somePlaceId') + + assertEquals(response, { + lat: 53.550341, + lon: 10.000654, + }) + }) +}) diff --git a/app/providers/geo/GeoApiClient.ts b/app/providers/geo/GeoApiClient.ts new file mode 100644 index 0000000000000000000000000000000000000000..ed5d5649493696ea9543ce0e035f6544ec1c31d2 --- /dev/null +++ b/app/providers/geo/GeoApiClient.ts @@ -0,0 +1,38 @@ +import { GeoAPIResponse, GeolocationCoordinates } from './GeoApiClient.types.ts' + +export interface ResolvesCoordinates { + resolveCoordinates(geolocationId: string): Promise<GeolocationCoordinates> +} + +export class GeoApiClient implements ResolvesCoordinates { + constructor(private readonly endpointUrl: string) {} + + async resolveCoordinates( + geolocationId: string, + ): Promise<GeolocationCoordinates> { + const response = await this.fetchPlaceDetails(geolocationId) + const { lat, lon } = response.data?.placeDetails?.geolocation?.properties || {} + if (lat && lon) { + return { lat, lon } + } else { + throw new Deno.errors.NotCapable( + `Resolution of lat/lon failed (no data included in response for geolocationId=${geolocationId})`, + ) + } + } + + private async fetchPlaceDetails( + geolocationId: string, + ): Promise<GeoAPIResponse> { + const graphQLQuery = `{ placeDetails(id: "${geolocationId}") { geolocation } }` + const response = await fetch(this.endpointUrl, { + 'body': JSON.stringify({ query: graphQLQuery }), + 'headers': { + 'Accept': 'application/graphql-response+json, application/json', + 'Content-Type': 'application/json', + }, + 'method': 'POST', + }) + return await response.json() as GeoAPIResponse + } +} diff --git a/app/providers/geo/GeoApiClient.types.ts b/app/providers/geo/GeoApiClient.types.ts new file mode 100644 index 0000000000000000000000000000000000000000..d8153f7d34cdc5480efd592b4b960aeab7d44c0e --- /dev/null +++ b/app/providers/geo/GeoApiClient.types.ts @@ -0,0 +1,24 @@ +export type GeolocationGeometry = { + type: string + coordinates: number[] | number[][] | number[][][] | number[][][][] +} + +export type GeolocationCoordinates = { + lat: number + lon: number +} + +export type GeolocationProperties = { + formatted: string +} & GeolocationCoordinates + +export type GeoAPIResponse = { + data?: { + placeDetails?: { + geolocation?: { + properties?: Partial<GeolocationProperties> + geometry?: Partial<GeolocationGeometry> + } + } + } +} diff --git a/app/providers/geo/tests/fixtures.ts b/app/providers/geo/tests/fixtures.ts new file mode 100644 index 0000000000000000000000000000000000000000..1aba6bab741f94863cf4aa8a01afa864056b45ec --- /dev/null +++ b/app/providers/geo/tests/fixtures.ts @@ -0,0 +1,14029 @@ +export const aPlaceDetailsReponse = { + data: { + 'placeDetails': { + 'id': '5160fd434e2ae223405928947ce59cc84a40f00101f9013ef500000000000092030748616d62757267', + 'geolocation': { + 'type': 'Feature', + 'properties': { + 'feature_type': 'details', + 'name': 'Hamburg', + 'name_other': { + 'official_name': 'Freie und Hansestadt Hamburg', + 'short_name': 'HH', + }, + 'name_international': { + 'ar': 'هامبورغ', + 'da': 'Hamborg', + 'de': 'Hamburg', + 'el': 'ΑμβοÏÏγο', + 'en': 'Hamburg', + 'eo': 'Hamburgo', + 'fa': 'هامبورگ', + 'fr': 'Hambourg', + 'hu': 'Hamburg', + 'lv': 'Hamburga', + 'pl': 'Hamburg', + 'pt': 'Hamburgo', + 'ro': 'Hamburg', + 'ru': 'Гамбург', + 'sk': 'Hamburg', + 'sr': 'Хамбург', + 'th': 'ฮัมบวร์ค', + 'uk': 'Гамбурґ', + 'ur': 'ÛÙ… برک', + 'zh': 'æ±‰å ¡', + }, + 'ref': 'HH', + 'ref_other': { + 'nuts': 'DE6;DE60;DE600', + 'locode': 'DEHAM', + }, + 'wiki_and_media': { + 'wikidata': 'Q1055', + 'wikipedia': 'de:Hamburg', + }, + 'categories': [ + 'administrative', + 'administrative.country_part_level', + ], + 'datasource': { + 'sourcename': 'openstreetmap', + 'attribution': '© OpenStreetMap contributors', + 'license': 'Open Database License', + 'url': 'https://www.openstreetmap.org/copyright', + 'raw': { + 'ref': 'HH', + 'flag': 'File:Flag of Hamburg.svg', + 'logo': 'File:Hamburg-logo.svg', + 'name': 'Hamburg', + 'osm_id': -62782, + 'name:ar': 'هامبورغ', + 'name:da': 'Hamborg', + 'name:de': 'Hamburg', + 'name:el': 'ΑμβοÏÏγο', + 'name:en': 'Hamburg', + 'name:eo': 'Hamburgo', + 'name:fa': 'هامبورگ', + 'name:fr': 'Hambourg', + 'name:hu': 'Hamburg', + 'name:lv': 'Hamburga', + 'name:pl': 'Hamburg', + 'name:pt': 'Hamburgo', + 'name:ro': 'Hamburg', + 'name:ru': 'Гамбург', + 'name:sk': 'Hamburg', + 'name:sr': 'Хамбург', + 'name:th': 'ฮัมบวร์ค', + 'name:uk': 'Гамбурґ', + 'name:ur': 'ÛÙ… برک', + 'name:zh': 'æ±‰å ¡', + 'boundary': 'administrative', + 'name:nds': 'Hamborg', + 'nickname': 'Freie und Hansestadt', + 'osm_type': 'r', + 'ref:nuts': 'DE6;DE60;DE600', + 'wikidata': 'Q1055', + 'ISO3166-2': 'DE-HH', + 'wikipedia': 'de:Hamburg', + 'ref:LOCODE': 'DEHAM', + 'ref:nuts:1': 'DE6', + 'ref:nuts:2': 'DE60', + 'ref:nuts:3': 'DE600', + 'short_name': 'HH', + 'admin_level': 4, + 'border_type': 'state', + 'name:prefix': 'Freie und Hansestadt', + 'nickname:ar': 'مدينة الØرة الهانزية', + 'nickname:de': 'Freie und Hansestadt', + 'nickname:en': 'Free and Hanseatic City', + 'nickname:pt': 'Cidade Livre e Hanseática', + 'coat_of_arms': 'File:Wappen der Hamburgischen Bürgerschaft.svg', + 'name:zh-Hans': 'æ±‰å ¡', + 'name:zh-Hant': 'æ¼¢å ¡', + 'nickname:nds': 'Friee un Hansestadt', + 'official_name': 'Freie und Hansestadt Hamburg', + 'official_status': 'Land', + 'official_name:ar': 'مدينة هامبورغ الØرة الهانزية', + 'official_name:de': 'Freie und Hansestadt Hamburg', + 'official_name:el': 'ΕλεÏθεÏη και Χανσεατική Πόλη του ΑμβοÏÏγου', + 'official_name:en': 'Free and Hanseatic City of Hamburg', + 'official_name:pt': 'Cidade Livre e Hanseática de Hamburgo', + 'official_name:nds': 'Friee un Hansestadt Hamborg', + 'official_status:ar': 'ولاية', + 'official_status:de': 'Land', + 'official_status:en': 'State', + 'official_status:ru': 'землÑ', + 'de:regionalschluessel': '020000000000', + 'TMC:cid_58:tabcd_1:Class': 'Area', + 'TMC:cid_58:tabcd_1:LCLversion': 12, + 'TMC:cid_58:tabcd_1:LocationCode': 257, + 'de:amtlicher_gemeindeschluessel': '02000000', + }, + }, + 'city': 'Hamburg', + 'country': 'Germany', + 'country_code': 'de', + 'formatted': 'Hamburg, Germany', + 'address_line1': 'Hamburg', + 'address_line2': 'Germany', + 'lat': 53.550341, + 'lon': 10.000654, + 'timezone': { + 'name': 'Europe/Berlin', + 'offset_STD': '+01:00', + 'offset_STD_seconds': 3600, + 'offset_DST': '+02:00', + 'offset_DST_seconds': 7200, + 'abbreviation_STD': 'CET', + 'abbreviation_DST': 'CEST', + }, + 'place_id': '5160fd434e2ae223405928947ce59cc84a40f00101f9013ef500000000000092030748616d62757267', + }, + 'geometry': { + 'type': 'MultiPolygon', + 'coordinates': [ + [ + [ + [ + 8.1044993, + 54.025049999, + ], + [ + 8.2109892, + 53.980715499, + ], + [ + 8.2592167, + 53.961999999, + ], + [ + 8.2908333, + 53.949999999, + ], + [ + 8.3390333, + 53.930083299, + ], + [ + 8.4290333, + 53.893416699, + ], + [ + 8.429328, + 53.893294399, + ], + [ + 8.4341314, + 53.892932499, + ], + [ + 8.4383556, + 53.892597499, + ], + [ + 8.5338059, + 53.885257199, + ], + [ + 8.5572006, + 53.861151799, + ], + [ + 8.5732427, + 53.844584299, + ], + [ + 8.5753359, + 53.844140699, + ], + [ + 8.5754843, + 53.844325199, + ], + [ + 8.5759848, + 53.844965499, + ], + [ + 8.5683376, + 53.875311199, + ], + [ + 8.5621635, + 53.897406799, + ], + [ + 8.5619009, + 53.898753499, + ], + [ + 8.5606667, + 53.905083299, + ], + [ + 8.5456774, + 53.930083299, + ], + [ + 8.5365167, + 53.936003199, + ], + [ + 8.504219, + 53.956909199, + ], + [ + 8.394369, + 54.027649999, + ], + [ + 8.1044993, + 54.025049999, + ], + ], + ], + [ + [ + [ + 9.7301155, + 53.557641999, + ], + [ + 9.7321538, + 53.557500199, + ], + [ + 9.7327037, + 53.557465199, + ], + [ + 9.7404205, + 53.556901299, + ], + [ + 9.7416503, + 53.556809299, + ], + [ + 9.749777, + 53.556195399, + ], + [ + 9.7590116, + 53.555493599, + ], + [ + 9.7616782, + 53.555287599, + ], + [ + 9.7633478, + 53.555148599, + ], + [ + 9.7650407, + 53.554619699, + ], + [ + 9.7699119, + 53.554612699, + ], + [ + 9.7724525, + 53.554447699, + ], + [ + 9.7732704, + 53.554394699, + ], + [ + 9.7743919, + 53.554325399, + ], + [ + 9.7736614, + 53.550389199, + ], + [ + 9.7735914, + 53.550057199, + ], + [ + 9.7731055, + 53.547783499, + ], + [ + 9.7725386, + 53.544640799, + ], + [ + 9.7723167, + 53.543522999, + ], + [ + 9.7718357, + 53.543244999, + ], + [ + 9.7718207, + 53.543236399, + ], + [ + 9.7714793, + 53.543051099, + ], + [ + 9.7713312, + 53.542970699, + ], + [ + 9.7709471, + 53.542714999, + ], + [ + 9.770909, + 53.542689599, + ], + [ + 9.7708865, + 53.542674599, + ], + [ + 9.7705451, + 53.542555599, + ], + [ + 9.7699185, + 53.542337299, + ], + [ + 9.7697992, + 53.542469299, + ], + [ + 9.7692323, + 53.542250499, + ], + [ + 9.768579, + 53.542245699, + ], + [ + 9.7670913, + 53.542069699, + ], + [ + 9.7670504, + 53.541464999, + ], + [ + 9.7670269, + 53.541167599, + ], + [ + 9.7670173, + 53.540934699, + ], + [ + 9.7663186, + 53.540994199, + ], + [ + 9.7655587, + 53.541097199, + ], + [ + 9.7660647, + 53.540112299, + ], + [ + 9.7665896, + 53.539094399, + ], + [ + 9.7669406, + 53.538415499, + ], + [ + 9.7680934, + 53.536175799, + ], + [ + 9.7686113, + 53.535168899, + ], + [ + 9.7693752, + 53.533689099, + ], + [ + 9.7698542, + 53.533749999, + ], + [ + 9.7704341, + 53.532716199, + ], + [ + 9.77099, + 53.531449299, + ], + [ + 9.771064, + 53.531354299, + ], + [ + 9.771253, + 53.531094399, + ], + [ + 9.771156, + 53.530987399, + ], + [ + 9.7709524, + 53.530911299, + ], + [ + 9.7707943, + 53.530772799, + ], + [ + 9.7707169, + 53.530691099, + ], + [ + 9.7707079, + 53.530679699, + ], + [ + 9.7705647, + 53.530493699, + ], + [ + 9.7706346, + 53.530395699, + ], + [ + 9.7704709, + 53.530097399, + ], + [ + 9.7704896, + 53.530015899, + ], + [ + 9.7704172, + 53.529979399, + ], + [ + 9.7701808, + 53.529660299, + ], + [ + 9.7700739, + 53.529614699, + ], + [ + 9.7698734, + 53.529529199, + ], + [ + 9.7702241, + 53.529240699, + ], + [ + 9.770635, + 53.528969799, + ], + [ + 9.7716479, + 53.528413899, + ], + [ + 9.7720436, + 53.528271899, + ], + [ + 9.7725632, + 53.528115599, + ], + [ + 9.7731775, + 53.527986899, + ], + [ + 9.773523, + 53.527955999, + ], + [ + 9.7737051, + 53.527735399, + ], + [ + 9.7741661, + 53.527540399, + ], + [ + 9.774287, + 53.527329599, + ], + [ + 9.7742184, + 53.526948199, + ], + [ + 9.7744694, + 53.526457599, + ], + [ + 9.7745322, + 53.526415499, + ], + [ + 9.7746835, + 53.526337899, + ], + [ + 9.7748991, + 53.526220299, + ], + [ + 9.774985, + 53.526158199, + ], + [ + 9.7749463, + 53.526062899, + ], + [ + 9.7746299, + 53.525705599, + ], + [ + 9.7743025, + 53.525261699, + ], + [ + 9.7744396, + 53.524922099, + ], + [ + 9.7744802, + 53.524822699, + ], + [ + 9.7745066, + 53.524779999, + ], + [ + 9.7751244, + 53.524794499, + ], + [ + 9.7776453, + 53.525027599, + ], + [ + 9.7779817, + 53.525081599, + ], + [ + 9.778301, + 53.524011199, + ], + [ + 9.7784719, + 53.523534199, + ], + [ + 9.778562, + 53.523303799, + ], + [ + 9.778702, + 53.523284399, + ], + [ + 9.7788881, + 53.522863299, + ], + [ + 9.7788864, + 53.522696999, + ], + [ + 9.7793744, + 53.521591499, + ], + [ + 9.7796193, + 53.521075099, + ], + [ + 9.7797288, + 53.520730599, + ], + [ + 9.779939, + 53.520013799, + ], + [ + 9.7801542, + 53.519735999, + ], + [ + 9.780659, + 53.519255399, + ], + [ + 9.7812903, + 53.518642299, + ], + [ + 9.7810509, + 53.518375099, + ], + [ + 9.7796802, + 53.518904599, + ], + [ + 9.7781189, + 53.519478899, + ], + [ + 9.776455, + 53.520103199, + ], + [ + 9.7758452, + 53.520330099, + ], + [ + 9.7753576, + 53.520514299, + ], + [ + 9.7749645, + 53.520643599, + ], + [ + 9.7741954, + 53.520924799, + ], + [ + 9.7734246, + 53.521155099, + ], + [ + 9.7729073, + 53.521309699, + ], + [ + 9.7710683, + 53.521851199, + ], + [ + 9.7705302, + 53.521275499, + ], + [ + 9.7698009, + 53.520373299, + ], + [ + 9.7689829, + 53.519893199, + ], + [ + 9.7685325, + 53.518649699, + ], + [ + 9.7684637, + 53.518503199, + ], + [ + 9.7677397, + 53.517437899, + ], + [ + 9.7676567, + 53.517304899, + ], + [ + 9.7664009, + 53.514813199, + ], + [ + 9.7665409, + 53.514138199, + ], + [ + 9.7636135, + 53.508324899, + ], + [ + 9.7635785, + 53.508255899, + ], + [ + 9.7640064, + 53.508042899, + ], + [ + 9.7641214, + 53.507946899, + ], + [ + 9.7642914, + 53.507763899, + ], + [ + 9.7644723, + 53.507614999, + ], + [ + 9.7649583, + 53.507381999, + ], + [ + 9.7650372, + 53.507343999, + ], + [ + 9.7656302, + 53.507217999, + ], + [ + 9.7657991, + 53.507183999, + ], + [ + 9.7671139, + 53.506631099, + ], + [ + 9.7672359, + 53.506440099, + ], + [ + 9.7675789, + 53.506207099, + ], + [ + 9.7682218, + 53.505887199, + ], + [ + 9.7688507, + 53.505303199, + ], + [ + 9.7696745, + 53.505143299, + ], + [ + 9.7698745, + 53.505036299, + ], + [ + 9.7702555, + 53.504990299, + ], + [ + 9.7711163, + 53.504758299, + ], + [ + 9.7714323, + 53.504605299, + ], + [ + 9.7720622, + 53.504300399, + ], + [ + 9.7721312, + 53.504277399, + ], + [ + 9.7739069, + 53.503693399, + ], + [ + 9.7758286, + 53.503251499, + ], + [ + 9.7762645, + 53.503094499, + ], + [ + 9.7763495, + 53.503064499, + ], + [ + 9.7768774, + 53.502777599, + ], + [ + 9.7774494, + 53.502572599, + ], + [ + 9.7777383, + 53.502301599, + ], + [ + 9.7788222, + 53.501904699, + ], + [ + 9.7789211, + 53.501877699, + ], + [ + 9.7794431, + 53.501728699, + ], + [ + 9.7811758, + 53.501599699, + ], + [ + 9.7814318, + 53.501549699, + ], + [ + 9.7814717, + 53.501488699, + ], + [ + 9.7811551, + 53.500749999, + ], + [ + 9.7812982, + 53.500604399, + ], + [ + 9.781167, + 53.500327099, + ], + [ + 9.7811674, + 53.500161099, + ], + [ + 9.7811228, + 53.499970899, + ], + [ + 9.7811301, + 53.499811299, + ], + [ + 9.7815128, + 53.499989899, + ], + [ + 9.7816047, + 53.500042899, + ], + [ + 9.7816837, + 53.499981899, + ], + [ + 9.7818328, + 53.500003499, + ], + [ + 9.7819607, + 53.500022599, + ], + [ + 9.7821217, + 53.500042899, + ], + [ + 9.7823796, + 53.500081599, + ], + [ + 9.7825714, + 53.500204199, + ], + [ + 9.7827935, + 53.500475299, + ], + [ + 9.7828674, + 53.500369899, + ], + [ + 9.7829372, + 53.500268599, + ], + [ + 9.7830846, + 53.500068699, + ], + [ + 9.7843016, + 53.500051399, + ], + [ + 9.7846333, + 53.500009399, + ], + [ + 9.7837893, + 53.497963599, + ], + [ + 9.7836378, + 53.497471599, + ], + [ + 9.7833283, + 53.496130299, + ], + [ + 9.782915, + 53.494555599, + ], + [ + 9.7831384, + 53.494588699, + ], + [ + 9.782191, + 53.492693599, + ], + [ + 9.7821055, + 53.492520699, + ], + [ + 9.7819952, + 53.492318499, + ], + [ + 9.7832341, + 53.492560499, + ], + [ + 9.7844644, + 53.492798399, + ], + [ + 9.785365, + 53.492981899, + ], + [ + 9.7860397, + 53.493069499, + ], + [ + 9.7867173, + 53.493192899, + ], + [ + 9.787938, + 53.493395599, + ], + [ + 9.7891541, + 53.493644499, + ], + [ + 9.7899337, + 53.493882099, + ], + [ + 9.7903609, + 53.493961599, + ], + [ + 9.7909754, + 53.494176999, + ], + [ + 9.7914283, + 53.494225599, + ], + [ + 9.7915773, + 53.494248599, + ], + [ + 9.7923236, + 53.494358099, + ], + [ + 9.7927101, + 53.494477599, + ], + [ + 9.792796, + 53.494527599, + ], + [ + 9.7939789, + 53.494278599, + ], + [ + 9.7947185, + 53.494135499, + ], + [ + 9.7974461, + 53.493715999, + ], + [ + 9.7979151, + 53.493686199, + ], + [ + 9.7987377, + 53.493495399, + ], + [ + 9.7999108, + 53.493504599, + ], + [ + 9.8005757, + 53.493560699, + ], + [ + 9.8013173, + 53.493685499, + ], + [ + 9.802123, + 53.493879499, + ], + [ + 9.8027763, + 53.493841799, + ], + [ + 9.8024313, + 53.491873099, + ], + [ + 9.8023608, + 53.491470999, + ], + [ + 9.8023813, + 53.490925999, + ], + [ + 9.8025129, + 53.490438299, + ], + [ + 9.8024997, + 53.489975999, + ], + [ + 9.8022942, + 53.489685499, + ], + [ + 9.801432, + 53.488910099, + ], + [ + 9.8008621, + 53.488194999, + ], + [ + 9.8007757, + 53.487090699, + ], + [ + 9.8007986, + 53.486161199, + ], + [ + 9.8000944, + 53.484377999, + ], + [ + 9.7999748, + 53.483567899, + ], + [ + 9.8000235, + 53.483293199, + ], + [ + 9.8002997, + 53.482628899, + ], + [ + 9.8002993, + 53.482625299, + ], + [ + 9.8002177, + 53.481919199, + ], + [ + 9.8001901, + 53.481715099, + ], + [ + 9.8001352, + 53.481308699, + ], + [ + 9.8003669, + 53.480591299, + ], + [ + 9.8002273, + 53.479960599, + ], + [ + 9.8000038, + 53.479652299, + ], + [ + 9.7999975, + 53.479369199, + ], + [ + 9.7999845, + 53.478615699, + ], + [ + 9.7996052, + 53.477318499, + ], + [ + 9.7994477, + 53.476817199, + ], + [ + 9.7990153, + 53.476208699, + ], + [ + 9.7988203, + 53.475941199, + ], + [ + 9.7987421, + 53.475559599, + ], + [ + 9.7985037, + 53.475127399, + ], + [ + 9.7991234, + 53.475124099, + ], + [ + 9.799346, + 53.475175099, + ], + [ + 9.7997108, + 53.475206299, + ], + [ + 9.8001866, + 53.475291899, + ], + [ + 9.8004611, + 53.475426699, + ], + [ + 9.8003174, + 53.473812999, + ], + [ + 9.8002963, + 53.473731099, + ], + [ + 9.7998335, + 53.469645999, + ], + [ + 9.7998206, + 53.469557199, + ], + [ + 9.7998152, + 53.469520399, + ], + [ + 9.7998057, + 53.469432899, + ], + [ + 9.8000885, + 53.469395299, + ], + [ + 9.8009562, + 53.469390399, + ], + [ + 9.8019289, + 53.469398899, + ], + [ + 9.8031963, + 53.469320599, + ], + [ + 9.8034074, + 53.467080999, + ], + [ + 9.8034685, + 53.466841599, + ], + [ + 9.8036933, + 53.466927899, + ], + [ + 9.8043223, + 53.466938299, + ], + [ + 9.8053197, + 53.467093699, + ], + [ + 9.8058271, + 53.467319699, + ], + [ + 9.8060885, + 53.467391799, + ], + [ + 9.8065767, + 53.466576899, + ], + [ + 9.8066365, + 53.466475599, + ], + [ + 9.8066527, + 53.466453499, + ], + [ + 9.8067026, + 53.466372299, + ], + [ + 9.8067093, + 53.466357299, + ], + [ + 9.8071962, + 53.465275899, + ], + [ + 9.8073976, + 53.464471299, + ], + [ + 9.8072156, + 53.464445999, + ], + [ + 9.8072248, + 53.464281499, + ], + [ + 9.807154, + 53.464156999, + ], + [ + 9.807313, + 53.463717499, + ], + [ + 9.807271, + 53.463523399, + ], + [ + 9.8073276, + 53.463335999, + ], + [ + 9.8072284, + 53.462943199, + ], + [ + 9.8074764, + 53.462750499, + ], + [ + 9.8131142, + 53.462483599, + ], + [ + 9.813935, + 53.462078799, + ], + [ + 9.8140075, + 53.462043099, + ], + [ + 9.8203224, + 53.458928099, + ], + [ + 9.8225356, + 53.457785599, + ], + [ + 9.8260263, + 53.456093999, + ], + [ + 9.8365464, + 53.450924299, + ], + [ + 9.8436467, + 53.445249599, + ], + [ + 9.84877, + 53.441136999, + ], + [ + 9.8522239, + 53.438373899, + ], + [ + 9.8558959, + 53.435429499, + ], + [ + 9.8565872, + 53.434966199, + ], + [ + 9.8571333, + 53.434861499, + ], + [ + 9.8574503, + 53.434633699, + ], + [ + 9.857637, + 53.434556599, + ], + [ + 9.8579832, + 53.434498499, + ], + [ + 9.8588338, + 53.434134799, + ], + [ + 9.8593692, + 53.433564199, + ], + [ + 9.8594519, + 53.433136299, + ], + [ + 9.8596134, + 53.432887699, + ], + [ + 9.8597875, + 53.432619799, + ], + [ + 9.8600078, + 53.432204199, + ], + [ + 9.8603227, + 53.432010399, + ], + [ + 9.8606044, + 53.431743199, + ], + [ + 9.8609576, + 53.431618899, + ], + [ + 9.8611068, + 53.431371699, + ], + [ + 9.861157, + 53.430807299, + ], + [ + 9.8615914, + 53.430421099, + ], + [ + 9.8616239, + 53.430025599, + ], + [ + 9.8618269, + 53.429616699, + ], + [ + 9.8622037, + 53.429853599, + ], + [ + 9.8632752, + 53.430163499, + ], + [ + 9.8640305, + 53.430181899, + ], + [ + 9.8646768, + 53.430586899, + ], + [ + 9.8643898, + 53.431146699, + ], + [ + 9.8647053, + 53.432001799, + ], + [ + 9.864096, + 53.432354699, + ], + [ + 9.8640587, + 53.433034399, + ], + [ + 9.863489, + 53.433506299, + ], + [ + 9.8625147, + 53.433825899, + ], + [ + 9.8622048, + 53.434831799, + ], + [ + 9.861719, + 53.435318499, + ], + [ + 9.8615241, + 53.435440499, + ], + [ + 9.8609392, + 53.435692499, + ], + [ + 9.8608212, + 53.435772499, + ], + [ + 9.8600366, + 53.436296799, + ], + [ + 9.8606392, + 53.437198899, + ], + [ + 9.8607003, + 53.438432499, + ], + [ + 9.8620318, + 53.439845299, + ], + [ + 9.8622201, + 53.439993299, + ], + [ + 9.8634042, + 53.440430099, + ], + [ + 9.8641533, + 53.440351099, + ], + [ + 9.8654147, + 53.439931199, + ], + [ + 9.8662137, + 53.439839199, + ], + [ + 9.8664828, + 53.439873499, + ], + [ + 9.8669182, + 53.440096299, + ], + [ + 9.8674031, + 53.440715499, + ], + [ + 9.8674811, + 53.440919699, + ], + [ + 9.8673401, + 53.441578899, + ], + [ + 9.8671691, + 53.442281499, + ], + [ + 9.8671282, + 53.443390099, + ], + [ + 9.8688964, + 53.444558699, + ], + [ + 9.8695645, + 53.444105299, + ], + [ + 9.8697627, + 53.443512599, + ], + [ + 9.8699217, + 53.443310699, + ], + [ + 9.8702056, + 53.443085699, + ], + [ + 9.8703736, + 53.442954699, + ], + [ + 9.8713402, + 53.442569699, + ], + [ + 9.8718074, + 53.442513799, + ], + [ + 9.8725676, + 53.442424599, + ], + [ + 9.8733018, + 53.442163999, + ], + [ + 9.8859633, + 53.450120699, + ], + [ + 9.8862113, + 53.449751899, + ], + [ + 9.8887215, + 53.450581299, + ], + [ + 9.8895183, + 53.451984199, + ], + [ + 9.8918156, + 53.453272899, + ], + [ + 9.8919645, + 53.453862299, + ], + [ + 9.8941933, + 53.455794799, + ], + [ + 9.8948478, + 53.455828899, + ], + [ + 9.8949615, + 53.455835699, + ], + [ + 9.8949158, + 53.455530699, + ], + [ + 9.8950125, + 53.455188499, + ], + [ + 9.8952927, + 53.454858399, + ], + [ + 9.8955689, + 53.454534599, + ], + [ + 9.8957728, + 53.454356499, + ], + [ + 9.8960697, + 53.454158699, + ], + [ + 9.8966628, + 53.453907799, + ], + [ + 9.8971071, + 53.453798699, + ], + [ + 9.8975781, + 53.453742499, + ], + [ + 9.8976237, + 53.454213199, + ], + [ + 9.8980343, + 53.454323799, + ], + [ + 9.8984076, + 53.454359499, + ], + [ + 9.8987771, + 53.454257999, + ], + [ + 9.9001996, + 53.454045499, + ], + [ + 9.8979674, + 53.455033499, + ], + [ + 9.898584, + 53.456425299, + ], + [ + 9.898409, + 53.457062199, + ], + [ + 9.898413, + 53.457463199, + ], + [ + 9.898744, + 53.457963099, + ], + [ + 9.8989889, + 53.457642199, + ], + [ + 9.8993089, + 53.457486199, + ], + [ + 9.8999098, + 53.457291199, + ], + [ + 9.8999968, + 53.457307199, + ], + [ + 9.9003717, + 53.457329199, + ], + [ + 9.9006887, + 53.457211199, + ], + [ + 9.9008547, + 53.456986299, + ], + [ + 9.9008697, + 53.456757299, + ], + [ + 9.9005987, + 53.456475299, + ], + [ + 9.9008547, + 53.456238399, + ], + [ + 9.9010855, + 53.456190399, + ], + [ + 9.9017409, + 53.456211599, + ], + [ + 9.9025287, + 53.455981299, + ], + [ + 9.9031047, + 53.456031399, + ], + [ + 9.9043015, + 53.456720699, + ], + [ + 9.9042853, + 53.456311299, + ], + [ + 9.9046855, + 53.455529699, + ], + [ + 9.9059405, + 53.454382399, + ], + [ + 9.9061922, + 53.454145399, + ], + [ + 9.9075436, + 53.453885599, + ], + [ + 9.9081938, + 53.453582899, + ], + [ + 9.908429, + 53.453051499, + ], + [ + 9.909695, + 53.452364099, + ], + [ + 9.9099427, + 53.451698999, + ], + [ + 9.9105387, + 53.450891699, + ], + [ + 9.9112029, + 53.449971499, + ], + [ + 9.9112497, + 53.449549999, + ], + [ + 9.9116309, + 53.449270499, + ], + [ + 9.9126538, + 53.448995799, + ], + [ + 9.9134299, + 53.448848299, + ], + [ + 9.9142004, + 53.448432799, + ], + [ + 9.9149573, + 53.448106699, + ], + [ + 9.9171809, + 53.446557299, + ], + [ + 9.9172142, + 53.446263299, + ], + [ + 9.91732, + 53.445870799, + ], + [ + 9.9180448, + 53.444999199, + ], + [ + 9.918178, + 53.444761299, + ], + [ + 9.918017, + 53.444524799, + ], + [ + 9.9168123, + 53.442774599, + ], + [ + 9.9168361, + 53.442679799, + ], + [ + 9.9168969, + 53.442634099, + ], + [ + 9.9168054, + 53.442459699, + ], + [ + 9.9168759, + 53.442280699, + ], + [ + 9.9170209, + 53.442371899, + ], + [ + 9.9189998, + 53.442732799, + ], + [ + 9.9197199, + 53.439469299, + ], + [ + 9.9229282, + 53.436361399, + ], + [ + 9.9215934, + 53.436215399, + ], + [ + 9.9214491, + 53.436166599, + ], + [ + 9.9203911, + 53.435228499, + ], + [ + 9.9203393, + 53.435105999, + ], + [ + 9.9205004, + 53.434716899, + ], + [ + 9.9203501, + 53.434563899, + ], + [ + 9.9197303, + 53.433957099, + ], + [ + 9.9194206, + 53.433887499, + ], + [ + 9.919267, + 53.433703799, + ], + [ + 9.9140659, + 53.430020399, + ], + [ + 9.9162479, + 53.426733099, + ], + [ + 9.9156065, + 53.426087599, + ], + [ + 9.9154248, + 53.425904699, + ], + [ + 9.9162642, + 53.424812099, + ], + [ + 9.9145004, + 53.424039299, + ], + [ + 9.9129432, + 53.423150099, + ], + [ + 9.912698, + 53.422565499, + ], + [ + 9.9127686, + 53.422467699, + ], + [ + 9.9107272, + 53.421382499, + ], + [ + 9.9087409, + 53.419495499, + ], + [ + 9.9085709, + 53.419159599, + ], + [ + 9.9075418, + 53.417643799, + ], + [ + 9.9066994, + 53.415949699, + ], + [ + 9.911437, + 53.415072199, + ], + [ + 9.9107856, + 53.414072099, + ], + [ + 9.9109366, + 53.414044399, + ], + [ + 9.9115893, + 53.415041999, + ], + [ + 9.9155698, + 53.414308799, + ], + [ + 9.916468, + 53.414143399, + ], + [ + 9.9165668, + 53.414376099, + ], + [ + 9.9178621, + 53.415187899, + ], + [ + 9.9204847, + 53.416821799, + ], + [ + 9.9246896, + 53.419431999, + ], + [ + 9.9252349, + 53.419308399, + ], + [ + 9.9272197, + 53.420535099, + ], + [ + 9.9293415, + 53.420062899, + ], + [ + 9.9294927, + 53.420065299, + ], + [ + 9.9297006, + 53.420837499, + ], + [ + 9.9297897, + 53.421129999, + ], + [ + 9.9299496, + 53.421484199, + ], + [ + 9.9321522, + 53.421400299, + ], + [ + 9.9336002, + 53.421345099, + ], + [ + 9.9373292, + 53.421202999, + ], + [ + 9.9421349, + 53.421019799, + ], + [ + 9.9469459, + 53.426899899, + ], + [ + 9.9428665, + 53.428322699, + ], + [ + 9.9438393, + 53.429453499, + ], + [ + 9.9471888, + 53.428948299, + ], + [ + 9.9488262, + 53.428710699, + ], + [ + 9.9494851, + 53.428615099, + ], + [ + 9.9502974, + 53.428298099, + ], + [ + 9.9515581, + 53.428160099, + ], + [ + 9.9556375, + 53.427719799, + ], + [ + 9.9573583, + 53.427291799, + ], + [ + 9.9576323, + 53.427220499, + ], + [ + 9.9578847, + 53.427155399, + ], + [ + 9.958105, + 53.427080199, + ], + [ + 9.9581543, + 53.427063899, + ], + [ + 9.9581778, + 53.427058499, + ], + [ + 9.9582582, + 53.427039799, + ], + [ + 9.9603364, + 53.426558099, + ], + [ + 9.9600791, + 53.424986299, + ], + [ + 9.962171, + 53.424869099, + ], + [ + 9.9620527, + 53.424140899, + ], + [ + 9.9626906, + 53.424033199, + ], + [ + 9.9627374, + 53.423965799, + ], + [ + 9.9631907, + 53.423891099, + ], + [ + 9.9633624, + 53.424195999, + ], + [ + 9.9634684, + 53.424424699, + ], + [ + 9.9636491, + 53.424459799, + ], + [ + 9.9638538, + 53.424024299, + ], + [ + 9.9638527, + 53.423776699, + ], + [ + 9.9682946, + 53.423748899, + ], + [ + 9.9692688, + 53.422027299, + ], + [ + 9.9702656, + 53.421489099, + ], + [ + 9.9704175, + 53.421573699, + ], + [ + 9.970533, + 53.421490899, + ], + [ + 9.9705894, + 53.421504999, + ], + [ + 9.9712959, + 53.421020599, + ], + [ + 9.9725838, + 53.421374099, + ], + [ + 9.9745215, + 53.420636199, + ], + [ + 9.9748414, + 53.421240999, + ], + [ + 9.9749608, + 53.421935499, + ], + [ + 9.9749876, + 53.421935799, + ], + [ + 9.9749751, + 53.421787199, + ], + [ + 9.9750356, + 53.421785999, + ], + [ + 9.9750468, + 53.421888099, + ], + [ + 9.9759265, + 53.421889999, + ], + [ + 9.9757595, + 53.421307099, + ], + [ + 9.9749687, + 53.420298899, + ], + [ + 9.9748351, + 53.419780699, + ], + [ + 9.9750129, + 53.419591499, + ], + [ + 9.9751178, + 53.419522399, + ], + [ + 9.975739, + 53.419395399, + ], + [ + 9.9757631, + 53.418462799, + ], + [ + 9.9758536, + 53.418410099, + ], + [ + 9.9758978, + 53.418442899, + ], + [ + 9.9759245, + 53.418433499, + ], + [ + 9.9758726, + 53.418246599, + ], + [ + 9.9758991, + 53.416928399, + ], + [ + 9.9759583, + 53.415964799, + ], + [ + 9.9763775, + 53.414433099, + ], + [ + 9.9764876, + 53.413773699, + ], + [ + 9.9779982, + 53.413998299, + ], + [ + 9.9787927, + 53.414069299, + ], + [ + 9.9799522, + 53.414147699, + ], + [ + 9.9802517, + 53.414180499, + ], + [ + 9.980575, + 53.414249799, + ], + [ + 9.980782, + 53.414304499, + ], + [ + 9.9811464, + 53.414487699, + ], + [ + 9.9815256, + 53.414566199, + ], + [ + 9.9822471, + 53.414616899, + ], + [ + 9.9824295, + 53.414617899, + ], + [ + 9.9824438, + 53.414617999, + ], + [ + 9.9833604, + 53.414616199, + ], + [ + 9.9826228, + 53.415514899, + ], + [ + 9.9825477, + 53.415704699, + ], + [ + 9.9835194, + 53.415925999, + ], + [ + 9.9836389, + 53.415953399, + ], + [ + 9.984192, + 53.415957799, + ], + [ + 9.9842335, + 53.415878999, + ], + [ + 9.9843044, + 53.415902699, + ], + [ + 9.984461, + 53.416239599, + ], + [ + 9.9846912, + 53.416347499, + ], + [ + 9.9848395, + 53.416473299, + ], + [ + 9.9852313, + 53.416552999, + ], + [ + 9.9855318, + 53.417469599, + ], + [ + 9.9855179, + 53.417542299, + ], + [ + 9.9863865, + 53.417397399, + ], + [ + 9.9864962, + 53.417385199, + ], + [ + 9.9870567, + 53.417420099, + ], + [ + 9.9870477, + 53.418194999, + ], + [ + 9.9870584, + 53.418416899, + ], + [ + 9.9870019, + 53.418669299, + ], + [ + 9.9872641, + 53.419466599, + ], + [ + 9.9880247, + 53.419399499, + ], + [ + 9.9881248, + 53.419438999, + ], + [ + 9.9884455, + 53.420571099, + ], + [ + 9.9917296, + 53.419904299, + ], + [ + 9.9927596, + 53.419701999, + ], + [ + 9.9951774, + 53.424436999, + ], + [ + 9.9958021, + 53.425660599, + ], + [ + 9.9959107, + 53.425873299, + ], + [ + 9.9970568, + 53.425576999, + ], + [ + 9.9974945, + 53.425461299, + ], + [ + 10.0007275, + 53.424561399, + ], + [ + 10.0043293, + 53.426935099, + ], + [ + 10.0051956, + 53.427498499, + ], + [ + 10.0059607, + 53.427998699, + ], + [ + 10.0059889, + 53.428021999, + ], + [ + 10.0063075, + 53.428232299, + ], + [ + 10.0073557, + 53.428936999, + ], + [ + 10.0081277, + 53.429057899, + ], + [ + 10.0093382, + 53.429497499, + ], + [ + 10.0095718, + 53.429548099, + ], + [ + 10.0097917, + 53.429275099, + ], + [ + 10.0102715, + 53.428679399, + ], + [ + 10.0145977, + 53.429271099, + ], + [ + 10.014813, + 53.429300599, + ], + [ + 10.0148675, + 53.429308099, + ], + [ + 10.0152321, + 53.428982199, + ], + [ + 10.016621, + 53.429430299, + ], + [ + 10.0174291, + 53.428775099, + ], + [ + 10.0188396, + 53.429310899, + ], + [ + 10.0177838, + 53.430199799, + ], + [ + 10.0188306, + 53.430214099, + ], + [ + 10.0188256, + 53.430249299, + ], + [ + 10.0196929, + 53.430266799, + ], + [ + 10.0208175, + 53.430440199, + ], + [ + 10.0211809, + 53.430549699, + ], + [ + 10.0212805, + 53.430588599, + ], + [ + 10.0214862, + 53.430954799, + ], + [ + 10.0214323, + 53.431155099, + ], + [ + 10.0216901, + 53.431420699, + ], + [ + 10.0219291, + 53.431580699, + ], + [ + 10.0229911, + 53.432247999, + ], + [ + 10.023162, + 53.432461799, + ], + [ + 10.0233629, + 53.432568599, + ], + [ + 10.0292108, + 53.435298799, + ], + [ + 10.0268413, + 53.437360699, + ], + [ + 10.0257897, + 53.438208499, + ], + [ + 10.0246802, + 53.438661599, + ], + [ + 10.023891, + 53.438972999, + ], + [ + 10.0229111, + 53.439300299, + ], + [ + 10.0210091, + 53.439888499, + ], + [ + 10.0206924, + 53.439982399, + ], + [ + 10.0203382, + 53.440075399, + ], + [ + 10.0198415, + 53.440247399, + ], + [ + 10.0191583, + 53.440504299, + ], + [ + 10.0187191, + 53.440651299, + ], + [ + 10.0178462, + 53.440828199, + ], + [ + 10.0168571, + 53.441051499, + ], + [ + 10.0163786, + 53.441154399, + ], + [ + 10.0160849, + 53.441274599, + ], + [ + 10.0156745, + 53.441609699, + ], + [ + 10.0153507, + 53.441872699, + ], + [ + 10.0151557, + 53.441956599, + ], + [ + 10.0149054, + 53.442007799, + ], + [ + 10.0146452, + 53.442018199, + ], + [ + 10.0146117, + 53.442099999, + ], + [ + 10.0222494, + 53.447557499, + ], + [ + 10.0240596, + 53.446758999, + ], + [ + 10.0241246, + 53.446697999, + ], + [ + 10.0241046, + 53.446583999, + ], + [ + 10.0239666, + 53.446327999, + ], + [ + 10.0238446, + 53.445981099, + ], + [ + 10.0238766, + 53.445863099, + ], + [ + 10.0239696, + 53.445790099, + ], + [ + 10.0248325, + 53.445561099, + ], + [ + 10.025429, + 53.445429899, + ], + [ + 10.0286119, + 53.444729499, + ], + [ + 10.0288397, + 53.444692399, + ], + [ + 10.0292904, + 53.444618999, + ], + [ + 10.0301029, + 53.444486699, + ], + [ + 10.0323191, + 53.444107399, + ], + [ + 10.0329969, + 53.444793699, + ], + [ + 10.0340131, + 53.445769799, + ], + [ + 10.0341391, + 53.445902099, + ], + [ + 10.0340201, + 53.445903199, + ], + [ + 10.0341218, + 53.446035099, + ], + [ + 10.0342198, + 53.446036299, + ], + [ + 10.0351793, + 53.446910199, + ], + [ + 10.0352421, + 53.446895899, + ], + [ + 10.0352708, + 53.446896599, + ], + [ + 10.0364356, + 53.446926999, + ], + [ + 10.0360933, + 53.446628599, + ], + [ + 10.0363737, + 53.446530099, + ], + [ + 10.0366752, + 53.446763699, + ], + [ + 10.0371647, + 53.446572699, + ], + [ + 10.0365636, + 53.446034099, + ], + [ + 10.0426387, + 53.446069399, + ], + [ + 10.0431645, + 53.446656499, + ], + [ + 10.0435185, + 53.446570599, + ], + [ + 10.0435372, + 53.446601499, + ], + [ + 10.0438378, + 53.446522999, + ], + [ + 10.0440218, + 53.446451499, + ], + [ + 10.0440468, + 53.446441799, + ], + [ + 10.0443319, + 53.446738899, + ], + [ + 10.0453939, + 53.446399799, + ], + [ + 10.0457601, + 53.446768599, + ], + [ + 10.0463061, + 53.447259299, + ], + [ + 10.0471194, + 53.447990099, + ], + [ + 10.048979, + 53.449661099, + ], + [ + 10.0491847, + 53.449845999, + ], + [ + 10.0412382, + 53.451597499, + ], + [ + 10.0441519, + 53.454859299, + ], + [ + 10.044127, + 53.454960799, + ], + [ + 10.0421276, + 53.455873199, + ], + [ + 10.0419722, + 53.456550799, + ], + [ + 10.042124, + 53.456913399, + ], + [ + 10.0429467, + 53.457923399, + ], + [ + 10.0430967, + 53.458413399, + ], + [ + 10.0435862, + 53.458975999, + ], + [ + 10.0443167, + 53.459375299, + ], + [ + 10.0449603, + 53.459419399, + ], + [ + 10.0452501, + 53.459302199, + ], + [ + 10.0458595, + 53.459752699, + ], + [ + 10.0459268, + 53.459719299, + ], + [ + 10.0461319, + 53.459928599, + ], + [ + 10.0459893, + 53.460011999, + ], + [ + 10.0459041, + 53.460468799, + ], + [ + 10.0459167, + 53.460652899, + ], + [ + 10.0462385, + 53.460836699, + ], + [ + 10.046363, + 53.460910099, + ], + [ + 10.0466177, + 53.461144799, + ], + [ + 10.0467095, + 53.461181299, + ], + [ + 10.0469354, + 53.461187699, + ], + [ + 10.0471258, + 53.461186499, + ], + [ + 10.0473858, + 53.461174499, + ], + [ + 10.0478821, + 53.461219599, + ], + [ + 10.0481222, + 53.461123499, + ], + [ + 10.0481668, + 53.461143599, + ], + [ + 10.0484576, + 53.461544399, + ], + [ + 10.0487051, + 53.461930499, + ], + [ + 10.049356, + 53.462556199, + ], + [ + 10.0495652, + 53.462763399, + ], + [ + 10.0496398, + 53.463027499, + ], + [ + 10.0496344, + 53.463079099, + ], + [ + 10.0500221, + 53.463241799, + ], + [ + 10.0516158, + 53.463910599, + ], + [ + 10.0523534, + 53.463411199, + ], + [ + 10.0532168, + 53.462906299, + ], + [ + 10.0578741, + 53.460499599, + ], + [ + 10.0647191, + 53.457022699, + ], + [ + 10.0669067, + 53.456020499, + ], + [ + 10.0682925, + 53.455505099, + ], + [ + 10.0694661, + 53.455174299, + ], + [ + 10.0716028, + 53.454738399, + ], + [ + 10.0789512, + 53.453876899, + ], + [ + 10.0809293, + 53.453071899, + ], + [ + 10.0849588, + 53.450787299, + ], + [ + 10.0899477, + 53.446758699, + ], + [ + 10.094279, + 53.443438499, + ], + [ + 10.0965975, + 53.441172399, + ], + [ + 10.0986811, + 53.438031299, + ], + [ + 10.099056, + 53.437462399, + ], + [ + 10.0998389, + 53.436345499, + ], + [ + 10.0999999, + 53.436108499, + ], + [ + 10.1009397, + 53.434719699, + ], + [ + 10.1013537, + 53.434158799, + ], + [ + 10.1016287, + 53.433788799, + ], + [ + 10.1046172, + 53.429680299, + ], + [ + 10.1051903, + 53.429071599, + ], + [ + 10.1063973, + 53.428083999, + ], + [ + 10.1074035, + 53.427406399, + ], + [ + 10.1078855, + 53.427146799, + ], + [ + 10.1084384, + 53.426860399, + ], + [ + 10.1094255, + 53.426369299, + ], + [ + 10.1104951, + 53.425944999, + ], + [ + 10.1112171, + 53.425695699, + ], + [ + 10.1119742, + 53.425457799, + ], + [ + 10.1147337, + 53.424724899, + ], + [ + 10.1161475, + 53.424408899, + ], + [ + 10.1184522, + 53.423996999, + ], + [ + 10.1220896, + 53.423668999, + ], + [ + 10.1231384, + 53.423646099, + ], + [ + 10.1251691, + 53.423653099, + ], + [ + 10.1274928, + 53.423795099, + ], + [ + 10.1296034, + 53.423749099, + ], + [ + 10.1309372, + 53.423588099, + ], + [ + 10.13245, + 53.423352099, + ], + [ + 10.1334678, + 53.423165199, + ], + [ + 10.1349836, + 53.422753199, + ], + [ + 10.1359115, + 53.422406299, + ], + [ + 10.1369983, + 53.421936299, + ], + [ + 10.139143, + 53.420655499, + ], + [ + 10.1427385, + 53.418037799, + ], + [ + 10.1444382, + 53.416759899, + ], + [ + 10.1457625, + 53.415440099, + ], + [ + 10.1462869, + 53.414834199, + ], + [ + 10.1464129, + 53.414658199, + ], + [ + 10.1483457, + 53.411965499, + ], + [ + 10.1511133, + 53.408550899, + ], + [ + 10.1512463, + 53.408405899, + ], + [ + 10.1518352, + 53.407867999, + ], + [ + 10.1519602, + 53.407753999, + ], + [ + 10.1523441, + 53.407398999, + ], + [ + 10.1538289, + 53.406151199, + ], + [ + 10.1539959, + 53.406029199, + ], + [ + 10.1552027, + 53.405148299, + ], + [ + 10.1556196, + 53.404866299, + ], + [ + 10.1561625, + 53.404496399, + ], + [ + 10.1571804, + 53.403866399, + ], + [ + 10.1593531, + 53.402523599, + ], + [ + 10.1628196, + 53.400627799, + ], + [ + 10.1642084, + 53.399963899, + ], + [ + 10.1655462, + 53.399326999, + ], + [ + 10.1669419, + 53.398820099, + ], + [ + 10.1682378, + 53.398358099, + ], + [ + 10.1700035, + 53.397805199, + ], + [ + 10.1718372, + 53.397336199, + ], + [ + 10.1735499, + 53.396981299, + ], + [ + 10.1760906, + 53.396595399, + ], + [ + 10.1773794, + 53.396477399, + ], + [ + 10.1776083, + 53.396462399, + ], + [ + 10.1793091, + 53.396420399, + ], + [ + 10.179867, + 53.396405399, + ], + [ + 10.1822276, + 53.396511399, + ], + [ + 10.1826965, + 53.396553399, + ], + [ + 10.1831435, + 53.396588399, + ], + [ + 10.1842583, + 53.396714399, + ], + [ + 10.1846742, + 53.396759399, + ], + [ + 10.1851881, + 53.396843399, + ], + [ + 10.185867, + 53.396958399, + ], + [ + 10.1898714, + 53.397618299, + ], + [ + 10.1929249, + 53.398137299, + ], + [ + 10.1938358, + 53.398293199, + ], + [ + 10.1939737, + 53.398304199, + ], + [ + 10.1956285, + 53.398465199, + ], + [ + 10.1957645, + 53.398476199, + ], + [ + 10.1966593, + 53.398507199, + ], + [ + 10.1977332, + 53.398541199, + ], + [ + 10.1982911, + 53.398526199, + ], + [ + 10.1991249, + 53.398503299, + ], + [ + 10.1999978, + 53.398480299, + ], + [ + 10.2001908, + 53.398476299, + ], + [ + 10.2007657, + 53.398415299, + ], + [ + 10.2016445, + 53.398327299, + ], + [ + 10.2031553, + 53.398171299, + ], + [ + 10.20494, + 53.397831399, + ], + [ + 10.2064538, + 53.397549399, + ], + [ + 10.2088634, + 53.397137499, + ], + [ + 10.2102872, + 53.396893499, + ], + [ + 10.211459, + 53.396698499, + ], + [ + 10.211621, + 53.396672499, + ], + [ + 10.2158534, + 53.396111599, + ], + [ + 10.2177231, + 53.395889599, + ], + [ + 10.218192, + 53.395840599, + ], + [ + 10.2205646, + 53.395580699, + ], + [ + 10.2213575, + 53.395493699, + ], + [ + 10.2237062, + 53.395332699, + ], + [ + 10.2261358, + 53.395233799, + ], + [ + 10.2268007, + 53.395206799, + ], + [ + 10.2316739, + 53.395111799, + ], + [ + 10.2321608, + 53.395172799, + ], + [ + 10.2335146, + 53.395267799, + ], + [ + 10.2352034, + 53.395534799, + ], + [ + 10.2367511, + 53.395943699, + ], + [ + 10.237398, + 53.396111699, + ], + [ + 10.2384488, + 53.396481699, + ], + [ + 10.2393877, + 53.396813599, + ], + [ + 10.2395017, + 53.396851599, + ], + [ + 10.2409474, + 53.397618599, + ], + [ + 10.2413264, + 53.397820499, + ], + [ + 10.2416109, + 53.397957399, + ], + [ + 10.2420814, + 53.398255399, + ], + [ + 10.242545, + 53.398573399, + ], + [ + 10.2430569, + 53.398985999, + ], + [ + 10.2435345, + 53.399417999, + ], + [ + 10.2440458, + 53.399928899, + ], + [ + 10.2444126, + 53.400390399, + ], + [ + 10.2449236, + 53.401105499, + ], + [ + 10.245254, + 53.401608799, + ], + [ + 10.2456445, + 53.402196899, + ], + [ + 10.2474803, + 53.405182699, + ], + [ + 10.2475793, + 53.405335699, + ], + [ + 10.2488882, + 53.407453499, + ], + [ + 10.2506257, + 53.410306199, + ], + [ + 10.2514675, + 53.411524199, + ], + [ + 10.2523526, + 53.412719899, + ], + [ + 10.253135, + 53.413627899, + ], + [ + 10.2541184, + 53.414587699, + ], + [ + 10.2553277, + 53.415620699, + ], + [ + 10.2564523, + 53.416415599, + ], + [ + 10.2575939, + 53.417153799, + ], + [ + 10.2585283, + 53.417672999, + ], + [ + 10.2593167, + 53.418048799, + ], + [ + 10.2601655, + 53.418472799, + ], + [ + 10.2611649, + 53.418875999, + ], + [ + 10.262406, + 53.419363199, + ], + [ + 10.2639765, + 53.419888199, + ], + [ + 10.2644605, + 53.420025199, + ], + [ + 10.2653063, + 53.420247699, + ], + [ + 10.2667756, + 53.420616599, + ], + [ + 10.2692119, + 53.421140499, + ], + [ + 10.2724446, + 53.421829899, + ], + [ + 10.2774767, + 53.422862499, + ], + [ + 10.2804736, + 53.423518699, + ], + [ + 10.281984, + 53.423847599, + ], + [ + 10.2832433, + 53.424162699, + ], + [ + 10.2843273, + 53.424454199, + ], + [ + 10.2855304, + 53.424830399, + ], + [ + 10.2864757, + 53.425151399, + ], + [ + 10.2880621, + 53.425700899, + ], + [ + 10.2896155, + 53.426299599, + ], + [ + 10.2918299, + 53.427156199, + ], + [ + 10.2941799, + 53.428146799, + ], + [ + 10.2962224, + 53.429107799, + ], + [ + 10.2987674, + 53.430364099, + ], + [ + 10.3004629, + 53.431262099, + ], + [ + 10.3014478, + 53.431754399, + ], + [ + 10.3022179, + 53.432079299, + ], + [ + 10.3033086, + 53.432471099, + ], + [ + 10.3046108, + 53.432868899, + ], + [ + 10.3054999, + 53.433061799, + ], + [ + 10.3063592, + 53.433177999, + ], + [ + 10.3070401, + 53.433250899, + ], + [ + 10.3079688, + 53.433280399, + ], + [ + 10.3079584, + 53.433505499, + ], + [ + 10.3078304, + 53.434728799, + ], + [ + 10.3101691, + 53.435116699, + ], + [ + 10.310671, + 53.435158699, + ], + [ + 10.3135526, + 53.435394699, + ], + [ + 10.3156693, + 53.435398699, + ], + [ + 10.3158622, + 53.435398699, + ], + [ + 10.3178412, + 53.435302699, + ], + [ + 10.3180547, + 53.436218499, + ], + [ + 10.3181239, + 53.436492999, + ], + [ + 10.3191814, + 53.437703599, + ], + [ + 10.3164948, + 53.439066799, + ], + [ + 10.3161571, + 53.439194299, + ], + [ + 10.3152953, + 53.439427199, + ], + [ + 10.3151813, + 53.439469199, + ], + [ + 10.3144784, + 53.439725199, + ], + [ + 10.3147163, + 53.440068099, + ], + [ + 10.3147653, + 53.440220099, + ], + [ + 10.314955, + 53.440467899, + ], + [ + 10.3149349, + 53.440495399, + ], + [ + 10.3152273, + 53.440747499, + ], + [ + 10.3183298, + 53.443576899, + ], + [ + 10.3206393, + 53.445642299, + ], + [ + 10.320905, + 53.445876999, + ], + [ + 10.3217727, + 53.446682899, + ], + [ + 10.3251892, + 53.449761999, + ], + [ + 10.3252805, + 53.449834199, + ], + [ + 10.3224919, + 53.450590799, + ], + [ + 10.3172542, + 53.452010699, + ], + [ + 10.3166031, + 53.452149199, + ], + [ + 10.3156095, + 53.452208699, + ], + [ + 10.3152785, + 53.452181099, + ], + [ + 10.3127052, + 53.452261599, + ], + [ + 10.3122663, + 53.452239999, + ], + [ + 10.3120656, + 53.451446899, + ], + [ + 10.3115557, + 53.449528099, + ], + [ + 10.3102157, + 53.444572299, + ], + [ + 10.3100212, + 53.443926799, + ], + [ + 10.3099146, + 53.443655899, + ], + [ + 10.3099006, + 53.443617599, + ], + [ + 10.3097864, + 53.443327099, + ], + [ + 10.3096772, + 53.443079699, + ], + [ + 10.3091314, + 53.442721099, + ], + [ + 10.308719, + 53.442579399, + ], + [ + 10.3084223, + 53.442522199, + ], + [ + 10.3082323, + 53.442558799, + ], + [ + 10.3078324, + 53.442570799, + ], + [ + 10.3075944, + 53.442589799, + ], + [ + 10.3074404, + 53.442604799, + ], + [ + 10.3072765, + 53.442600799, + ], + [ + 10.3069565, + 53.442596799, + ], + [ + 10.3063916, + 53.442593799, + ], + [ + 10.3056637, + 53.442627799, + ], + [ + 10.3048801, + 53.442660599, + ], + [ + 10.3048149, + 53.442665199, + ], + [ + 10.3047879, + 53.442665799, + ], + [ + 10.3027872, + 53.442547799, + ], + [ + 10.3023612, + 53.442528799, + ], + [ + 10.3018723, + 53.442543799, + ], + [ + 10.3012794, + 53.442520799, + ], + [ + 10.3010025, + 53.442600799, + ], + [ + 10.3007275, + 53.442730799, + ], + [ + 10.2999996, + 53.443115699, + ], + [ + 10.2992887, + 53.443493699, + ], + [ + 10.2991439, + 53.443665599, + ], + [ + 10.2988948, + 53.444123599, + ], + [ + 10.2983484, + 53.444621499, + ], + [ + 10.2981697, + 53.444806399, + ], + [ + 10.2979738, + 53.445011199, + ], + [ + 10.2977599, + 53.445309499, + ], + [ + 10.2976819, + 53.445404499, + ], + [ + 10.297371, + 53.445773599, + ], + [ + 10.2971419, + 53.446092199, + ], + [ + 10.2966, + 53.446505099, + ], + [ + 10.2964671, + 53.446637299, + ], + [ + 10.2962391, + 53.446736299, + ], + [ + 10.2956732, + 53.446984299, + ], + [ + 10.2952053, + 53.447274199, + ], + [ + 10.2948503, + 53.447541199, + ], + [ + 10.2947243, + 53.447639099, + ], + [ + 10.294349, + 53.448055299, + ], + [ + 10.2942258, + 53.448163799, + ], + [ + 10.2989259, + 53.450612199, + ], + [ + 10.299009, + 53.450616099, + ], + [ + 10.2990076, + 53.450664899, + ], + [ + 10.2986037, + 53.450996799, + ], + [ + 10.2979578, + 53.451523799, + ], + [ + 10.2978658, + 53.451592799, + ], + [ + 10.2976568, + 53.451687799, + ], + [ + 10.2974749, + 53.451717699, + ], + [ + 10.2961211, + 53.451962699, + ], + [ + 10.2956622, + 53.452076699, + ], + [ + 10.2955372, + 53.452103699, + ], + [ + 10.2953592, + 53.452160699, + ], + [ + 10.2937964, + 53.452645599, + ], + [ + 10.2917775, + 53.454377699, + ], + [ + 10.2904182, + 53.455122299, + ], + [ + 10.289963, + 53.455369299, + ], + [ + 10.28965, + 53.455533299, + ], + [ + 10.2894871, + 53.455605299, + ], + [ + 10.2893311, + 53.455678299, + ], + [ + 10.2888912, + 53.455842199, + ], + [ + 10.2884122, + 53.456090199, + ], + [ + 10.2879883, + 53.456296199, + ], + [ + 10.2874344, + 53.456563199, + ], + [ + 10.2873284, + 53.456627099, + ], + [ + 10.2868135, + 53.456944099, + ], + [ + 10.2863975, + 53.457280099, + ], + [ + 10.2861936, + 53.457443999, + ], + [ + 10.2845768, + 53.458103999, + ], + [ + 10.2841959, + 53.458370899, + ], + [ + 10.2839116, + 53.458514799, + ], + [ + 10.282338, + 53.457547599, + ], + [ + 10.2818921, + 53.458030699, + ], + [ + 10.2817477, + 53.458187099, + ], + [ + 10.2812691, + 53.458591099, + ], + [ + 10.2809424, + 53.458866899, + ], + [ + 10.2805708, + 53.459059699, + ], + [ + 10.2800857, + 53.459258899, + ], + [ + 10.2778538, + 53.460175699, + ], + [ + 10.2775819, + 53.460315499, + ], + [ + 10.2772612, + 53.460527099, + ], + [ + 10.276392, + 53.460915399, + ], + [ + 10.2758751, + 53.461186099, + ], + [ + 10.2753824, + 53.461408899, + ], + [ + 10.2752348, + 53.461488599, + ], + [ + 10.2749323, + 53.461623899, + ], + [ + 10.2747537, + 53.461726799, + ], + [ + 10.2746509, + 53.461864699, + ], + [ + 10.2745953, + 53.461975499, + ], + [ + 10.2741754, + 53.462246399, + ], + [ + 10.2737714, + 53.462548399, + ], + [ + 10.2735964, + 53.462674399, + ], + [ + 10.2734645, + 53.462719399, + ], + [ + 10.2731765, + 53.462819399, + ], + [ + 10.272889, + 53.462833399, + ], + [ + 10.272335, + 53.463076499, + ], + [ + 10.2707969, + 53.463555499, + ], + [ + 10.2703885, + 53.463711399, + ], + [ + 10.2693451, + 53.464070199, + ], + [ + 10.2718907, + 53.466637899, + ], + [ + 10.2683945, + 53.468164999, + ], + [ + 10.2649168, + 53.469004199, + ], + [ + 10.265731, + 53.470928999, + ], + [ + 10.266003, + 53.471449599, + ], + [ + 10.2660555, + 53.472267399, + ], + [ + 10.2662395, + 53.473121199, + ], + [ + 10.2652124, + 53.473323799, + ], + [ + 10.264414, + 53.475096499, + ], + [ + 10.2639965, + 53.474998199, + ], + [ + 10.2638476, + 53.475005999, + ], + [ + 10.26001, + 53.474387399, + ], + [ + 10.2586624, + 53.476244599, + ], + [ + 10.2598596, + 53.476899399, + ], + [ + 10.2599235, + 53.476972899, + ], + [ + 10.25702, + 53.477805999, + ], + [ + 10.2564305, + 53.478180399, + ], + [ + 10.2556165, + 53.478241199, + ], + [ + 10.2549016, + 53.478033699, + ], + [ + 10.2548575, + 53.477641799, + ], + [ + 10.254474, + 53.477518799, + ], + [ + 10.2530425, + 53.477565899, + ], + [ + 10.2528857, + 53.477537299, + ], + [ + 10.252306, + 53.477248499, + ], + [ + 10.250441, + 53.478708699, + ], + [ + 10.2500849, + 53.478978399, + ], + [ + 10.2486969, + 53.480080399, + ], + [ + 10.2385422, + 53.482545299, + ], + [ + 10.2379927, + 53.484882699, + ], + [ + 10.2378364, + 53.486390399, + ], + [ + 10.2378186, + 53.486518999, + ], + [ + 10.2374668, + 53.488566799, + ], + [ + 10.2374254, + 53.488715699, + ], + [ + 10.2373621, + 53.488931999, + ], + [ + 10.2369329, + 53.488917399, + ], + [ + 10.2367865, + 53.488918499, + ], + [ + 10.2362829, + 53.488953299, + ], + [ + 10.2357, + 53.489033199, + ], + [ + 10.2352451, + 53.489094199, + ], + [ + 10.2351675, + 53.489127499, + ], + [ + 10.235062, + 53.489310899, + ], + [ + 10.2345434, + 53.490262699, + ], + [ + 10.2345401, + 53.490295599, + ], + [ + 10.2350364, + 53.491861699, + ], + [ + 10.2356095, + 53.493400999, + ], + [ + 10.2365583, + 53.495848799, + ], + [ + 10.2366828, + 53.496056099, + ], + [ + 10.2368508, + 53.496335999, + ], + [ + 10.2364962, + 53.496355499, + ], + [ + 10.2353171, + 53.496654699, + ], + [ + 10.2335077, + 53.497037699, + ], + [ + 10.2332332, + 53.497194899, + ], + [ + 10.232922, + 53.497226299, + ], + [ + 10.2327271, + 53.497158499, + ], + [ + 10.229699, + 53.496434499, + ], + [ + 10.2295761, + 53.496308599, + ], + [ + 10.2294007, + 53.496138399, + ], + [ + 10.2292339, + 53.495870299, + ], + [ + 10.2290956, + 53.495698399, + ], + [ + 10.2288355, + 53.495664299, + ], + [ + 10.2281362, + 53.495728699, + ], + [ + 10.227466, + 53.495909599, + ], + [ + 10.2269138, + 53.496038999, + ], + [ + 10.2261105, + 53.496002599, + ], + [ + 10.2258564, + 53.495982099, + ], + [ + 10.2253844, + 53.495925999, + ], + [ + 10.2249656, + 53.495905199, + ], + [ + 10.2247655, + 53.496151799, + ], + [ + 10.2246715, + 53.496292699, + ], + [ + 10.2244635, + 53.496368099, + ], + [ + 10.2243181, + 53.496411799, + ], + [ + 10.2238791, + 53.496420099, + ], + [ + 10.2235241, + 53.496397299, + ], + [ + 10.2229223, + 53.496332999, + ], + [ + 10.2224287, + 53.496328099, + ], + [ + 10.2220738, + 53.496342899, + ], + [ + 10.2219409, + 53.496392499, + ], + [ + 10.2218944, + 53.496497699, + ], + [ + 10.2219573, + 53.496544199, + ], + [ + 10.2222764, + 53.496603199, + ], + [ + 10.2227129, + 53.496608999, + ], + [ + 10.2228695, + 53.496642599, + ], + [ + 10.223033, + 53.496726799, + ], + [ + 10.2231237, + 53.496879399, + ], + [ + 10.2231553, + 53.497022399, + ], + [ + 10.2231312, + 53.497147199, + ], + [ + 10.2228523, + 53.497312199, + ], + [ + 10.2226135, + 53.497414199, + ], + [ + 10.2223218, + 53.497547599, + ], + [ + 10.2220551, + 53.497624999, + ], + [ + 10.2219339, + 53.497713599, + ], + [ + 10.2219391, + 53.497793399, + ], + [ + 10.2221038, + 53.497898099, + ], + [ + 10.2222944, + 53.497997999, + ], + [ + 10.222382, + 53.498082299, + ], + [ + 10.2223437, + 53.498206499, + ], + [ + 10.2222569, + 53.498257299, + ], + [ + 10.222135, + 53.498287499, + ], + [ + 10.2218721, + 53.498278599, + ], + [ + 10.2216406, + 53.498282899, + ], + [ + 10.2209463, + 53.498218799, + ], + [ + 10.2208242, + 53.498217299, + ], + [ + 10.2207149, + 53.498284399, + ], + [ + 10.2206604, + 53.498459699, + ], + [ + 10.2206832, + 53.498557899, + ], + [ + 10.2208315, + 53.498796699, + ], + [ + 10.2209672, + 53.498978499, + ], + [ + 10.2209858, + 53.499087099, + ], + [ + 10.2208491, + 53.499181299, + ], + [ + 10.2206218, + 53.499258799, + ], + [ + 10.2203095, + 53.499314799, + ], + [ + 10.219902, + 53.499340999, + ], + [ + 10.2188892, + 53.499287099, + ], + [ + 10.2185496, + 53.499266899, + ], + [ + 10.218276, + 53.499234499, + ], + [ + 10.2182727, + 53.499317599, + ], + [ + 10.2183167, + 53.499607899, + ], + [ + 10.2184833, + 53.499979499, + ], + [ + 10.2185365, + 53.500335399, + ], + [ + 10.2185594, + 53.500652499, + ], + [ + 10.2186753, + 53.501153899, + ], + [ + 10.2187502, + 53.501417499, + ], + [ + 10.2188126, + 53.501656899, + ], + [ + 10.2184906, + 53.501761399, + ], + [ + 10.2185496, + 53.501894699, + ], + [ + 10.2188437, + 53.502049699, + ], + [ + 10.2192688, + 53.502124599, + ], + [ + 10.2196348, + 53.502139299, + ], + [ + 10.2197126, + 53.502199199, + ], + [ + 10.2198321, + 53.502256099, + ], + [ + 10.2200362, + 53.502271599, + ], + [ + 10.2203128, + 53.502342299, + ], + [ + 10.2206665, + 53.502437499, + ], + [ + 10.2207972, + 53.502477499, + ], + [ + 10.2209353, + 53.502570999, + ], + [ + 10.221111, + 53.502699099, + ], + [ + 10.2214728, + 53.502732999, + ], + [ + 10.22186, + 53.503024599, + ], + [ + 10.2221244, + 53.503069599, + ], + [ + 10.2224186, + 53.503290499, + ], + [ + 10.2222852, + 53.503380999, + ], + [ + 10.2225676, + 53.504391999, + ], + [ + 10.2227386, + 53.504512499, + ], + [ + 10.2229866, + 53.504716099, + ], + [ + 10.2232777, + 53.504822399, + ], + [ + 10.2236003, + 53.504941099, + ], + [ + 10.2238231, + 53.505134599, + ], + [ + 10.2238941, + 53.505298499, + ], + [ + 10.2238906, + 53.505623299, + ], + [ + 10.2237276, + 53.505952499, + ], + [ + 10.2236025, + 53.506158799, + ], + [ + 10.2234264, + 53.506167799, + ], + [ + 10.2231633, + 53.506201699, + ], + [ + 10.2230119, + 53.506214199, + ], + [ + 10.2228557, + 53.506272999, + ], + [ + 10.2226021, + 53.506330799, + ], + [ + 10.2223972, + 53.506359899, + ], + [ + 10.221097, + 53.506511799, + ], + [ + 10.2203533, + 53.507472299, + ], + [ + 10.2184569, + 53.507729799, + ], + [ + 10.218551, + 53.508092399, + ], + [ + 10.2190468, + 53.510002499, + ], + [ + 10.2190814, + 53.510135899, + ], + [ + 10.219206, + 53.510598899, + ], + [ + 10.2186567, + 53.510945999, + ], + [ + 10.2185438, + 53.511017199, + ], + [ + 10.2178314, + 53.511476999, + ], + [ + 10.2174084, + 53.511729499, + ], + [ + 10.216746, + 53.512083199, + ], + [ + 10.2160352, + 53.512331999, + ], + [ + 10.2153814, + 53.512543399, + ], + [ + 10.2141753, + 53.512919099, + ], + [ + 10.2141257, + 53.513047099, + ], + [ + 10.2140166, + 53.513370299, + ], + [ + 10.2139929, + 53.513440499, + ], + [ + 10.2139881, + 53.513452699, + ], + [ + 10.2155487, + 53.513729799, + ], + [ + 10.2155312, + 53.513814999, + ], + [ + 10.2154943, + 53.513827399, + ], + [ + 10.2135749, + 53.513966099, + ], + [ + 10.213472, + 53.513989999, + ], + [ + 10.2132421, + 53.514245999, + ], + [ + 10.2131518, + 53.514474499, + ], + [ + 10.2134225, + 53.515157799, + ], + [ + 10.2134533, + 53.515233099, + ], + [ + 10.2126394, + 53.516614399, + ], + [ + 10.2118609, + 53.517556999, + ], + [ + 10.2111402, + 53.518988099, + ], + [ + 10.2104116, + 53.519928099, + ], + [ + 10.2102008, + 53.519852599, + ], + [ + 10.2101126, + 53.519718999, + ], + [ + 10.2093516, + 53.519295999, + ], + [ + 10.2059063, + 53.517369199, + ], + [ + 10.2020406, + 53.515165899, + ], + [ + 10.2002504, + 53.514147399, + ], + [ + 10.1977806, + 53.513966699, + ], + [ + 10.1923504, + 53.513554599, + ], + [ + 10.1918065, + 53.513516599, + ], + [ + 10.1899718, + 53.513348299, + ], + [ + 10.1898448, + 53.512990799, + ], + [ + 10.1895233, + 53.511568799, + ], + [ + 10.1878449, + 53.511506199, + ], + [ + 10.1880728, + 53.512198599, + ], + [ + 10.186172, + 53.512932399, + ], + [ + 10.1860193, + 53.512986799, + ], + [ + 10.1829289, + 53.514172199, + ], + [ + 10.1828299, + 53.514210099, + ], + [ + 10.1825966, + 53.514303699, + ], + [ + 10.1780297, + 53.516460999, + ], + [ + 10.1769141, + 53.516992099, + ], + [ + 10.1735663, + 53.518040699, + ], + [ + 10.1730474, + 53.518196699, + ], + [ + 10.1724855, + 53.518399599, + ], + [ + 10.1697247, + 53.519371499, + ], + [ + 10.1681991, + 53.519912099, + ], + [ + 10.1677907, + 53.520186699, + ], + [ + 10.1671061, + 53.520266299, + ], + [ + 10.1670435, + 53.520167899, + ], + [ + 10.1658973, + 53.520440799, + ], + [ + 10.1646231, + 53.521217399, + ], + [ + 10.1641844, + 53.521462899, + ], + [ + 10.1623971, + 53.522455799, + ], + [ + 10.162391, + 53.522633199, + ], + [ + 10.1623789, + 53.522988799, + ], + [ + 10.1623307, + 53.522986399, + ], + [ + 10.1623193, + 53.523034999, + ], + [ + 10.1617774, + 53.525341199, + ], + [ + 10.1617123, + 53.526100299, + ], + [ + 10.1619115, + 53.526840099, + ], + [ + 10.1625161, + 53.527876599, + ], + [ + 10.162901, + 53.528441199, + ], + [ + 10.1639939, + 53.529189099, + ], + [ + 10.1638311, + 53.529725499, + ], + [ + 10.1635015, + 53.530134599, + ], + [ + 10.163042, + 53.530787099, + ], + [ + 10.1635532, + 53.531380099, + ], + [ + 10.1636496, + 53.531507299, + ], + [ + 10.1637786, + 53.531826099, + ], + [ + 10.1639352, + 53.531932499, + ], + [ + 10.1643724, + 53.532048999, + ], + [ + 10.1645934, + 53.532196999, + ], + [ + 10.1646646, + 53.532276699, + ], + [ + 10.1651216, + 53.532792999, + ], + [ + 10.1653119, + 53.533075199, + ], + [ + 10.1653193, + 53.533563299, + ], + [ + 10.1651649, + 53.533775499, + ], + [ + 10.1653485, + 53.534183499, + ], + [ + 10.1656083, + 53.534625299, + ], + [ + 10.1659085, + 53.534736199, + ], + [ + 10.1684867, + 53.534733299, + ], + [ + 10.1685834, + 53.534693099, + ], + [ + 10.1686633, + 53.535820199, + ], + [ + 10.168776, + 53.537385399, + ], + [ + 10.1686028, + 53.537415499, + ], + [ + 10.1685054, + 53.537451899, + ], + [ + 10.1683131, + 53.537501899, + ], + [ + 10.1680729, + 53.537621399, + ], + [ + 10.1680129, + 53.537309699, + ], + [ + 10.1679965, + 53.537295799, + ], + [ + 10.1644404, + 53.537575399, + ], + [ + 10.1644015, + 53.537465399, + ], + [ + 10.162616, + 53.537608299, + ], + [ + 10.1626409, + 53.537705399, + ], + [ + 10.1615455, + 53.537786899, + ], + [ + 10.1613575, + 53.537745599, + ], + [ + 10.1612106, + 53.537769699, + ], + [ + 10.1610716, + 53.537854899, + ], + [ + 10.1605252, + 53.538014099, + ], + [ + 10.1603747, + 53.538166299, + ], + [ + 10.1602554, + 53.538220099, + ], + [ + 10.1601802, + 53.538206999, + ], + [ + 10.1601178, + 53.538156699, + ], + [ + 10.1601526, + 53.538061299, + ], + [ + 10.1603068, + 53.537804999, + ], + [ + 10.1603021, + 53.537736899, + ], + [ + 10.1602051, + 53.537683699, + ], + [ + 10.1600582, + 53.537670599, + ], + [ + 10.1597716, + 53.537729099, + ], + [ + 10.1595005, + 53.537708499, + ], + [ + 10.1591099, + 53.537483399, + ], + [ + 10.1588968, + 53.537228699, + ], + [ + 10.1587186, + 53.537226499, + ], + [ + 10.1582489, + 53.537395399, + ], + [ + 10.1580201, + 53.537396299, + ], + [ + 10.1579525, + 53.537396399, + ], + [ + 10.1575999, + 53.537333299, + ], + [ + 10.1574829, + 53.537391499, + ], + [ + 10.1573555, + 53.537370299, + ], + [ + 10.1572621, + 53.537137499, + ], + [ + 10.1572348, + 53.536858599, + ], + [ + 10.1572902, + 53.536740299, + ], + [ + 10.1571915, + 53.536709699, + ], + [ + 10.1568247, + 53.536732099, + ], + [ + 10.1567158, + 53.536713099, + ], + [ + 10.1565266, + 53.536728299, + ], + [ + 10.1560038, + 53.536717099, + ], + [ + 10.1557352, + 53.536613799, + ], + [ + 10.1550545, + 53.536488999, + ], + [ + 10.1534821, + 53.536005199, + ], + [ + 10.1529698, + 53.535841799, + ], + [ + 10.1522724, + 53.535544499, + ], + [ + 10.1518741, + 53.535477499, + ], + [ + 10.151885, + 53.535621599, + ], + [ + 10.1522671, + 53.535691899, + ], + [ + 10.1546877, + 53.536417599, + ], + [ + 10.1543903, + 53.537240399, + ], + [ + 10.154102, + 53.538174399, + ], + [ + 10.1535007, + 53.540015199, + ], + [ + 10.1523387, + 53.539974199, + ], + [ + 10.1522995, + 53.540134199, + ], + [ + 10.1521334, + 53.540574199, + ], + [ + 10.1519938, + 53.541082399, + ], + [ + 10.1518713, + 53.541698899, + ], + [ + 10.1517778, + 53.542101399, + ], + [ + 10.151827, + 53.542113199, + ], + [ + 10.1519888, + 53.542175899, + ], + [ + 10.1523639, + 53.542724299, + ], + [ + 10.152486, + 53.543177199, + ], + [ + 10.1521894, + 53.543745799, + ], + [ + 10.1521208, + 53.543746899, + ], + [ + 10.1521179, + 53.543814799, + ], + [ + 10.151538, + 53.544813999, + ], + [ + 10.1484384, + 53.545977099, + ], + [ + 10.1501924, + 53.548725999, + ], + [ + 10.1556299, + 53.552359299, + ], + [ + 10.1562251, + 53.552323499, + ], + [ + 10.1564931, + 53.552500999, + ], + [ + 10.1567655, + 53.552907599, + ], + [ + 10.1566808, + 53.553315099, + ], + [ + 10.1568002, + 53.553514599, + ], + [ + 10.1569384, + 53.553639599, + ], + [ + 10.157352, + 53.554009999, + ], + [ + 10.1579363, + 53.554168099, + ], + [ + 10.1582543, + 53.554373499, + ], + [ + 10.1588336, + 53.554571199, + ], + [ + 10.1593159, + 53.554868299, + ], + [ + 10.1594609, + 53.555218799, + ], + [ + 10.159551, + 53.555386399, + ], + [ + 10.159605, + 53.555466399, + ], + [ + 10.1597795, + 53.555677399, + ], + [ + 10.1597115, + 53.556068499, + ], + [ + 10.1598852, + 53.556369099, + ], + [ + 10.1599536, + 53.556824199, + ], + [ + 10.1600866, + 53.557126199, + ], + [ + 10.1602748, + 53.557417599, + ], + [ + 10.1602708, + 53.557637099, + ], + [ + 10.1602127, + 53.558472099, + ], + [ + 10.160126, + 53.558522699, + ], + [ + 10.1600538, + 53.558651999, + ], + [ + 10.1599029, + 53.558872999, + ], + [ + 10.1598272, + 53.559079099, + ], + [ + 10.1595809, + 53.559334999, + ], + [ + 10.15924, + 53.559889399, + ], + [ + 10.1587289, + 53.560270899, + ], + [ + 10.1604869, + 53.560966299, + ], + [ + 10.1590524, + 53.561120999, + ], + [ + 10.1581663, + 53.561286999, + ], + [ + 10.157884, + 53.561355099, + ], + [ + 10.1565876, + 53.561687799, + ], + [ + 10.1551614, + 53.562117099, + ], + [ + 10.1549503, + 53.562094599, + ], + [ + 10.1540453, + 53.562375899, + ], + [ + 10.1540098, + 53.562453399, + ], + [ + 10.1527484, + 53.562813599, + ], + [ + 10.1526498, + 53.562756799, + ], + [ + 10.1522466, + 53.562854099, + ], + [ + 10.1523135, + 53.562924999, + ], + [ + 10.1480258, + 53.564009699, + ], + [ + 10.1477511, + 53.564249299, + ], + [ + 10.1477125, + 53.564385899, + ], + [ + 10.1476364, + 53.564702399, + ], + [ + 10.1475961, + 53.564955399, + ], + [ + 10.14752, + 53.566419299, + ], + [ + 10.1481092, + 53.566915199, + ], + [ + 10.1485729, + 53.567055099, + ], + [ + 10.148656, + 53.567310199, + ], + [ + 10.1480847, + 53.567545799, + ], + [ + 10.1486568, + 53.567989799, + ], + [ + 10.1497382, + 53.568474399, + ], + [ + 10.1500037, + 53.568595799, + ], + [ + 10.1505092, + 53.569154199, + ], + [ + 10.1506692, + 53.569730899, + ], + [ + 10.150504, + 53.569947099, + ], + [ + 10.1503693, + 53.570315499, + ], + [ + 10.1506333, + 53.570527899, + ], + [ + 10.1508749, + 53.570858499, + ], + [ + 10.1510417, + 53.571044099, + ], + [ + 10.151144, + 53.571384499, + ], + [ + 10.1512369, + 53.571617399, + ], + [ + 10.1515169, + 53.571922399, + ], + [ + 10.1517739, + 53.572200399, + ], + [ + 10.1518339, + 53.572258499, + ], + [ + 10.1518909, + 53.572495399, + ], + [ + 10.1519159, + 53.572564399, + ], + [ + 10.1519689, + 53.572709399, + ], + [ + 10.1519719, + 53.572808399, + ], + [ + 10.1519829, + 53.573166399, + ], + [ + 10.1519859, + 53.573270299, + ], + [ + 10.1520039, + 53.573449299, + ], + [ + 10.1519029, + 53.573609299, + ], + [ + 10.1518899, + 53.573727299, + ], + [ + 10.1518469, + 53.574101299, + ], + [ + 10.1518389, + 53.574189199, + ], + [ + 10.1517479, + 53.574330199, + ], + [ + 10.1516959, + 53.574414199, + ], + [ + 10.1516419, + 53.574635199, + ], + [ + 10.1516149, + 53.574750199, + ], + [ + 10.1515949, + 53.575112099, + ], + [ + 10.1515909, + 53.575189099, + ], + [ + 10.1515769, + 53.575314099, + ], + [ + 10.1515689, + 53.575402099, + ], + [ + 10.1516469, + 53.575559099, + ], + [ + 10.1516449, + 53.575711099, + ], + [ + 10.1516769, + 53.575822099, + ], + [ + 10.1517159, + 53.575996999, + ], + [ + 10.1517984, + 53.576240599, + ], + [ + 10.1519218, + 53.576335199, + ], + [ + 10.1518498, + 53.576476399, + ], + [ + 10.1520453, + 53.577005799, + ], + [ + 10.1523677, + 53.577488999, + ], + [ + 10.1524516, + 53.577612599, + ], + [ + 10.1524048, + 53.577612599, + ], + [ + 10.1524664, + 53.577910699, + ], + [ + 10.1526682, + 53.577936099, + ], + [ + 10.1528604, + 53.578009399, + ], + [ + 10.1529054, + 53.577940499, + ], + [ + 10.1531128, + 53.577859599, + ], + [ + 10.15317, + 53.577869999, + ], + [ + 10.1532101, + 53.577930699, + ], + [ + 10.1531481, + 53.577996399, + ], + [ + 10.1532819, + 53.578098999, + ], + [ + 10.15344, + 53.578128999, + ], + [ + 10.153634, + 53.578122799, + ], + [ + 10.153693, + 53.578164699, + ], + [ + 10.1537998, + 53.578358499, + ], + [ + 10.1537384, + 53.578410799, + ], + [ + 10.1538585, + 53.578511099, + ], + [ + 10.153994, + 53.578556599, + ], + [ + 10.1540461, + 53.578597899, + ], + [ + 10.1541067, + 53.578842299, + ], + [ + 10.1541894, + 53.578847199, + ], + [ + 10.1542617, + 53.578833499, + ], + [ + 10.1543901, + 53.578809699, + ], + [ + 10.1545075, + 53.578816899, + ], + [ + 10.1546139, + 53.578919099, + ], + [ + 10.1547216, + 53.579023799, + ], + [ + 10.1549363, + 53.579140099, + ], + [ + 10.1553259, + 53.579241099, + ], + [ + 10.1563091, + 53.579738099, + ], + [ + 10.1576497, + 53.580404699, + ], + [ + 10.158062, + 53.580611299, + ], + [ + 10.1584124, + 53.580805199, + ], + [ + 10.1589367, + 53.581117899, + ], + [ + 10.1593071, + 53.581718699, + ], + [ + 10.1598518, + 53.582705999, + ], + [ + 10.160197, + 53.583237199, + ], + [ + 10.1603503, + 53.583462899, + ], + [ + 10.1604056, + 53.583595399, + ], + [ + 10.1605871, + 53.583970399, + ], + [ + 10.1605872, + 53.584049299, + ], + [ + 10.1607249, + 53.584264099, + ], + [ + 10.160868, + 53.584561099, + ], + [ + 10.1610558, + 53.584657899, + ], + [ + 10.1614144, + 53.585003499, + ], + [ + 10.1615084, + 53.585134999, + ], + [ + 10.1616349, + 53.585310299, + ], + [ + 10.1617857, + 53.585552299, + ], + [ + 10.161866, + 53.585786699, + ], + [ + 10.1637349, + 53.585815699, + ], + [ + 10.1638142, + 53.585731099, + ], + [ + 10.1638702, + 53.585435799, + ], + [ + 10.1643448, + 53.585069599, + ], + [ + 10.163176, + 53.584004199, + ], + [ + 10.1653224, + 53.582320599, + ], + [ + 10.1661216, + 53.582380899, + ], + [ + 10.1665764, + 53.582412599, + ], + [ + 10.1670582, + 53.582449999, + ], + [ + 10.1679196, + 53.582515299, + ], + [ + 10.1700452, + 53.582675599, + ], + [ + 10.1716781, + 53.582795199, + ], + [ + 10.1774215, + 53.583245699, + ], + [ + 10.1781575, + 53.583304799, + ], + [ + 10.1873404, + 53.584041999, + ], + [ + 10.1870372, + 53.585494999, + ], + [ + 10.1871599, + 53.585517999, + ], + [ + 10.1875092, + 53.583982699, + ], + [ + 10.195833, + 53.584648199, + ], + [ + 10.1983763, + 53.582141299, + ], + [ + 10.2012914, + 53.583995099, + ], + [ + 10.1992919, + 53.586034999, + ], + [ + 10.1986258, + 53.586714499, + ], + [ + 10.1984612, + 53.586881899, + ], + [ + 10.19569, + 53.589725699, + ], + [ + 10.1951533, + 53.590227999, + ], + [ + 10.1950468, + 53.590282699, + ], + [ + 10.1946183, + 53.590772999, + ], + [ + 10.1943258, + 53.591201599, + ], + [ + 10.1942085, + 53.591174499, + ], + [ + 10.1934863, + 53.592570399, + ], + [ + 10.193298, + 53.592892499, + ], + [ + 10.1926642, + 53.594011399, + ], + [ + 10.1924816, + 53.594089199, + ], + [ + 10.1924309, + 53.594443399, + ], + [ + 10.1922834, + 53.594546099, + ], + [ + 10.192064, + 53.594998499, + ], + [ + 10.1917776, + 53.595593999, + ], + [ + 10.1918153, + 53.595635599, + ], + [ + 10.1919834, + 53.596102299, + ], + [ + 10.1922173, + 53.596111999, + ], + [ + 10.1928572, + 53.595898999, + ], + [ + 10.1930172, + 53.595913999, + ], + [ + 10.1932361, + 53.596020999, + ], + [ + 10.1932771, + 53.595959999, + ], + [ + 10.1933761, + 53.595959999, + ], + [ + 10.1934561, + 53.596020999, + ], + [ + 10.1934351, + 53.596127999, + ], + [ + 10.1934941, + 53.596268999, + ], + [ + 10.1934321, + 53.596542899, + ], + [ + 10.1934286, + 53.596702199, + ], + [ + 10.1935701, + 53.596767899, + ], + [ + 10.1936831, + 53.596874899, + ], + [ + 10.1945454, + 53.597198199, + ], + [ + 10.1945954, + 53.597261299, + ], + [ + 10.1943754, + 53.597442699, + ], + [ + 10.194823, + 53.597742299, + ], + [ + 10.1949896, + 53.597878399, + ], + [ + 10.195162, + 53.597917999, + ], + [ + 10.1952782, + 53.597775199, + ], + [ + 10.1954457, + 53.597757299, + ], + [ + 10.1958354, + 53.597896099, + ], + [ + 10.1958856, + 53.597965099, + ], + [ + 10.1960047, + 53.598251699, + ], + [ + 10.1959797, + 53.598369799, + ], + [ + 10.1965658, + 53.598895199, + ], + [ + 10.1970347, + 53.599315599, + ], + [ + 10.1969095, + 53.599636599, + ], + [ + 10.1968615, + 53.599995599, + ], + [ + 10.1968305, + 53.600232499, + ], + [ + 10.1968195, + 53.600308499, + ], + [ + 10.1967825, + 53.600586499, + ], + [ + 10.1953167, + 53.604257099, + ], + [ + 10.1952166, + 53.604661499, + ], + [ + 10.1951634, + 53.605145799, + ], + [ + 10.1952081, + 53.605374699, + ], + [ + 10.1952152, + 53.605977299, + ], + [ + 10.1952713, + 53.607363399, + ], + [ + 10.1935209, + 53.609899999, + ], + [ + 10.1918172, + 53.609410799, + ], + [ + 10.1907939, + 53.610784999, + ], + [ + 10.1888537, + 53.613072599, + ], + [ + 10.1902594, + 53.613953999, + ], + [ + 10.1907563, + 53.614258899, + ], + [ + 10.1919911, + 53.614983799, + ], + [ + 10.192392, + 53.615204799, + ], + [ + 10.192708, + 53.615376799, + ], + [ + 10.1950596, + 53.616471699, + ], + [ + 10.1969533, + 53.617367599, + ], + [ + 10.1989659, + 53.618290499, + ], + [ + 10.1991979, + 53.618416499, + ], + [ + 10.1995038, + 53.618584499, + ], + [ + 10.2000048, + 53.618939399, + ], + [ + 10.2000808, + 53.618992399, + ], + [ + 10.2015335, + 53.620057299, + ], + [ + 10.2021558, + 53.620245199, + ], + [ + 10.2026997, + 53.620422599, + ], + [ + 10.2031692, + 53.620587299, + ], + [ + 10.204506, + 53.620911199, + ], + [ + 10.2053639, + 53.621327199, + ], + [ + 10.2058028, + 53.621472199, + ], + [ + 10.2058168, + 53.621964099, + ], + [ + 10.2058188, + 53.622041099, + ], + [ + 10.2055498, + 53.623474999, + ], + [ + 10.2055088, + 53.623592899, + ], + [ + 10.2054898, + 53.623661899, + ], + [ + 10.2054678, + 53.623745899, + ], + [ + 10.2056048, + 53.623772899, + ], + [ + 10.2057458, + 53.623734899, + ], + [ + 10.2058068, + 53.623653899, + ], + [ + 10.2060078, + 53.623642899, + ], + [ + 10.2060837, + 53.623646899, + ], + [ + 10.2064267, + 53.623665899, + ], + [ + 10.2065077, + 53.623844899, + ], + [ + 10.2067276, + 53.623821899, + ], + [ + 10.2069466, + 53.623905899, + ], + [ + 10.2070246, + 53.624023899, + ], + [ + 10.2072726, + 53.624065899, + ], + [ + 10.2073855, + 53.624085899, + ], + [ + 10.207631, + 53.624336999, + ], + [ + 10.2077033, + 53.624310799, + ], + [ + 10.2078554, + 53.624350699, + ], + [ + 10.2080337, + 53.624268099, + ], + [ + 10.2083934, + 53.624146899, + ], + [ + 10.2093972, + 53.623821899, + ], + [ + 10.2097422, + 53.623634999, + ], + [ + 10.210814, + 53.623058999, + ], + [ + 10.210914, + 53.623001999, + ], + [ + 10.211048, + 53.623001999, + ], + [ + 10.211147, + 53.623028999, + ], + [ + 10.2113759, + 53.623184999, + ], + [ + 10.2114989, + 53.623268999, + ], + [ + 10.2116509, + 53.623383999, + ], + [ + 10.2115559, + 53.623482999, + ], + [ + 10.21174, + 53.623702199, + ], + [ + 10.2119223, + 53.623776199, + ], + [ + 10.2121107, + 53.623654099, + ], + [ + 10.2123818, + 53.623867899, + ], + [ + 10.2125946, + 53.624049999, + ], + [ + 10.2126921, + 53.624104399, + ], + [ + 10.2127617, + 53.624149899, + ], + [ + 10.2137635, + 53.624649899, + ], + [ + 10.2138635, + 53.624691899, + ], + [ + 10.2140625, + 53.624779899, + ], + [ + 10.2145354, + 53.624947799, + ], + [ + 10.2151773, + 53.625176799, + ], + [ + 10.2157082, + 53.625336799, + ], + [ + 10.2161212, + 53.625431799, + ], + [ + 10.2163361, + 53.625549799, + ], + [ + 10.2164411, + 53.625610799, + ], + [ + 10.2166091, + 53.625744799, + ], + [ + 10.2167836, + 53.625951899, + ], + [ + 10.2174862, + 53.626135299, + ], + [ + 10.2178395, + 53.626371199, + ], + [ + 10.2181278, + 53.627186699, + ], + [ + 10.2176208, + 53.627333799, + ], + [ + 10.2175149, + 53.627396599, + ], + [ + 10.2174689, + 53.627472599, + ], + [ + 10.2174579, + 53.627659499, + ], + [ + 10.2173907, + 53.627767899, + ], + [ + 10.2173111, + 53.627870899, + ], + [ + 10.2169821, + 53.628063199, + ], + [ + 10.216868, + 53.628157899, + ], + [ + 10.2168647, + 53.628247599, + ], + [ + 10.2165626, + 53.628514499, + ], + [ + 10.2164826, + 53.628962399, + ], + [ + 10.2165753, + 53.629033699, + ], + [ + 10.2165473, + 53.629145399, + ], + [ + 10.2165657, + 53.629209099, + ], + [ + 10.2167612, + 53.629904599, + ], + [ + 10.2168593, + 53.629949099, + ], + [ + 10.2161734, + 53.631260999, + ], + [ + 10.2169544, + 53.631393499, + ], + [ + 10.2170469, + 53.631154099, + ], + [ + 10.2219513, + 53.633649699, + ], + [ + 10.2135464, + 53.635834899, + ], + [ + 10.2135134, + 53.635804699, + ], + [ + 10.2130594, + 53.635918399, + ], + [ + 10.210684, + 53.636517299, + ], + [ + 10.2100829, + 53.636666099, + ], + [ + 10.2092367, + 53.636665299, + ], + [ + 10.2085513, + 53.636483399, + ], + [ + 10.20785, + 53.636331199, + ], + [ + 10.2064797, + 53.636520399, + ], + [ + 10.2054951, + 53.636597199, + ], + [ + 10.2044386, + 53.636572199, + ], + [ + 10.2037703, + 53.636686499, + ], + [ + 10.2032499, + 53.636731699, + ], + [ + 10.2028288, + 53.636785899, + ], + [ + 10.202392, + 53.636859699, + ], + [ + 10.2018055, + 53.636790899, + ], + [ + 10.2015129, + 53.636690599, + ], + [ + 10.2006731, + 53.636506399, + ], + [ + 10.1999076, + 53.636733799, + ], + [ + 10.1998684, + 53.636525299, + ], + [ + 10.1996868, + 53.636376499, + ], + [ + 10.1995585, + 53.636158099, + ], + [ + 10.1983265, + 53.636397799, + ], + [ + 10.1980498, + 53.636383199, + ], + [ + 10.1978702, + 53.636379799, + ], + [ + 10.1975068, + 53.636443899, + ], + [ + 10.1970572, + 53.636654599, + ], + [ + 10.1969513, + 53.636710199, + ], + [ + 10.1966297, + 53.636984999, + ], + [ + 10.1965642, + 53.637014799, + ], + [ + 10.1960611, + 53.637272399, + ], + [ + 10.1956392, + 53.637463299, + ], + [ + 10.1955602, + 53.637494299, + ], + [ + 10.1951283, + 53.637662299, + ], + [ + 10.1936855, + 53.638016299, + ], + [ + 10.1930036, + 53.638062299, + ], + [ + 10.1927801, + 53.638079499, + ], + [ + 10.192637, + 53.638111499, + ], + [ + 10.1923772, + 53.638075999, + ], + [ + 10.1921747, + 53.638097199, + ], + [ + 10.1908359, + 53.638192199, + ], + [ + 10.190725, + 53.638200199, + ], + [ + 10.1899831, + 53.638341199, + ], + [ + 10.1896394, + 53.638373699, + ], + [ + 10.1947301, + 53.641917699, + ], + [ + 10.1953648, + 53.642376299, + ], + [ + 10.1954214, + 53.642430299, + ], + [ + 10.1956244, + 53.642684799, + ], + [ + 10.1956766, + 53.642750199, + ], + [ + 10.1988518, + 53.646730199, + ], + [ + 10.1987056, + 53.647263199, + ], + [ + 10.1983716, + 53.647424199, + ], + [ + 10.1982646, + 53.647473199, + ], + [ + 10.1982037, + 53.647553199, + ], + [ + 10.1979765, + 53.647871099, + ], + [ + 10.1978228, + 53.648065899, + ], + [ + 10.1975874, + 53.648284499, + ], + [ + 10.1972853, + 53.648609599, + ], + [ + 10.1972033, + 53.648705499, + ], + [ + 10.1972008, + 53.648714999, + ], + [ + 10.197201, + 53.648723599, + ], + [ + 10.1972052, + 53.648737699, + ], + [ + 10.1972148, + 53.648750499, + ], + [ + 10.197245, + 53.648790699, + ], + [ + 10.197391, + 53.648925499, + ], + [ + 10.1974204, + 53.648947099, + ], + [ + 10.1974337, + 53.648970599, + ], + [ + 10.1974377, + 53.649003799, + ], + [ + 10.1974384, + 53.649031599, + ], + [ + 10.197431, + 53.649059299, + ], + [ + 10.1973208, + 53.649158999, + ], + [ + 10.1971825, + 53.649236599, + ], + [ + 10.1971806, + 53.649266899, + ], + [ + 10.1971115, + 53.649298599, + ], + [ + 10.1969427, + 53.649344599, + ], + [ + 10.1968529, + 53.649373999, + ], + [ + 10.1967415, + 53.649401799, + ], + [ + 10.1966596, + 53.649422899, + ], + [ + 10.1966395, + 53.649448799, + ], + [ + 10.1966414, + 53.649481799, + ], + [ + 10.1966541, + 53.649511599, + ], + [ + 10.1966588, + 53.649534199, + ], + [ + 10.19665, + 53.649556899, + ], + [ + 10.1965941, + 53.649663799, + ], + [ + 10.1965244, + 53.649737799, + ], + [ + 10.1964708, + 53.649810199, + ], + [ + 10.1965031, + 53.649837099, + ], + [ + 10.1965437, + 53.649870899, + ], + [ + 10.1965791, + 53.649930799, + ], + [ + 10.1966228, + 53.650038499, + ], + [ + 10.1966149, + 53.650158899, + ], + [ + 10.1965929, + 53.650326899, + ], + [ + 10.1965719, + 53.650490899, + ], + [ + 10.1965309, + 53.650593899, + ], + [ + 10.1962079, + 53.651093799, + ], + [ + 10.1961589, + 53.651211799, + ], + [ + 10.1961269, + 53.651287799, + ], + [ + 10.1961259, + 53.651413799, + ], + [ + 10.1961249, + 53.651509799, + ], + [ + 10.195812, + 53.651642699, + ], + [ + 10.195624, + 53.651722699, + ], + [ + 10.195572, + 53.651829699, + ], + [ + 10.195411, + 53.651909699, + ], + [ + 10.1952531, + 53.652000699, + ], + [ + 10.1951621, + 53.652085699, + ], + [ + 10.1950501, + 53.652302699, + ], + [ + 10.1950301, + 53.652390699, + ], + [ + 10.1949881, + 53.652588599, + ], + [ + 10.1951261, + 53.652649599, + ], + [ + 10.195366, + 53.652825599, + ], + [ + 10.195465, + 53.652897599, + ], + [ + 10.195665, + 53.652947599, + ], + [ + 10.1961229, + 53.653233599, + ], + [ + 10.1961819, + 53.653374499, + ], + [ + 10.1963619, + 53.653531499, + ], + [ + 10.1962989, + 53.653767499, + ], + [ + 10.1962689, + 53.653882499, + ], + [ + 10.1962159, + 53.654076499, + ], + [ + 10.1961769, + 53.654194499, + ], + [ + 10.1959529, + 53.654469399, + ], + [ + 10.1958919, + 53.654751399, + ], + [ + 10.195603, + 53.654839399, + ], + [ + 10.195421, + 53.654896399, + ], + [ + 10.1952, + 53.654919399, + ], + [ + 10.1948511, + 53.654946399, + ], + [ + 10.1943791, + 53.654988399, + ], + [ + 10.194214, + 53.655007999, + ], + [ + 10.19414, + 53.655019199, + ], + [ + 10.1939532, + 53.655059699, + ], + [ + 10.1938957, + 53.655074099, + ], + [ + 10.1937966, + 53.655078099, + ], + [ + 10.1934937, + 53.655079899, + ], + [ + 10.1932695, + 53.655101899, + ], + [ + 10.1929678, + 53.655137299, + ], + [ + 10.1928082, + 53.655159599, + ], + [ + 10.1926602, + 53.655186399, + ], + [ + 10.1924273, + 53.655239099, + ], + [ + 10.1923018, + 53.655255299, + ], + [ + 10.1920974, + 53.655289199, + ], + [ + 10.1917666, + 53.655343299, + ], + [ + 10.1916947, + 53.655356099, + ], + [ + 10.1916629, + 53.655377999, + ], + [ + 10.1915555, + 53.655402199, + ], + [ + 10.191403, + 53.655483799, + ], + [ + 10.1913325, + 53.655526599, + ], + [ + 10.1911872, + 53.655600199, + ], + [ + 10.1909718, + 53.655678899, + ], + [ + 10.1908755, + 53.655677099, + ], + [ + 10.1908276, + 53.655709299, + ], + [ + 10.1908079, + 53.655719599, + ], + [ + 10.1907668, + 53.655728599, + ], + [ + 10.1907204, + 53.655729699, + ], + [ + 10.1906298, + 53.655775799, + ], + [ + 10.1905845, + 53.655753699, + ], + [ + 10.1905553, + 53.655726799, + ], + [ + 10.1904843, + 53.655735399, + ], + [ + 10.1904375, + 53.655737699, + ], + [ + 10.1903934, + 53.655749499, + ], + [ + 10.1903708, + 53.655779299, + ], + [ + 10.1903588, + 53.655807499, + ], + [ + 10.1903301, + 53.655823199, + ], + [ + 10.1902907, + 53.655829399, + ], + [ + 10.1902388, + 53.655859199, + ], + [ + 10.1900153, + 53.655948399, + ], + [ + 10.1899572, + 53.655962299, + ], + [ + 10.1898767, + 53.655990199, + ], + [ + 10.1898128, + 53.655999199, + ], + [ + 10.189723, + 53.655999599, + ], + [ + 10.1895857, + 53.655987899, + ], + [ + 10.1890488, + 53.655961299, + ], + [ + 10.1890082, + 53.655975099, + ], + [ + 10.1889557, + 53.656001699, + ], + [ + 10.188912, + 53.656006999, + ], + [ + 10.1888575, + 53.656004299, + ], + [ + 10.1887396, + 53.655990599, + ], + [ + 10.1886662, + 53.655997799, + ], + [ + 10.1886142, + 53.656020399, + ], + [ + 10.1884712, + 53.656039199, + ], + [ + 10.1884607, + 53.656040599, + ], + [ + 10.1883121, + 53.656083099, + ], + [ + 10.187994, + 53.656173499, + ], + [ + 10.1879099, + 53.656212299, + ], + [ + 10.1878479, + 53.656236499, + ], + [ + 10.1877947, + 53.656258899, + ], + [ + 10.1877604, + 53.656265399, + ], + [ + 10.1877044, + 53.656274699, + ], + [ + 10.1876565, + 53.656290299, + ], + [ + 10.1875298, + 53.656357199, + ], + [ + 10.1874849, + 53.656373199, + ], + [ + 10.1874219, + 53.656396999, + ], + [ + 10.1871924, + 53.656531999, + ], + [ + 10.1869943, + 53.656682099, + ], + [ + 10.1869709, + 53.656699099, + ], + [ + 10.1868519, + 53.656801099, + ], + [ + 10.1867373, + 53.656899399, + ], + [ + 10.1866993, + 53.656955599, + ], + [ + 10.1866504, + 53.657017899, + ], + [ + 10.1865898, + 53.657084999, + ], + [ + 10.1865962, + 53.657230299, + ], + [ + 10.1866154, + 53.657371399, + ], + [ + 10.1868286, + 53.657574999, + ], + [ + 10.1869104, + 53.657700799, + ], + [ + 10.187054, + 53.657943399, + ], + [ + 10.1870898, + 53.658063699, + ], + [ + 10.1871363, + 53.658098299, + ], + [ + 10.1871853, + 53.658128899, + ], + [ + 10.1873621, + 53.658193299, + ], + [ + 10.187503, + 53.658250199, + ], + [ + 10.1875323, + 53.658274399, + ], + [ + 10.1876374, + 53.658367499, + ], + [ + 10.18772, + 53.658449099, + ], + [ + 10.1877667, + 53.658560799, + ], + [ + 10.1877947, + 53.658657599, + ], + [ + 10.1861843, + 53.660561499, + ], + [ + 10.1860769, + 53.660688499, + ], + [ + 10.1858174, + 53.660995199, + ], + [ + 10.1837575, + 53.663429899, + ], + [ + 10.183588, + 53.663371099, + ], + [ + 10.183496, + 53.663333299, + ], + [ + 10.1833422, + 53.663363599, + ], + [ + 10.1831872, + 53.663213099, + ], + [ + 10.183004, + 53.663206899, + ], + [ + 10.1828795, + 53.663239399, + ], + [ + 10.1828359, + 53.663197899, + ], + [ + 10.1828905, + 53.663127699, + ], + [ + 10.1828245, + 53.663060099, + ], + [ + 10.1825823, + 53.662985999, + ], + [ + 10.1825087, + 53.662986399, + ], + [ + 10.1824092, + 53.663224399, + ], + [ + 10.1821965, + 53.663234999, + ], + [ + 10.1820539, + 53.663283799, + ], + [ + 10.1819855, + 53.663287099, + ], + [ + 10.1819507, + 53.663230299, + ], + [ + 10.1818172, + 53.663198999, + ], + [ + 10.1817288, + 53.663131199, + ], + [ + 10.1816263, + 53.663124499, + ], + [ + 10.1807984, + 53.663256299, + ], + [ + 10.1805903, + 53.663238499, + ], + [ + 10.1804922, + 53.663200399, + ], + [ + 10.1802397, + 53.663105699, + ], + [ + 10.1795924, + 53.663197899, + ], + [ + 10.179487, + 53.663102599, + ], + [ + 10.1792875, + 53.663072799, + ], + [ + 10.1792982, + 53.662911499, + ], + [ + 10.1790438, + 53.662911399, + ], + [ + 10.1788601, + 53.662957599, + ], + [ + 10.1784902, + 53.662824299, + ], + [ + 10.1779494, + 53.662767399, + ], + [ + 10.1772681, + 53.662752099, + ], + [ + 10.1771158, + 53.662713599, + ], + [ + 10.1768974, + 53.662745499, + ], + [ + 10.176539, + 53.663005299, + ], + [ + 10.1763362, + 53.662987599, + ], + [ + 10.1762753, + 53.663129299, + ], + [ + 10.1759837, + 53.663230399, + ], + [ + 10.1758471, + 53.663212299, + ], + [ + 10.1755963, + 53.663338799, + ], + [ + 10.1755854, + 53.663358299, + ], + [ + 10.1755679, + 53.663377699, + ], + [ + 10.175545, + 53.663395199, + ], + [ + 10.175514, + 53.663410299, + ], + [ + 10.1754265, + 53.663466499, + ], + [ + 10.1753224, + 53.663542399, + ], + [ + 10.175304, + 53.663556799, + ], + [ + 10.1752961, + 53.663565299, + ], + [ + 10.1752841, + 53.663582699, + ], + [ + 10.1752745, + 53.663595499, + ], + [ + 10.1751869, + 53.663651699, + ], + [ + 10.1751496, + 53.663681399, + ], + [ + 10.175137, + 53.663690299, + ], + [ + 10.1751281, + 53.663700599, + ], + [ + 10.1751217, + 53.663712699, + ], + [ + 10.1751143, + 53.663736599, + ], + [ + 10.1751042, + 53.663754199, + ], + [ + 10.17509, + 53.663772899, + ], + [ + 10.1750719, + 53.663790899, + ], + [ + 10.1750114, + 53.663849099, + ], + [ + 10.1749895, + 53.663868399, + ], + [ + 10.1749756, + 53.663887599, + ], + [ + 10.1749696, + 53.663930599, + ], + [ + 10.1749555, + 53.663973599, + ], + [ + 10.1749467, + 53.663987499, + ], + [ + 10.174933, + 53.663997999, + ], + [ + 10.1749112, + 53.664004599, + ], + [ + 10.1748823, + 53.664006999, + ], + [ + 10.1748602, + 53.664010899, + ], + [ + 10.1748414, + 53.664022099, + ], + [ + 10.174828, + 53.664034799, + ], + [ + 10.1747435, + 53.664111199, + ], + [ + 10.1747263, + 53.664122999, + ], + [ + 10.1747123, + 53.664128799, + ], + [ + 10.1746997, + 53.664130699, + ], + [ + 10.174667, + 53.664136099, + ], + [ + 10.1746424, + 53.664142299, + ], + [ + 10.1746277, + 53.664146899, + ], + [ + 10.1746169, + 53.664152299, + ], + [ + 10.1746062, + 53.664159699, + ], + [ + 10.1745995, + 53.664167799, + ], + [ + 10.1745954, + 53.664182199, + ], + [ + 10.1745967, + 53.664197299, + ], + [ + 10.174595, + 53.664207099, + ], + [ + 10.1745865, + 53.664216899, + ], + [ + 10.1745679, + 53.664225499, + ], + [ + 10.174544, + 53.664230099, + ], + [ + 10.1745032, + 53.664235599, + ], + [ + 10.1744835, + 53.664240699, + ], + [ + 10.1744638, + 53.664247399, + ], + [ + 10.1744088, + 53.664276699, + ], + [ + 10.1743696, + 53.664294699, + ], + [ + 10.1743444, + 53.664298599, + ], + [ + 10.1743164, + 53.664298599, + ], + [ + 10.174222, + 53.664287899, + ], + [ + 10.1741275, + 53.664277299, + ], + [ + 10.1740862, + 53.664278399, + ], + [ + 10.174053, + 53.664282599, + ], + [ + 10.174011, + 53.664291599, + ], + [ + 10.1739798, + 53.664306999, + ], + [ + 10.1739375, + 53.664342399, + ], + [ + 10.17388, + 53.664394999, + ], + [ + 10.1738327, + 53.664438199, + ], + [ + 10.1737992, + 53.664465099, + ], + [ + 10.1737631, + 53.664485599, + ], + [ + 10.1736827, + 53.664526699, + ], + [ + 10.1736608, + 53.664545099, + ], + [ + 10.1736499, + 53.664564999, + ], + [ + 10.1736443, + 53.664584999, + ], + [ + 10.1736222, + 53.664627399, + ], + [ + 10.1735993, + 53.664651699, + ], + [ + 10.173571, + 53.664675999, + ], + [ + 10.1734267, + 53.664792499, + ], + [ + 10.173254, + 53.664911999, + ], + [ + 10.1732236, + 53.664938399, + ], + [ + 10.1732062, + 53.664957399, + ], + [ + 10.1731928, + 53.664978799, + ], + [ + 10.1731629, + 53.665029599, + ], + [ + 10.1731376, + 53.665073199, + ], + [ + 10.173046, + 53.665227499, + ], + [ + 10.17293, + 53.665354399, + ], + [ + 10.1728661, + 53.665402399, + ], + [ + 10.172856, + 53.665412199, + ], + [ + 10.1728513, + 53.665421999, + ], + [ + 10.1728513, + 53.665445599, + ], + [ + 10.1728996, + 53.665512599, + ], + [ + 10.1729067, + 53.665529199, + ], + [ + 10.1729158, + 53.665542999, + ], + [ + 10.1729283, + 53.665557999, + ], + [ + 10.1729441, + 53.665571799, + ], + [ + 10.1729931, + 53.665606599, + ], + [ + 10.1730616, + 53.665650899, + ], + [ + 10.1730922, + 53.665669699, + ], + [ + 10.1731061, + 53.665677899, + ], + [ + 10.1731254, + 53.665683799, + ], + [ + 10.1731424, + 53.665686599, + ], + [ + 10.1731568, + 53.665690199, + ], + [ + 10.1731758, + 53.665697799, + ], + [ + 10.1731882, + 53.665708599, + ], + [ + 10.1732321, + 53.665760399, + ], + [ + 10.1732419, + 53.665767199, + ], + [ + 10.1732531, + 53.665772399, + ], + [ + 10.1732669, + 53.665775999, + ], + [ + 10.1732848, + 53.665778799, + ], + [ + 10.1733341, + 53.665781999, + ], + [ + 10.1733504, + 53.665784699, + ], + [ + 10.1733626, + 53.665790499, + ], + [ + 10.1733791, + 53.665802099, + ], + [ + 10.1734033, + 53.665828699, + ], + [ + 10.1734204, + 53.665843199, + ], + [ + 10.173434, + 53.665846999, + ], + [ + 10.1734504, + 53.665847699, + ], + [ + 10.1734634, + 53.665851099, + ], + [ + 10.1734764, + 53.665857699, + ], + [ + 10.1734929, + 53.665880199, + ], + [ + 10.1735084, + 53.665906199, + ], + [ + 10.1735168, + 53.665931999, + ], + [ + 10.1735221, + 53.665991899, + ], + [ + 10.1735265, + 53.666042399, + ], + [ + 10.1736503, + 53.666063099, + ], + [ + 10.1736665, + 53.666122499, + ], + [ + 10.1735382, + 53.666174399, + ], + [ + 10.1735418, + 53.666187699, + ], + [ + 10.1735481, + 53.666201699, + ], + [ + 10.1735648, + 53.666227499, + ], + [ + 10.1735849, + 53.666253999, + ], + [ + 10.1735962, + 53.666265699, + ], + [ + 10.1736089, + 53.666278499, + ], + [ + 10.1736229, + 53.666288799, + ], + [ + 10.1736369, + 53.666297099, + ], + [ + 10.1736648, + 53.666312799, + ], + [ + 10.1736988, + 53.666328399, + ], + [ + 10.1737369, + 53.666343199, + ], + [ + 10.1737696, + 53.666355899, + ], + [ + 10.1737991, + 53.666367099, + ], + [ + 10.1738191, + 53.666372399, + ], + [ + 10.1738445, + 53.666376799, + ], + [ + 10.173982, + 53.666391699, + ], + [ + 10.1741308, + 53.666391599, + ], + [ + 10.1741504, + 53.666395499, + ], + [ + 10.1741647, + 53.666401699, + ], + [ + 10.1741762, + 53.666408399, + ], + [ + 10.1741824, + 53.666418199, + ], + [ + 10.1741837, + 53.666466599, + ], + [ + 10.1741916, + 53.666479699, + ], + [ + 10.1742062, + 53.666492899, + ], + [ + 10.1742162, + 53.666499399, + ], + [ + 10.1742235, + 53.666506799, + ], + [ + 10.1742341, + 53.666521499, + ], + [ + 10.1742502, + 53.666555499, + ], + [ + 10.1743309, + 53.666726499, + ], + [ + 10.174334, + 53.666740399, + ], + [ + 10.1743319, + 53.666754299, + ], + [ + 10.1743223, + 53.666765799, + ], + [ + 10.1743061, + 53.666777299, + ], + [ + 10.1741155, + 53.666845099, + ], + [ + 10.1739652, + 53.667151799, + ], + [ + 10.1739153, + 53.667227599, + ], + [ + 10.1739103, + 53.667236599, + ], + [ + 10.1739086, + 53.667245199, + ], + [ + 10.1739076, + 53.667253999, + ], + [ + 10.1739092, + 53.667262799, + ], + [ + 10.1739257, + 53.667285799, + ], + [ + 10.1739271, + 53.667293399, + ], + [ + 10.1739259, + 53.667300499, + ], + [ + 10.1739216, + 53.667307099, + ], + [ + 10.1739153, + 53.667312799, + ], + [ + 10.173857, + 53.667376299, + ], + [ + 10.1738539, + 53.667384399, + ], + [ + 10.1738489, + 53.667392499, + ], + [ + 10.1738374, + 53.667408399, + ], + [ + 10.1737786, + 53.667442099, + ], + [ + 10.1737693, + 53.667448299, + ], + [ + 10.1737626, + 53.667454399, + ], + [ + 10.173757, + 53.667460299, + ], + [ + 10.1737533, + 53.667466599, + ], + [ + 10.1737537, + 53.667540499, + ], + [ + 10.1737524, + 53.667548499, + ], + [ + 10.1737495, + 53.667558999, + ], + [ + 10.1737455, + 53.667566799, + ], + [ + 10.1737402, + 53.667573799, + ], + [ + 10.1736991, + 53.667619599, + ], + [ + 10.1736788, + 53.667648299, + ], + [ + 10.1736654, + 53.667663099, + ], + [ + 10.1736519, + 53.667675499, + ], + [ + 10.1736394, + 53.667684699, + ], + [ + 10.1736243, + 53.667693899, + ], + [ + 10.173594, + 53.667709899, + ], + [ + 10.1735442, + 53.667744199, + ], + [ + 10.1734077, + 53.667880799, + ], + [ + 10.1733918, + 53.667893399, + ], + [ + 10.173375, + 53.667905299, + ], + [ + 10.1733445, + 53.667918999, + ], + [ + 10.1733287, + 53.667931899, + ], + [ + 10.1733157, + 53.667944799, + ], + [ + 10.1733046, + 53.667957799, + ], + [ + 10.1732975, + 53.667970699, + ], + [ + 10.173275, + 53.668081899, + ], + [ + 10.1732649, + 53.668103499, + ], + [ + 10.173252, + 53.668120299, + ], + [ + 10.1732258, + 53.668134699, + ], + [ + 10.1732076, + 53.668150699, + ], + [ + 10.1730774, + 53.668324699, + ], + [ + 10.1730576, + 53.668346099, + ], + [ + 10.1730503, + 53.668357199, + ], + [ + 10.1730471, + 53.668368299, + ], + [ + 10.1730267, + 53.668475299, + ], + [ + 10.1730297, + 53.668541399, + ], + [ + 10.1730299, + 53.668551599, + ], + [ + 10.1730234, + 53.668561799, + ], + [ + 10.1730175, + 53.668569599, + ], + [ + 10.173005, + 53.668575099, + ], + [ + 10.1729822, + 53.668580999, + ], + [ + 10.1729637, + 53.668586099, + ], + [ + 10.1729477, + 53.668592599, + ], + [ + 10.1729321, + 53.668601299, + ], + [ + 10.1729232, + 53.668609999, + ], + [ + 10.1727973, + 53.668699399, + ], + [ + 10.1727771, + 53.668705499, + ], + [ + 10.1727555, + 53.668706899, + ], + [ + 10.1727346, + 53.668705899, + ], + [ + 10.1727136, + 53.668702499, + ], + [ + 10.1726007, + 53.668681899, + ], + [ + 10.1725755, + 53.668681599, + ], + [ + 10.1725543, + 53.668684499, + ], + [ + 10.1725318, + 53.668688899, + ], + [ + 10.1725133, + 53.668695699, + ], + [ + 10.1724097, + 53.668773599, + ], + [ + 10.1723924, + 53.668782799, + ], + [ + 10.172375, + 53.668788899, + ], + [ + 10.172335, + 53.668798399, + ], + [ + 10.1723137, + 53.668803199, + ], + [ + 10.1722883, + 53.668806399, + ], + [ + 10.1722634, + 53.668806199, + ], + [ + 10.1722411, + 53.668808299, + ], + [ + 10.1722289, + 53.668815999, + ], + [ + 10.1722221, + 53.668823699, + ], + [ + 10.1721988, + 53.668859599, + ], + [ + 10.1721897, + 53.668866699, + ], + [ + 10.1721727, + 53.668872199, + ], + [ + 10.1721566, + 53.668872099, + ], + [ + 10.1721325, + 53.668868499, + ], + [ + 10.1721016, + 53.668864199, + ], + [ + 10.1720451, + 53.668857899, + ], + [ + 10.1719586, + 53.668848599, + ], + [ + 10.1719389, + 53.668846099, + ], + [ + 10.1719186, + 53.668841999, + ], + [ + 10.1718983, + 53.668835899, + ], + [ + 10.1718846, + 53.668826599, + ], + [ + 10.1717784, + 53.668755399, + ], + [ + 10.1717596, + 53.668745399, + ], + [ + 10.1717381, + 53.668737799, + ], + [ + 10.171718, + 53.668733199, + ], + [ + 10.1716993, + 53.668730199, + ], + [ + 10.1716819, + 53.668725899, + ], + [ + 10.1716686, + 53.668719299, + ], + [ + 10.171649, + 53.668707899, + ], + [ + 10.1716312, + 53.668700899, + ], + [ + 10.171608, + 53.668697999, + ], + [ + 10.1715702, + 53.668695799, + ], + [ + 10.1715506, + 53.668695599, + ], + [ + 10.1715323, + 53.668693699, + ], + [ + 10.1715105, + 53.668686599, + ], + [ + 10.1714927, + 53.668679099, + ], + [ + 10.17145, + 53.668661499, + ], + [ + 10.1706342, + 53.668324999, + ], + [ + 10.1702556, + 53.668165499, + ], + [ + 10.1698028, + 53.667980799, + ], + [ + 10.169405, + 53.667871599, + ], + [ + 10.169007, + 53.667765799, + ], + [ + 10.1687001, + 53.667684299, + ], + [ + 10.1686158, + 53.667661899, + ], + [ + 10.1684523, + 53.667670499, + ], + [ + 10.1681018, + 53.667713899, + ], + [ + 10.1678235, + 53.667738999, + ], + [ + 10.1674399, + 53.667773699, + ], + [ + 10.1670977, + 53.667799799, + ], + [ + 10.1667877, + 53.667825799, + ], + [ + 10.1663046, + 53.667895999, + ], + [ + 10.1656134, + 53.667965499, + ], + [ + 10.1648012, + 53.668397999, + ], + [ + 10.1646548, + 53.668486099, + ], + [ + 10.1645676, + 53.668599799, + ], + [ + 10.1640243, + 53.669308599, + ], + [ + 10.1638239, + 53.669569999, + ], + [ + 10.1637191, + 53.669688199, + ], + [ + 10.163263, + 53.669952799, + ], + [ + 10.1616035, + 53.670915599, + ], + [ + 10.161086, + 53.670948599, + ], + [ + 10.1610718, + 53.670940599, + ], + [ + 10.1610562, + 53.670932199, + ], + [ + 10.1609401, + 53.670868499, + ], + [ + 10.1604159, + 53.671059699, + ], + [ + 10.1600703, + 53.670535399, + ], + [ + 10.1590419, + 53.670641099, + ], + [ + 10.158838, + 53.669623299, + ], + [ + 10.1557915, + 53.669925099, + ], + [ + 10.1557352, + 53.669973599, + ], + [ + 10.1551112, + 53.672097199, + ], + [ + 10.1560432, + 53.671941699, + ], + [ + 10.156057, + 53.671967799, + ], + [ + 10.1571749, + 53.671759899, + ], + [ + 10.1578765, + 53.671727299, + ], + [ + 10.1582355, + 53.671602999, + ], + [ + 10.1595079, + 53.671424299, + ], + [ + 10.1599333, + 53.671333299, + ], + [ + 10.1603426, + 53.671248699, + ], + [ + 10.1608638, + 53.671038199, + ], + [ + 10.1609092, + 53.671076299, + ], + [ + 10.1610398, + 53.671185899, + ], + [ + 10.1611722, + 53.671296899, + ], + [ + 10.1611951, + 53.671316199, + ], + [ + 10.1611359, + 53.671342999, + ], + [ + 10.16069, + 53.671535099, + ], + [ + 10.1605179, + 53.671609699, + ], + [ + 10.1603458, + 53.671684299, + ], + [ + 10.1599843, + 53.671798599, + ], + [ + 10.1598674, + 53.671835599, + ], + [ + 10.1596097, + 53.671990099, + ], + [ + 10.1589526, + 53.672122999, + ], + [ + 10.1583567, + 53.672174199, + ], + [ + 10.1579148, + 53.672152699, + ], + [ + 10.1578975, + 53.672151899, + ], + [ + 10.1572415, + 53.672183899, + ], + [ + 10.1570284, + 53.672170399, + ], + [ + 10.1562759, + 53.672237599, + ], + [ + 10.1562091, + 53.672276899, + ], + [ + 10.1560055, + 53.672460099, + ], + [ + 10.1559237, + 53.672475699, + ], + [ + 10.1558112, + 53.672489099, + ], + [ + 10.1556647, + 53.672566499, + ], + [ + 10.1555964, + 53.672668199, + ], + [ + 10.1555772, + 53.672738099, + ], + [ + 10.1556012, + 53.672812399, + ], + [ + 10.1556065, + 53.672909399, + ], + [ + 10.1555246, + 53.673070699, + ], + [ + 10.1555616, + 53.673158399, + ], + [ + 10.15555, + 53.673234099, + ], + [ + 10.1555434, + 53.673276899, + ], + [ + 10.1555099, + 53.673324499, + ], + [ + 10.1554083, + 53.673441799, + ], + [ + 10.1553433, + 53.673684999, + ], + [ + 10.1551306, + 53.673895899, + ], + [ + 10.1550954, + 53.673983299, + ], + [ + 10.1551043, + 53.674022599, + ], + [ + 10.1550207, + 53.674087299, + ], + [ + 10.1548718, + 53.674149399, + ], + [ + 10.1548642, + 53.674209199, + ], + [ + 10.1546253, + 53.674182199, + ], + [ + 10.1550758, + 53.673539699, + ], + [ + 10.155118, + 53.673505099, + ], + [ + 10.1552076, + 53.672947099, + ], + [ + 10.1551735, + 53.672915699, + ], + [ + 10.1548452, + 53.672940599, + ], + [ + 10.1541472, + 53.673927099, + ], + [ + 10.1543849, + 53.674319699, + ], + [ + 10.1547664, + 53.674299299, + ], + [ + 10.1548449, + 53.674318699, + ], + [ + 10.1549151, + 53.674336099, + ], + [ + 10.1552508, + 53.674419299, + ], + [ + 10.1552811, + 53.674436799, + ], + [ + 10.1552872, + 53.674462199, + ], + [ + 10.1551224, + 53.674584499, + ], + [ + 10.1550596, + 53.674651199, + ], + [ + 10.1550308, + 53.674707099, + ], + [ + 10.1548975, + 53.674965799, + ], + [ + 10.1548817, + 53.675041799, + ], + [ + 10.1548374, + 53.675254699, + ], + [ + 10.1546884, + 53.675554499, + ], + [ + 10.1545905, + 53.675751399, + ], + [ + 10.1545747, + 53.675799599, + ], + [ + 10.1544066, + 53.675913099, + ], + [ + 10.1541822, + 53.676064699, + ], + [ + 10.153578, + 53.675593699, + ], + [ + 10.1541403, + 53.674640999, + ], + [ + 10.1535776, + 53.674664199, + ], + [ + 10.1531045, + 53.674688399, + ], + [ + 10.1527302, + 53.674730599, + ], + [ + 10.1525418, + 53.674761099, + ], + [ + 10.1501067, + 53.675367199, + ], + [ + 10.1495624, + 53.675442199, + ], + [ + 10.1464311, + 53.675884099, + ], + [ + 10.1447651, + 53.676138299, + ], + [ + 10.1443866, + 53.676711399, + ], + [ + 10.1439367, + 53.677119199, + ], + [ + 10.1438384, + 53.677173199, + ], + [ + 10.1438163, + 53.677176899, + ], + [ + 10.1437448, + 53.677229999, + ], + [ + 10.1430552, + 53.676907199, + ], + [ + 10.142254, + 53.676457399, + ], + [ + 10.1417214, + 53.677434299, + ], + [ + 10.1412215, + 53.678318599, + ], + [ + 10.1411453, + 53.678294399, + ], + [ + 10.139962, + 53.680359299, + ], + [ + 10.1423205, + 53.680278399, + ], + [ + 10.1434275, + 53.680766199, + ], + [ + 10.1437927, + 53.680588899, + ], + [ + 10.1437972, + 53.680435899, + ], + [ + 10.1443866, + 53.680135299, + ], + [ + 10.1449237, + 53.679884299, + ], + [ + 10.145405, + 53.679803399, + ], + [ + 10.1456644, + 53.679852299, + ], + [ + 10.1456413, + 53.679959599, + ], + [ + 10.1469158, + 53.680546199, + ], + [ + 10.1473114, + 53.680684499, + ], + [ + 10.1480298, + 53.680978799, + ], + [ + 10.1497096, + 53.681634099, + ], + [ + 10.1502804, + 53.681872099, + ], + [ + 10.1507213, + 53.682035499, + ], + [ + 10.1512834, + 53.682264499, + ], + [ + 10.1519112, + 53.682536999, + ], + [ + 10.1531689, + 53.684262099, + ], + [ + 10.1532929, + 53.684382399, + ], + [ + 10.15283, + 53.686266199, + ], + [ + 10.1526691, + 53.686500699, + ], + [ + 10.1527287, + 53.686524999, + ], + [ + 10.1529451, + 53.686599299, + ], + [ + 10.1531396, + 53.686766999, + ], + [ + 10.1534441, + 53.686906699, + ], + [ + 10.1536451, + 53.686975599, + ], + [ + 10.1538758, + 53.686986199, + ], + [ + 10.1543469, + 53.686967499, + ], + [ + 10.1544968, + 53.687011799, + ], + [ + 10.1546012, + 53.687117899, + ], + [ + 10.154523, + 53.687215699, + ], + [ + 10.154851, + 53.687367899, + ], + [ + 10.1547805, + 53.687406999, + ], + [ + 10.1546598, + 53.687504099, + ], + [ + 10.1545979, + 53.687596499, + ], + [ + 10.1545684, + 53.687681499, + ], + [ + 10.1546321, + 53.687756999, + ], + [ + 10.1551062, + 53.687827499, + ], + [ + 10.1551574, + 53.687883699, + ], + [ + 10.1550913, + 53.687994599, + ], + [ + 10.1549674, + 53.688048199, + ], + [ + 10.1549562, + 53.688122999, + ], + [ + 10.1550682, + 53.688218999, + ], + [ + 10.1551044, + 53.688342499, + ], + [ + 10.1554353, + 53.688370599, + ], + [ + 10.1558803, + 53.688373999, + ], + [ + 10.1559842, + 53.688501499, + ], + [ + 10.1558559, + 53.688686599, + ], + [ + 10.1556348, + 53.688901599, + ], + [ + 10.1557819, + 53.688961499, + ], + [ + 10.1562803, + 53.689374999, + ], + [ + 10.1567393, + 53.689487099, + ], + [ + 10.1568855, + 53.689580299, + ], + [ + 10.1569406, + 53.689618399, + ], + [ + 10.1571362, + 53.689685899, + ], + [ + 10.1572785, + 53.689687699, + ], + [ + 10.1573533, + 53.689670599, + ], + [ + 10.1575053, + 53.689598399, + ], + [ + 10.1574338, + 53.689511599, + ], + [ + 10.1573655, + 53.689409299, + ], + [ + 10.1582858, + 53.689441399, + ], + [ + 10.1587665, + 53.690164699, + ], + [ + 10.1589354, + 53.690263099, + ], + [ + 10.15896, + 53.690510499, + ], + [ + 10.1588625, + 53.690591699, + ], + [ + 10.1586007, + 53.690428999, + ], + [ + 10.1585877, + 53.690461099, + ], + [ + 10.1586278, + 53.690861599, + ], + [ + 10.1585195, + 53.691160499, + ], + [ + 10.1587039, + 53.691273599, + ], + [ + 10.1587706, + 53.692690199, + ], + [ + 10.1589065, + 53.694255999, + ], + [ + 10.1589217, + 53.694537399, + ], + [ + 10.1590893, + 53.695067999, + ], + [ + 10.1591364, + 53.695245299, + ], + [ + 10.1594535, + 53.695821799, + ], + [ + 10.1598026, + 53.696540399, + ], + [ + 10.1598196, + 53.696686799, + ], + [ + 10.1598526, + 53.696972899, + ], + [ + 10.1597965, + 53.697139799, + ], + [ + 10.1596641, + 53.697361799, + ], + [ + 10.1596651, + 53.697570399, + ], + [ + 10.1597231, + 53.698061299, + ], + [ + 10.1595625, + 53.698066499, + ], + [ + 10.1597954, + 53.700208999, + ], + [ + 10.1598311, + 53.700403999, + ], + [ + 10.1602886, + 53.700827099, + ], + [ + 10.1601439, + 53.700927799, + ], + [ + 10.1600038, + 53.701175199, + ], + [ + 10.1600289, + 53.701253299, + ], + [ + 10.1598532, + 53.701426099, + ], + [ + 10.1597078, + 53.701426099, + ], + [ + 10.1594398, + 53.701479299, + ], + [ + 10.1592233, + 53.701540899, + ], + [ + 10.1589811, + 53.701666399, + ], + [ + 10.1587691, + 53.701781099, + ], + [ + 10.1585329, + 53.701942399, + ], + [ + 10.1580444, + 53.702131599, + ], + [ + 10.1582722, + 53.702282999, + ], + [ + 10.1581392, + 53.702361899, + ], + [ + 10.157903, + 53.702444399, + ], + [ + 10.1576751, + 53.702599299, + ], + [ + 10.1576257, + 53.702957399, + ], + [ + 10.1572815, + 53.703074599, + ], + [ + 10.1571149, + 53.703298699, + ], + [ + 10.1569264, + 53.703417899, + ], + [ + 10.1566588, + 53.703650699, + ], + [ + 10.1567392, + 53.704002099, + ], + [ + 10.1569421, + 53.704513299, + ], + [ + 10.1573842, + 53.704712999, + ], + [ + 10.1578911, + 53.704910999, + ], + [ + 10.1582824, + 53.705041199, + ], + [ + 10.1591641, + 53.705349799, + ], + [ + 10.1610923, + 53.706012899, + ], + [ + 10.1614244, + 53.706124499, + ], + [ + 10.1633895, + 53.706826199, + ], + [ + 10.1655001, + 53.707580699, + ], + [ + 10.1685759, + 53.708659599, + ], + [ + 10.1680625, + 53.708738499, + ], + [ + 10.1679838, + 53.708814199, + ], + [ + 10.1678992, + 53.708928299, + ], + [ + 10.1678886, + 53.708959699, + ], + [ + 10.1677788, + 53.709004899, + ], + [ + 10.167595, + 53.708996699, + ], + [ + 10.1674936, + 53.709034199, + ], + [ + 10.1674404, + 53.709064799, + ], + [ + 10.1674204, + 53.709246899, + ], + [ + 10.1675904, + 53.709265599, + ], + [ + 10.1678755, + 53.709224399, + ], + [ + 10.167953, + 53.709275599, + ], + [ + 10.1679568, + 53.709318299, + ], + [ + 10.1679321, + 53.709364199, + ], + [ + 10.1678418, + 53.709520599, + ], + [ + 10.1675415, + 53.709639999, + ], + [ + 10.1674883, + 53.709665199, + ], + [ + 10.1674174, + 53.709655899, + ], + [ + 10.1673178, + 53.709574899, + ], + [ + 10.1672231, + 53.709486899, + ], + [ + 10.1671363, + 53.709490699, + ], + [ + 10.1670974, + 53.709517099, + ], + [ + 10.1670997, + 53.709566499, + ], + [ + 10.1671219, + 53.709618599, + ], + [ + 10.1671757, + 53.709692499, + ], + [ + 10.1673777, + 53.709930499, + ], + [ + 10.1674325, + 53.709997099, + ], + [ + 10.1674336, + 53.710054099, + ], + [ + 10.1674069, + 53.710090099, + ], + [ + 10.1673427, + 53.710123599, + ], + [ + 10.1671553, + 53.710136299, + ], + [ + 10.167045, + 53.710114099, + ], + [ + 10.1669403, + 53.710087899, + ], + [ + 10.1667749, + 53.710011499, + ], + [ + 10.1666992, + 53.709932999, + ], + [ + 10.1665988, + 53.709806399, + ], + [ + 10.166492, + 53.709785999, + ], + [ + 10.1664045, + 53.709805899, + ], + [ + 10.1663345, + 53.709854999, + ], + [ + 10.1662838, + 53.709951499, + ], + [ + 10.1662588, + 53.710097799, + ], + [ + 10.1662765, + 53.710220899, + ], + [ + 10.1663336, + 53.710413099, + ], + [ + 10.1663736, + 53.710508499, + ], + [ + 10.1664909, + 53.710715799, + ], + [ + 10.1665105, + 53.710846499, + ], + [ + 10.1665602, + 53.711073799, + ], + [ + 10.1665587, + 53.711132299, + ], + [ + 10.166577, + 53.711240399, + ], + [ + 10.1668753, + 53.711240699, + ], + [ + 10.1669232, + 53.711156999, + ], + [ + 10.1670037, + 53.711136899, + ], + [ + 10.1671113, + 53.711126999, + ], + [ + 10.1672409, + 53.711124499, + ], + [ + 10.1674763, + 53.711210399, + ], + [ + 10.1676982, + 53.711214699, + ], + [ + 10.1683073, + 53.711362299, + ], + [ + 10.1685245, + 53.711473399, + ], + [ + 10.1685612, + 53.711533599, + ], + [ + 10.1686208, + 53.711562399, + ], + [ + 10.1686832, + 53.711572899, + ], + [ + 10.1688597, + 53.711590399, + ], + [ + 10.1701601, + 53.711648899, + ], + [ + 10.1703435, + 53.711632499, + ], + [ + 10.171258, + 53.711679099, + ], + [ + 10.1714007, + 53.711715999, + ], + [ + 10.1716452, + 53.711757399, + ], + [ + 10.1718035, + 53.711827999, + ], + [ + 10.1719942, + 53.711906799, + ], + [ + 10.1720628, + 53.712001199, + ], + [ + 10.1721223, + 53.712053999, + ], + [ + 10.1722206, + 53.712207299, + ], + [ + 10.1722961, + 53.712404199, + ], + [ + 10.1741047, + 53.712487599, + ], + [ + 10.1742759, + 53.712291399, + ], + [ + 10.1745873, + 53.711996599, + ], + [ + 10.1749375, + 53.711823199, + ], + [ + 10.1747862, + 53.711675599, + ], + [ + 10.1747869, + 53.711316699, + ], + [ + 10.174821, + 53.711246399, + ], + [ + 10.1752767, + 53.711085099, + ], + [ + 10.175493, + 53.711010099, + ], + [ + 10.1761548, + 53.710639699, + ], + [ + 10.1763836, + 53.710573299, + ], + [ + 10.1767832, + 53.710479899, + ], + [ + 10.1771391, + 53.710271299, + ], + [ + 10.177277, + 53.710103099, + ], + [ + 10.1775054, + 53.709959499, + ], + [ + 10.1779029, + 53.709922799, + ], + [ + 10.1780595, + 53.709949599, + ], + [ + 10.1783102, + 53.709801999, + ], + [ + 10.1786021, + 53.709710099, + ], + [ + 10.1793709, + 53.709626499, + ], + [ + 10.1794965, + 53.709619899, + ], + [ + 10.1799977, + 53.709458799, + ], + [ + 10.1801737, + 53.709425899, + ], + [ + 10.1809229, + 53.709257499, + ], + [ + 10.1812262, + 53.709047799, + ], + [ + 10.1815564, + 53.708899999, + ], + [ + 10.1818872, + 53.709398599, + ], + [ + 10.183515, + 53.711665699, + ], + [ + 10.1852306, + 53.714043599, + ], + [ + 10.1889663, + 53.719003799, + ], + [ + 10.1917444, + 53.722696699, + ], + [ + 10.1916361, + 53.722788999, + ], + [ + 10.1916062, + 53.722906699, + ], + [ + 10.1915503, + 53.723167899, + ], + [ + 10.1915743, + 53.723435499, + ], + [ + 10.1914656, + 53.723523099, + ], + [ + 10.1915303, + 53.723613099, + ], + [ + 10.1916004, + 53.723892399, + ], + [ + 10.1917383, + 53.724009999, + ], + [ + 10.1918879, + 53.724529999, + ], + [ + 10.1919229, + 53.724696899, + ], + [ + 10.192379, + 53.726279499, + ], + [ + 10.1928128, + 53.727864299, + ], + [ + 10.1931613, + 53.729095699, + ], + [ + 10.1936896, + 53.731002799, + ], + [ + 10.193461, + 53.731001899, + ], + [ + 10.1933219, + 53.731059599, + ], + [ + 10.1931262, + 53.731063299, + ], + [ + 10.1923459, + 53.731202799, + ], + [ + 10.1918529, + 53.731255699, + ], + [ + 10.1917399, + 53.731300699, + ], + [ + 10.19107, + 53.731336599, + ], + [ + 10.1909186, + 53.731320399, + ], + [ + 10.1903575, + 53.731206799, + ], + [ + 10.1898811, + 53.731001099, + ], + [ + 10.1894254, + 53.730882599, + ], + [ + 10.1891224, + 53.730725599, + ], + [ + 10.1890007, + 53.730708099, + ], + [ + 10.188694, + 53.730816099, + ], + [ + 10.1885694, + 53.730889399, + ], + [ + 10.1884252, + 53.730943499, + ], + [ + 10.1881698, + 53.731145399, + ], + [ + 10.1879925, + 53.731192999, + ], + [ + 10.1873391, + 53.731157799, + ], + [ + 10.1866675, + 53.731072199, + ], + [ + 10.1865136, + 53.731096799, + ], + [ + 10.1863491, + 53.731196799, + ], + [ + 10.1859616, + 53.731306099, + ], + [ + 10.1858976, + 53.731367099, + ], + [ + 10.1859749, + 53.731475499, + ], + [ + 10.1858157, + 53.731721999, + ], + [ + 10.1857644, + 53.731810899, + ], + [ + 10.1857259, + 53.731959399, + ], + [ + 10.1855029, + 53.732332199, + ], + [ + 10.1849819, + 53.732519899, + ], + [ + 10.1845249, + 53.732623499, + ], + [ + 10.1843169, + 53.732639699, + ], + [ + 10.1839394, + 53.732559599, + ], + [ + 10.1827966, + 53.732728299, + ], + [ + 10.1824091, + 53.732878199, + ], + [ + 10.1820057, + 53.732969999, + ], + [ + 10.1817137, + 53.733086099, + ], + [ + 10.1809729, + 53.733320399, + ], + [ + 10.1804441, + 53.733559199, + ], + [ + 10.1799485, + 53.733746799, + ], + [ + 10.1788305, + 53.734139299, + ], + [ + 10.1786256, + 53.734232599, + ], + [ + 10.178225, + 53.734810599, + ], + [ + 10.1779025, + 53.735092599, + ], + [ + 10.1771283, + 53.736022999, + ], + [ + 10.1770391, + 53.736155599, + ], + [ + 10.1767926, + 53.736333999, + ], + [ + 10.1768909, + 53.736349099, + ], + [ + 10.1728642, + 53.738083999, + ], + [ + 10.1725643, + 53.738211999, + ], + [ + 10.1721119, + 53.738350199, + ], + [ + 10.1693852, + 53.738953099, + ], + [ + 10.1680917, + 53.739245199, + ], + [ + 10.16775, + 53.739316499, + ], + [ + 10.1672095, + 53.739345499, + ], + [ + 10.1665703, + 53.739272099, + ], + [ + 10.1660621, + 53.739245299, + ], + [ + 10.1656825, + 53.739260399, + ], + [ + 10.1652866, + 53.739312199, + ], + [ + 10.1647879, + 53.739437799, + ], + [ + 10.1629808, + 53.738330999, + ], + [ + 10.1628477, + 53.738292999, + ], + [ + 10.1625989, + 53.738017999, + ], + [ + 10.1623473, + 53.737855699, + ], + [ + 10.1622774, + 53.737518599, + ], + [ + 10.1623224, + 53.737430099, + ], + [ + 10.1624818, + 53.737196399, + ], + [ + 10.1618523, + 53.737038199, + ], + [ + 10.1617491, + 53.736972599, + ], + [ + 10.1617232, + 53.736231599, + ], + [ + 10.1616007, + 53.733296899, + ], + [ + 10.1570385, + 53.731842999, + ], + [ + 10.1476827, + 53.728845399, + ], + [ + 10.1471379, + 53.728674399, + ], + [ + 10.1470631, + 53.728630699, + ], + [ + 10.1469084, + 53.728513699, + ], + [ + 10.1462035, + 53.728263899, + ], + [ + 10.1460738, + 53.728205499, + ], + [ + 10.1458032, + 53.727956199, + ], + [ + 10.1427932, + 53.725100199, + ], + [ + 10.1425748, + 53.725126499, + ], + [ + 10.1394611, + 53.725682199, + ], + [ + 10.1389019, + 53.725289199, + ], + [ + 10.138143, + 53.724786199, + ], + [ + 10.1366852, + 53.724294299, + ], + [ + 10.1346768, + 53.723617299, + ], + [ + 10.1334078, + 53.723107399, + ], + [ + 10.1330062, + 53.722839899, + ], + [ + 10.1330276, + 53.722790899, + ], + [ + 10.1323929, + 53.722344499, + ], + [ + 10.1321749, + 53.722232599, + ], + [ + 10.1309062, + 53.721722499, + ], + [ + 10.1295708, + 53.721169699, + ], + [ + 10.1286921, + 53.720818699, + ], + [ + 10.1282396, + 53.720597599, + ], + [ + 10.1271257, + 53.720040499, + ], + [ + 10.1262169, + 53.719521699, + ], + [ + 10.1259553, + 53.719307099, + ], + [ + 10.125977, + 53.719151799, + ], + [ + 10.1248297, + 53.718147199, + ], + [ + 10.1247732, + 53.717995899, + ], + [ + 10.1246399, + 53.717682199, + ], + [ + 10.1242875, + 53.717184199, + ], + [ + 10.1240393, + 53.717102999, + ], + [ + 10.1238476, + 53.717084999, + ], + [ + 10.1234904, + 53.717138899, + ], + [ + 10.1234194, + 53.716991999, + ], + [ + 10.1224764, + 53.715750799, + ], + [ + 10.1220097, + 53.715189199, + ], + [ + 10.1216328, + 53.714596299, + ], + [ + 10.1212164, + 53.713673099, + ], + [ + 10.1211309, + 53.713160299, + ], + [ + 10.1209673, + 53.713291999, + ], + [ + 10.1199709, + 53.713247699, + ], + [ + 10.1189975, + 53.713179399, + ], + [ + 10.1190569, + 53.713426599, + ], + [ + 10.1189533, + 53.713501399, + ], + [ + 10.1187964, + 53.713523399, + ], + [ + 10.1187031, + 53.713556599, + ], + [ + 10.1183458, + 53.713581099, + ], + [ + 10.1178897, + 53.713746699, + ], + [ + 10.1178079, + 53.713775899, + ], + [ + 10.1177026, + 53.713782899, + ], + [ + 10.1177175, + 53.714559199, + ], + [ + 10.1176062, + 53.714664799, + ], + [ + 10.1175602, + 53.714936399, + ], + [ + 10.1174984, + 53.715043699, + ], + [ + 10.1171423, + 53.715239399, + ], + [ + 10.1167401, + 53.715314399, + ], + [ + 10.1165277, + 53.715391799, + ], + [ + 10.1164365, + 53.715450899, + ], + [ + 10.1163743, + 53.715582799, + ], + [ + 10.1163108, + 53.715696099, + ], + [ + 10.1160559, + 53.715827999, + ], + [ + 10.1157539, + 53.716082299, + ], + [ + 10.1155049, + 53.715999199, + ], + [ + 10.1154972, + 53.716009199, + ], + [ + 10.114905, + 53.715900499, + ], + [ + 10.114657, + 53.715806699, + ], + [ + 10.1145315, + 53.715692699, + ], + [ + 10.1144694, + 53.715460899, + ], + [ + 10.1142663, + 53.715454999, + ], + [ + 10.1142094, + 53.715263499, + ], + [ + 10.1140443, + 53.715214799, + ], + [ + 10.113818, + 53.714951199, + ], + [ + 10.1134661, + 53.714749299, + ], + [ + 10.1134053, + 53.714573299, + ], + [ + 10.1134468, + 53.714453799, + ], + [ + 10.1133466, + 53.714393499, + ], + [ + 10.1131954, + 53.714413099, + ], + [ + 10.1130516, + 53.714362899, + ], + [ + 10.1126956, + 53.714404299, + ], + [ + 10.1124814, + 53.714326599, + ], + [ + 10.1120397, + 53.714249099, + ], + [ + 10.1118634, + 53.714426499, + ], + [ + 10.1103929, + 53.714372399, + ], + [ + 10.1092632, + 53.714253299, + ], + [ + 10.1089642, + 53.714281099, + ], + [ + 10.1089193, + 53.714300399, + ], + [ + 10.1088321, + 53.714336499, + ], + [ + 10.1088305, + 53.714334399, + ], + [ + 10.1020453, + 53.715134399, + ], + [ + 10.1011293, + 53.716698999, + ], + [ + 10.1009728, + 53.716660699, + ], + [ + 10.0988472, + 53.716606699, + ], + [ + 10.0975985, + 53.717419899, + ], + [ + 10.0975375, + 53.717556799, + ], + [ + 10.0969116, + 53.717957799, + ], + [ + 10.0966716, + 53.718174799, + ], + [ + 10.0963497, + 53.718384699, + ], + [ + 10.0952828, + 53.718953699, + ], + [ + 10.094176, + 53.719319599, + ], + [ + 10.093914, + 53.719361599, + ], + [ + 10.0869461, + 53.720002499, + ], + [ + 10.0867446, + 53.719999799, + ], + [ + 10.0819849, + 53.720444399, + ], + [ + 10.0764508, + 53.713759199, + ], + [ + 10.076875, + 53.713709499, + ], + [ + 10.0738468, + 53.711840199, + ], + [ + 10.0736315, + 53.711916899, + ], + [ + 10.0735247, + 53.711840699, + ], + [ + 10.0735125, + 53.711900899, + ], + [ + 10.073235, + 53.712011499, + ], + [ + 10.0705346, + 53.712363099, + ], + [ + 10.0692406, + 53.710939399, + ], + [ + 10.0706504, + 53.710088299, + ], + [ + 10.0705515, + 53.710019999, + ], + [ + 10.0707289, + 53.709937599, + ], + [ + 10.0711878, + 53.710230499, + ], + [ + 10.0729426, + 53.709722999, + ], + [ + 10.0712738, + 53.708336999, + ], + [ + 10.0693821, + 53.706146599, + ], + [ + 10.0733964, + 53.705205099, + ], + [ + 10.075924, + 53.704614199, + ], + [ + 10.0789872, + 53.703904299, + ], + [ + 10.076678, + 53.701977099, + ], + [ + 10.0765753, + 53.701566099, + ], + [ + 10.0760939, + 53.700793699, + ], + [ + 10.076434, + 53.700413699, + ], + [ + 10.0774659, + 53.699417799, + ], + [ + 10.0758641, + 53.699269799, + ], + [ + 10.0755652, + 53.699219799, + ], + [ + 10.0753852, + 53.699040799, + ], + [ + 10.0750773, + 53.698952799, + ], + [ + 10.0734155, + 53.698769799, + ], + [ + 10.0731376, + 53.698612899, + ], + [ + 10.0728446, + 53.698292899, + ], + [ + 10.0723057, + 53.697704999, + ], + [ + 10.0719668, + 53.697453999, + ], + [ + 10.0713435, + 53.696957299, + ], + [ + 10.0712319, + 53.696794099, + ], + [ + 10.0709998, + 53.695849799, + ], + [ + 10.0697701, + 53.696424099, + ], + [ + 10.0688633, + 53.694886299, + ], + [ + 10.0680734, + 53.694898299, + ], + [ + 10.0675835, + 53.693776399, + ], + [ + 10.0676355, + 53.692662499, + ], + [ + 10.0664107, + 53.690777699, + ], + [ + 10.0657898, + 53.690762699, + ], + [ + 10.0658018, + 53.690415699, + ], + [ + 10.0658502, + 53.688973899, + ], + [ + 10.0645746, + 53.688743699, + ], + [ + 10.0640765, + 53.688655999, + ], + [ + 10.0603779, + 53.688308799, + ], + [ + 10.0603914, + 53.688223499, + ], + [ + 10.0607087, + 53.688254599, + ], + [ + 10.0610746, + 53.687276099, + ], + [ + 10.0611626, + 53.687016099, + ], + [ + 10.0616321, + 53.686090299, + ], + [ + 10.0634443, + 53.686037399, + ], + [ + 10.065214, + 53.685944199, + ], + [ + 10.065742, + 53.685928599, + ], + [ + 10.0667232, + 53.685902599, + ], + [ + 10.0667905, + 53.685549999, + ], + [ + 10.067135, + 53.685241499, + ], + [ + 10.0658868, + 53.684972799, + ], + [ + 10.0666541, + 53.683729099, + ], + [ + 10.0667204, + 53.683564099, + ], + [ + 10.0692731, + 53.679525199, + ], + [ + 10.0673404, + 53.679320799, + ], + [ + 10.0644891, + 53.679039699, + ], + [ + 10.0606008, + 53.678638899, + ], + [ + 10.060505, + 53.678610199, + ], + [ + 10.055645, + 53.678156799, + ], + [ + 10.053161, + 53.677865299, + ], + [ + 10.0517108, + 53.677714499, + ], + [ + 10.0514861, + 53.677698099, + ], + [ + 10.0468835, + 53.680143199, + ], + [ + 10.046563, + 53.680314299, + ], + [ + 10.0434538, + 53.681981799, + ], + [ + 10.0426075, + 53.681972599, + ], + [ + 10.0315624, + 53.681740199, + ], + [ + 10.0293842, + 53.681690599, + ], + [ + 10.0246033, + 53.681606599, + ], + [ + 10.0174223, + 53.681458999, + ], + [ + 10.006223, + 53.681228699, + ], + [ + 10.0049869, + 53.681191499, + ], + [ + 10.004788, + 53.681175399, + ], + [ + 10.0046859, + 53.681166599, + ], + [ + 10.0040853, + 53.681070599, + ], + [ + 10.0030912, + 53.680932999, + ], + [ + 10.00287, + 53.680949999, + ], + [ + 10.0014732, + 53.681075899, + ], + [ + 10.000995, + 53.681118699, + ], + [ + 10.0002817, + 53.681402199, + ], + [ + 9.9996163, + 53.681517799, + ], + [ + 9.9990876, + 53.681222799, + ], + [ + 9.998449, + 53.680866399, + ], + [ + 9.9982797, + 53.680766099, + ], + [ + 9.997991, + 53.680601099, + ], + [ + 9.9977334, + 53.680460599, + ], + [ + 9.997729, + 53.680458199, + ], + [ + 9.9974925, + 53.680309699, + ], + [ + 9.9972762, + 53.680141299, + ], + [ + 9.9970081, + 53.679936499, + ], + [ + 9.996808, + 53.679780199, + ], + [ + 9.9966808, + 53.679676599, + ], + [ + 9.9964878, + 53.679535599, + ], + [ + 9.9946241, + 53.678055799, + ], + [ + 9.9934363, + 53.677166899, + ], + [ + 9.9924445, + 53.676392999, + ], + [ + 9.9923885, + 53.675221099, + ], + [ + 9.9923415, + 53.674970099, + ], + [ + 9.9919316, + 53.674069199, + ], + [ + 9.9916937, + 53.673577299, + ], + [ + 9.9913677, + 53.672856399, + ], + [ + 9.9912567, + 53.672608399, + ], + [ + 9.990095, + 53.670079699, + ], + [ + 9.989722, + 53.669365799, + ], + [ + 9.990092, + 53.668606899, + ], + [ + 9.9911149, + 53.666554099, + ], + [ + 9.9909492, + 53.665996199, + ], + [ + 9.990565, + 53.664716299, + ], + [ + 9.9908669, + 53.663590399, + ], + [ + 9.9909823, + 53.663104499, + ], + [ + 9.9912809, + 53.662041599, + ], + [ + 9.9915469, + 53.661045699, + ], + [ + 9.9915015, + 53.660606199, + ], + [ + 9.9912053, + 53.658261199, + ], + [ + 9.9911057, + 53.658093299, + ], + [ + 9.9869996, + 53.655385299, + ], + [ + 9.9873682, + 53.650716099, + ], + [ + 9.9874806, + 53.649345999, + ], + [ + 9.9874716, + 53.649223999, + ], + [ + 9.9873516, + 53.649061199, + ], + [ + 9.9858091, + 53.648237499, + ], + [ + 9.9854127, + 53.648364499, + ], + [ + 9.9852303, + 53.648336799, + ], + [ + 9.9849932, + 53.648326299, + ], + [ + 9.9848523, + 53.648432399, + ], + [ + 9.9846051, + 53.648496099, + ], + [ + 9.9834556, + 53.648656999, + ], + [ + 9.9822763, + 53.648864699, + ], + [ + 9.9822515, + 53.649151399, + ], + [ + 9.9805642, + 53.649164099, + ], + [ + 9.9790686, + 53.648791399, + ], + [ + 9.9787291, + 53.648673599, + ], + [ + 9.9785308, + 53.648665399, + ], + [ + 9.9779414, + 53.648872499, + ], + [ + 9.977887, + 53.649116399, + ], + [ + 9.9762775, + 53.649721399, + ], + [ + 9.9759127, + 53.649860499, + ], + [ + 9.9736549, + 53.648124099, + ], + [ + 9.9690877, + 53.650297799, + ], + [ + 9.9689573, + 53.650345399, + ], + [ + 9.967469, + 53.649674599, + ], + [ + 9.9654919, + 53.648619999, + ], + [ + 9.9650289, + 53.648751399, + ], + [ + 9.9645204, + 53.649040999, + ], + [ + 9.9644799, + 53.649379299, + ], + [ + 9.9644044, + 53.649388399, + ], + [ + 9.9642105, + 53.649510999, + ], + [ + 9.9639363, + 53.649510899, + ], + [ + 9.9636914, + 53.649910799, + ], + [ + 9.9633791, + 53.650049099, + ], + [ + 9.9632212, + 53.650041999, + ], + [ + 9.9630222, + 53.650073699, + ], + [ + 9.9628501, + 53.650057099, + ], + [ + 9.9626619, + 53.649989399, + ], + [ + 9.9609358, + 53.649602799, + ], + [ + 9.9594619, + 53.649813799, + ], + [ + 9.9580656, + 53.650453699, + ], + [ + 9.9577573, + 53.650503699, + ], + [ + 9.9560637, + 53.650691799, + ], + [ + 9.9548006, + 53.650832799, + ], + [ + 9.9531933, + 53.651473599, + ], + [ + 9.9529425, + 53.651571899, + ], + [ + 9.9519505, + 53.650751199, + ], + [ + 9.9516763, + 53.650564099, + ], + [ + 9.9515853, + 53.650549299, + ], + [ + 9.9502693, + 53.650837799, + ], + [ + 9.9501171, + 53.650793999, + ], + [ + 9.9499627, + 53.650754999, + ], + [ + 9.9497254, + 53.650758999, + ], + [ + 9.9488417, + 53.651028599, + ], + [ + 9.9481358, + 53.651261599, + ], + [ + 9.947963, + 53.651316099, + ], + [ + 9.9478348, + 53.651356599, + ], + [ + 9.9470133, + 53.651791499, + ], + [ + 9.9455012, + 53.652749799, + ], + [ + 9.9453111, + 53.652865599, + ], + [ + 9.9431278, + 53.652727699, + ], + [ + 9.9374734, + 53.652322399, + ], + [ + 9.9365964, + 53.653260199, + ], + [ + 9.9352648, + 53.652022099, + ], + [ + 9.933678, + 53.652512399, + ], + [ + 9.9332356, + 53.652668099, + ], + [ + 9.9327652, + 53.652753399, + ], + [ + 9.9324916, + 53.652805999, + ], + [ + 9.932247, + 53.652778099, + ], + [ + 9.9316054, + 53.652653399, + ], + [ + 9.9314134, + 53.652638399, + ], + [ + 9.9312043, + 53.652652999, + ], + [ + 9.930957, + 53.652657499, + ], + [ + 9.9308112, + 53.652699699, + ], + [ + 9.9306697, + 53.652899799, + ], + [ + 9.9303935, + 53.653025799, + ], + [ + 9.9302665, + 53.653102199, + ], + [ + 9.9300766, + 53.653287299, + ], + [ + 9.9252064, + 53.653062899, + ], + [ + 9.9230879, + 53.653669199, + ], + [ + 9.9216778, + 53.654112399, + ], + [ + 9.921975, + 53.654385199, + ], + [ + 9.921089, + 53.654733099, + ], + [ + 9.9210304, + 53.654766799, + ], + [ + 9.921513, + 53.655206699, + ], + [ + 9.921029, + 53.655521499, + ], + [ + 9.9209425, + 53.655510499, + ], + [ + 9.9207311, + 53.655508999, + ], + [ + 9.9206443, + 53.655400799, + ], + [ + 9.9205003, + 53.655309899, + ], + [ + 9.9205447, + 53.655234999, + ], + [ + 9.920156, + 53.655034199, + ], + [ + 9.9196852, + 53.654880099, + ], + [ + 9.9195703, + 53.654790599, + ], + [ + 9.9192362, + 53.654726799, + ], + [ + 9.9188365, + 53.654561199, + ], + [ + 9.9185539, + 53.654583399, + ], + [ + 9.9181495, + 53.654510999, + ], + [ + 9.9177834, + 53.654337599, + ], + [ + 9.9175417, + 53.654144899, + ], + [ + 9.9173236, + 53.654187099, + ], + [ + 9.9172466, + 53.654214099, + ], + [ + 9.9171486, + 53.654302599, + ], + [ + 9.9167468, + 53.654353299, + ], + [ + 9.9163182, + 53.654528899, + ], + [ + 9.9151858, + 53.654829599, + ], + [ + 9.9147637, + 53.654853199, + ], + [ + 9.9147405, + 53.654583199, + ], + [ + 9.9145811, + 53.654178199, + ], + [ + 9.914549, + 53.654000099, + ], + [ + 9.914528, + 53.653691199, + ], + [ + 9.914494, + 53.653491999, + ], + [ + 9.914627, + 53.653324799, + ], + [ + 9.9142946, + 53.653160699, + ], + [ + 9.9140399, + 53.653084999, + ], + [ + 9.9138543, + 53.653043999, + ], + [ + 9.9135029, + 53.652994599, + ], + [ + 9.9132549, + 53.652941299, + ], + [ + 9.912748, + 53.652826599, + ], + [ + 9.9123395, + 53.652896599, + ], + [ + 9.9122509, + 53.652828699, + ], + [ + 9.9119758, + 53.652774699, + ], + [ + 9.9117917, + 53.652686999, + ], + [ + 9.911519, + 53.652679999, + ], + [ + 9.9111669, + 53.652607399, + ], + [ + 9.9109912, + 53.652608699, + ], + [ + 9.9108275, + 53.652566499, + ], + [ + 9.9106336, + 53.652661399, + ], + [ + 9.9105117, + 53.652641399, + ], + [ + 9.9103519, + 53.652568599, + ], + [ + 9.9101911, + 53.652574499, + ], + [ + 9.9096337, + 53.652707999, + ], + [ + 9.9096754, + 53.652818399, + ], + [ + 9.9094926, + 53.652906399, + ], + [ + 9.9092374, + 53.652961399, + ], + [ + 9.908624, + 53.652826199, + ], + [ + 9.9079921, + 53.652755199, + ], + [ + 9.9077047, + 53.652717999, + ], + [ + 9.9071044, + 53.652541899, + ], + [ + 9.9068779, + 53.652484399, + ], + [ + 9.906888, + 53.652466199, + ], + [ + 9.9068155, + 53.652399899, + ], + [ + 9.9071001, + 53.652017099, + ], + [ + 9.907147, + 53.651860399, + ], + [ + 9.9071007, + 53.650898099, + ], + [ + 9.9064065, + 53.650835199, + ], + [ + 9.9063155, + 53.650638999, + ], + [ + 9.9061696, + 53.650401699, + ], + [ + 9.906051, + 53.650278499, + ], + [ + 9.9060292, + 53.650093099, + ], + [ + 9.9058461, + 53.649775199, + ], + [ + 9.9057647, + 53.649141799, + ], + [ + 9.9056505, + 53.649108899, + ], + [ + 9.9051588, + 53.647222499, + ], + [ + 9.9052376, + 53.647215299, + ], + [ + 9.9045089, + 53.646427599, + ], + [ + 9.9050107, + 53.646375499, + ], + [ + 9.9060816, + 53.645150599, + ], + [ + 9.9055594, + 53.645034499, + ], + [ + 9.9056577, + 53.644589799, + ], + [ + 9.9057362, + 53.644341899, + ], + [ + 9.905737, + 53.643675199, + ], + [ + 9.9057306, + 53.643236399, + ], + [ + 9.9057274, + 53.642749499, + ], + [ + 9.9057398, + 53.641744699, + ], + [ + 9.8995308, + 53.640087599, + ], + [ + 9.899546, + 53.639989999, + ], + [ + 9.8997465, + 53.639343599, + ], + [ + 9.9000875, + 53.638741799, + ], + [ + 9.9003086, + 53.638323399, + ], + [ + 9.9004564, + 53.638043899, + ], + [ + 9.9005504, + 53.637810899, + ], + [ + 9.9004065, + 53.636555999, + ], + [ + 9.9003827, + 53.636441799, + ], + [ + 9.9004291, + 53.636356899, + ], + [ + 9.900301, + 53.636280399, + ], + [ + 9.8997397, + 53.636062899, + ], + [ + 9.8993922, + 53.635928199, + ], + [ + 9.8975678, + 53.635176999, + ], + [ + 9.8968804, + 53.634905199, + ], + [ + 9.8965665, + 53.632913299, + ], + [ + 9.8965004, + 53.632441599, + ], + [ + 9.8964109, + 53.631151499, + ], + [ + 9.8944932, + 53.630970499, + ], + [ + 9.8934407, + 53.630315799, + ], + [ + 9.8920968, + 53.629561899, + ], + [ + 9.8885625, + 53.627636699, + ], + [ + 9.8878512, + 53.627243599, + ], + [ + 9.8876935, + 53.627068199, + ], + [ + 9.8873056, + 53.626590899, + ], + [ + 9.8861829, + 53.625209099, + ], + [ + 9.885967, + 53.624955999, + ], + [ + 9.8889157, + 53.623055699, + ], + [ + 9.8891982, + 53.622869199, + ], + [ + 9.8851452, + 53.622031899, + ], + [ + 9.8850364, + 53.621970899, + ], + [ + 9.8849942, + 53.621947199, + ], + [ + 9.8847305, + 53.621808199, + ], + [ + 9.8819736, + 53.620425199, + ], + [ + 9.8818213, + 53.620554199, + ], + [ + 9.8808944, + 53.620359699, + ], + [ + 9.8792342, + 53.619752499, + ], + [ + 9.8780215, + 53.619055399, + ], + [ + 9.8766133, + 53.618236199, + ], + [ + 9.8746106, + 53.617068299, + ], + [ + 9.8737394, + 53.616573699, + ], + [ + 9.8736259, + 53.616497499, + ], + [ + 9.872956, + 53.616052499, + ], + [ + 9.8716459, + 53.615173599, + ], + [ + 9.8712611, + 53.614921299, + ], + [ + 9.8693003, + 53.613611599, + ], + [ + 9.8691962, + 53.613251399, + ], + [ + 9.8681548, + 53.609298599, + ], + [ + 9.8675172, + 53.609094699, + ], + [ + 9.864537, + 53.608148299, + ], + [ + 9.8625989, + 53.607502599, + ], + [ + 9.8617222, + 53.607219299, + ], + [ + 9.8614795, + 53.606643999, + ], + [ + 9.8610947, + 53.605769499, + ], + [ + 9.8607647, + 53.605010199, + ], + [ + 9.8591821, + 53.603679999, + ], + [ + 9.8591502, + 53.603651599, + ], + [ + 9.8576528, + 53.602317999, + ], + [ + 9.8578718, + 53.599371999, + ], + [ + 9.85685, + 53.599083799, + ], + [ + 9.8560392, + 53.598857399, + ], + [ + 9.8550546, + 53.598567699, + ], + [ + 9.8548265, + 53.598599499, + ], + [ + 9.8548079, + 53.598506599, + ], + [ + 9.8545243, + 53.598423899, + ], + [ + 9.8544885, + 53.598333299, + ], + [ + 9.8543252, + 53.598356799, + ], + [ + 9.8542444, + 53.598257899, + ], + [ + 9.854043, + 53.598126899, + ], + [ + 9.8529588, + 53.597424599, + ], + [ + 9.8490225, + 53.597797699, + ], + [ + 9.849296, + 53.597384199, + ], + [ + 9.8480265, + 53.597130299, + ], + [ + 9.8456953, + 53.596692999, + ], + [ + 9.8445295, + 53.596486399, + ], + [ + 9.8448244, + 53.595669299, + ], + [ + 9.8451016, + 53.594965999, + ], + [ + 9.8428249, + 53.594995799, + ], + [ + 9.8423891, + 53.595018899, + ], + [ + 9.8422678, + 53.594996999, + ], + [ + 9.8414063, + 53.595034699, + ], + [ + 9.8414166, + 53.595005699, + ], + [ + 9.8396477, + 53.595035099, + ], + [ + 9.839688, + 53.594738299, + ], + [ + 9.8393339, + 53.593946299, + ], + [ + 9.8393586, + 53.593819599, + ], + [ + 9.8396595, + 53.593689599, + ], + [ + 9.8399295, + 53.593347599, + ], + [ + 9.8400381, + 53.592985699, + ], + [ + 9.8399734, + 53.592803299, + ], + [ + 9.8396461, + 53.592487299, + ], + [ + 9.8395844, + 53.592481799, + ], + [ + 9.8390737, + 53.592614099, + ], + [ + 9.8387597, + 53.592545699, + ], + [ + 9.8380032, + 53.592077599, + ], + [ + 9.83787, + 53.592017799, + ], + [ + 9.837811, + 53.592005299, + ], + [ + 9.8376909, + 53.591990999, + ], + [ + 9.8376031, + 53.592062299, + ], + [ + 9.8374884, + 53.592089699, + ], + [ + 9.8373738, + 53.592095099, + ], + [ + 9.8373487, + 53.592142199, + ], + [ + 9.8370893, + 53.592030999, + ], + [ + 9.8369892, + 53.591700499, + ], + [ + 9.8369152, + 53.591507399, + ], + [ + 9.8366488, + 53.591133999, + ], + [ + 9.836707, + 53.591129299, + ], + [ + 9.8361071, + 53.590134999, + ], + [ + 9.8360764, + 53.589772099, + ], + [ + 9.8367667, + 53.589342399, + ], + [ + 9.836834, + 53.589260099, + ], + [ + 9.8368981, + 53.588723099, + ], + [ + 9.8368029, + 53.588583799, + ], + [ + 9.8367787, + 53.588489899, + ], + [ + 9.8368458, + 53.588371299, + ], + [ + 9.8368454, + 53.587955599, + ], + [ + 9.8367895, + 53.587791699, + ], + [ + 9.8366512, + 53.587677199, + ], + [ + 9.8363224, + 53.587562599, + ], + [ + 9.8355022, + 53.587335399, + ], + [ + 9.8349744, + 53.587263499, + ], + [ + 9.834468, + 53.587323599, + ], + [ + 9.833931, + 53.587282599, + ], + [ + 9.8336266, + 53.587227699, + ], + [ + 9.8331682, + 53.587090099, + ], + [ + 9.8329083, + 53.586980699, + ], + [ + 9.8328165, + 53.586897199, + ], + [ + 9.8326228, + 53.586721099, + ], + [ + 9.8323706, + 53.586583599, + ], + [ + 9.8311861, + 53.586182499, + ], + [ + 9.8311615, + 53.586173899, + ], + [ + 9.8306311, + 53.585988999, + ], + [ + 9.8296862, + 53.585648499, + ], + [ + 9.8292772, + 53.585549499, + ], + [ + 9.8289347, + 53.585458299, + ], + [ + 9.8286002, + 53.585403799, + ], + [ + 9.8274892, + 53.585325999, + ], + [ + 9.8271829, + 53.585283099, + ], + [ + 9.8260527, + 53.585124699, + ], + [ + 9.8259475, + 53.585084599, + ], + [ + 9.8257268, + 53.585000499, + ], + [ + 9.8254108, + 53.584843699, + ], + [ + 9.8251335, + 53.584611499, + ], + [ + 9.8249785, + 53.584454399, + ], + [ + 9.8249323, + 53.584303899, + ], + [ + 9.8248382, + 53.584231399, + ], + [ + 9.8245427, + 53.584190299, + ], + [ + 9.8241351, + 53.584204099, + ], + [ + 9.8238005, + 53.584242599, + ], + [ + 9.8234487, + 53.584285599, + ], + [ + 9.8230572, + 53.584418399, + ], + [ + 9.8223697, + 53.584561399, + ], + [ + 9.8222515, + 53.584548599, + ], + [ + 9.821634, + 53.584716899, + ], + [ + 9.8215791, + 53.584741199, + ], + [ + 9.8210916, + 53.584971099, + ], + [ + 9.8211364, + 53.585084199, + ], + [ + 9.8197148, + 53.585501899, + ], + [ + 9.8182587, + 53.585888999, + ], + [ + 9.8182011, + 53.585900499, + ], + [ + 9.8158319, + 53.586474099, + ], + [ + 9.8075899, + 53.591564899, + ], + [ + 9.8073608, + 53.591699899, + ], + [ + 9.8068227, + 53.592176099, + ], + [ + 9.8067117, + 53.592287399, + ], + [ + 9.8067082, + 53.592345899, + ], + [ + 9.8066172, + 53.592435099, + ], + [ + 9.8067385, + 53.592499199, + ], + [ + 9.8067381, + 53.592541799, + ], + [ + 9.8067375, + 53.592608299, + ], + [ + 9.8066863, + 53.592618199, + ], + [ + 9.8060025, + 53.592867999, + ], + [ + 9.8046753, + 53.593736999, + ], + [ + 9.8045187, + 53.593574499, + ], + [ + 9.8043556, + 53.593522999, + ], + [ + 9.8041614, + 53.593411299, + ], + [ + 9.8038725, + 53.593305299, + ], + [ + 9.8037474, + 53.593305399, + ], + [ + 9.8037193, + 53.593292999, + ], + [ + 9.8035426, + 53.593315399, + ], + [ + 9.8029939, + 53.593651999, + ], + [ + 9.8029032, + 53.593671599, + ], + [ + 9.8024916, + 53.594111799, + ], + [ + 9.802318, + 53.594119999, + ], + [ + 9.8013835, + 53.594915399, + ], + [ + 9.7986152, + 53.595903499, + ], + [ + 9.7976534, + 53.596037699, + ], + [ + 9.7975163, + 53.596056799, + ], + [ + 9.7975349, + 53.596308099, + ], + [ + 9.7974656, + 53.596743299, + ], + [ + 9.797279, + 53.596834099, + ], + [ + 9.7963935, + 53.597478199, + ], + [ + 9.7937227, + 53.599389899, + ], + [ + 9.7925573, + 53.600229599, + ], + [ + 9.7913232, + 53.601265299, + ], + [ + 9.7905496, + 53.602532199, + ], + [ + 9.7897061, + 53.603973799, + ], + [ + 9.7897465, + 53.603977999, + ], + [ + 9.7921768, + 53.604291799, + ], + [ + 9.7921912, + 53.604898999, + ], + [ + 9.7955679, + 53.605346999, + ], + [ + 9.7971689, + 53.605646399, + ], + [ + 9.7989204, + 53.607805899, + ], + [ + 9.7990198, + 53.607928399, + ], + [ + 9.7977313, + 53.609119999, + ], + [ + 9.7962617, + 53.610323299, + ], + [ + 9.7912245, + 53.608630699, + ], + [ + 9.7903145, + 53.609261499, + ], + [ + 9.790057, + 53.609516099, + ], + [ + 9.7890786, + 53.610466599, + ], + [ + 9.7888949, + 53.610718699, + ], + [ + 9.7888616, + 53.611164499, + ], + [ + 9.7862062, + 53.611410299, + ], + [ + 9.7861564, + 53.611378499, + ], + [ + 9.7806217, + 53.613114399, + ], + [ + 9.7779896, + 53.613925599, + ], + [ + 9.7705486, + 53.616031199, + ], + [ + 9.7685244, + 53.622574999, + ], + [ + 9.7692891, + 53.624848799, + ], + [ + 9.7698697, + 53.626648499, + ], + [ + 9.7700684, + 53.627264299, + ], + [ + 9.7701788, + 53.627606499, + ], + [ + 9.7714044, + 53.631375699, + ], + [ + 9.7713333, + 53.631389999, + ], + [ + 9.7712678, + 53.631404599, + ], + [ + 9.7700505, + 53.627610699, + ], + [ + 9.7679873, + 53.627526499, + ], + [ + 9.7648944, + 53.627425999, + ], + [ + 9.7637478, + 53.627388799, + ], + [ + 9.7635574, + 53.624906199, + ], + [ + 9.7600448, + 53.624283799, + ], + [ + 9.7592477, + 53.622181999, + ], + [ + 9.7588819, + 53.621201699, + ], + [ + 9.7586238, + 53.620410299, + ], + [ + 9.7579348, + 53.618262099, + ], + [ + 9.757553, + 53.617056999, + ], + [ + 9.7574041, + 53.616856599, + ], + [ + 9.7566391, + 53.615978999, + ], + [ + 9.7559882, + 53.616071699, + ], + [ + 9.7558764, + 53.616051699, + ], + [ + 9.7549321, + 53.614715299, + ], + [ + 9.754819, + 53.614741399, + ], + [ + 9.7535935, + 53.612953099, + ], + [ + 9.7537208, + 53.612912799, + ], + [ + 9.7537565, + 53.612856699, + ], + [ + 9.7548636, + 53.612474099, + ], + [ + 9.7563118, + 53.612020299, + ], + [ + 9.7562614, + 53.611969099, + ], + [ + 9.7592222, + 53.611007599, + ], + [ + 9.7591988, + 53.610963099, + ], + [ + 9.7575942, + 53.607354699, + ], + [ + 9.7574282, + 53.607006699, + ], + [ + 9.7568003, + 53.605713899, + ], + [ + 9.7556645, + 53.603303199, + ], + [ + 9.7554345, + 53.602665399, + ], + [ + 9.7540798, + 53.602876199, + ], + [ + 9.752751, + 53.603105199, + ], + [ + 9.749693, + 53.603626199, + ], + [ + 9.7483308, + 53.603855799, + ], + [ + 9.7480222, + 53.603176299, + ], + [ + 9.747887, + 53.602878399, + ], + [ + 9.7477968, + 53.602684599, + ], + [ + 9.7473999, + 53.601831799, + ], + [ + 9.7451376, + 53.599643699, + ], + [ + 9.7438333, + 53.598145099, + ], + [ + 9.7436113, + 53.596858199, + ], + [ + 9.7436785, + 53.596795299, + ], + [ + 9.7438132, + 53.596300699, + ], + [ + 9.7441228, + 53.595163899, + ], + [ + 9.7441827, + 53.594944199, + ], + [ + 9.7445595, + 53.594614299, + ], + [ + 9.7447536, + 53.594595799, + ], + [ + 9.7449559, + 53.594363299, + ], + [ + 9.7464699, + 53.592623299, + ], + [ + 9.7459726, + 53.591179899, + ], + [ + 9.7459621, + 53.591149399, + ], + [ + 9.7458275, + 53.590758699, + ], + [ + 9.745572, + 53.590016999, + ], + [ + 9.7454776, + 53.589750099, + ], + [ + 9.7454551, + 53.589684599, + ], + [ + 9.7454051, + 53.589538499, + ], + [ + 9.745343, + 53.589357499, + ], + [ + 9.7454037, + 53.589203999, + ], + [ + 9.7455232, + 53.589080499, + ], + [ + 9.7455993, + 53.588983899, + ], + [ + 9.7453072, + 53.588959299, + ], + [ + 9.7449965, + 53.588968199, + ], + [ + 9.7447098, + 53.588983399, + ], + [ + 9.7444691, + 53.588992199, + ], + [ + 9.7444384, + 53.588993599, + ], + [ + 9.7444064, + 53.588998099, + ], + [ + 9.7443777, + 53.589007499, + ], + [ + 9.7443571, + 53.589022399, + ], + [ + 9.7443197, + 53.589107899, + ], + [ + 9.7442869, + 53.589162799, + ], + [ + 9.7442631, + 53.589182999, + ], + [ + 9.7442459, + 53.589192399, + ], + [ + 9.7442219, + 53.589198499, + ], + [ + 9.7442068, + 53.589201499, + ], + [ + 9.744185, + 53.589202099, + ], + [ + 9.7441294, + 53.589198499, + ], + [ + 9.7440289, + 53.589191399, + ], + [ + 9.7438443, + 53.589168999, + ], + [ + 9.7437589, + 53.589158599, + ], + [ + 9.7437134, + 53.589154199, + ], + [ + 9.74368, + 53.589154399, + ], + [ + 9.7436606, + 53.589157599, + ], + [ + 9.7436439, + 53.589162499, + ], + [ + 9.7435858, + 53.589196499, + ], + [ + 9.7434979, + 53.589253299, + ], + [ + 9.7434555, + 53.589282799, + ], + [ + 9.7434104, + 53.589309099, + ], + [ + 9.7433814, + 53.589324599, + ], + [ + 9.7433615, + 53.589332399, + ], + [ + 9.7433403, + 53.589336099, + ], + [ + 9.7431426, + 53.589364599, + ], + [ + 9.7431131, + 53.589367499, + ], + [ + 9.7430903, + 53.589367899, + ], + [ + 9.7430461, + 53.589366399, + ], + [ + 9.7428534, + 53.589336499, + ], + [ + 9.7428231, + 53.589331799, + ], + [ + 9.7425062, + 53.589023699, + ], + [ + 9.7422141, + 53.588526699, + ], + [ + 9.7420767, + 53.588368499, + ], + [ + 9.7381017, + 53.585457899, + ], + [ + 9.7377564, + 53.585189899, + ], + [ + 9.7376715, + 53.585132099, + ], + [ + 9.7354003, + 53.583477599, + ], + [ + 9.7351681, + 53.583249499, + ], + [ + 9.7345486, + 53.582559299, + ], + [ + 9.7354726, + 53.582120599, + ], + [ + 9.736369, + 53.581572099, + ], + [ + 9.7374484, + 53.579869799, + ], + [ + 9.7391328, + 53.580048499, + ], + [ + 9.7390317, + 53.581195699, + ], + [ + 9.7403539, + 53.581272999, + ], + [ + 9.7414153, + 53.579567899, + ], + [ + 9.7425212, + 53.577976499, + ], + [ + 9.7406697, + 53.577919999, + ], + [ + 9.7401526, + 53.577882999, + ], + [ + 9.7400115, + 53.577858999, + ], + [ + 9.740054, + 53.577798899, + ], + [ + 9.7392749, + 53.577661199, + ], + [ + 9.738644, + 53.577596399, + ], + [ + 9.7383752, + 53.577581099, + ], + [ + 9.738085, + 53.577586799, + ], + [ + 9.7375015, + 53.577665699, + ], + [ + 9.7369155, + 53.577161599, + ], + [ + 9.7367358, + 53.577170399, + ], + [ + 9.7365487, + 53.576939199, + ], + [ + 9.7363755, + 53.576725299, + ], + [ + 9.7360206, + 53.576277099, + ], + [ + 9.7359898, + 53.575631699, + ], + [ + 9.7369056, + 53.575249499, + ], + [ + 9.7369437, + 53.575230399, + ], + [ + 9.7369581, + 53.575223199, + ], + [ + 9.7365824, + 53.574035599, + ], + [ + 9.7363839, + 53.573408299, + ], + [ + 9.7361088, + 53.572578799, + ], + [ + 9.7352144, + 53.569881599, + ], + [ + 9.7350897, + 53.569783199, + ], + [ + 9.7347775, + 53.568653199, + ], + [ + 9.7347166, + 53.568415499, + ], + [ + 9.7348227, + 53.568268299, + ], + [ + 9.7347792, + 53.567700099, + ], + [ + 9.734776, + 53.567402399, + ], + [ + 9.7348172, + 53.567260699, + ], + [ + 9.7349352, + 53.567265999, + ], + [ + 9.7351076, + 53.566806499, + ], + [ + 9.7352829, + 53.566475299, + ], + [ + 9.7351142, + 53.566442799, + ], + [ + 9.7350389, + 53.566045499, + ], + [ + 9.7349923, + 53.565977199, + ], + [ + 9.7349507, + 53.565900399, + ], + [ + 9.7349347, + 53.565881199, + ], + [ + 9.734817, + 53.565739999, + ], + [ + 9.7347455, + 53.565660299, + ], + [ + 9.7346436, + 53.565462799, + ], + [ + 9.7345814, + 53.565368099, + ], + [ + 9.7344083, + 53.565018399, + ], + [ + 9.7341714, + 53.564645399, + ], + [ + 9.7339804, + 53.564339399, + ], + [ + 9.7331517, + 53.562938199, + ], + [ + 9.7330106, + 53.562699599, + ], + [ + 9.7322737, + 53.561398799, + ], + [ + 9.7301155, + 53.557641999, + ], + ], + [ + [ + 10.1153774, + 53.714664599, + ], + [ + 10.115496, + 53.714710199, + ], + [ + 10.1156694, + 53.714744299, + ], + [ + 10.1158281, + 53.714725599, + ], + [ + 10.1160065, + 53.714656799, + ], + [ + 10.1164602, + 53.714297999, + ], + [ + 10.1165903, + 53.714240299, + ], + [ + 10.1169046, + 53.714197199, + ], + [ + 10.11699, + 53.714133999, + ], + [ + 10.1169816, + 53.714071199, + ], + [ + 10.1168349, + 53.713918599, + ], + [ + 10.1169326, + 53.713853699, + ], + [ + 10.1164962, + 53.713902899, + ], + [ + 10.1161288, + 53.713814699, + ], + [ + 10.1156645, + 53.714215099, + ], + [ + 10.1153982, + 53.714514999, + ], + [ + 10.1153774, + 53.714664599, + ], + ], + ], + [ + [ + [ + 10.168365, + 53.668762599, + ], + [ + 10.1684656, + 53.668444599, + ], + [ + 10.168907, + 53.668254699, + ], + [ + 10.1689284, + 53.668247899, + ], + [ + 10.1689511, + 53.668244199, + ], + [ + 10.1689704, + 53.668241999, + ], + [ + 10.1689938, + 53.668241299, + ], + [ + 10.1690229, + 53.668243499, + ], + [ + 10.1690519, + 53.668248099, + ], + [ + 10.1691129, + 53.668257399, + ], + [ + 10.1695065, + 53.668308899, + ], + [ + 10.1695295, + 53.668315299, + ], + [ + 10.169868, + 53.668409199, + ], + [ + 10.1699398, + 53.668445599, + ], + [ + 10.1702478, + 53.668601699, + ], + [ + 10.1703897, + 53.668669499, + ], + [ + 10.1703943, + 53.668756299, + ], + [ + 10.1702433, + 53.668948699, + ], + [ + 10.1702329, + 53.668956999, + ], + [ + 10.1700419, + 53.669108699, + ], + [ + 10.1698569, + 53.669130099, + ], + [ + 10.1692938, + 53.668970799, + ], + [ + 10.1690729, + 53.668888599, + ], + [ + 10.168851, + 53.668801699, + ], + [ + 10.1688426, + 53.668798299, + ], + [ + 10.168365, + 53.668762599, + ], + ], + ], + ], + }, + }, + 'name': 'Hamburg, Germany', + }, + }, +} diff --git a/app/server.ts b/app/server.ts index 7ee8d6b7aa8205b9be4027f843ca5c788c51e209..c3f674efbd822f6e83e50c9256715364a25a2d13 100644 --- a/app/server.ts +++ b/app/server.ts @@ -1,9 +1,10 @@ -import { createSchema, createYoga } from './deps.ts' import { logger } from './logging.ts' import { fetchEvents, FetchEventsInput, HoliEventsResponse } from './fetch_events.ts' import { fetchEvent, FetchEventInput, HoliEventResponse } from './fetch_event.ts' +import { GeoApiClient } from './providers/geo/GeoApiClient.ts' +import { createSchema, createYoga } from './deps.ts' -const eventsTypeDefs = ` +const SCHEMA = ` type Location { street: String streetNo: String @@ -79,7 +80,7 @@ const validateEventRequestInput = (request: EventRequest): FetchEventInput => { } } -const createResolvers = (_config: ServerConfig) => ({ +const createResolvers = (config: ServerConfig) => ({ Query: { events: ( // deno-lint-ignore no-explicit-any @@ -89,7 +90,7 @@ const createResolvers = (_config: ServerConfig) => ({ // deno-lint-ignore no-unused-vars context: GraphQLContext, ): Promise<HoliEventsResponse> => { - if (_config.fake) { + if (config.fake) { return Promise.resolve({ totalResults: 0, data: [] }) } else { return fetchEvents( @@ -105,7 +106,7 @@ const createResolvers = (_config: ServerConfig) => ({ // deno-lint-ignore no-unused-vars context: GraphQLContext, ): Promise<HoliEventResponse> => { - if (_config.fake) { + if (config.fake) { return Promise.resolve({ data: {} }) } else { return fetchEvent( @@ -117,25 +118,16 @@ const createResolvers = (_config: ServerConfig) => ({ }) export const DEFAULT_PORT = 8006 -export interface ServerConfig { + +export type ServerConfig = { port: number fake: boolean // For local development. If set, the API returns dummy data + imageProxyBaseUrl: string + geoAPIEndpointUrl: string } const isAlive = () => new Response(`${true}`) -export const createGraphQLServer = (config: ServerConfig): GraphQLServer => { - const resolvers = createResolvers(config) - - return createYoga({ - schema: createSchema({ resolvers, typeDefs: eventsTypeDefs }), - graphiql: true, - }) -} - -// deno-lint-ignore no-explicit-any -export type GraphQLServer = any - type GraphQLContext = { request?: { headers: Headers } params?: { @@ -148,14 +140,22 @@ type GraphQLContext = { } export const startServer = (config: ServerConfig): Deno.HttpServer<Deno.NetAddr> => { - const graphQLServer: GraphQLServer = createGraphQLServer(config) + const _ = new GeoApiClient(config.geoAPIEndpointUrl) + + const resolvers = createResolvers(config) + + const gqlServer = createYoga({ + schema: createSchema({ resolvers, typeDefs: SCHEMA }), + graphiql: true, + }) + return Deno.serve({ port: config.port, handler: (req: Request) => { const url = new URL(req.url) const pathname = url.pathname if (pathname.startsWith('/health') || pathname.startsWith('/ready')) return isAlive() - return graphQLServer.handleRequest(req) + return gqlServer.handle(req) }, onListen({ port, hostname }) { logger.info( diff --git a/deno.json b/deno.json index 972875f88f0444468fa144fdd1caa2fe4aab3321..b4c9815c0397ca22ac3d0a4af4a2070d5a322f7c 100644 --- a/deno.json +++ b/deno.json @@ -1,13 +1,9 @@ { "tasks": { - "fmt:check": "deno fmt --check", - "test": "deno test --allow-import --allow-env --allow-net", - "updateDeps": "deno cache --allow-import --lock=deno.lock --lock-write app/deps.ts", - "install": "deno cache --allow-import --reload --lock=deno.lock app/deps.ts", - "cache": "deno cache --allow-import app/main.ts", + "rewriteLockfile": "deno cache --allow-import --lock=deno.lock app/deps.ts", "dev": "deno run --allow-import --allow-net --allow-env --allow-read --lock=deno.lock --cached-only --watch app/main.ts", "start": "deno run --allow-import --allow-net --allow-env --allow-read --lock=deno.lock --cached-only app/main.ts", - "docker": "docker build -t events . && docker run -it --init -p 8001:8001 events", + "docker": "docker build -t events . && docker run -it --init -p 8006:8006 -e GEO_API_ENDPOINT_URL -e IMAGE_PROXY_BASE_URL events", "smoketest": "BASE_URL=http://localhost:8006/graphql k6 run smoketest/main.js" }, "fmt": { diff --git a/deno.lock b/deno.lock index 82b4e23c5879f991814044ef4c95de454a89d092..43e47177f6a1b67c73ec7f727559f0e442b35f06 100644 --- a/deno.lock +++ b/deno.lock @@ -1,19 +1,12 @@ { "version": "4", "specifiers": { - "jsr:@std/assert@*": "1.0.11", "jsr:@std/assert@^1.0.10": "1.0.11", "jsr:@std/assert@^1.0.11": "1.0.11", - "jsr:@std/async@^1.0.9": "1.0.11", - "jsr:@std/data-structures@^1.0.6": "1.0.6", - "jsr:@std/fs@^1.0.9": "1.0.14", "jsr:@std/internal@^1.0.5": "1.0.5", - "jsr:@std/path@^1.0.8": "1.0.8", "jsr:@std/testing@^1.0.9": "1.0.9", - "npm:@graphql-yoga/plugin-response-cache@1.0.0": "1.0.0_graphql@16.8.1_graphql-yoga@3.9.1__graphql@16.8.1__@envelop+core@3.0.6", - "npm:@graphql-yoga/plugin-response-cache@3.3.0": "3.3.0_graphql@16.8.1_graphql-yoga@5.1.1__graphql@16.8.1", - "npm:graphql-yoga@5.0.1": "5.0.1_graphql@16.8.1", - "npm:graphql@16.8.1": "16.8.1" + "npm:graphql-yoga@5.13.2": "5.13.2_graphql@16.10.0", + "npm:graphql@16.10.0": "16.10.0" }, "jsr": { "@std/assert@1.0.11": { @@ -22,343 +15,154 @@ "jsr:@std/internal" ] }, - "@std/async@1.0.11": { - "integrity": "eee0d3405275506638a9c8efaa849cf0d35873120c69b7caa1309c9a9e5b6f85" - }, - "@std/data-structures@1.0.6": { - "integrity": "76a7fd8080c66604c0496220a791860492ab21a04a63a969c0b9a0609bbbb760" - }, - "@std/fs@1.0.14": { - "integrity": "1e84bf0b95fe08f41f1f4aea9717bbf29f45408a56ce073b0114474ce1c9fccf", - "dependencies": [ - "jsr:@std/path" - ] - }, "@std/internal@1.0.5": { "integrity": "54a546004f769c1ac9e025abd15a76b6671ddc9687e2313b67376125650dc7ba" }, - "@std/path@1.0.8": { - "integrity": "548fa456bb6a04d3c1a1e7477986b6cffbce95102d0bb447c67c4ee70e0364be" - }, "@std/testing@1.0.9": { "integrity": "9bdd4ac07cb13e7594ac30e90f6ceef7254ac83a9aeaa089be0008f33aab5cd4", "dependencies": [ "jsr:@std/assert@^1.0.10", - "jsr:@std/async", - "jsr:@std/data-structures", - "jsr:@std/fs", - "jsr:@std/internal", - "jsr:@std/path" + "jsr:@std/internal" ] } }, "npm": { - "@envelop/core@3.0.6": { - "integrity": "sha512-06t1xCPXq6QFN7W1JUEf68aCwYN0OUDNAIoJe7bAqhaoa2vn7NCcuX1VHkJ/OWpmElUgCsRO6RiBbIru1in0Ig==", + "@envelop/core@5.2.3": { + "integrity": "sha512-KfoGlYD/XXQSc3BkM1/k15+JQbkQ4ateHazeZoWl9P71FsLTDXSjGy6j7QqfhpIDSbxNISqhPMfZHYSbDFOofQ==", "dependencies": [ - "@envelop/types@3.0.2", + "@envelop/instrumentation", + "@envelop/types", + "@whatwg-node/promise-helpers", "tslib" ] }, - "@envelop/core@5.0.0": { - "integrity": "sha512-aJdnH/ptv+cvwfvciCBe7TSvccBwo9g0S5f6u35TBVzRVqIGkK03lFlIL+x1cnfZgN9EfR2b1PH2galrT1CdCQ==", + "@envelop/instrumentation@1.0.0": { + "integrity": "sha512-cxgkB66RQB95H3X27jlnxCRNTmPuSTgmBAq6/4n2Dtv4hsk4yz8FadA1ggmd0uZzvKqWD6CR+WFgTjhDqg7eyw==", "dependencies": [ - "@envelop/types@5.0.0", - "tslib" - ] - }, - "@envelop/response-cache@4.0.3_@envelop+core@3.0.6_graphql@16.8.1": { - "integrity": "sha512-5podyYKo2VzGnlPYYTbC6ivOdJ1TbzX2zOunOhVbnSbY2tAKwo+9kkpi7e2hfe4eUbpZTnuh05gpTZXcPPdo+A==", - "dependencies": [ - "@envelop/core@3.0.6", - "@graphql-tools/utils@8.13.1_graphql@16.8.1", - "fast-json-stable-stringify", - "graphql", - "lru-cache@6.0.0", - "tslib" - ] - }, - "@envelop/response-cache@6.1.2_@envelop+core@5.0.0_graphql@16.8.1": { - "integrity": "sha512-vBX6z/TxBZSNReVn69VJVkdGHpGzHyeQNMz9LXobczl55KCZaf2inBWguSdGq+vx6PlB068GhLeg+a7kseiF1Q==", - "dependencies": [ - "@envelop/core@5.0.0", - "@graphql-tools/utils@10.0.13_graphql@16.8.1", - "@whatwg-node/fetch@0.9.16", - "fast-json-stable-stringify", - "graphql", - "lru-cache@10.2.0", + "@whatwg-node/promise-helpers", "tslib" ] }, - "@envelop/types@3.0.2": { - "integrity": "sha512-pOFea9ha0EkURWxJ/35axoH9fDGP5S2cUu/5Mmo9pb8zUf+TaEot8vB670XXihFEn/92759BMjLJNWBKmNhyng==", + "@envelop/types@5.2.1": { + "integrity": "sha512-CsFmA3u3c2QoLDTfEpGr4t25fjMU31nyvse7IzWTvb0ZycuPjMjb0fjlheh+PbhBYb9YLugnT2uY6Mwcg1o+Zg==", "dependencies": [ + "@whatwg-node/promise-helpers", "tslib" ] }, - "@envelop/types@5.0.0": { - "integrity": "sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==", + "@graphql-tools/executor@1.4.6_graphql@16.10.0": { + "integrity": "sha512-vtwuotFe9DR1gZ2VXYRxcL6GVP6dYUHWibA9JNOkdRiwCW/icTY7oU9xUVITnOAfjNh9k8Z43kZmiyr2aMopVA==", "dependencies": [ - "tslib" - ] - }, - "@envelop/validation-cache@5.1.3_@envelop+core@3.0.6_graphql@16.8.1": { - "integrity": "sha512-MkzcScQHJJQ/9YCAPdWShEi3xZv4F4neTs+NszzSrZOdlU8z/THuRt7gZ0sO0y2be+sx+SKjHQP8Gq3VXXcTTg==", - "dependencies": [ - "@envelop/core@3.0.6", - "graphql", - "hash-it", - "lru-cache@6.0.0", - "tslib" - ] - }, - "@graphql-tools/executor@0.0.18_graphql@16.8.1": { - "integrity": "sha512-xZC0C+/npXoSHBB5bsJdwxDLgtl1Gu4fL9J2TPQmXoZC3L2N506KJoppf9LgWdHU/xK04luJrhP6WjhfkIN0pQ==", - "dependencies": [ - "@graphql-tools/utils@9.2.1_graphql@16.8.1", - "@graphql-typed-document-node/core", - "@repeaterjs/repeater@3.0.4", - "graphql", - "tslib", - "value-or-promise" - ] - }, - "@graphql-tools/executor@1.2.0_graphql@16.8.1": { - "integrity": "sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg==", - "dependencies": [ - "@graphql-tools/utils@10.0.13_graphql@16.8.1", + "@graphql-tools/utils", "@graphql-typed-document-node/core", - "@repeaterjs/repeater@3.0.5", - "graphql", - "tslib", - "value-or-promise" - ] - }, - "@graphql-tools/merge@8.4.2_graphql@16.8.1": { - "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", - "dependencies": [ - "@graphql-tools/utils@9.2.1_graphql@16.8.1", + "@repeaterjs/repeater", + "@whatwg-node/disposablestack", + "@whatwg-node/promise-helpers", "graphql", "tslib" ] }, - "@graphql-tools/merge@9.0.1_graphql@16.8.1": { - "integrity": "sha512-hIEExWO9fjA6vzsVjJ3s0cCQ+Q/BEeMVJZtMXd7nbaVefVy0YDyYlEkeoYYNV3NVVvu1G9lr6DM1Qd0DGo9Caw==", + "@graphql-tools/merge@9.0.24_graphql@16.10.0": { + "integrity": "sha512-NzWx/Afl/1qHT3Nm1bghGG2l4jub28AdvtG11PoUlmjcIjnFBJMv4vqL0qnxWe8A82peWo4/TkVdjJRLXwgGEw==", "dependencies": [ - "@graphql-tools/utils@10.0.13_graphql@16.8.1", + "@graphql-tools/utils", "graphql", "tslib" ] }, - "@graphql-tools/schema@10.0.2_graphql@16.8.1": { - "integrity": "sha512-TbPsIZnWyDCLhgPGnDjt4hosiNU2mF/rNtSk5BVaXWnZqvKJ6gzJV4fcHcvhRIwtscDMW2/YTnK6dLVnk8pc4w==", + "@graphql-tools/schema@10.0.23_graphql@16.10.0": { + "integrity": "sha512-aEGVpd1PCuGEwqTXCStpEkmheTHNdMayiIKH1xDWqYp9i8yKv9FRDgkGrY4RD8TNxnf7iII+6KOBGaJ3ygH95A==", "dependencies": [ - "@graphql-tools/merge@9.0.1_graphql@16.8.1", - "@graphql-tools/utils@10.0.13_graphql@16.8.1", + "@graphql-tools/merge", + "@graphql-tools/utils", "graphql", - "tslib", - "value-or-promise" - ] - }, - "@graphql-tools/schema@9.0.19_graphql@16.8.1": { - "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", - "dependencies": [ - "@graphql-tools/merge@8.4.2_graphql@16.8.1", - "@graphql-tools/utils@9.2.1_graphql@16.8.1", - "graphql", - "tslib", - "value-or-promise" + "tslib" ] }, - "@graphql-tools/utils@10.0.13_graphql@16.8.1": { - "integrity": "sha512-fMILwGr5Dm2zefNItjQ6C2rauigklv69LIwppccICuGTnGaOp3DspLt/6Lxj72cbg5d9z60Sr+Egco3CJKLsNg==", + "@graphql-tools/utils@10.8.6_graphql@16.10.0": { + "integrity": "sha512-Alc9Vyg0oOsGhRapfL3xvqh1zV8nKoFUdtLhXX7Ki4nClaIJXckrA86j+uxEuG3ic6j4jlM1nvcWXRn/71AVLQ==", "dependencies": [ "@graphql-typed-document-node/core", + "@whatwg-node/promise-helpers", "cross-inspect", "dset", "graphql", "tslib" ] }, - "@graphql-tools/utils@8.13.1_graphql@16.8.1": { - "integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==", - "dependencies": [ - "graphql", - "tslib" - ] - }, - "@graphql-tools/utils@9.2.1_graphql@16.8.1": { - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": [ - "@graphql-typed-document-node/core", - "graphql", - "tslib" - ] - }, - "@graphql-typed-document-node/core@3.2.0_graphql@16.8.1": { + "@graphql-typed-document-node/core@3.2.0_graphql@16.10.0": { "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", "dependencies": [ "graphql" ] }, - "@graphql-yoga/logger@0.0.1": { - "integrity": "sha512-6npFz7eZz33mXgSm1waBLMjUNG0D5hTc/p5Hcs1mojkT3KsLpCOFokzTEKboNsBhKevYcaVa/xeA7WBj4UYMLg==", - "dependencies": [ - "tslib" - ] - }, - "@graphql-yoga/logger@2.0.0": { - "integrity": "sha512-Mg8psdkAp+YTG1OGmvU+xa6xpsAmSir0hhr3yFYPyLNwzUj95DdIwsMpKadDj9xDpYgJcH3Hp/4JMal9DhQimA==", - "dependencies": [ - "tslib" - ] - }, - "@graphql-yoga/plugin-response-cache@1.0.0_graphql@16.8.1_graphql-yoga@3.9.1__graphql@16.8.1__@envelop+core@3.0.6": { - "integrity": "sha512-8vOWIOFW0B51pCwQAkC+3mfleYraSJSIKKFhxa4eNHArp1PuhKZQkvLq7u6q6E+RehGtnc0ZyNchiYCwGZrf/w==", - "dependencies": [ - "@envelop/response-cache@4.0.3_@envelop+core@3.0.6_graphql@16.8.1", - "graphql", - "graphql-yoga@3.9.1_graphql@16.8.1_@envelop+core@3.0.6" - ] - }, - "@graphql-yoga/plugin-response-cache@3.3.0_graphql@16.8.1_graphql-yoga@5.1.1__graphql@16.8.1": { - "integrity": "sha512-SoVpPqR3tBeSyrdVb81zBGehWgtdeqBxEh2HTuv10jhLCL62nvCrCMfe1DYD6AvRE8DlRfLY/uCn8lwS3CAOwg==", - "dependencies": [ - "@envelop/response-cache@6.1.2_@envelop+core@5.0.0_graphql@16.8.1", - "graphql", - "graphql-yoga@5.1.1_graphql@16.8.1" - ] - }, - "@graphql-yoga/subscription@3.1.0": { - "integrity": "sha512-Vc9lh8KzIHyS3n4jBlCbz7zCjcbtQnOBpsymcRvHhFr2cuH+knmRn0EmzimMQ58jQ8kxoRXXC3KJS3RIxSdPIg==", - "dependencies": [ - "@graphql-yoga/typed-event-target@1.0.0", - "@repeaterjs/repeater@3.0.5", - "@whatwg-node/events@0.0.2", - "tslib" - ] - }, - "@graphql-yoga/subscription@5.0.0": { - "integrity": "sha512-Ri7sK8hmxd/kwaEa0YT8uqQUb2wOLsmBMxI90QDyf96lzOMJRgBuNYoEkU1pSgsgmW2glceZ96sRYfaXqwVxUw==", + "@graphql-yoga/logger@2.0.1": { + "integrity": "sha512-Nv0BoDGLMg9QBKy9cIswQ3/6aKaKjlTh87x3GiBg2Z4RrjyrM48DvOOK0pJh1C1At+b0mUIM67cwZcFTDLN4sA==", "dependencies": [ - "@graphql-yoga/typed-event-target@3.0.0", - "@repeaterjs/repeater@3.0.5", - "@whatwg-node/events@0.1.1", "tslib" ] }, - "@graphql-yoga/typed-event-target@1.0.0": { - "integrity": "sha512-Mqni6AEvl3VbpMtKw+TIjc9qS9a8hKhiAjFtqX488yq5oJtj9TkNlFTIacAVS3vnPiswNsmDiQqvwUOcJgi1DA==", + "@graphql-yoga/subscription@5.0.3": { + "integrity": "sha512-xLGEataxCULjL9rlTCVFL1IW2E90TnDIL+mE4lZBi9X92jc6s+Q+jk6Ax3I98kryCJh0UMiwjit7CaIIczTiJg==", "dependencies": [ - "@repeaterjs/repeater@3.0.5", + "@graphql-yoga/typed-event-target", + "@repeaterjs/repeater", + "@whatwg-node/events", "tslib" ] }, - "@graphql-yoga/typed-event-target@3.0.0": { - "integrity": "sha512-w+liuBySifrstuHbFrHoHAEyVnDFVib+073q8AeAJ/qqJfvFvAwUPLLtNohR/WDVRgSasfXtl3dcNuVJWN+rjg==", + "@graphql-yoga/typed-event-target@3.0.2": { + "integrity": "sha512-ZpJxMqB+Qfe3rp6uszCQoag4nSw42icURnBRfFYSOmTgEeOe4rD0vYlbA8spvCu2TlCesNTlEN9BLWtQqLxabA==", "dependencies": [ - "@repeaterjs/repeater@3.0.5", + "@repeaterjs/repeater", "tslib" ] }, - "@kamilkisiela/fast-url-parser@1.1.4": { - "integrity": "sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==" + "@repeaterjs/repeater@3.0.6": { + "integrity": "sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==" }, - "@peculiar/asn1-schema@2.3.8": { - "integrity": "sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==", + "@whatwg-node/disposablestack@0.0.6": { + "integrity": "sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==", "dependencies": [ - "asn1js", - "pvtsutils", + "@whatwg-node/promise-helpers", "tslib" ] }, - "@peculiar/json-schema@1.1.12": { - "integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==", + "@whatwg-node/events@0.1.2": { + "integrity": "sha512-ApcWxkrs1WmEMS2CaLLFUEem/49erT3sxIVjpzU5f6zmVcnijtDSrhoK2zVobOIikZJdH63jdAXOrvjf6eOUNQ==", "dependencies": [ "tslib" ] }, - "@peculiar/webcrypto@1.4.5": { - "integrity": "sha512-oDk93QCDGdxFRM8382Zdminzs44dg3M2+E5Np+JWkpqLDyJC9DviMh8F8mEJkYuUcUOGA5jHO5AJJ10MFWdbZw==", - "dependencies": [ - "@peculiar/asn1-schema", - "@peculiar/json-schema", - "pvtsutils", - "tslib", - "webcrypto-core" - ] - }, - "@repeaterjs/repeater@3.0.4": { - "integrity": "sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==" - }, - "@repeaterjs/repeater@3.0.5": { - "integrity": "sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==" - }, - "@whatwg-node/events@0.0.2": { - "integrity": "sha512-WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w==" - }, - "@whatwg-node/events@0.0.3": { - "integrity": "sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==" - }, - "@whatwg-node/events@0.1.1": { - "integrity": "sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==" - }, - "@whatwg-node/fetch@0.8.8": { - "integrity": "sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==", - "dependencies": [ - "@peculiar/webcrypto", - "@whatwg-node/node-fetch@0.3.6", - "busboy", - "urlpattern-polyfill@8.0.2", - "web-streams-polyfill" - ] - }, - "@whatwg-node/fetch@0.9.16": { - "integrity": "sha512-mqasZiUNquRe3ea9+aCAuo81BR6vq5opUKprPilIHTnrg8a21Z1T1OrI+KiMFX8OmwO5HUJe/vro47lpj2JPWQ==", + "@whatwg-node/fetch@0.10.5": { + "integrity": "sha512-+yFJU3hmXPAHJULwx0VzCIsvr/H0lvbPvbOH3areOH3NAuCxCwaJsQ8w6/MwwMcvEWIynSsmAxoyaH04KeosPg==", "dependencies": [ - "@whatwg-node/node-fetch@0.5.6", - "urlpattern-polyfill@10.0.0" + "@whatwg-node/node-fetch", + "urlpattern-polyfill" ] }, - "@whatwg-node/node-fetch@0.3.6": { - "integrity": "sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==", + "@whatwg-node/node-fetch@0.7.14": { + "integrity": "sha512-GMCUrFq3gXQSgWMnEBMaQUxh1rd1vi3Kp4MRQT6UKbnRycm4QmUSxp8ZIySxLQ96cpyBvonEH0BYmdQe/pWy8A==", "dependencies": [ - "@whatwg-node/events@0.0.3", + "@whatwg-node/disposablestack", + "@whatwg-node/promise-helpers", "busboy", - "fast-querystring", - "fast-url-parser", "tslib" ] }, - "@whatwg-node/node-fetch@0.5.6": { - "integrity": "sha512-cmAsGMHoI0S3AHi3CmD3ma1Q234ZI2JNmXyDyM9rLtbXejBKxU3ZWdhS+mzRIAyUxZCMGlFW1tHmROv0MDdxpw==", + "@whatwg-node/promise-helpers@1.3.0": { + "integrity": "sha512-486CouizxHXucj8Ky153DDragfkMcHtVEToF5Pn/fInhUUSiCmt9Q4JVBa6UK5q4RammFBtGQ4C9qhGlXU9YbA==", "dependencies": [ - "@kamilkisiela/fast-url-parser", - "@whatwg-node/events@0.1.1", - "busboy", - "fast-querystring", - "tslib" - ] - }, - "@whatwg-node/server@0.7.7": { - "integrity": "sha512-aHURgNDFm/48WVV3vhTMfnEKCYwYgdaRdRhZsQZx4UVFjGGkGay7Ys0+AYu9QT/jpoImv2oONkstoTMUprDofg==", - "dependencies": [ - "@whatwg-node/fetch@0.8.8", - "tslib" - ] - }, - "@whatwg-node/server@0.9.25": { - "integrity": "sha512-DlPqPPcfyzh4/9Lz1fl4c5bZsGp/1wCh7B+cK8FE1bWoW7tlZkVguvGn/XnYPKthGzEIwo/fLdHwevH44z+eeg==", - "dependencies": [ - "@whatwg-node/fetch@0.9.16", "tslib" ] }, - "asn1js@3.0.5": { - "integrity": "sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==", + "@whatwg-node/server@0.10.1": { + "integrity": "sha512-SKZjZAhQe8o34pDHUDFn5PV5Otq/gaj/A6AlQ6Sa4+A12YBO0znKKwfoCwGxv/BSRRx0zUqLdI8fZ0ui+EyUlw==", "dependencies": [ - "pvtsutils", - "pvutils", + "@envelop/instrumentation", + "@whatwg-node/disposablestack", + "@whatwg-node/fetch", + "@whatwg-node/promise-helpers", "tslib" ] }, @@ -368,204 +172,50 @@ "streamsearch" ] }, - "cross-inspect@1.0.0": { - "integrity": "sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==", - "dependencies": [ - "tslib" - ] - }, - "dset@3.1.3": { - "integrity": "sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==" - }, - "fast-decode-uri-component@1.0.1": { - "integrity": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==" - }, - "fast-json-stable-stringify@2.1.0": { - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-querystring@1.1.2": { - "integrity": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==", - "dependencies": [ - "fast-decode-uri-component" - ] - }, - "fast-url-parser@1.1.3": { - "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", + "cross-inspect@1.0.1": { + "integrity": "sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==", "dependencies": [ - "punycode" - ] - }, - "graphql-yoga@3.9.1_graphql@16.8.1_@envelop+core@3.0.6": { - "integrity": "sha512-BB6EkN64VBTXWmf9Kym2OsVZFzBC0mAsQNo9eNB5xIr3t+x7qepQ34xW5A353NWol3Js3xpzxwIKFVF6l9VsPg==", - "dependencies": [ - "@envelop/core@3.0.6", - "@envelop/validation-cache", - "@graphql-tools/executor@0.0.18_graphql@16.8.1", - "@graphql-tools/schema@9.0.19_graphql@16.8.1", - "@graphql-tools/utils@9.2.1_graphql@16.8.1", - "@graphql-yoga/logger@0.0.1", - "@graphql-yoga/subscription@3.1.0", - "@whatwg-node/fetch@0.8.8", - "@whatwg-node/server@0.7.7", - "dset", - "graphql", - "lru-cache@7.18.3", "tslib" ] }, - "graphql-yoga@5.0.1_graphql@16.8.1": { - "integrity": "sha512-tcdJOjEv5am5TOGX6TcKDyLT5azrnZ38Y+WUgnbYSYeYX12AKuEju94Sr1ixACvruQo6EyogfKpUGwtb7LQYCw==", - "dependencies": [ - "@envelop/core@5.0.0", - "@graphql-tools/executor@1.2.0_graphql@16.8.1", - "@graphql-tools/schema@10.0.2_graphql@16.8.1", - "@graphql-tools/utils@10.0.13_graphql@16.8.1", - "@graphql-yoga/logger@2.0.0", - "@graphql-yoga/subscription@5.0.0", - "@whatwg-node/fetch@0.9.16", - "@whatwg-node/server@0.9.25", - "dset", - "graphql", - "lru-cache@10.2.0", - "tslib" - ] + "dset@3.1.4": { + "integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==" }, - "graphql-yoga@5.1.1_graphql@16.8.1": { - "integrity": "sha512-oak5nVKTHpqJgpA1aT3cJPOlCidrW7l6nbc5L6w07VdFul16ielGI2ZnQDAXO+qQih09/4WspD5x0SsSZH+hkg==", + "graphql-yoga@5.13.2_graphql@16.10.0": { + "integrity": "sha512-ZXhIoAPCV2K2ozwpxDL1ZXhhI2SvIp3hJMaSRaHcojLGE9w9iV8oYGPnZKcV5eisF3VE13RcIF4Ys6TTkU338Q==", "dependencies": [ - "@envelop/core@5.0.0", - "@graphql-tools/executor@1.2.0_graphql@16.8.1", - "@graphql-tools/schema@10.0.2_graphql@16.8.1", - "@graphql-tools/utils@10.0.13_graphql@16.8.1", - "@graphql-yoga/logger@2.0.0", - "@graphql-yoga/subscription@5.0.0", - "@whatwg-node/fetch@0.9.16", - "@whatwg-node/server@0.9.25", + "@envelop/core", + "@envelop/instrumentation", + "@graphql-tools/executor", + "@graphql-tools/schema", + "@graphql-tools/utils", + "@graphql-yoga/logger", + "@graphql-yoga/subscription", + "@whatwg-node/fetch", + "@whatwg-node/promise-helpers", + "@whatwg-node/server", "dset", "graphql", - "lru-cache@10.2.0", + "lru-cache", "tslib" ] }, - "graphql@16.8.1": { - "integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==" + "graphql@16.10.0": { + "integrity": "sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==" }, - "hash-it@6.0.0": { - "integrity": "sha512-KHzmSFx1KwyMPw0kXeeUD752q/Kfbzhy6dAZrjXV9kAIXGqzGvv8vhkUqj+2MGZldTo0IBpw6v7iWE7uxsvH0w==" - }, - "lru-cache@10.2.0": { - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" - }, - "lru-cache@6.0.0": { - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": [ - "yallist" - ] - }, - "lru-cache@7.18.3": { - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" - }, - "punycode@1.4.1": { - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" - }, - "pvtsutils@1.3.5": { - "integrity": "sha512-ARvb14YB9Nm2Xi6nBq1ZX6dAM0FsJnuk+31aUp4TrcZEdKUlSqOqsxJHUPJDNE3qiIp+iUPEIeR6Je/tgV7zsA==", - "dependencies": [ - "tslib" - ] - }, - "pvutils@1.1.3": { - "integrity": "sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==" + "lru-cache@10.4.3": { + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" }, "streamsearch@1.1.0": { "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" }, - "tslib@2.6.2": { - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "tslib@2.8.1": { + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "urlpattern-polyfill@10.0.0": { "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==" - }, - "urlpattern-polyfill@8.0.2": { - "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==" - }, - "value-or-promise@1.0.12": { - "integrity": "sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==" - }, - "web-streams-polyfill@3.3.2": { - "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==" - }, - "webcrypto-core@1.7.8": { - "integrity": "sha512-eBR98r9nQXTqXt/yDRtInszPMjTaSAMJAFDg2AHsgrnczawT1asx9YNBX6k5p+MekbPF4+s/UJJrr88zsTqkSg==", - "dependencies": [ - "@peculiar/asn1-schema", - "@peculiar/json-schema", - "asn1js", - "pvtsutils", - "tslib" - ] - }, - "yallist@4.0.0": { - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } }, - "remote": { - "https://deno.land/std@0.155.0/fmt/colors.ts": "ff7dc9c9f33a72bd48bc24b21bbc1b4545d8494a431f17894dbc5fe92a938fc4", - "https://deno.land/std@0.155.0/testing/_diff.ts": "a23e7fc2b4d8daa3e158fa06856bedf5334ce2a2831e8bf9e509717f455adb2c", - "https://deno.land/std@0.155.0/testing/_format.ts": "cd11136e1797791045e639e9f0f4640d5b4166148796cad37e6ef75f7d7f3832", - "https://deno.land/std@0.155.0/testing/_test_suite.ts": "2d07073d5460a4e3ec50c55ae822cd9bd136926d7363091379947fef9c73c3e4", - "https://deno.land/std@0.155.0/testing/asserts.ts": "ac295f7fd22a7af107580e2475402a8c386cb1bf18bf837ae266ac0665786026", - "https://deno.land/std@0.155.0/testing/bdd.ts": "35060cefd9cc21b414f4d89453b3551a3d52ec50aeff25db432503c5485b2f72", - "https://deno.land/std@0.155.0/testing/mock.ts": "d7ad40139cda87476c4dc1efeffe406bbfb4a5f82b688e0b85bffe9e911526a2", - "https://deno.land/std@0.156.0/async/abortable.ts": "87aa7230be8360c24ad437212311c9e8d4328854baec27b4c7abb26e85515c06", - "https://deno.land/std@0.156.0/async/deadline.ts": "48ac998d7564969f3e6ec6b6f9bf0217ebd00239b1b2292feba61272d5dd58d0", - "https://deno.land/std@0.156.0/async/debounce.ts": "de5433bff08a2bb61416fc53b3bd2d5867090c8a815465e5b4a10a77495b1051", - "https://deno.land/std@0.156.0/async/deferred.ts": "c01de44b9192359cebd3fe93273fcebf9e95110bf3360023917da9a2d1489fae", - "https://deno.land/std@0.156.0/async/delay.ts": "0419dfc993752849692d1f9647edf13407c7facc3509b099381be99ffbc9d699", - "https://deno.land/std@0.156.0/async/mod.ts": "dd0a8ed4f3984ffabe2fcca7c9f466b7932d57b1864ffee148a5d5388316db6b", - "https://deno.land/std@0.156.0/async/mux_async_iterator.ts": "3447b28a2a582224a3d4d3596bccbba6e85040da3b97ed64012f7decce98d093", - "https://deno.land/std@0.156.0/async/pool.ts": "ef9eb97b388543acbf0ac32647121e4dbe629236899586c4d4311a8770fbb239", - "https://deno.land/std@0.156.0/async/tee.ts": "d27680d911816fcb3d231e16d690e7588079e66a9b2e5ce8cc354db94fdce95f", - "https://deno.land/std@0.156.0/http/server.ts": "c1bce1cbf4060055f622d5c3f0e406fd553e5dca111ca836d28c6268f170ebeb", - "https://deno.land/std@0.165.0/fmt/colors.ts": "9e36a716611dcd2e4865adea9c4bec916b5c60caad4cdcdc630d4974e6bb8bd4", - "https://deno.land/std@0.165.0/testing/_diff.ts": "a23e7fc2b4d8daa3e158fa06856bedf5334ce2a2831e8bf9e509717f455adb2c", - "https://deno.land/std@0.165.0/testing/_format.ts": "cd11136e1797791045e639e9f0f4640d5b4166148796cad37e6ef75f7d7f3832", - "https://deno.land/std@0.165.0/testing/_test_suite.ts": "2d07073d5460a4e3ec50c55ae822cd9bd136926d7363091379947fef9c73c3e4", - "https://deno.land/std@0.165.0/testing/asserts.ts": "1e340c589853e82e0807629ba31a43c84ebdcdeca910c4a9705715dfdb0f5ce8", - "https://deno.land/std@0.165.0/testing/bdd.ts": "35060cefd9cc21b414f4d89453b3551a3d52ec50aeff25db432503c5485b2f72", - "https://deno.land/std@0.165.0/testing/mock.ts": "d7ad40139cda87476c4dc1efeffe406bbfb4a5f82b688e0b85bffe9e911526a2", - "https://deno.land/std@0.198.0/async/delay.ts": "a6142eb44cdd856b645086af2b811b1fcce08ec06bb7d50969e6a872ee9b8659", - "https://deno.land/std@0.198.0/collections/_comparators.ts": "fa7f9a44cea1d270098a2a5a6f8bb30c61b595c1b1f983bd67c6297d766adffa", - "https://deno.land/std@0.198.0/collections/binary_search_node.ts": "8d99dd95901d73a0edbe105826ef7ce0e1111ce184d2d0410dbfda172c9ebf35", - "https://deno.land/std@0.198.0/collections/binary_search_tree.ts": "c3588493fd3b090453fade1903db19cbe398490db6a40a0574d7abdaa87ba652", - "https://deno.land/std@0.198.0/collections/red_black_node.ts": "eb766a69d82132fc4f1789eb3dc753781da7c3b0938756256be3764c9941e3ac", - "https://deno.land/std@0.198.0/collections/red_black_tree.ts": "e78d2aa89d23410079ad1f26e8bf95f05c84c8f8a9ef9c9ae41b312d7062b861", - "https://deno.land/std@0.198.0/testing/_time.ts": "fecaf6fc7277d240d11b0de2e93b1c93ebbb4a3a61f0cb0b1741f66f69a4d22b", - "https://deno.land/std@0.198.0/testing/time.ts": "a46fbfd61e6f011f15a63c8078399b1f7fa848d2c0c526f253b0535f5c3e7f45", - "https://deno.land/x/html_parser@v0.1.3/src/DomHandler.ts": "5031e2062c95daa5a14fefbf3a54872be944e6ccb3dc75301591333f5607870d", - "https://deno.land/x/html_parser@v0.1.3/src/DomSerializer.ts": "b7248766f7e708716f4c48bf17796a65fe28490efed659c7bdbd62eaffd691b7", - "https://deno.land/x/html_parser@v0.1.3/src/ElementType.ts": "1ebd2f95b3e44dfb76e4700efc0cf33a5b15f09384c227c5da5d35f5af98f55b", - "https://deno.land/x/html_parser@v0.1.3/src/FeedHandler.ts": "44377ed272f63a4b81582fe5523733e0d4d1f1507456d657eaf8dbfaa67d61bb", - "https://deno.land/x/html_parser@v0.1.3/src/Node.ts": "cddecdcf9afc7dedb83cdd8952995dd14a94f272f232be6326e2dea520de83b7", - "https://deno.land/x/html_parser@v0.1.3/src/Parser.ts": "edad95d019e2c4471e8de9df9de0d39772e0e16fb6b35196acae407d6ea64c24", - "https://deno.land/x/html_parser@v0.1.3/src/Tokenizer.ts": "1b063499822abf8f5d265d1642aecfbf56e7862846fc33e03ecc758d87f43da8", - "https://deno.land/x/html_parser@v0.1.3/src/mod.ts": "1209bdc0336244fb77803bba1ef0af4c68208fd03b0d68bc7de59a45e8d501ff", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/decode.ts": "e154124a2453841b25c0de8df98bd9ee3aac4cb7e01348fefd0512cf27aaa88f", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/decode_codepoint.ts": "9e17c1f957824bf0eb5a91615890370c18d7811bdf2eaae1daf41a9a077217eb", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/encode.ts": "1ca9c103ad1aed445f3456176dcf299534b7327a6fa8506718560d92ddee359f", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/decode.ts": "e201c7adbdff8056dac535f7c8ef36daf79bf9fd4bdd1c447225e2cd6d8fd955", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/entities.ts": "84c2f1ef39cecd6fb8a2a20ab998f6d20fbde71254e6b860926d75d9d53192bb", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/legacy.ts": "a665ba8685bf0bfe5e095afcebd0b6d17f49207fc4004c1b6b85c50092aae7d0", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/maps/xml.ts": "4dfd749cb05cdd0c108e9219cc3f73f2de6cf0028fdaa28887c63a6bf352f2cd", - "https://deno.land/x/html_parser@v0.1.3/src/utils/entities/mod.ts": "3f501119cdd84f729e586ac6acac12b8273aa0c1556a67a75b370f5a21c52526", - "https://deno.land/x/html_parser@v0.1.3/src/utils/helpers.ts": "0e01ed4aa92197a13e74fcd00483351fb18682d0b9ef0f4c1903e16bd4310e81", - "https://deno.land/x/html_parser@v0.1.3/src/utils/legacy.ts": "138d1cf436fef4be5d8d35521ffe6ca4a74cc46c1ba8e219b44fcbc951f07f5c", - "https://deno.land/x/html_parser@v0.1.3/src/utils/manipulation.ts": "a05e88097e6ac8c706cdd76d06080b7970d84fd7fbd20bda2d9d1b46579430bc", - "https://deno.land/x/html_parser@v0.1.3/src/utils/mod.ts": "cc96619cc04c1424888201f87b85d16d398a41e68e64cebd058d0ee623a38645", - "https://deno.land/x/html_parser@v0.1.3/src/utils/querying.ts": "b8efd0fbbcc38c386633ce6233d91508f3f35115ac3930eb71063e2576429eb3", - "https://deno.land/x/html_parser@v0.1.3/src/utils/stringify.ts": "df98808214552b40b12fe00d833431ef5ae22a4842c3af1373c33d611ffc4e24", - "https://deno.land/x/html_parser@v0.1.3/src/utils/traversal.ts": "84988442d00f83728d87d6e462113ad5107f002e32e08d88a99c7284e0252d60" - }, "workspace": { "dependencies": [ "jsr:@std/assert@^1.0.11",