From e7f3fe853bcc87369d7d256d4bacf305cdc0ca31 Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Sun, 4 Aug 2019 22:45:39 +0200 Subject: [PATCH] Improve state management --- benchmarking/package-lock.json | 18 ++- benchmarking/package.json | 1 + benchmarking/src/benchmarkCases/index.js | 29 +++-- benchmarking/src/benchmarkCases/simplifyJS.js | 16 +-- .../src/benchmarkCases/simplifyWasm.js | 6 +- benchmarking/src/benchmarkCases/transforms.js | 12 +- benchmarking/src/benchmarks/BenchmarkSuite.js | 97 +++++++++++--- benchmarking/src/benchmarks/index.js | 19 +++ benchmarking/src/components/chart.js | 121 +++++++----------- benchmarking/src/components/chartOptions.js | 69 ++++++++++ benchmarking/src/components/form.js | 77 ++++++++--- benchmarking/src/components/progress.js | 2 +- benchmarking/src/components/runner.js | 100 +++++++++++++++ benchmarking/src/data/bavaria.js | 1 + benchmarking/src/data/index.js | 5 + {data => benchmarking/src/data}/large.js | 0 {data => benchmarking/src/data}/small.js | 0 benchmarking/src/index.js | 111 ++++------------ benchmarking/src/simplifyMapper.js | 16 +++ 19 files changed, 464 insertions(+), 236 deletions(-) create mode 100644 benchmarking/src/components/chartOptions.js create mode 100644 benchmarking/src/components/runner.js create mode 100644 benchmarking/src/data/bavaria.js create mode 100644 benchmarking/src/data/index.js rename {data => benchmarking/src/data}/large.js (100%) rename {data => benchmarking/src/data}/small.js (100%) create mode 100644 benchmarking/src/simplifyMapper.js diff --git a/benchmarking/package-lock.json b/benchmarking/package-lock.json index c144389..8990018 100644 --- a/benchmarking/package-lock.json +++ b/benchmarking/package-lock.json @@ -3545,11 +3545,6 @@ } } }, - "eslint-plugin-standard": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz", - "integrity": "sha512-OwxJkR6TQiYMmt1EsNRMe5qG3GsbjlcOhbGUBY4LtavF9DsLaTcoR+j2Tdjqi23oUwKNUqX7qcn5fPStafMdlA==" - }, "eslint-scope": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", @@ -5952,6 +5947,11 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, "lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", @@ -7367,6 +7367,14 @@ "prop-types": "15.7.2" } }, + "react-debounce-render": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-debounce-render/-/react-debounce-render-5.0.0.tgz", + "integrity": "sha512-3u4oUcZ1i9bOtENfnHW5f2x74b+01teKG24+NbuKSklCQhknWq/euyYiBnuRFhyJdaniVmtNqtLL66+2jCHXLw==", + "requires": { + "lodash.debounce": "4.0.8" + } + }, "react-dom": { "version": "16.8.6", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.8.6.tgz", diff --git a/benchmarking/package.json b/benchmarking/package.json index a31ca69..c38e5b0 100644 --- a/benchmarking/package.json +++ b/benchmarking/package.json @@ -25,6 +25,7 @@ "lodash": "^4.17.11", "react": "^16.8.6", "react-chartjs-2": "^2.7.6", + "react-debounce-render": "^5.0.0", "react-dom": "^16.8.6" }, "devDependencies": { diff --git a/benchmarking/src/benchmarkCases/index.js b/benchmarking/src/benchmarkCases/index.js index 9e0322d..e436daf 100644 --- a/benchmarking/src/benchmarkCases/index.js +++ b/benchmarking/src/benchmarkCases/index.js @@ -1,23 +1,23 @@ -import { simplifyJSCase, origSimplifyJSCase } from './simplifyJS.js' +import { SimplifyJSCase, SimplifyJSAltCase } from './simplifyJS.js' import { - transformToArrayFormCase, - transformToObjectFormCase, - origSimplifyWithTransformCase + TransformToArrayFormCase, + TransformToObjectFormCase, + OrigSimplifyWithTransformCase } from './transforms.js' import { - simplifyWASMCase, - storeCoordsCase, - loadResultCase + SimplifyWASMCase, + StoreCoordsCase, + LoadResultCase } from './simplifyWasm.js' export const chartDependencies = { - wasmStack: [storeCoordsCase, loadResultCase, simplifyWASMCase], + wasmStack: [StoreCoordsCase, LoadResultCase, SimplifyWASMCase], simplifyJSStack: [ - origSimplifyWithTransformCase, - transformToArrayFormCase, - transformToObjectFormCase + OrigSimplifyWithTransformCase, + TransformToArrayFormCase, + TransformToObjectFormCase ], - wasmVsJs: [origSimplifyJSCase, simplifyWASMCase, simplifyJSCase] + wasmVsJs: [SimplifyJSCase, SimplifyWASMCase, SimplifyJSAltCase] } const uniqueFilter = (val, idx, self) => self.indexOf(val) === idx @@ -29,9 +29,10 @@ export function getChartDependencies(chartNames) { .filter(uniqueFilter) } -export function generateCases(data, formState) { +export function generateCases(data, { tolRange, highQual, chart }) { + if (!tolRange) return [] + const cases = [] - const { tolRange, highQual, chart } = formState let params = { data, highQuality: highQual } for (let tol of tolRange) { params = { ...params, tol } diff --git a/benchmarking/src/benchmarkCases/simplifyJS.js b/benchmarking/src/benchmarkCases/simplifyJS.js index 9e5b08f..badd752 100644 --- a/benchmarking/src/benchmarkCases/simplifyJS.js +++ b/benchmarking/src/benchmarkCases/simplifyJS.js @@ -1,7 +1,7 @@ import { Case } from './Case.js' -import simplifyJS from '../../../lib/simplify-js-alternative/simplify.js' -import origSimplifyJS from '../../../lib/turf-simplify/lib/simplify.js' +import simplifyJSAlt from '../../../lib/simplify-js-alternative/simplify.js' +import simplifyJS from '../../../lib/turf-simplify/lib/simplify.js' function arrayToObjectFormat(coords) { return coords.map(coord => { @@ -9,25 +9,25 @@ function arrayToObjectFormat(coords) { }) } -export class simplifyJSCase extends Case { +export class SimplifyJSAltCase extends Case { get name() { - return 'simplifyJS' + return 'simplifyJSAlt' } async fn() { const { data, tol, highQuality } = this.parameters - simplifyJS(data, tol, highQuality) + simplifyJSAlt(data, tol, highQuality) } } -export class origSimplifyJSCase extends Case { +export class SimplifyJSCase extends Case { get name() { - return 'origSimplifyJS' + return 'simplifyJS' } async setup() { this.parameters.dataObjectForm = arrayToObjectFormat(this.parameters.data) } async fn() { const { dataObjectForm, tol, highQuality } = this.parameters - origSimplifyJS(dataObjectForm, tol, highQuality) + simplifyJS(dataObjectForm, tol, highQuality) } } diff --git a/benchmarking/src/benchmarkCases/simplifyWasm.js b/benchmarking/src/benchmarkCases/simplifyWasm.js index f10ca66..e1cf081 100644 --- a/benchmarking/src/benchmarkCases/simplifyWasm.js +++ b/benchmarking/src/benchmarkCases/simplifyWasm.js @@ -7,7 +7,7 @@ import { simplifyWasm, getModule } from '../../../lib/simplify-wasm/index.js' import { Case } from './Case.js' -export class simplifyWASMCase extends Case { +export class SimplifyWASMCase extends Case { get name() { return 'simplifyWASM' } @@ -20,7 +20,7 @@ export class simplifyWASMCase extends Case { } } -export class storeCoordsCase extends Case { +export class StoreCoordsCase extends Case { get name() { return 'storeCoords' } @@ -34,7 +34,7 @@ export class storeCoordsCase extends Case { } } -export class loadResultCase extends Case { +export class LoadResultCase extends Case { get name() { return 'loadResult' } diff --git a/benchmarking/src/benchmarkCases/transforms.js b/benchmarking/src/benchmarkCases/transforms.js index f5ab689..49a8d7c 100644 --- a/benchmarking/src/benchmarkCases/transforms.js +++ b/benchmarking/src/benchmarkCases/transforms.js @@ -1,4 +1,4 @@ -import origSimplifyJS from '../../../lib/simplify-js/simplify.js' +import simplifyJS from '../../../lib/simplify-js/simplify.js' import { Case } from './Case.js' function arrayToObjectFormat(coords) { @@ -11,7 +11,7 @@ function objectToArrayFormat(coords) { return coords.map(coord => [coord.x, coord.y]) } -export class transformToObjectFormCase extends Case { +export class TransformToObjectFormCase extends Case { get name() { return 'transformToObjectFormCase' } @@ -20,28 +20,28 @@ export class transformToObjectFormCase extends Case { } } -export class transformToArrayFormCase extends Case { +export class TransformToArrayFormCase extends Case { get name() { return 'transformToArrayFormCase' } async setup() { const { data, tol, highQuality } = this.parameters const transformed = arrayToObjectFormat(data) - this.parameters.simplified = origSimplifyJS(transformed, tol, highQuality) + this.parameters.simplified = simplifyJS(transformed, tol, highQuality) } async fn() { objectToArrayFormat(this.parameters.simplified) } } -export class origSimplifyWithTransformCase extends Case { +export class OrigSimplifyWithTransformCase extends Case { get name() { return 'origSimplifyWithTransformCase' } async fn() { const { data, tol, highQuality } = this.parameters const transformed = arrayToObjectFormat(data) - const simplified = origSimplifyJS(transformed, tol, highQuality) + const simplified = simplifyJS(transformed, tol, highQuality) objectToArrayFormat(simplified) } } diff --git a/benchmarking/src/benchmarks/BenchmarkSuite.js b/benchmarking/src/benchmarks/BenchmarkSuite.js index c73bf12..db1fdd0 100644 --- a/benchmarking/src/benchmarks/BenchmarkSuite.js +++ b/benchmarking/src/benchmarks/BenchmarkSuite.js @@ -1,11 +1,14 @@ export class BenchmarkSuite { constructor() { + this.state = 'initialized' + this.cases = new CasesIterator([]) this.reset() + this.onChange = () => {} } reset() { - this.cases = [] - this.stats = {} + this.cases.reset() + this.stats = this.cases.getInitialStats() } setBenchmarkType(benchmarktype) { @@ -13,28 +16,54 @@ export class BenchmarkSuite { } setCases(cases) { - this.stats = {} - this.cases = cases - for (let c of this.cases) { - this.stats[c.name] = [] - } + this.cases = new CasesIterator(cases) + this.stats = this.cases.getInitialStats() } - onCycle(i, count, stats) {} + addStat(name, val) { + this.stats[name] = [...this.stats[name], val] + } + + async measureNext() { + let currentCase = this.cases.next() + this.benchmarktype.setCase(currentCase) + this.addStat(currentCase.name, await this.benchmarktype.run()) + } async run() { - let mean - let i = 0 - const count = this.cases.length - this.onCycle(i, count, this.stats) - for (const benchCase of this.cases) { - this.benchmarktype.setCase(benchCase) - mean = await this.benchmarktype.run() - this.stats[benchCase.name] = [...this.stats[benchCase.name], mean] - i++ - this.onCycle(i, count, this.stats) + while (this.state === 'running' && this.cases.hasNext()) { + await this.measureNext() + this.onChange() await freeEventLoop() } + + switch (this.state) { + case 'running': + this.state = 'finished' + break + case 'stop_requested': + this.reset() + this.state = 'initialized' + break + case 'pause_requested': + this.state = this.cases.hasNext() ? 'paused' : 'finished' + break + } + this.onChange() + } + + start() { + this.state = 'running' + this.run() + } + + pause() { + this.state = 'pause_requested' + } + + stop() { + this.state = 'stop_requested' + this.run() } } @@ -46,3 +75,35 @@ export class BenchmarkSuite { async function freeEventLoop() { return new Promise(resolve => setTimeout(resolve, 0)) } + +class CasesIterator { + constructor(cases) { + this.cases = cases + this.idx = -1 + } + + current() { + return this.cases[this.idx] + } + + hasNext() { + return this.idx + 1 < this.cases.length + } + + next() { + this.idx = this.idx + 1 + return this.idx < this.cases.length ? this.current() : null + } + + reset() { + this.idx = -1 + } + + getInitialStats() { + let stats = {} + for (let c of this.cases) { + stats[c.name] = [] + } + return stats + } +} diff --git a/benchmarking/src/benchmarks/index.js b/benchmarking/src/benchmarks/index.js index 2c4dc4a..387f33f 100644 --- a/benchmarking/src/benchmarks/index.js +++ b/benchmarking/src/benchmarks/index.js @@ -7,3 +7,22 @@ export const benchmarkTypes = { iteration: IterationsBenchmark, opsPerTime: OpsPerTimeBenchmark } + +export const benchmarkTypeSelector = ({ + benchMethod, + iterations, + timeToRun +}) => { + switch (benchMethod) { + case 'benchmarkJS': + return new BenchmarkJSBenchmark() + case 'iteration': + return new IterationsBenchmark(iterations) + + case 'opsPerTime': + return new OpsPerTimeBenchmark(timeToRun) + default: + console.warn('benchmark type "' + name + '" not known') + return new IterationsBenchmark(10) + } +} diff --git a/benchmarking/src/components/chart.js b/benchmarking/src/components/chart.js index a1f3fdc..df196f9 100644 --- a/benchmarking/src/components/chart.js +++ b/benchmarking/src/components/chart.js @@ -1,92 +1,65 @@ import React, { Component } from 'react' import { Line } from 'react-chartjs-2' +import debounceRender from 'react-debounce-render' + +import { datasetTemplates, genOptions } from './chartOptions.js' export class Chart extends Component { constructor(props) { super(props) this.state = { - data: chartData, - options: chartOptions + scaleY: 'linear', + values: 'mean' } } - render() { - let labels = this.props.labels.map(x => x.toFixed(3)) - const data = { ...chartData, labels } - data.datasets[0].data = this.props.data['simplifyWASM'] || [] - data.datasets[1].data = this.props.data['simplifyJS'] || [] - data.datasets[2].data = this.props.data['origSimplifyJS'] || [] - data.datasets[3].data = this.props.numNodes + let { formState, stats, nodeData } = this.props + let { tolRange, chart } = formState + tolRange = tolRange || [] + let { scaleY, values } = this.state + + let labels = tolRange + // let labels = tolRange.map(x => Math.round(x * 1000) / 1000) + let datasets = Object.keys(stats).map(name => ({ + ...datasetTemplates[name], + data: stats[name] + })) + if (values === 'hz') { + for (let dataset of datasets) { + dataset.data = dataset.data.map(mean => 1000 / mean) + } + } + datasets.push({ ...datasetTemplates.numberOfNodes, data: nodeData }) + let data = { datasets, labels } + let options = genOptions(chart, false, scaleY) + // console.log(JSON.stringify(data, null, 2)) return (

Chart

- + + + + + + +
) } } -const chartData = { - datasets: [ - { - label: 'simplifyWASM', - backgroundColor: 'red', - borderColor: 'red', - fill: false - }, - { - label: 'simplifyJS', - backgroundColor: 'blue', - borderColor: 'blue', - fill: false - }, - { - label: 'origSimplifyJS', - backgroundColor: 'green', - borderColor: 'green', - fill: false - }, - { - label: 'numberOfNodes', - fill: false, - yAxisID: 'nodes', - data: [1, 2, 3] - } - ] -} - -const chartOptions = { - title: { - display: true, - text: 'simplifyWasm VS simplifyJS' - }, - tooltips: { - mode: 'index', - intersect: false - }, - hover: { - mode: 'nearest', - intersect: false - }, - scales: { - yAxes: [ - { - id: 'performance', - type: 'linear' - }, - { - id: 'nodes', - position: 'right', - type: 'linear', - gridLines: { - drawOnChartArea: false - } - } - ] - } -} +export const DebouncedChart = debounceRender(Chart, 300) diff --git a/benchmarking/src/components/chartOptions.js b/benchmarking/src/components/chartOptions.js new file mode 100644 index 0000000..df4c7be --- /dev/null +++ b/benchmarking/src/components/chartOptions.js @@ -0,0 +1,69 @@ +import ChartJS from 'chart.js' + +function genDataset(label, color, yAxisID = 'performance', type = 'line') { + return { + label, + yAxisID, + fill: false, + backgroundColor: color, + borderColor: color + } +} + +export const datasetTemplates = { + numberOfNodes: genDataset('numberOfNodes', 'grey', 'nodes'), + simplifyWASM: genDataset('simplifyWASM', 'red'), + simplifyJS: genDataset('simplifyJS', 'blue'), + simplifyJSAlt: genDataset('simplifyJSAlt', 'green'), + storeCoords: genDataset('storeCoords', 'blue'), + loadResult: genDataset('loadResult', 'green') +} + +export function genOptions(title, stacked = false, scaleY = 'linear') { + return { + animation: { + duration: 0 + }, + title: { + display: true, + text: title + }, + tooltips: { + mode: 'index', + intersect: false + }, + hover: { + mode: 'nearest', + intersect: false + }, + scales: { + xAxes: [ + { + // type: scaleX, + stacked + } + ], + yAxes: [ + { + id: 'performance', + type: scaleY, + stacked, + ticks: { + min: 0 + } + }, + { + id: 'nodes', + position: 'right', + type: scaleY, + gridLines: { + drawOnChartArea: false + }, + ticks: { + min: 0 + } + } + ] + } + } +} diff --git a/benchmarking/src/components/form.js b/benchmarking/src/components/form.js index 87cdbc0..0cf8c49 100644 --- a/benchmarking/src/components/form.js +++ b/benchmarking/src/components/form.js @@ -11,42 +11,63 @@ export class Form extends Component { chart: 'wasmVsJs', benchMethod: 'iteration', iterations: 10, - timeToRun: 200 + timeToRun: 200, + dataset: 'large', + debouncedChart: false } this.handleInputChange = this.handleInputChange.bind(this) - this.handleSubmit = this.handleSubmit.bind(this) - this.props.onFormChange(this.state) } - handleSubmit(event) { - event.preventDefault() - this.props.onFormSubmit() + componentDidUpdate(prevProps, prevState) { + if (prevState !== this.state) { + this.notifyParent() + } + } + + componentDidMount() { + this.notifyParent() } handleInputChange(event) { let name, value - const target = event.target + let target = event.target + name = target.name value = target.type === 'checkbox' ? target.checked : target.value value = target.type === 'number' ? Number(value) : value value = target.type === 'range' ? Number(value) : value - name = target.name this.setState({ [name]: value }) - this.props.onFormChange({ ...this.state, [name]: value }) + } + + async notifyParent() { + let { tolStart, tolEnd, tolStep } = this.state + let tolRange = calculateRange(tolStart, tolEnd, tolStep) + this.props.onFormChange({ ...this.state, tolRange }) } render() { return (

Settings

-
+ + + + @@ -55,9 +76,9 @@ export class Form extends Component { @@ -66,9 +87,9 @@ export class Form extends Component { @@ -89,7 +110,7 @@ export class Form extends Component { > - + @@ -119,7 +140,7 @@ export class Form extends Component { max="100" step="1" value={this.state.iterations} - onInput={this.handleInputChange} + onChange={this.handleInputChange} > )} {this.state.benchMethod === 'opsPerTime' && ( @@ -133,13 +154,29 @@ export class Form extends Component { max="1000" step="10" value={this.state.timeToRun} - onInput={this.handleInputChange} + onChange={this.handleInputChange} > )} - + +
) } } + +function calculateRange(start, stop, step) { + const range = [] + for (start; start < stop; start += step) { + range.push(start) + if (step === 0) break + if (range.length > 200) break + } + return range +} diff --git a/benchmarking/src/components/progress.js b/benchmarking/src/components/progress.js index 5005d3c..f4455be 100644 --- a/benchmarking/src/components/progress.js +++ b/benchmarking/src/components/progress.js @@ -6,7 +6,7 @@ export const Progress = props => { percentage = percentage.toFixed(2) let text = `${percentage}% of benchmarks completed (${finishedCount}/${totalCount})` return ( -
+

Status

{text}
diff --git a/benchmarking/src/components/runner.js b/benchmarking/src/components/runner.js new file mode 100644 index 0000000..86cc909 --- /dev/null +++ b/benchmarking/src/components/runner.js @@ -0,0 +1,100 @@ +import React, { Component } from 'react' + +import { dataSelector } from '../data/index.js' + +import { BenchmarkSuite } from '../benchmarks/BenchmarkSuite.js' +import { generateCases } from '../benchmarkCases/index.js' +import { benchmarkTypeSelector } from '../benchmarks/index.js' + +import { Progress } from './progress' + +export class BenchmarkRunner extends Component { + constructor(props) { + super(props) + + this.state = { + state: 'initialized', + totalCount: 0, + finishedCount: 0 + } + + this.suite = new BenchmarkSuite() + + this.suite.onChange = () => { + this.setState({ + state: this.suite.state, + totalCount: this.suite.cases.cases.length, + finishedCount: this.suite.cases.idx + 1 + }) + } + } + + componentDidMount() { + this.props.onStatsChange(this.suite.stats) + } + + componentDidUpdate(prevProps, prevState) { + if (prevState !== this.state) { + this.props.onStatsChange(this.suite.stats) + } + } + + initializeSuite() { + let data = dataSelector[this.props.formState.dataset] + this.suite.setBenchmarkType(benchmarkTypeSelector(this.props.formState)) + this.suite.setCases(generateCases(data, this.props.formState)) + this.suite.start() + } + + stateIsOneOf(states) { + return states.indexOf(this.suite.state) !== -1 + } + + stopButtonEnabled() { + return this.stateIsOneOf(['running', 'finished', 'paused']) + } + + startButtonShown() { + return this.stateIsOneOf(['initialized']) + } + + resumeButtonShown() { + return this.stateIsOneOf(['paused']) + } + + pauseButtonShown() { + return this.stateIsOneOf(['running']) + } + + render() { + return ( +
+ +
State: {this.suite.state}
+
+ + + {this.startButtonShown() && ( + + )} + + {this.resumeButtonShown() && ( + + )} + + {this.pauseButtonShown() && ( + + )} +
+
+ ) + } +} diff --git a/benchmarking/src/data/bavaria.js b/benchmarking/src/data/bavaria.js new file mode 100644 index 0000000..517bcbd --- /dev/null +++ b/benchmarking/src/data/bavaria.js @@ -0,0 +1 @@ +export const data = [[8.9763497,50.0497851],[8.976374,50.0506376],[8.9766926,50.0520772],[8.9776582,50.053102],[8.9779352,50.0533957],[8.9788368,50.0541808],[8.9819538,50.0558275],[8.9829808,50.0567569],[8.9835614,50.0575467],[8.9858996,50.0607273],[8.986696,50.0616633],[8.9872491,50.0623133],[8.9879828,50.0631403],[8.989773,50.0651582],[8.9907212,50.0665159],[8.9912699,50.0678598],[8.9912909,50.0682619],[8.991308,50.0684685],[8.9916085,50.0682619],[8.991902,50.0680574],[8.9920764,50.0679358],[8.99237,50.0677312],[8.992704,50.0674176],[8.9930776,50.0670667],[8.9937069,50.0669335],[8.9940378,50.0671126],[8.9935629,50.0677799],[8.9936023,50.0680166],[8.9939643,50.0680357],[8.994453,50.0677261],[8.9954323,50.0678519],[8.9957487,50.0680903],[8.9956383,50.0682621],[8.9954968,50.0684929],[8.9953375,50.0685282],[8.9955316,50.0689306],[8.9956789,50.0689936],[8.9961829,50.0690833],[8.9965342,50.0692356],[8.9966304,50.0690004],[8.9974566,50.0689488],[8.9976618,50.0689691],[8.9989541,50.0690965],[8.9993019,50.0693555],[8.9994151,50.0695213],[8.9994072,50.0695377],[8.9992478,50.0698739],[8.9991999,50.0699751],[8.9991465,50.0707961],[8.9991262,50.0711071],[8.9990742,50.0719078],[8.9989541,50.0737515],[8.9989315,50.0738587],[8.9986293,50.0752891],[8.9983881,50.0764304],[8.9984002,50.0765167],[8.998449,50.0768692],[8.9984958,50.0772071],[8.9985021,50.0772525],[8.9988489,50.0798761],[8.9988546,50.0799614],[8.9988658,50.0801323],[8.9989383,50.0812324],[8.9989405,50.0812659],[8.998954,50.0814713],[8.9989981,50.0821705],[8.9990046,50.0822729],[8.9990145,50.0824297],[8.9989539,50.0826099],[8.9986505,50.0837551],[8.9981547,50.0837605],[8.9987668,50.0852151],[8.998825,50.0853534],[8.998884,50.0859223],[8.9989538,50.0867507],[8.9990001,50.087296],[8.9990246,50.0875869],[8.9990034,50.0885258],[8.9989959,50.0888562],[8.9989539,50.0890585],[8.9986599,50.0901589],[8.9983052,50.091488],[8.9976804,50.0927364],[8.9983675,50.0934593],[8.9985645,50.0937043],[8.998843,50.0940511],[8.9989538,50.0941891],[8.9995625,50.0947802],[9.0015029,50.09629],[9.0028946,50.0975113],[9.0038523,50.0983277],[9.0051738,50.1000404],[9.0064906,50.1017208],[9.0075243,50.1030364],[9.0084577,50.1042232],[9.0089621,50.1049856],[9.0090988,50.105175],[9.0100544,50.1057777],[9.0101781,50.1058558],[9.0103042,50.1059353],[9.0107105,50.1061916],[9.0124502,50.1078667],[9.0134901,50.1088679],[9.0137331,50.1091018],[9.014957,50.1097479],[9.0175685,50.1111261],[9.0181215,50.1114181],[9.0183559,50.1115417],[9.0218339,50.1121607],[9.0218984,50.1121647],[9.0258834,50.1124109],[9.0269146,50.1124745],[9.0272658,50.1124938],[9.0281276,50.1125414],[9.0289999,50.1125896],[9.0297013,50.1125769],[9.0298627,50.1125969],[9.0318948,50.1131149],[9.0327652,50.1133286],[9.0365425,50.1142512],[9.0395535,50.1146156],[9.0396867,50.1146391],[9.0422173,50.1149087],[9.0432997,50.115091],[9.044182,50.1152396],[9.0445701,50.1153053],[9.0466314,50.1157068],[9.0481036,50.1157066],[9.0496061,50.1156408],[9.049897,50.1156286],[9.0499194,50.1156277],[9.0515388,50.115608],[9.0530925,50.1156036],[9.0543326,50.1159919],[9.054457,50.1160337],[9.055921,50.1165265],[9.0560672,50.1165664],[9.0567178,50.1165699],[9.0599111,50.1164758],[9.0602168,50.1164667],[9.0637835,50.1168006],[9.064224,50.1168236],[9.0644103,50.1168524],[9.0657045,50.1170519],[9.0692038,50.1185029],[9.0714551,50.1195097],[9.0714968,50.1194536],[9.0718799,50.1192323],[9.0732452,50.1181684],[9.0738321,50.1176361],[9.0740106,50.1175691],[9.0744732,50.1172163],[9.0745314,50.1171927],[9.0747383,50.1171089],[9.0762899,50.1164806],[9.077221,50.1159327],[9.0786126,50.115906],[9.0799379,50.1160583],[9.081718,50.116366],[9.0828441,50.1166121],[9.0842135,50.1168867],[9.0856264,50.117078],[9.0862244,50.1169772],[9.0869369,50.1170699],[9.0885743,50.1170768],[9.089295,50.1170395],[9.0893523,50.1171169],[9.0894968,50.1172421],[9.0898365,50.117441],[9.090131,50.1176433],[9.0903749,50.1177385],[9.091119,50.1180926],[9.0916765,50.1183866],[9.0918431,50.1185416],[9.0921174,50.1187964],[9.0921572,50.1187883],[9.0922606,50.1189996],[9.0924033,50.1192914],[9.092547,50.1196151],[9.092679,50.1199127],[9.0927865,50.1201554],[9.0938929,50.1201122],[9.0945536,50.1201059],[9.0946052,50.1202019],[9.0948214,50.120604],[9.0956604,50.1221642],[9.0957906,50.1223785],[9.0961742,50.1230092],[9.0962133,50.1229993],[9.0973846,50.1249256],[9.0983365,50.1251371],[9.098323,50.1251626],[9.0984937,50.1251911],[9.0996162,50.125106],[9.0998897,50.1251103],[9.1006395,50.1251215],[9.1015932,50.1250034],[9.1056933,50.1251717],[9.1062007,50.1252588],[9.1067954,50.1253701],[9.1088445,50.1257409],[9.1094478,50.1258502],[9.1094615,50.1258246],[9.1101219,50.1259704],[9.1104828,50.12605],[9.1116441,50.1262127],[9.1126549,50.1263542],[9.1132336,50.126355],[9.1132567,50.1263824],[9.1133003,50.1264267],[9.11355,50.1264097],[9.1143349,50.1263564],[9.1146763,50.1264352],[9.116221,50.1265249],[9.1168413,50.1265788],[9.117303,50.1266155],[9.1185007,50.1266126],[9.118488,50.1265869],[9.1198121,50.1263169],[9.1209561,50.1259993],[9.1209667,50.125994],[9.1223559,50.125289],[9.1224128,50.1252601],[9.1237332,50.1245428],[9.1238048,50.1244983],[9.1254608,50.1234676],[9.1264698,50.123071],[9.1267923,50.1229442],[9.1275722,50.1226073],[9.1277586,50.1224868],[9.128487,50.1221324],[9.1291011,50.121804],[9.1296212,50.121526],[9.1313544,50.120844],[9.1321671,50.1204713],[9.1331701,50.1200113],[9.134848,50.1191067],[9.135928,50.118584],[9.1366554,50.1182499],[9.1366618,50.1182469],[9.1366864,50.1182688],[9.1371242,50.118039],[9.1371953,50.1180017],[9.1381316,50.1176771],[9.1387733,50.1173903],[9.1389916,50.116793],[9.1390688,50.1165822],[9.1398876,50.1159026],[9.140316,50.1158098],[9.1402939,50.1157869],[9.1418936,50.1151498],[9.1419155,50.1151727],[9.1428134,50.1146355],[9.1434441,50.114455],[9.1442011,50.1143682],[9.1450343,50.1142],[9.1452055,50.1141666],[9.1465276,50.1147026],[9.1502257,50.1161185],[9.1511573,50.116369],[9.1520746,50.1170687],[9.1528634,50.1175274],[9.1535584,50.117783],[9.1536533,50.1176985],[9.1537212,50.1176379],[9.1537584,50.1171992],[9.1538257,50.1167653],[9.1538346,50.1163161],[9.1537633,50.1154478],[9.1537942,50.1144193],[9.1539615,50.114137],[9.1543863,50.1137812],[9.1552643,50.1131454],[9.1555231,50.1127277],[9.1558182,50.1120052],[9.155914,50.111304],[9.1551848,50.1103084],[9.1550974,50.1101891],[9.1544933,50.1080466],[9.1539727,50.1070393],[9.1536522,50.1068249],[9.1530316,50.10641],[9.1523547,50.1056961],[9.151603,50.1052051],[9.1505016,50.1049871],[9.150103,50.1043942],[9.1500656,50.1044062],[9.149389,50.1035404],[9.148319,50.1023688],[9.1481254,50.1021473],[9.1480885,50.1021051],[9.1474198,50.1013402],[9.1462872,50.1000449],[9.145604,50.0992592],[9.1452269,50.0988543],[9.1432219,50.0967017],[9.1431113,50.0965912],[9.1421778,50.095633],[9.142114,50.0955736],[9.1420679,50.0955307],[9.142076,50.0955286],[9.1422905,50.0954736],[9.1426596,50.0953322],[9.1429864,50.0951778],[9.1431426,50.0950975],[9.143274,50.0950103],[9.1434589,50.0948716],[9.1436117,50.0946873],[9.143723,50.0945115],[9.1438181,50.0942918],[9.1438187,50.094287],[9.1438345,50.0941554],[9.1438361,50.0941414],[9.1438391,50.0941163],[9.1438219,50.0938287],[9.143821,50.0937203],[9.1438297,50.0936702],[9.1438473,50.0936084],[9.1438718,50.0935523],[9.1438796,50.0935345],[9.1438803,50.0935336],[9.1438816,50.0935318],[9.1439182,50.0934787],[9.1439399,50.0934619],[9.1440055,50.0934113],[9.1442659,50.0932661],[9.1445217,50.0931494],[9.144687,50.0930873],[9.1449333,50.0930116],[9.144969,50.0930013],[9.1451611,50.0929463],[9.1451772,50.0929403],[9.1451791,50.0929397],[9.1452198,50.0929249],[9.1453374,50.0928822],[9.1453961,50.0928609],[9.1453981,50.0928601],[9.1454901,50.0928176],[9.1455836,50.0927745],[9.145591,50.0927698],[9.1457255,50.0926849],[9.1457414,50.092669],[9.1457888,50.0926216],[9.1458366,50.0925738],[9.1458641,50.0925364],[9.1459036,50.0924824],[9.1459083,50.0924683],[9.1459525,50.0923379],[9.1459534,50.0923224],[9.1459608,50.0921981],[9.1459463,50.0920048],[9.1459611,50.0918051],[9.1459841,50.0917187],[9.1460433,50.0915791],[9.146103,50.0914736],[9.1470782,50.091529],[9.1476157,50.0915633],[9.147683,50.0915676],[9.1481157,50.0912939],[9.1484612,50.090999],[9.1484854,50.090929],[9.1485361,50.0907825],[9.1487142,50.0902558],[9.1487704,50.0902881],[9.1491392,50.0904987],[9.1495592,50.0907388],[9.1498103,50.0908823],[9.1509641,50.0915347],[9.1521553,50.0922053],[9.1523384,50.0924423],[9.1524637,50.0925784],[9.1528191,50.0928272],[9.1528354,50.0928387],[9.1528541,50.0928504],[9.1531312,50.0930262],[9.1533791,50.0931835],[9.1536686,50.0933929],[9.1538106,50.0935364],[9.1539412,50.0937581],[9.1540311,50.0940033],[9.1541386,50.0944559],[9.154149,50.0944758],[9.1543143,50.0946731],[9.1544995,50.0948298],[9.1547325,50.0949814],[9.1548621,50.0950597],[9.1550572,50.0951368],[9.1554337,50.0952595],[9.1559329,50.0953752],[9.1565375,50.0954216],[9.1569718,50.0953884],[9.157616,50.0952682],[9.158097,50.0951937],[9.1587733,50.0951963],[9.1588954,50.0952048],[9.1589119,50.0952088],[9.1589765,50.0952249],[9.1592348,50.0953308],[9.1593827,50.0954589],[9.159392,50.0954748],[9.1595651,50.0957687],[9.1596854,50.0964248],[9.1596606,50.096615],[9.1596373,50.0968795],[9.1596417,50.0969018],[9.1597307,50.0970817],[9.1597471,50.0971016],[9.1599284,50.0972486],[9.1599579,50.0972645],[9.1602646,50.0973728],[9.1602977,50.0973799],[9.1605792,50.0974059],[9.1612046,50.0974054],[9.161499,50.097447],[9.1616017,50.0974832],[9.1617981,50.0976404],[9.1619941,50.0978085],[9.1620966,50.0979061],[9.1622616,50.0981462],[9.1622718,50.0981613],[9.1622839,50.0981752],[9.162327,50.0982251],[9.1623603,50.0982637],[9.1623613,50.0982647],[9.1620025,50.0983536],[9.1619796,50.0983592],[9.1613623,50.0985397],[9.1610024,50.0986435],[9.1608492,50.0987379],[9.1606816,50.098845],[9.1600677,50.0992293],[9.1597198,50.099525],[9.1596679,50.0995697],[9.1592916,50.0998891],[9.1592042,50.09996],[9.1591918,50.09997],[9.1593218,50.1000547],[9.1595668,50.1001792],[9.1598455,50.1004041],[9.1598571,50.1004446],[9.1599325,50.1007034],[9.1600016,50.1008588],[9.1598969,50.1011033],[9.1601171,50.1011764],[9.1604597,50.1016115],[9.1603672,50.1020172],[9.1605307,50.1023519],[9.1605391,50.1023596],[9.160685,50.1024902],[9.1608413,50.1026912],[9.1610358,50.1027434],[9.1615888,50.1029708],[9.1616936,50.103333],[9.1621535,50.1035809],[9.1627588,50.1040388],[9.162574,50.1041089],[9.1625622,50.1041449],[9.1623727,50.1042098],[9.1623133,50.1042505],[9.1623502,50.104348],[9.1626101,50.1043327],[9.1626488,50.1043502],[9.1629059,50.1044675],[9.1630809,50.1045112],[9.1630403,50.1045829],[9.1629342,50.1046518],[9.1627928,50.1047949],[9.1628366,50.1050044],[9.1630216,50.1050914],[9.1630838,50.1051325],[9.1631793,50.1051955],[9.1633301,50.1055647],[9.1636326,50.1057236],[9.1640277,50.1057791],[9.1644381,50.1056884],[9.1647392,50.105829],[9.1649036,50.1059583],[9.164956,50.1060055],[9.1654181,50.1061827],[9.1655972,50.1063581],[9.165711,50.1064697],[9.1657064,50.1068777],[9.1658166,50.1069666],[9.1658999,50.1074348],[9.1657964,50.1075448],[9.165819,50.1076616],[9.166098,50.1081049],[9.1662366,50.1081928],[9.1663497,50.108412],[9.1663523,50.1086002],[9.1663542,50.1087288],[9.1665655,50.1090047],[9.1667083,50.1090687],[9.167137,50.1090976],[9.16735,50.1092552],[9.167391,50.1093718],[9.1675845,50.109534],[9.1675261,50.1097065],[9.1676293,50.1098926],[9.1680216,50.1099805],[9.1684619,50.1102271],[9.16848,50.1104042],[9.1687957,50.1104291],[9.1688635,50.1106999],[9.1692843,50.1109797],[9.1694124,50.1110452],[9.170032,50.1113621],[9.1702627,50.1113929],[9.1704493,50.1115174],[9.1706785,50.1118715],[9.1709894,50.1119787],[9.1710444,50.1120747],[9.1713126,50.1122528],[9.1716836,50.1123646],[9.1718225,50.1127141],[9.1719895,50.1128295],[9.1723338,50.1128614],[9.172657,50.1130338],[9.1727248,50.1132234],[9.1729539,50.1133523],[9.1731579,50.1135391],[9.1732132,50.1135899],[9.1735542,50.1136938],[9.1738647,50.1136251],[9.1741612,50.1137232],[9.1744401,50.1139368],[9.1745005,50.1140509],[9.1746498,50.1140863],[9.1747589,50.1140928],[9.1748024,50.1140954],[9.1743077,50.1146862],[9.1740418,50.1149343],[9.173616,50.1151675],[9.1730131,50.1158782],[9.1729744,50.1161696],[9.1731166,50.1164551],[9.1733479,50.1169052],[9.1735274,50.1171267],[9.1734582,50.117241],[9.1735068,50.1177345],[9.1742109,50.1183786],[9.1742707,50.1184334],[9.1742184,50.1193576],[9.1742123,50.1193844],[9.1762652,50.1195769],[9.1768026,50.1197847],[9.1775017,50.1202273],[9.1782251,50.1207379],[9.1786784,50.1209536],[9.1791182,50.1210349],[9.179628,50.1211121],[9.179802,50.121114],[9.1799062,50.1211152],[9.1801517,50.121214],[9.1804053,50.1213278],[9.1811625,50.1216672],[9.1814391,50.1219637],[9.18175,50.1221939],[9.182546,50.1226603],[9.1834089,50.1229384],[9.1837215,50.122994],[9.1846494,50.1233524],[9.1850509,50.1234148],[9.1854903,50.1237234],[9.1860966,50.1237352],[9.186412,50.123769],[9.1867967,50.1239092],[9.1876222,50.1244676],[9.1878527,50.1245059],[9.1880059,50.124612],[9.1884734,50.1249355],[9.188823,50.1253229],[9.1890737,50.1253859],[9.1892675,50.1255057],[9.1894029,50.1257426],[9.1896054,50.1258018],[9.1896797,50.1260269],[9.1896415,50.1261097],[9.1899188,50.126225],[9.1900093,50.1263567],[9.1901103,50.1265034],[9.1902483,50.1268341],[9.1901998,50.1270973],[9.1903141,50.127579],[9.1902535,50.127687],[9.1903949,50.1277743],[9.1903555,50.1279811],[9.1903594,50.1280717],[9.1903715,50.1284113],[9.1902331,50.1287468],[9.1899959,50.1288405],[9.1899617,50.1290424],[9.1897059,50.1292005],[9.1896353,50.1293625],[9.1894564,50.1293322],[9.1894028,50.1293612],[9.1894604,50.129426],[9.1891326,50.1295318],[9.189191,50.1296587],[9.1890119,50.1297368],[9.1888539,50.1298981],[9.1886916,50.1302449],[9.1886022,50.1305477],[9.1886159,50.1309345],[9.1885218,50.1310146],[9.1886321,50.1310378],[9.1885397,50.1312137],[9.1884124,50.1312381],[9.1884845,50.1313436],[9.1882889,50.1313907],[9.187947,50.1316604],[9.1877859,50.1316693],[9.1878479,50.1317509],[9.1877105,50.1319026],[9.1876029,50.1319013],[9.1874253,50.1319253],[9.1873046,50.1320276],[9.1872243,50.1319742],[9.1871166,50.1319718],[9.1870424,50.1321066],[9.186936,50.1320472],[9.1868883,50.1320571],[9.1869956,50.1321195],[9.1869402,50.1322002],[9.1867107,50.132262],[9.1865039,50.132202],[9.1862254,50.1323777],[9.186126,50.132351],[9.1860874,50.1324547],[9.1859696,50.1324641],[9.1859595,50.1325591],[9.1859126,50.1326338],[9.185801,50.132707],[9.1857102,50.1326497],[9.185529,50.1327139],[9.1855011,50.1328364],[9.1853429,50.13278],[9.1853684,50.1329321],[9.1851772,50.1330127],[9.1851141,50.1330751],[9.1851177,50.1331904],[9.1851876,50.1333636],[9.1851206,50.1335461],[9.1850429,50.1337228],[9.1849076,50.1337571],[9.1850447,50.1338721],[9.1852479,50.1339393],[9.1850256,50.1340954],[9.1850849,50.1342101],[9.1850873,50.1343949],[9.1852473,50.1344492],[9.1850728,50.13451],[9.1851349,50.1346096],[9.1848861,50.1349358],[9.184648,50.1349423],[9.184534,50.1350219],[9.1843815,50.1350589],[9.1842471,50.1351722],[9.1841358,50.1351877],[9.1843563,50.135317],[9.1843631,50.1353765],[9.1843721,50.1354572],[9.1843015,50.1356008],[9.1838725,50.1357867],[9.1835724,50.1358544],[9.1833988,50.1360603],[9.1837995,50.1368134],[9.1837494,50.1370351],[9.183745,50.1370546],[9.1828908,50.1371896],[9.1829938,50.1376683],[9.183072,50.1377704],[9.1831288,50.1378447],[9.1831118,50.137926],[9.1832699,50.1379218],[9.1833201,50.137993],[9.1837162,50.1380464],[9.1839369,50.1381122],[9.1841108,50.1381055],[9.1842972,50.1381568],[9.1844902,50.1381864],[9.1847115,50.1382236],[9.1858129,50.1384976],[9.185922,50.1386147],[9.1859191,50.1386283],[9.1863339,50.138487],[9.1872941,50.1385458],[9.1879362,50.138645],[9.1884469,50.1386889],[9.1904292,50.139046],[9.1915456,50.1390574],[9.1923785,50.1390284],[9.1929052,50.138908],[9.1935939,50.1389085],[9.1941833,50.1388566],[9.194222,50.1388763],[9.1943771,50.1389551],[9.1945939,50.139321],[9.1950085,50.14002],[9.1952092,50.1402798],[9.1952468,50.1402677],[9.1956956,50.1400959],[9.1962096,50.1403344],[9.1965642,50.1403969],[9.1977085,50.1407085],[9.1978705,50.1407325],[9.198064,50.1407117],[9.1982676,50.1407765],[9.1982971,50.1408425],[9.1984936,50.1408981],[9.1985564,50.141029],[9.1987098,50.1410634],[9.1987961,50.1411244],[9.1988921,50.1411215],[9.19893,50.1410526],[9.1992923,50.1409564],[9.1993868,50.1409683],[9.199473,50.1410191],[9.1996011,50.1410273],[9.1997819,50.1410043],[9.1998855,50.1410356],[9.1999521,50.1411346],[9.2005008,50.1411682],[9.200713,50.1410046],[9.2008636,50.1410879],[9.2010529,50.1410409],[9.2014173,50.1411434],[9.2015856,50.1411239],[9.2017208,50.1411411],[9.2018306,50.1411142],[9.2018057,50.1410093],[9.2018875,50.1409139],[9.2021597,50.1411359],[9.2024001,50.1411557],[9.2027846,50.1413084],[9.2029339,50.141305],[9.2029623,50.1414144],[9.2031525,50.1415214],[9.2032735,50.1418311],[9.2036288,50.1419302],[9.2036817,50.1420109],[9.2038238,50.142003],[9.2038814,50.142054],[9.2039864,50.1420601],[9.2040877,50.1421588],[9.2042334,50.1421589],[9.2042961,50.1420911],[9.204496,50.142133],[9.2046026,50.1422339],[9.2048515,50.1423508],[9.2049867,50.1423579],[9.2049989,50.1425484],[9.2051741,50.1426167],[9.205339,50.1425894],[9.2055191,50.1426258],[9.2055804,50.1425819],[9.2057497,50.1426023],[9.2057708,50.1426902],[9.2060359,50.1427158],[9.2062945,50.1426681],[9.2067768,50.1427127],[9.2068501,50.1426311],[9.2069678,50.1427603],[9.207328,50.1427384],[9.2074552,50.1426953],[9.2076359,50.142768],[9.2076546,50.1427121],[9.2077766,50.1426837],[9.2080691,50.1427502],[9.2084305,50.1428914],[9.2086365,50.142874],[9.2086047,50.1427863],[9.2087772,50.1426938],[9.2089527,50.1427723],[9.2091482,50.1427698],[9.2090613,50.1428892],[9.209263,50.1429402],[9.2093295,50.1428712],[9.2094836,50.1428553],[9.2095842,50.1429185],[9.2097376,50.142842],[9.209926,50.1428463],[9.2100935,50.1429718],[9.2102374,50.1429744],[9.210239,50.1428624],[9.2103648,50.1428421],[9.2105222,50.1430076],[9.2106539,50.143017],[9.2106253,50.1431096],[9.2107395,50.1431271],[9.2106928,50.1433033],[9.2111112,50.143459],[9.2110768,50.1436191],[9.2115039,50.143761],[9.2117058,50.1439251],[9.2116854,50.14468],[9.2117198,50.1447464],[9.2118734,50.1467099],[9.2118735,50.1467368],[9.2130078,50.1466949],[9.2186692,50.1466366],[9.2188309,50.1466349],[9.2188776,50.1466344],[9.2196041,50.1475461],[9.2204768,50.1481531],[9.2215582,50.1495619],[9.2215947,50.149577],[9.2220698,50.1492916],[9.2222583,50.148998],[9.2229466,50.1486115],[9.2238422,50.1483721],[9.2240003,50.1482751],[9.2248861,50.1479626],[9.2271853,50.1471474],[9.227973,50.1473448],[9.2280404,50.1473395],[9.2306213,50.1471348],[9.2321504,50.1469425],[9.2323663,50.1469154],[9.2331654,50.1467857],[9.2333631,50.1467536],[9.2333514,50.1467279],[9.2333399,50.1467018],[9.2340006,50.1465648],[9.2358318,50.1461851],[9.2359689,50.1461568],[9.2361255,50.1461243],[9.2361933,50.1461102],[9.2368305,50.1457826],[9.2387979,50.1447708],[9.2403154,50.1440727],[9.2408549,50.1438246],[9.2416123,50.1434762],[9.2435408,50.1430813],[9.2446509,50.1427902],[9.2459482,50.1423803],[9.2471798,50.1419913],[9.2478312,50.1417856],[9.2484408,50.1415931],[9.2500487,50.1411083],[9.2507517,50.140905],[9.2508886,50.140873],[9.2511953,50.1407818],[9.2523847,50.1399093],[9.253012,50.1394494],[9.2554991,50.1390906],[9.255755,50.1390537],[9.2560288,50.1390269],[9.2587896,50.138668],[9.2589045,50.138653],[9.2593338,50.1386623],[9.2600574,50.1388061],[9.2620715,50.1391028],[9.2658912,50.1393677],[9.2666489,50.1395112],[9.2671983,50.1397854],[9.2675813,50.1399767],[9.2676418,50.1400069],[9.2679743,50.1402171],[9.268466,50.1406943],[9.2687948,50.1409373],[9.2692948,50.1413589],[9.2700218,50.1417996],[9.2708765,50.1421542],[9.2714819,50.1422636],[9.2722432,50.1424013],[9.2731752,50.1425345],[9.273332,50.1425569],[9.2736892,50.1426385],[9.2740972,50.1426948],[9.2756096,50.142643],[9.2767305,50.1425794],[9.2792211,50.1419329],[9.280839,50.1417185],[9.2813286,50.1417268],[9.2816707,50.1417326],[9.2832262,50.1417589],[9.2853852,50.1416075],[9.2854652,50.1416019],[9.2913928,50.1401524],[9.292418,50.1398854],[9.2932131,50.1397068],[9.2935732,50.1396259],[9.2940462,50.1394824],[9.2945488,50.1391518],[9.2955637,50.1384438],[9.2968859,50.1378244],[9.2983172,50.1372281],[9.2998856,50.1368444],[9.3011067,50.1364813],[9.3028133,50.135788],[9.3037089,50.1353516],[9.3037341,50.1353731],[9.3059245,50.1340789],[9.3064867,50.1337901],[9.3074112,50.1333236],[9.3096114,50.1338213],[9.3105019,50.1341992],[9.312355,50.1347424],[9.312567,50.1348072],[9.313818,50.1351894],[9.3146816,50.1355018],[9.3161725,50.1360656],[9.3167995,50.13622],[9.317713,50.1366793],[9.3179499,50.1368783],[9.318824,50.1374291],[9.3202741,50.138727],[9.3207741,50.1389652],[9.321171,50.1393239],[9.3213229,50.1394612],[9.3219852,50.1398836],[9.3232847,50.1405499],[9.3237011,50.140643],[9.3249063,50.1408176],[9.3269557,50.1411147],[9.3273591,50.1411483],[9.3285435,50.1408263],[9.3293664,50.1405876],[9.330739,50.1401601],[9.3309438,50.1400962],[9.3309878,50.140078],[9.3319294,50.1396859],[9.3321876,50.1395847],[9.3322397,50.1395526],[9.3346645,50.1380565],[9.3365037,50.1368847],[9.3384763,50.1338052],[9.3390493,50.1332099],[9.3400045,50.1322173],[9.3408519,50.1318952],[9.3409284,50.1318662],[9.3422478,50.1313107],[9.3427201,50.1313005],[9.3437584,50.131278],[9.3471724,50.1311011],[9.3486912,50.130904],[9.3495696,50.1307971],[9.3517769,50.1306117],[9.3546197,50.1310293],[9.3549327,50.1310802],[9.3579534,50.131152],[9.3611653,50.1312789],[9.3642207,50.1310329],[9.3649314,50.1310052],[9.369617,50.1317192],[9.3698828,50.1316812],[9.371288,50.1313984],[9.3733656,50.1309031],[9.3738129,50.1308726],[9.3739053,50.1308663],[9.3739868,50.1308861],[9.3741452,50.13087],[9.3758775,50.1306403],[9.3762092,50.1305964],[9.3763977,50.1305714],[9.3761884,50.1296421],[9.3761645,50.1294382],[9.3761062,50.1289438],[9.3760791,50.128496],[9.3759758,50.127377],[9.3758665,50.1260275],[9.3761995,50.1255808],[9.3767314,50.1249264],[9.3774061,50.1243373],[9.3786137,50.1232827],[9.3788576,50.1230302],[9.3801364,50.1216912],[9.3802267,50.1215801],[9.3810085,50.1207662],[9.3810184,50.1207563],[9.3818917,50.1200768],[9.3829418,50.1192507],[9.3846195,50.1163984],[9.3858568,50.1130703],[9.3860652,50.1124156],[9.386118,50.1122498],[9.3864929,50.1110717],[9.3903509,50.1054481],[9.3905233,50.105238],[9.3925194,50.1028052],[9.3928679,50.1019039],[9.393623,50.099951],[9.3938238,50.0993979],[9.3940153,50.0988709],[9.3943425,50.09797],[9.3978178,50.0938869],[9.3979964,50.0936915],[9.4016752,50.0896633],[9.4018463,50.0895437],[9.4047121,50.0875378],[9.4048025,50.0874744],[9.4050021,50.0873346],[9.4074491,50.086335],[9.4080419,50.0859914],[9.4122261,50.0835583],[9.4123402,50.0835598],[9.4152183,50.0835998],[9.4172072,50.0840854],[9.4191932,50.0845704],[9.4201065,50.084812],[9.4207797,50.08499],[9.4210158,50.0850524],[9.4211488,50.0850876],[9.4211748,50.0850944],[9.4214862,50.0852144],[9.4216969,50.0852954],[9.4225142,50.085411],[9.4239268,50.0856106],[9.4262474,50.0855073],[9.4274384,50.0854543],[9.4281446,50.0852599],[9.4292834,50.0849464],[9.4296985,50.084832],[9.4339939,50.0849874],[9.4360044,50.0850601],[9.439292,50.0869827],[9.4394881,50.0869916],[9.4411329,50.0870662],[9.4420927,50.087571],[9.4429017,50.0879964],[9.4442117,50.0891365],[9.4453536,50.0898618],[9.4455365,50.0898674],[9.4457528,50.089874],[9.4480674,50.0899448],[9.4501301,50.0902685],[9.450626,50.0903463],[9.4540556,50.0901177],[9.4578842,50.0897333],[9.4583229,50.0896892],[9.4585925,50.0896987],[9.4610151,50.0897843],[9.4613273,50.0900878],[9.4621302,50.0908683],[9.4622017,50.0909379],[9.4637718,50.0909941],[9.4638261,50.0909959],[9.4640725,50.0910048],[9.4646134,50.0911993],[9.4649231,50.0913331],[9.4661442,50.0918606],[9.4687687,50.0923194],[9.471341,50.092365],[9.4728677,50.0928167],[9.4733315,50.092954],[9.4738512,50.0931078],[9.4739264,50.0931335],[9.4747201,50.0934058],[9.476342,50.0939463],[9.4784298,50.0948625],[9.481124,50.0951348],[9.484251,50.0954507],[9.488256,50.0942801],[9.4938226,50.0945732],[9.4954689,50.094719],[9.4960438,50.09477],[9.4963873,50.0948892],[9.4971002,50.0951366],[9.4975936,50.0953079],[9.4988817,50.0962658],[9.5001473,50.0972069],[9.5014106,50.0968594],[9.5017966,50.0967531],[9.5033396,50.0961646],[9.5036876,50.0960319],[9.50386,50.095966],[9.5043273,50.0958524],[9.5056481,50.0955308],[9.506571,50.0952667],[9.5075451,50.0950294],[9.5095712,50.0945359],[9.5099442,50.0944562],[9.5130437,50.0943483],[9.5132572,50.0947111],[9.5141388,50.0964838],[9.5143425,50.0968937],[9.5144164,50.0970421],[9.5134268,50.0988531],[9.513098,50.099455],[9.5130837,50.099481],[9.5148792,50.1004494],[9.5167995,50.1026079],[9.5173031,50.1032429],[9.5175091,50.1035027],[9.5180711,50.1043417],[9.5184677,50.1049802],[9.5192881,50.10591],[9.5192911,50.1059133],[9.5187976,50.1069609],[9.5183808,50.1075051],[9.5185128,50.1085238],[9.5186259,50.1089903],[9.51871,50.1103344],[9.5190744,50.1116264],[9.519144,50.1118928],[9.5193556,50.1127029],[9.5194249,50.1132163],[9.5192601,50.1134961],[9.5191322,50.1137036],[9.5176213,50.1161589],[9.5169207,50.1173039],[9.516818,50.1174472],[9.516204,50.118304],[9.5159791,50.1186976],[9.5157834,50.1189986],[9.5146702,50.1205831],[9.5144268,50.1209292],[9.5143653,50.1210627],[9.5140491,50.1215428],[9.5128126,50.1234198],[9.5124937,50.1240213],[9.5121086,50.1251256],[9.5119563,50.1255463],[9.5115195,50.126985],[9.5114872,50.1269913],[9.5114772,50.1270222],[9.5112831,50.1276198],[9.510818,50.1291793],[9.5107034,50.1295291],[9.5105492,50.1300552],[9.5104039,50.1305509],[9.5103086,50.1308658],[9.5098394,50.1322131],[9.5096584,50.1328351],[9.5086989,50.1361298],[9.5084597,50.1369508],[9.5083368,50.1383684],[9.5082888,50.1390702],[9.5080746,50.1422028],[9.5080104,50.1430419],[9.5073895,50.1454654],[9.5077625,50.1458929],[9.5084651,50.1466982],[9.5085544,50.1468004],[9.5090868,50.1472244],[9.5100149,50.1479634],[9.5116528,50.1483295],[9.5123562,50.1484867],[9.5143048,50.1487147],[9.515826,50.1487674],[9.5172007,50.148652],[9.5173052,50.1486432],[9.518938,50.148922],[9.519901,50.1494653],[9.5213602,50.1498531],[9.5224035,50.1504545],[9.5227465,50.1512653],[9.5232606,50.1519078],[9.5247684,50.1531836],[9.5254832,50.154291],[9.5258905,50.154922],[9.526609,50.1555686],[9.5278792,50.1565345],[9.5282791,50.1573115],[9.5311266,50.1611304],[9.5311487,50.1611602],[9.5307618,50.1620243],[9.5300205,50.1636601],[9.529168,50.1655407],[9.5285594,50.1669282],[9.528179,50.167816],[9.5280748,50.1680728],[9.5278985,50.1680542],[9.5264124,50.1677923],[9.5240519,50.1673762],[9.5170987,50.167501],[9.5163881,50.1676032],[9.5145084,50.1678735],[9.5052856,50.1691992],[9.5050062,50.1691762],[9.5037084,50.1704467],[9.5017574,50.1721709],[9.5010793,50.1727702],[9.4988812,50.1745745],[9.498752,50.1746784],[9.4987145,50.1747114],[9.4987148,50.1748067],[9.4985151,50.1750737],[9.4981011,50.1755864],[9.4981249,50.1766043],[9.4981776,50.1772025],[9.4987509,50.1782864],[9.4988809,50.1785054],[9.4997823,50.1800238],[9.5007629,50.181565],[9.50125,50.182421],[9.5013002,50.1825094],[9.5013547,50.183001],[9.5012295,50.1843926],[9.5011783,50.1858872],[9.5010805,50.1874293],[9.5010824,50.1881673],[9.501066,50.188261],[9.5011321,50.1882707],[9.5020969,50.188429],[9.5027827,50.1885415],[9.5025033,50.1900868],[9.5010817,50.1898975],[9.5009041,50.1898738],[9.5010733,50.1907298],[9.5012375,50.1915589],[9.5015193,50.1929841],[9.5017483,50.1931335],[9.5025844,50.1935222],[9.5031023,50.193469],[9.503542,50.1934238],[9.5045465,50.1939701],[9.5063035,50.1946677],[9.5074601,50.1950885],[9.508163,50.1953857],[9.5094841,50.1946336],[9.5104465,50.1940569],[9.5114887,50.1940539],[9.5125733,50.1940013],[9.51275,50.1939927],[9.5130187,50.1937773],[9.5131841,50.1936447],[9.5134582,50.1937644],[9.514232,50.1938967],[9.5143601,50.1939186],[9.5143848,50.1942389],[9.5150259,50.194625],[9.5152751,50.1947506],[9.5155416,50.1948634],[9.5158175,50.1947826],[9.5159084,50.1947147],[9.5160881,50.1945806],[9.5161561,50.1945837],[9.5162469,50.1945881],[9.5161897,50.1947752],[9.5159734,50.1950112],[9.5157497,50.1951723],[9.5154402,50.1953953],[9.5153268,50.195477],[9.5154329,50.1955514],[9.5155502,50.1956337],[9.5156585,50.195902],[9.5158021,50.1962585],[9.515626,50.1962649],[9.5155906,50.1964026],[9.5155064,50.1963864],[9.515638,50.1973673],[9.515663,50.1974445],[9.5158323,50.1979651],[9.5160879,50.1987845],[9.5160585,50.1988433],[9.5159262,50.1991095],[9.5158664,50.1992299],[9.5160188,50.1996538],[9.5160669,50.1997876],[9.5133013,50.200824],[9.5130417,50.2009169],[9.5115929,50.201435],[9.5105658,50.2018577],[9.5094948,50.2034442],[9.5070591,50.2071594],[9.5069665,50.2071794],[9.5050131,50.2075997],[9.5043679,50.2080277],[9.5033934,50.2087997],[9.5032293,50.2092038],[9.5027869,50.2102939],[9.5027335,50.2104801],[9.5024755,50.211072],[9.5020934,50.2122803],[9.5031091,50.2129494],[9.5033085,50.21307],[9.5036922,50.2133127],[9.5053677,50.2143729],[9.5045017,50.2164579],[9.5043,50.2169092],[9.5036758,50.2183055],[9.5033723,50.2191189],[9.5031584,50.2201084],[9.5022306,50.2214926],[9.5017305,50.2222388],[9.5014925,50.222359],[9.5014038,50.2224038],[9.501258,50.2224776],[9.4998586,50.223185],[9.499034,50.2235065],[9.4988803,50.2235664],[9.4988335,50.2235846],[9.4973082,50.2243284],[9.4968369,50.2246515],[9.49608,50.2251776],[9.495783,50.2253981],[9.4949763,50.2263592],[9.4946293,50.2268025],[9.4950372,50.2275591],[9.495995,50.2290259],[9.4961932,50.2293484],[9.4967325,50.2302038],[9.49725,50.2310413],[9.4972999,50.2313081],[9.4977153,50.2335304],[9.498409,50.2345315],[9.4988804,50.2352218],[9.4991324,50.2355909],[9.5009388,50.2382992],[9.5011341,50.2385201],[9.5005917,50.2387516],[9.4988804,50.2395132],[9.4986169,50.2396305],[9.4985729,50.2400694],[9.498539,50.2404085],[9.4988803,50.2407636],[9.4996981,50.2416146],[9.5005267,50.2423872],[9.500623,50.2424741],[9.5009643,50.242781],[9.5014282,50.2431982],[9.5026605,50.2429471],[9.5031353,50.2424824],[9.5036147,50.2421096],[9.5038971,50.2419722],[9.5040402,50.2419025],[9.5046495,50.2415455],[9.5054437,50.2409535],[9.5076143,50.2391384],[9.5078599,50.2388725],[9.5080537,50.2386525],[9.5094804,50.2367786],[9.5096221,50.2365924],[9.5099338,50.2363557],[9.5103168,50.2361621],[9.5103742,50.2361296],[9.5114965,50.2356144],[9.5131484,50.2348636],[9.5143543,50.2343011],[9.5145919,50.2342416],[9.5149081,50.2341623],[9.5159474,50.2339735],[9.5169684,50.2338364],[9.5192907,50.2335944],[9.5198162,50.2335761],[9.5208325,50.2335982],[9.5220622,50.2336742],[9.5231803,50.2337795],[9.5232251,50.2337838],[9.5240556,50.2339],[9.5243384,50.2339227],[9.5243353,50.2339495],[9.5243304,50.233985],[9.5243286,50.233986],[9.5245408,50.2340023],[9.5277205,50.2343257],[9.527734,50.2342753],[9.5277406,50.2342488],[9.5282333,50.2342968],[9.5322542,50.2345773],[9.5332979,50.2346085],[9.5335539,50.2345564],[9.5336796,50.2344964],[9.5337962,50.2343315],[9.5340635,50.2341804],[9.534448,50.2340854],[9.5362105,50.2330054],[9.5364465,50.2328405],[9.5370141,50.2325103],[9.5370274,50.2325027],[9.5373987,50.2321431],[9.5374782,50.2318507],[9.5378999,50.2301827],[9.5379173,50.2298485],[9.5375613,50.2288214],[9.5370676,50.2279567],[9.5370358,50.2276973],[9.5370176,50.2274749],[9.5372346,50.2270647],[9.537885,50.2265031],[9.5392338,50.2258706],[9.5404259,50.225252],[9.5410968,50.2248849],[9.5422453,50.2242907],[9.5422996,50.224303],[9.5434391,50.2245581],[9.5443342,50.2247476],[9.5452998,50.2248976],[9.5465863,50.2254373],[9.5468327,50.2255406],[9.5488288,50.2270534],[9.549459,50.227545],[9.549805,50.2278149],[9.5498566,50.2278638],[9.5503867,50.2283657],[9.5512678,50.2283667],[9.5532433,50.2284748],[9.5548304,50.2284857],[9.5572668,50.22875],[9.5582553,50.2289285],[9.5587847,50.2290849],[9.5599368,50.2294817],[9.5616475,50.2298843],[9.5629823,50.2299794],[9.5643285,50.2304645],[9.5671054,50.2313804],[9.568646,50.231686],[9.5701195,50.2319615],[9.5710521,50.2318631],[9.5715165,50.2317465],[9.5717774,50.2316838],[9.5722739,50.231549],[9.5737586,50.2317778],[9.5739488,50.2317493],[9.5741369,50.2317213],[9.5746952,50.2323249],[9.5748218,50.2327401],[9.57522,50.2326967],[9.5753744,50.232666],[9.5758451,50.2325379],[9.5761369,50.2323062],[9.5762901,50.2320818],[9.5763286,50.2320927],[9.5764441,50.232124],[9.5776004,50.2300399],[9.5780497,50.2295165],[9.5795136,50.2282472],[9.5798618,50.2274284],[9.5801096,50.2265776],[9.5801747,50.2261368],[9.5800215,50.2250532],[9.5800229,50.2247597],[9.5801147,50.2243703],[9.5802223,50.2237982],[9.5805296,50.223499],[9.5811677,50.2230306],[9.5817237,50.2223887],[9.5820946,50.2218258],[9.5828307,50.2213619],[9.5838177,50.2220399],[9.5842811,50.2223915],[9.5843755,50.2224336],[9.5861462,50.2233249],[9.5861771,50.223272],[9.5861923,50.2232461],[9.5862326,50.2232724],[9.587493,50.2232417],[9.588094,50.2232397],[9.5920106,50.223507],[9.5938517,50.2247116],[9.5938748,50.2247281],[9.5940878,50.22488],[9.5942952,50.2250207],[9.5944034,50.2248347],[9.5945634,50.2245593],[9.5946008,50.2244952],[9.5950583,50.2241881],[9.5952928,50.2239521],[9.5954624,50.2237421],[9.595607,50.2234702],[9.5958388,50.2226763],[9.5958809,50.2226786],[9.5960178,50.222686],[9.5968699,50.2227331],[9.5971441,50.2227482],[9.5972203,50.2227524],[9.5972303,50.222966],[9.5989312,50.222595],[9.5997386,50.2225204],[9.6011981,50.2224161],[9.6021732,50.2223297],[9.6030747,50.2222343],[9.6037187,50.221944],[9.6043683,50.2217064],[9.6048286,50.2221305],[9.6056461,50.2226452],[9.6064914,50.2229819],[9.60683,50.2229435],[9.6069066,50.2229354],[9.6075435,50.2230062],[9.6077555,50.2230572],[9.6085217,50.2232418],[9.6093714,50.2234093],[9.6108316,50.2237011],[9.6117539,50.2237954],[9.6125299,50.2238749],[9.6125635,50.223858],[9.612816,50.2240024],[9.6131987,50.2240813],[9.6138011,50.224138],[9.6145309,50.2241536],[9.6162884,50.2241398],[9.6163366,50.2241382],[9.6166053,50.2241436],[9.616992,50.2241422],[9.6174185,50.2241452],[9.6183339,50.2241516],[9.6200543,50.2243472],[9.6206249,50.2244373],[9.6209548,50.2245709],[9.6210691,50.2246509],[9.6212586,50.2247869],[9.6213428,50.2249939],[9.6214168,50.2253213],[9.6213091,50.2256206],[9.6212595,50.2257583],[9.6211157,50.2260377],[9.6208314,50.2263034],[9.6203524,50.2264902],[9.6204969,50.226557],[9.6210092,50.2268056],[9.6214988,50.2272034],[9.621669,50.2275935],[9.6217405,50.227645],[9.6222564,50.2279364],[9.6223209,50.2280702],[9.6223692,50.2281149],[9.6226033,50.2283389],[9.6229142,50.2285802],[9.6233018,50.2289219],[9.6237954,50.2296384],[9.6242299,50.229899],[9.6245538,50.2300244],[9.6257833,50.2305001],[9.6274309,50.2308453],[9.6303805,50.2318511],[9.6309669,50.2320509],[9.6320251,50.232852],[9.6329461,50.2337788],[9.6329638,50.2337865],[9.6334701,50.2340084],[9.6343344,50.2345982],[9.6357595,50.235004],[9.6365887,50.2351834],[9.6382576,50.2351594],[9.6392447,50.2350173],[9.6402679,50.2349233],[9.6411356,50.2349276],[9.6420777,50.2350403],[9.6434744,50.2350465],[9.6439024,50.2351031],[9.6449117,50.2350412],[9.6460806,50.2352097],[9.6469776,50.2350999],[9.6474283,50.2350543],[9.6486019,50.2346912],[9.6489724,50.2345748],[9.6491225,50.2345181],[9.6516138,50.2333982],[9.6527442,50.2327218],[9.6538585,50.2324672],[9.6545207,50.2323343],[9.656509,50.2327147],[9.6580222,50.2330041],[9.6593122,50.2331356],[9.6611902,50.2336623],[9.6624207,50.233929],[9.6631744,50.233927],[9.663614,50.2339673],[9.6636373,50.2339969],[9.6642118,50.2345168],[9.6652484,50.2359737],[9.6653668,50.2365639],[9.6655221,50.236647],[9.6662049,50.2370129],[9.6667855,50.2376072],[9.6668109,50.2379094],[9.6669657,50.2383244],[9.6672488,50.2387152],[9.6678424,50.2395348],[9.6678851,50.2395939],[9.667538,50.2397529],[9.6661742,50.2404102],[9.6660529,50.2404569],[9.6657965,50.240531],[9.6655222,50.2406401],[9.6633833,50.2414902],[9.6633263,50.2415044],[9.6633027,50.2415102],[9.6625035,50.2416397],[9.6618779,50.2418502],[9.6583565,50.2430062],[9.6582745,50.2430376],[9.658258,50.2430126],[9.6582112,50.2429544],[9.6560154,50.2435163],[9.6544056,50.2439283],[9.6540795,50.2439456],[9.6536913,50.2440499],[9.6528709,50.2442703],[9.6524239,50.2445992],[9.6513895,50.2453115],[9.6508684,50.245532],[9.6506571,50.2456392],[9.6498283,50.2459329],[9.6496593,50.2460981],[9.6492216,50.2463496],[9.6488576,50.2464084],[9.648389,50.2464095],[9.6475954,50.2465698],[9.6465081,50.2469544],[9.6451453,50.2472755],[9.6441795,50.2473096],[9.6433316,50.2475473],[9.6428942,50.2475941],[9.642726,50.247612],[9.641951,50.2476585],[9.6400322,50.2479409],[9.6394874,50.2481531],[9.6388353,50.2491033],[9.6383039,50.24974],[9.6381985,50.2499867],[9.6375605,50.2505256],[9.6371099,50.2513962],[9.6371057,50.2514046],[9.6371122,50.2514172],[9.6373824,50.2520317],[9.6374234,50.2520246],[9.6374641,50.2520178],[9.6376875,50.2525703],[9.6377142,50.2526359],[9.6382932,50.2528913],[9.638593,50.2530238],[9.6395834,50.2534863],[9.6409824,50.2540644],[9.6413335,50.2542042],[9.6432975,50.2549852],[9.6432754,50.2550082],[9.6428792,50.2555967],[9.6427798,50.2557398],[9.6424583,50.2562412],[9.642309,50.2564874],[9.642175,50.256702],[9.6420994,50.2568228],[9.6419592,50.2570351],[9.6419573,50.2570381],[9.6419677,50.2570399],[9.6423075,50.2570967],[9.6423315,50.2571697],[9.642367,50.2572625],[9.6425959,50.2578589],[9.6429122,50.2579635],[9.6429196,50.2579821],[9.6433471,50.2578852],[9.6439271,50.2578481],[9.64426,50.2578268],[9.6446961,50.2578287],[9.6451804,50.2580834],[9.6452431,50.2581221],[9.6453998,50.2582191],[9.6458426,50.2583968],[9.6458138,50.2585297],[9.6457838,50.2586165],[9.6454375,50.258732],[9.6453932,50.2588908],[9.645248,50.2590978],[9.6453749,50.2591793],[9.6455176,50.2591763],[9.6458478,50.2591565],[9.6461773,50.2591948],[9.6461628,50.2593787],[9.6462582,50.2595025],[9.6460555,50.2597725],[9.6458482,50.2598893],[9.6457932,50.2600077],[9.6459442,50.2601837],[9.6465567,50.2603306],[9.6465744,50.260538],[9.646297,50.260924],[9.6463205,50.2610018],[9.6468813,50.2611538],[9.6468687,50.2614343],[9.6467841,50.261582],[9.6469954,50.2616753],[9.6470225,50.2617568],[9.6472372,50.2618926],[9.6474107,50.2619432],[9.6477128,50.2618444],[9.6479113,50.2616651],[9.6483678,50.2618292],[9.6485254,50.2621538],[9.6482959,50.2624675],[9.6482381,50.2626732],[9.648042,50.2628421],[9.648041,50.2629807],[9.6480439,50.2633545],[9.6480564,50.263435],[9.6480716,50.2635329],[9.6480985,50.2636672],[9.648061,50.2637156],[9.6478753,50.2639536],[9.6477493,50.2641424],[9.6474574,50.2644332],[9.64745,50.2645549],[9.6478978,50.2646729],[9.6480117,50.2648049],[9.6479909,50.2650333],[9.6481516,50.2651254],[9.6483296,50.2650197],[9.6484809,50.2649514],[9.6487588,50.2649572],[9.6489929,50.2650142],[9.6490608,50.2651567],[9.6489966,50.2652849],[9.6491471,50.2654358],[9.6491061,50.2655465],[9.6490947,50.2655769],[9.6486008,50.265495],[9.6484378,50.265547],[9.6484218,50.2660021],[9.6489149,50.2664165],[9.6496406,50.2663562],[9.6498265,50.2666172],[9.6502399,50.2667576],[9.6503863,50.2669194],[9.6507491,50.2670368],[9.6507895,50.2670499],[9.6506706,50.2672579],[9.6503724,50.2674408],[9.6503979,50.2675305],[9.6515328,50.2678853],[9.6518118,50.2679989],[9.6521304,50.2688122],[9.6526367,50.2701045],[9.6528223,50.2702674],[9.6536244,50.2708419],[9.6539808,50.2710933],[9.654603,50.2715324],[9.6547332,50.2715493],[9.6560277,50.2717331],[9.656118,50.2717467],[9.6577922,50.271755],[9.6579613,50.2717469],[9.6594847,50.2716205],[9.659537,50.271589],[9.6595961,50.2715534],[9.6599016,50.2715111],[9.6599462,50.2715027],[9.6614069,50.2712246],[9.6616154,50.2711946],[9.6624474,50.2711036],[9.6632205,50.2710255],[9.6634395,50.2710319],[9.6636124,50.2710369],[9.6640455,50.2711292],[9.6647119,50.271338],[9.6655219,50.2716824],[9.6659296,50.2718557],[9.6659056,50.2718779],[9.6663224,50.2720694],[9.6673468,50.272463],[9.6677084,50.2725944],[9.6678784,50.2726132],[9.6702084,50.2734421],[9.6715824,50.2737577],[9.6722857,50.2740469],[9.6724508,50.2741293],[9.6730992,50.2745012],[9.6737766,50.274897],[9.6764837,50.2758485],[9.6765946,50.2758872],[9.676796,50.2760306],[9.6769773,50.2761667],[9.6770388,50.2762076],[9.6774398,50.2763964],[9.6778445,50.2765906],[9.6797595,50.2773963],[9.679808,50.2774167],[9.6803934,50.2776996],[9.6806687,50.2778517],[9.6811565,50.2781629],[9.681319,50.2783691],[9.6821702,50.2784765],[9.6831939,50.2785937],[9.683732,50.2784614],[9.6850355,50.2781444],[9.6862556,50.2778496],[9.6874696,50.2776382],[9.6896849,50.2776138],[9.6898955,50.2776092],[9.6902597,50.2776485],[9.690938,50.2776733],[9.691692,50.2777677],[9.6922693,50.2778959],[9.6928191,50.278018],[9.693419,50.2781944],[9.6939511,50.2783815],[9.6942979,50.2785741],[9.6944302,50.278737],[9.6945185,50.2788143],[9.6947379,50.278939],[9.6954137,50.2792031],[9.6959666,50.2793202],[9.6979042,50.2794905],[9.699174,50.2797296],[9.7023584,50.2802889],[9.7030582,50.2805894],[9.7033004,50.2807002],[9.7037739,50.2813213],[9.7044817,50.2822532],[9.7046928,50.2825503],[9.7062184,50.2844178],[9.7069794,50.2853532],[9.7078562,50.2864405],[9.7094124,50.2883135],[9.7095335,50.2884539],[9.7104874,50.2895579],[9.712379,50.2908643],[9.7134783,50.2916748],[9.7144958,50.2921788],[9.7147577,50.2922968],[9.7157879,50.2924791],[9.7159918,50.2925011],[9.7170071,50.2926023],[9.7183161,50.292629],[9.7184325,50.2926595],[9.7186352,50.2927635],[9.7187844,50.29284],[9.718827,50.2928285],[9.7192475,50.2918801],[9.7192262,50.2915564],[9.719807,50.2917623],[9.7198755,50.2919966],[9.7197261,50.2924024],[9.7191176,50.2934739],[9.7194022,50.2947363],[9.7197236,50.2949066],[9.7199099,50.2949517],[9.7201184,50.2949256],[9.7208784,50.2946798],[9.7210291,50.2947684],[9.721142,50.2948024],[9.721426,50.2948229],[9.7216404,50.2948233],[9.7219002,50.2948177],[9.7222456,50.2948104],[9.7227858,50.2948871],[9.7228894,50.2948447],[9.7229973,50.2948004],[9.7233825,50.2945837],[9.7235308,50.2945899],[9.7241887,50.294506],[9.7248621,50.2945271],[9.7251552,50.2945443],[9.7252574,50.2945828],[9.7256968,50.2947778],[9.7259318,50.2947037],[9.7266559,50.2947807],[9.7278779,50.2950251],[9.7297349,50.296028],[9.7300703,50.2966767],[9.7302582,50.2972172],[9.7301809,50.2975003],[9.7314978,50.2982569],[9.7325564,50.2987275],[9.7330326,50.2988516],[9.7337365,50.2990351],[9.7347111,50.2993273],[9.7352282,50.2995895],[9.7353787,50.3000662],[9.7357827,50.3008497],[9.7369763,50.301561],[9.7371982,50.3018366],[9.7373144,50.3019788],[9.7377908,50.3020845],[9.7393091,50.3024115],[9.739261,50.3026543],[9.738508,50.30464],[9.7391275,50.3052432],[9.7391981,50.3053119],[9.7392794,50.3053743],[9.739619,50.3052852],[9.7401504,50.3052556],[9.7404258,50.3052882],[9.7406209,50.305319],[9.740798,50.305596],[9.7408908,50.3055941],[9.7411528,50.305445],[9.741926,50.305717],[9.7415356,50.3061336],[9.7418137,50.306331],[9.7421367,50.3065579],[9.7429309,50.3071548],[9.7433582,50.3075801],[9.7437795,50.3084266],[9.7435628,50.3092266],[9.7434572,50.3098132],[9.7435637,50.3098961],[9.7440656,50.3099124],[9.7448779,50.3101647],[9.7457203,50.3102624],[9.745883,50.3105166],[9.7458221,50.311112],[9.7461165,50.3117098],[9.746836,50.3128004],[9.7475665,50.3135372],[9.7477318,50.3144597],[9.7467462,50.314562],[9.7465041,50.3150991],[9.7463746,50.3156332],[9.7463245,50.3161164],[9.7463377,50.3168818],[9.7459174,50.3171992],[9.7454278,50.3174186],[9.7450735,50.317477],[9.7445617,50.3175202],[9.7445328,50.3177297],[9.744359,50.3177211],[9.7438642,50.3199101],[9.7442806,50.3208866],[9.74495,50.3213364],[9.745456,50.3218666],[9.7468452,50.3217172],[9.7470984,50.3223498],[9.7481368,50.3238722],[9.7488608,50.3250936],[9.7477354,50.325408],[9.7476641,50.3254403],[9.7461025,50.3263632],[9.7451104,50.3274892],[9.7451405,50.3275029],[9.7449287,50.3276954],[9.74458,50.3284174],[9.7444161,50.3290858],[9.7442425,50.3310776],[9.7447891,50.332231],[9.7461653,50.3341697],[9.7459724,50.3348448],[9.7460455,50.3355708],[9.7461919,50.3362603],[9.7461387,50.3367351],[9.7461293,50.337503],[9.7467692,50.339101],[9.7473037,50.3396703],[9.7473297,50.3398854],[9.7475128,50.3405867],[9.747367,50.3412449],[9.7467927,50.3419345],[9.7461491,50.3422535],[9.7457183,50.3426488],[9.744075,50.3445335],[9.7438268,50.3450087],[9.7437602,50.3453579],[9.7438619,50.34578],[9.7435223,50.346382],[9.7432023,50.3467898],[9.7430667,50.3469337],[9.7426363,50.347222],[9.7423263,50.3475805],[9.7418271,50.3479491],[9.741164,50.3483623],[9.740673,50.3489461],[9.7402497,50.3493888],[9.7395455,50.3499439],[9.7384289,50.3499495],[9.7367545,50.3506491],[9.7361236,50.3503502],[9.7348511,50.3506029],[9.734155,50.3507707],[9.7339636,50.3509424],[9.7331243,50.3516859],[9.7330686,50.3517516],[9.7337048,50.352267],[9.7337054,50.3524387],[9.7336574,50.3525126],[9.7333979,50.3529117],[9.7332683,50.353143],[9.7331468,50.3535597],[9.7331652,50.3543163],[9.7331798,50.3551102],[9.7329925,50.3561554],[9.7329819,50.356159],[9.7339533,50.3568645],[9.7343864,50.3570775],[9.7353262,50.3576339],[9.7355035,50.357739],[9.7356952,50.3578252],[9.7357818,50.3578641],[9.7358682,50.3579029],[9.7361557,50.3580322],[9.7362818,50.3581197],[9.737069,50.3586662],[9.7376468,50.3591861],[9.7383699,50.3594571],[9.7399373,50.3603863],[9.7410777,50.3610307],[9.7420344,50.3615647],[9.7431599,50.3622856],[9.7439972,50.363429],[9.7453796,50.3653202],[9.7454943,50.3654879],[9.7458683,50.3659711],[9.7459128,50.3662535],[9.745647,50.3671735],[9.7453289,50.368222],[9.7451651,50.3687182],[9.744944,50.3690523],[9.7445274,50.3706687],[9.7442857,50.3716652],[9.7447088,50.3720868],[9.7458905,50.3733629],[9.7466816,50.3742426],[9.7492776,50.3769538],[9.7499111,50.3776476],[9.7502008,50.3781269],[9.7503766,50.3788228],[9.7503845,50.3793629],[9.7513935,50.3806853],[9.7518474,50.3822805],[9.7520527,50.3827211],[9.7522294,50.3830166],[9.7523366,50.3831936],[9.7524028,50.383303],[9.753491,50.3843609],[9.7535104,50.3849501],[9.7535996,50.3854176],[9.7538588,50.3860536],[9.7543851,50.3865862],[9.7545319,50.3867347],[9.754613,50.3875924],[9.7546161,50.3877155],[9.7546592,50.3894555],[9.7546581,50.3896864],[9.7544785,50.3902042],[9.7544379,50.3903478],[9.7542967,50.3908454],[9.7542692,50.390942],[9.7543535,50.3915107],[9.7544537,50.3917164],[9.7547229,50.3921665],[9.7550002,50.3933112],[9.7555261,50.3940534],[9.7555541,50.3941496],[9.7557281,50.3947481],[9.7558074,50.3950209],[9.7560705,50.3957834],[9.7563414,50.3969798],[9.7565171,50.3974915],[9.7567942,50.3982981],[9.7569887,50.3987176],[9.757046,50.3988412],[9.7571465,50.3990576],[9.7572364,50.3992511],[9.7574524,50.3997622],[9.7578984,50.4003696],[9.7582387,50.4006724],[9.7584725,50.4008805],[9.7591825,50.4015119],[9.7593193,50.4016336],[9.7597351,50.4019277],[9.7595888,50.4023303],[9.7587456,50.4029934],[9.7586815,50.4031479],[9.7586137,50.4033113],[9.7585122,50.4033699],[9.7582778,50.4035389],[9.7582392,50.4039888],[9.7577933,50.4043256],[9.757778,50.4045006],[9.7577401,50.4049312],[9.7573571,50.4051019],[9.757321,50.4052197],[9.7571992,50.4056163],[9.7571928,50.4060593],[9.7569579,50.4063931],[9.7563214,50.4070781],[9.755669,50.4078567],[9.7553994,50.4080154],[9.7550394,50.4082273],[9.7547212,50.4084941],[9.7543632,50.4087944],[9.7540939,50.4093762],[9.7537213,50.4097719],[9.7533581,50.4104571],[9.752981,50.4106286],[9.7527622,50.410501],[9.7518422,50.4108667],[9.751707,50.4110853],[9.7512117,50.4112568],[9.7511022,50.4116512],[9.7512796,50.4118564],[9.7513125,50.4121075],[9.7513013,50.4125904],[9.7512992,50.4126563],[9.7512722,50.4135284],[9.7512353,50.4137462],[9.7511561,50.414212],[9.7511476,50.4142619],[9.7513262,50.4144132],[9.7513083,50.4144926],[9.7519488,50.4151208],[9.7529562,50.4162252],[9.7535252,50.4168136],[9.7538473,50.4171739],[9.7541664,50.4174555],[9.7544674,50.4172735],[9.75459,50.4171995],[9.7547313,50.4171593],[9.7550742,50.4171404],[9.7552747,50.4171792],[9.7554591,50.4171781],[9.755549,50.4172658],[9.7556441,50.4173477],[9.7556924,50.4174314],[9.7558023,50.4175634],[9.7558952,50.4175983],[9.7559936,50.4176744],[9.7561488,50.4178604],[9.7563786,50.4179958],[9.7564382,50.4180898],[9.7564713,50.418223],[9.7565383,50.4182814],[9.7566098,50.4183992],[9.7566679,50.4184553],[9.7567069,50.4186857],[9.7568104,50.4187171],[9.7569393,50.4188373],[9.7569983,50.418954],[9.7571092,50.4191889],[9.757126,50.4194449],[9.7572177,50.4196427],[9.7573737,50.4199795],[9.7575545,50.420252],[9.7577531,50.4206514],[9.7578889,50.4208835],[9.7579406,50.4209969],[9.7581046,50.4212962],[9.7585828,50.4222545],[9.7586021,50.4223275],[9.758584,50.422401],[9.7584657,50.4227168],[9.7584961,50.4227795],[9.7587381,50.4232794],[9.7588326,50.4234047],[9.759221,50.4240103],[9.7592844,50.4240507],[9.7597809,50.4243663],[9.7599423,50.4244119],[9.7601403,50.4244628],[9.7601718,50.4244709],[9.7602251,50.4244846],[9.7601496,50.4247889],[9.760134,50.4249224],[9.7604501,50.4249501],[9.7606437,50.4249865],[9.7608058,50.4250711],[9.761045,50.4251293],[9.7611793,50.4252124],[9.7613719,50.4252554],[9.7617956,50.4252975],[9.7626101,50.4250841],[9.7627098,50.4250552],[9.7628813,50.4250054],[9.7629889,50.424975],[9.7631763,50.4249656],[9.7648622,50.425014],[9.7649046,50.4250287],[9.7650586,50.425082],[9.765187,50.4251263],[9.7663958,50.425576],[9.7665365,50.4255928],[9.7675767,50.4257171],[9.7696324,50.4255917],[9.7698065,50.4255713],[9.771309,50.4249793],[9.7713423,50.4249661],[9.7713805,50.4250037],[9.7716701,50.4249079],[9.7718625,50.4248417],[9.7720624,50.424669],[9.7721878,50.4245966],[9.772321,50.4245594],[9.7725737,50.4243164],[9.7728642,50.4242789],[9.7731377,50.4241621],[9.7732342,50.4240128],[9.7731417,50.4236284],[9.7731648,50.4234662],[9.7732576,50.4232943],[9.7736722,50.4230634],[9.7736975,50.4229804],[9.7734679,50.422801],[9.7738463,50.4223939],[9.7742902,50.4220175],[9.7745093,50.4220488],[9.774595,50.4220285],[9.7748102,50.4215836],[9.7750084,50.4214987],[9.7760561,50.420937],[9.7768887,50.4206647],[9.7770239,50.4204861],[9.7770824,50.4203614],[9.7771033,50.4202299],[9.7772117,50.4201108],[9.7773699,50.4198956],[9.7774466,50.4198247],[9.7781462,50.4191021],[9.7782677,50.4190608],[9.7784837,50.418936],[9.7791018,50.4187109],[9.7793148,50.4186449],[9.7796911,50.4185281],[9.7798197,50.4184456],[9.7801449,50.4183296],[9.7802021,50.4183172],[9.7804467,50.4182641],[9.7805193,50.4184766],[9.7803741,50.4187878],[9.7802126,50.4190132],[9.7800381,50.4191954],[9.7802294,50.4192216],[9.781689,50.4194214],[9.7824887,50.4194213],[9.7833672,50.4194108],[9.7836775,50.4199305],[9.7837018,50.4205147],[9.7840072,50.4204948],[9.7845836,50.4204573],[9.7847901,50.4213132],[9.7848325,50.4213513],[9.7852125,50.4216945],[9.7856838,50.4221785],[9.7858694,50.4223805],[9.7859878,50.4225095],[9.7865449,50.4229808],[9.787037,50.4233595],[9.7874529,50.4238471],[9.788454,50.4245413],[9.7887804,50.4247568],[9.7893624,50.4251412],[9.7901547,50.4248168],[9.7908671,50.4246074],[9.7914987,50.4244446],[9.7933871,50.4249024],[9.7934302,50.4249129],[9.7935481,50.4249341],[9.7944559,50.4250291],[9.7949069,50.4250762],[9.795703,50.4250834],[9.796297,50.4249871],[9.7985259,50.4246262],[9.7994083,50.4244131],[9.8009046,50.4240048],[9.8010279,50.4239885],[9.8022233,50.4238312],[9.8024036,50.4240561],[9.802687,50.4239831],[9.8035644,50.4237297],[9.8049879,50.4230754],[9.8062626,50.4224602],[9.806883,50.4221246],[9.8074286,50.4225134],[9.8082741,50.4220553],[9.808701,50.4217405],[9.8092218,50.4213484],[9.8100109,50.420228],[9.8102631,50.419852],[9.8106643,50.4192432],[9.8108114,50.4190396],[9.8110648,50.4186865],[9.811112,50.418621],[9.8111461,50.4182311],[9.8112579,50.4177675],[9.8112278,50.4171603],[9.8111842,50.4168825],[9.8111467,50.4166431],[9.810554,50.4159488],[9.8096781,50.4154692],[9.8095964,50.4154244],[9.8088214,50.4148986],[9.8086562,50.4145684],[9.8085832,50.414168],[9.8084762,50.4138818],[9.8084505,50.413813],[9.8084792,50.4136143],[9.8085281,50.4134601],[9.8085753,50.4133116],[9.8083197,50.4132945],[9.8082991,50.4131859],[9.8082417,50.413014],[9.8081987,50.4129373],[9.8081204,50.4127975],[9.8079429,50.4122627],[9.8085298,50.4122714],[9.8090572,50.4122792],[9.8091825,50.4122831],[9.8097227,50.4122924],[9.8104469,50.4123276],[9.8106789,50.4121846],[9.8111097,50.4122459],[9.8111558,50.4121296],[9.8111681,50.4120989],[9.8115958,50.4121865],[9.8121166,50.412244],[9.8124628,50.4122393],[9.8124638,50.4122709],[9.8136032,50.4124478],[9.8137969,50.412403],[9.8140396,50.4120632],[9.8142536,50.4117636],[9.814561,50.4114095],[9.8149547,50.4110201],[9.8163043,50.4107654],[9.81641,50.4108251],[9.8165098,50.4107354],[9.8167137,50.4105525],[9.8173689,50.4100883],[9.8175809,50.4099732],[9.8179954,50.4096199],[9.8185143,50.409295],[9.8191692,50.4090708],[9.8192399,50.4084586],[9.8193794,50.4079704],[9.8196961,50.4078075],[9.8199701,50.4078223],[9.8208756,50.4078461],[9.8213373,50.4080159],[9.8213483,50.4076998],[9.8213526,50.4075744],[9.8215305,50.4071202],[9.821731,50.4066451],[9.8219499,50.4066418],[9.8222363,50.4066375],[9.822108,50.4063687],[9.822508,50.4060477],[9.822919,50.405808],[9.8234072,50.4055732],[9.8239605,50.4053699],[9.82447,50.4053419],[9.8245872,50.4055983],[9.8246494,50.40594],[9.8248703,50.4062537],[9.8251044,50.4064598],[9.8253033,50.4065024],[9.825876,50.4063985],[9.8259803,50.4064158],[9.8263304,50.406606],[9.8264357,50.4066632],[9.8266454,50.4065363],[9.8271024,50.4064851],[9.8274993,50.4064675],[9.8279752,50.4064582],[9.8285538,50.4064574],[9.8291112,50.4064471],[9.8297839,50.4064291],[9.8304541,50.4063928],[9.8308175,50.4062588],[9.8313588,50.4061449],[9.8321625,50.4059198],[9.83218,50.4059149],[9.8326521,50.4060384],[9.8330752,50.4060755],[9.833733,50.4060416],[9.8346601,50.4057521],[9.8346594,50.4055827],[9.8348239,50.4055091],[9.8364416,50.405357],[9.8370011,50.4051168],[9.8374141,50.4050979],[9.8377554,50.4050585],[9.8381063,50.405018],[9.8380106,50.4052626],[9.8378655,50.4056154],[9.8381596,50.4054912],[9.8383085,50.4054382],[9.8394451,50.4048823],[9.8402695,50.404358],[9.8406449,50.404122],[9.8408774,50.4042628],[9.8412397,50.4040739],[9.8420325,50.4037238],[9.8426599,50.4034132],[9.8429077,50.403302],[9.8434431,50.4030186],[9.8436038,50.4028372],[9.8437281,50.4027159],[9.8439672,50.402597],[9.8441681,50.4024578],[9.8445199,50.4024273],[9.8446748,50.4022198],[9.8448327,50.4019995],[9.8450649,50.4017272],[9.8453329,50.4014636],[9.8458846,50.401082],[9.8462546,50.4010592],[9.8464553,50.40099],[9.846871,50.400771],[9.8471446,50.4006026],[9.8473717,50.4005171],[9.8476104,50.4004611],[9.8477002,50.4003939],[9.8477298,50.4002733],[9.8476649,50.4000963],[9.847582,50.3999757],[9.8474801,50.3999054],[9.8472808,50.3997079],[9.8472371,50.3995297],[9.8471847,50.3993157],[9.8474229,50.3994087],[9.8477386,50.3993668],[9.8479936,50.3993329],[9.8481189,50.399412],[9.8486071,50.3995681],[9.8489661,50.3996922],[9.8492245,50.3997254],[9.8494438,50.399688],[9.8498053,50.399536],[9.8502084,50.3993136],[9.8506388,50.3991049],[9.8507153,50.3992239],[9.8509203,50.3995424],[9.8527864,50.399123],[9.8538098,50.3988758],[9.8540598,50.3988258],[9.8546666,50.3987046],[9.8555567,50.398494],[9.8569939,50.3981655],[9.8573335,50.3980879],[9.8584196,50.3978471],[9.8600061,50.3974953],[9.8604547,50.3977937],[9.8609112,50.3980442],[9.8617077,50.3986273],[9.8618605,50.3988298],[9.8621794,50.3992521],[9.8628254,50.3996531],[9.8632847,50.4001823],[9.8634827,50.4004103],[9.8642598,50.4010049],[9.8646501,50.4026262],[9.864864,50.4033907],[9.8646627,50.4042494],[9.8650121,50.4044297],[9.866023,50.4051449],[9.8668831,50.4057775],[9.8669124,50.4057993],[9.8667689,50.4063447],[9.8667898,50.4063415],[9.8691519,50.4075218],[9.8693797,50.4077487],[9.8698489,50.4082159],[9.8693126,50.4087124],[9.8699815,50.4091502],[9.8701686,50.4092707],[9.8702524,50.4093247],[9.8705394,50.4095209],[9.8708398,50.4094985],[9.8710681,50.4094696],[9.8713063,50.4094393],[9.8725435,50.4090584],[9.8734359,50.4087836],[9.8738881,50.4077996],[9.8748979,50.4063968],[9.8758638,50.405269],[9.8759969,50.4050945],[9.876534,50.4043911],[9.8767712,50.403745],[9.8769162,50.4033371],[9.8772479,50.4026665],[9.8784441,50.4016686],[9.8793135,50.400974],[9.8797958,50.4005167],[9.8804072,50.4002099],[9.8813735,50.399731],[9.8822253,50.3993556],[9.8830596,50.3988376],[9.883162,50.3987739],[9.8832811,50.3988376],[9.8839198,50.399179],[9.8844352,50.3993759],[9.8849124,50.3995192],[9.885634,50.3997527],[9.8858258,50.3999372],[9.8861603,50.400247],[9.8865851,50.4006259],[9.8872487,50.4009423],[9.8875937,50.4010816],[9.8877935,50.401195],[9.8879278,50.4013637],[9.8882169,50.401597],[9.8884979,50.4019092],[9.8886964,50.4020685],[9.8894495,50.4023901],[9.8901935,50.4026991],[9.8907896,50.4029093],[9.89158,50.4032044],[9.8919107,50.4033403],[9.8924446,50.4034432],[9.8934501,50.4037797],[9.8950712,50.4038756],[9.8954778,50.4037888],[9.8958235,50.403725],[9.896122,50.4037344],[9.8967159,50.4036722],[9.8975866,50.4036983],[9.897902,50.4037397],[9.8982999,50.4038193],[9.8984333,50.4038229],[9.8987138,50.4038138],[9.8996849,50.4038414],[9.900801,50.4037313],[9.9012055,50.4037683],[9.9020909,50.4040916],[9.902721,50.4044027],[9.9042959,50.405255],[9.9063235,50.4063522],[9.9068671,50.4066463],[9.9079295,50.4069639],[9.9080703,50.4070061],[9.9084514,50.4071046],[9.9090043,50.4075689],[9.9092271,50.4078183],[9.9093957,50.4080069],[9.9096416,50.4083055],[9.9102307,50.4087123],[9.9105322,50.4088538],[9.9112163,50.408662],[9.911789,50.4086953],[9.9121239,50.4088948],[9.9130735,50.4091809],[9.9141728,50.4095231],[9.9143414,50.4096092],[9.9149244,50.4099068],[9.9158723,50.4102787],[9.9166371,50.4104669],[9.9167938,50.4105055],[9.9175855,50.4106615],[9.9178606,50.4106582],[9.9189999,50.4106182],[9.9191754,50.4106122],[9.9192982,50.4108442],[9.9195442,50.4110686],[9.9196311,50.4112062],[9.9200639,50.411477],[9.9204188,50.4116056],[9.9207355,50.4117522],[9.9213773,50.4120493],[9.9218798,50.4123138],[9.9222933,50.4125995],[9.9225458,50.4127981],[9.9228385,50.4130283],[9.9231083,50.413193],[9.923627,50.4136311],[9.9240587,50.4140265],[9.9241064,50.4140832],[9.9242918,50.4143046],[9.9251412,50.4150085],[9.9253039,50.4151797],[9.9260446,50.4158846],[9.9264355,50.4162826],[9.9265985,50.4163819],[9.9266749,50.4164211],[9.9272978,50.4167408],[9.9290405,50.4172306],[9.9304421,50.4177253],[9.9311053,50.418036],[9.9319936,50.418535],[9.9328127,50.4189656],[9.9336073,50.4192378],[9.9351512,50.4197365],[9.9354993,50.4198209],[9.9356977,50.4198691],[9.9360074,50.4199441],[9.9365134,50.4200731],[9.936875,50.4202066],[9.9376258,50.4205154],[9.9378531,50.4206361],[9.9380997,50.4207822],[9.9381242,50.4207967],[9.938274,50.4208857],[9.9383428,50.4209263],[9.938785,50.4209689],[9.9391317,50.4210783],[9.9394593,50.4212075],[9.93984,50.4213123],[9.9401359,50.4214644],[9.940376,50.4216044],[9.9409538,50.4220139],[9.9415348,50.4222258],[9.9425483,50.4227259],[9.9429018,50.4229966],[9.9430917,50.4231463],[9.9433788,50.4233726],[9.9436681,50.4234585],[9.944249,50.4234829],[9.9446481,50.4235109],[9.9452736,50.4236126],[9.9459608,50.4237779],[9.946624,50.4238828],[9.947158,50.4238676],[9.9477597,50.4236597],[9.9484246,50.4233841],[9.9490459,50.423359],[9.9497991,50.4232311],[9.9499946,50.4231727],[9.9523128,50.4224642],[9.9531519,50.4227084],[9.9532504,50.4227203],[9.9543069,50.4228474],[9.9553487,50.4229553],[9.9563506,50.4231124],[9.9571395,50.423261],[9.9577911,50.423326],[9.9577911,50.4234013],[9.9590025,50.4239457],[9.9595753,50.4242222],[9.9600787,50.4245223],[9.9603059,50.4246538],[9.9613885,50.42553],[9.9619552,50.4260364],[9.9624967,50.4265217],[9.9625345,50.4265553],[9.9625174,50.4273205],[9.9624573,50.4275477],[9.9623402,50.4277774],[9.9620202,50.4280519],[9.9619374,50.4281706],[9.9618222,50.4285422],[9.961822,50.428867],[9.9618582,50.4290038],[9.9621509,50.429512],[9.9626374,50.4301725],[9.9629441,50.4305329],[9.9634961,50.4311665],[9.963762,50.4315063],[9.9639817,50.4317869],[9.9641347,50.4318905],[9.9647807,50.4325529],[9.9648908,50.4325198],[9.9657001,50.4333496],[9.9659508,50.4336066],[9.9662257,50.4338495],[9.9670266,50.4344256],[9.9672268,50.434547],[9.9674014,50.4346481],[9.9680093,50.4348979],[9.9687213,50.4351557],[9.9685464,50.4354412],[9.9683486,50.435863],[9.9687026,50.4356568],[9.9692176,50.4349864],[9.9692331,50.4349664],[9.9706058,50.4353202],[9.9706782,50.435339],[9.9710127,50.4354006],[9.9715439,50.4357233],[9.9719425,50.4358347],[9.9727877,50.4364479],[9.9728204,50.4367986],[9.9730281,50.4372001],[9.9731941,50.4376433],[9.9733097,50.4380159],[9.9733348,50.4384068],[9.9736637,50.4387201],[9.9741293,50.4390595],[9.9746726,50.4394987],[9.975219,50.4399824],[9.9760552,50.4404596],[9.9766913,50.4408852],[9.9767599,50.4409435],[9.9769314,50.4410896],[9.9778163,50.441687],[9.9778985,50.4417323],[9.9786842,50.442258],[9.9788133,50.4422734],[9.9794288,50.4422914],[9.9796294,50.4423214],[9.9797526,50.4423061],[9.9806831,50.4423125],[9.9815737,50.4423122],[9.9817668,50.4422995],[9.9821509,50.4422744],[9.9823547,50.4425719],[9.9824906,50.4428789],[9.9825922,50.443177],[9.9828323,50.4431989],[9.9828889,50.4429638],[9.9829125,50.4428657],[9.9834574,50.4428029],[9.983604,50.4431203],[9.9834676,50.4435541],[9.9850496,50.4434652],[9.9852113,50.4433685],[9.9852994,50.4435285],[9.9861379,50.4437848],[9.9864654,50.4440033],[9.9872886,50.4446414],[9.9873284,50.444888],[9.987467,50.4449954],[9.9879447,50.445366],[9.9880735,50.4454658],[9.9879801,50.4457749],[9.9881316,50.4458482],[9.9884812,50.4462117],[9.988642,50.4465214],[9.9887936,50.4466789],[9.9888388,50.4467258],[9.9891808,50.4467281],[9.9895496,50.4468299],[9.9898693,50.4468895],[9.9900499,50.4472106],[9.9902017,50.4477466],[9.9902894,50.4480376],[9.9903417,50.4482118],[9.9909711,50.4492757],[9.9910983,50.4494901],[9.9915117,50.4498141],[9.9921215,50.4502011],[9.9918534,50.4504597],[9.9923443,50.4507034],[9.992734,50.450974],[9.9930052,50.4511471],[9.9936432,50.4514971],[9.9932203,50.4518243],[9.9929357,50.4521655],[9.9926804,50.4525567],[9.9931388,50.4528297],[9.9932536,50.4528981],[9.9935977,50.4531392],[9.9939049,50.4534184],[9.993747,50.4535072],[9.9933576,50.4539167],[9.9931885,50.4540947],[9.993064,50.4543799],[9.9929911,50.4547402],[9.9928866,50.455151],[9.9929102,50.4552812],[9.9933991,50.4557179],[9.9936652,50.455938],[9.9947242,50.4568143],[9.995127,50.4571361],[9.9954523,50.4574255],[9.9954871,50.4574661],[9.995593,50.4575903],[9.9956771,50.4576969],[9.9958489,50.4579154],[9.9959904,50.458135],[9.9962095,50.458618],[9.9963137,50.4589646],[9.996388,50.4592938],[9.9965239,50.4599367],[9.9965631,50.4601219],[9.996638,50.4604783],[9.9964866,50.4605241],[9.996858,50.4610622],[9.9971116,50.4611837],[9.9982669,50.4613842],[9.9995854,50.4617751],[10.0026017,50.4625225],[10.00376,50.4630722],[10.0042922,50.4636449],[10.0050654,50.4641747],[10.0054149,50.464306],[10.006065,50.4645506],[10.0072903,50.4647589],[10.0081644,50.4649388],[10.0088417,50.4650586],[10.010932,50.4654654],[10.0117976,50.4656351],[10.0139843,50.4665547],[10.0146988,50.4666745],[10.0158292,50.4668505],[10.0184189,50.4665117],[10.0184723,50.4666434],[10.0188036,50.4674609],[10.0195419,50.4682028],[10.0197209,50.4683829],[10.0202801,50.4693788],[10.0203032,50.4694201],[10.0203155,50.4694421],[10.0203419,50.4694896],[10.0204535,50.4696913],[10.0205352,50.4703443],[10.0206555,50.4713059],[10.0210949,50.4737029],[10.021796,50.4751603],[10.0220328,50.4753719],[10.0230534,50.4762839],[10.0231415,50.4763628],[10.0238363,50.4767371],[10.0245901,50.4771434],[10.0257694,50.4777772],[10.026832,50.4784893],[10.0277417,50.4791035],[10.0282123,50.4794212],[10.029906,50.4800415],[10.0300978,50.4801131],[10.0308814,50.4804052],[10.0310113,50.4801594],[10.0316983,50.4804508],[10.03255,50.4808176],[10.0328891,50.4809284],[10.0335286,50.4811664],[10.033154,50.4817505],[10.0328824,50.4822822],[10.0332347,50.4823244],[10.0331076,50.4825232],[10.0336197,50.4826739],[10.0334056,50.4830016],[10.0336296,50.484427],[10.0334498,50.4844043],[10.0333105,50.4848172],[10.0322569,50.4845847],[10.0322198,50.4849866],[10.0327346,50.4851808],[10.032251,50.4857954],[10.0319591,50.4862003],[10.0313155,50.4864031],[10.0315557,50.4864025],[10.032014,50.4864448],[10.0324688,50.4864942],[10.0332696,50.4866302],[10.0337962,50.4867709],[10.0340283,50.4868329],[10.0344626,50.4869351],[10.0364249,50.4874974],[10.0363241,50.4875214],[10.0358962,50.4876237],[10.0352485,50.4878001],[10.0349026,50.4880087],[10.0346779,50.4882586],[10.0345264,50.4885058],[10.0344751,50.4887338],[10.0343265,50.4893535],[10.0342972,50.4894756],[10.0344218,50.490036],[10.0344266,50.4900571],[10.0343546,50.4901412],[10.0344848,50.4901897],[10.0349038,50.4903465],[10.0354506,50.4905188],[10.0353852,50.4906612],[10.0361526,50.4909256],[10.0357407,50.4913474],[10.0359218,50.4915245],[10.0367699,50.4916077],[10.0380008,50.4917119],[10.0383361,50.4919886],[10.0372724,50.4927131],[10.037137,50.4928054],[10.0373503,50.4929789],[10.0380481,50.493356],[10.0382339,50.4933465],[10.0389693,50.4933091],[10.0394477,50.4932793],[10.0397951,50.4938061],[10.0398097,50.4938282],[10.0402721,50.4942745],[10.0409526,50.4947764],[10.0411087,50.4950785],[10.0411323,50.4951238],[10.0411414,50.4951547],[10.0410264,50.4953412],[10.0407545,50.4953694],[10.0406365,50.4956472],[10.040354,50.4959062],[10.04031,50.496008],[10.0401034,50.4961411],[10.0401032,50.4963707],[10.0401812,50.4965041],[10.0401054,50.4966734],[10.0401273,50.4967407],[10.040017,50.4968232],[10.0398145,50.4971215],[10.0397585,50.4972043],[10.0398224,50.4973869],[10.039748,50.4975036],[10.0397734,50.4977766],[10.0394083,50.4980449],[10.0394576,50.4981841],[10.039056,50.4985872],[10.0388803,50.498791],[10.0387088,50.4988224],[10.0387072,50.498824],[10.0385754,50.4989552],[10.0381979,50.4989814],[10.0381258,50.4991404],[10.0379844,50.4991533],[10.0376186,50.49957],[10.0370822,50.4998777],[10.0370631,50.4999919],[10.0376811,50.5004312],[10.0377883,50.5005074],[10.0382669,50.5010094],[10.0386371,50.5013697],[10.0389459,50.5016695],[10.0391158,50.5021329],[10.0391771,50.5026787],[10.0391687,50.5029871],[10.0392857,50.5035842],[10.0394618,50.504172],[10.0396141,50.5049176],[10.0397884,50.5055145],[10.0400298,50.505949],[10.0406298,50.5064958],[10.0413745,50.5072145],[10.0413997,50.5072503],[10.0418395,50.5078758],[10.0419744,50.5081938],[10.0421471,50.5086014],[10.0421166,50.5092812],[10.0421239,50.5093377],[10.0421369,50.5094279],[10.0421208,50.509609],[10.0417872,50.5102793],[10.0414447,50.5106756],[10.0413674,50.5111452],[10.041205,50.5116848],[10.0406622,50.5127881],[10.0396971,50.5143222],[10.0396693,50.5148024],[10.0396708,50.5151121],[10.0398081,50.5156786],[10.0403717,50.5160601],[10.040587,50.5162058],[10.0412819,50.5164827],[10.0418339,50.5164738],[10.0426542,50.5166177],[10.0434243,50.5167595],[10.0443915,50.5168934],[10.0451434,50.5170172],[10.0454638,50.5170861],[10.0462926,50.517326],[10.0470607,50.5175684],[10.0475545,50.5177188],[10.0479581,50.5178468],[10.0482283,50.5179161],[10.0496979,50.5182734],[10.0503912,50.5185405],[10.0506219,50.5186293],[10.0510979,50.5188003],[10.0518132,50.5191209],[10.0520161,50.5192362],[10.0522664,50.5193874],[10.0525374,50.519551],[10.0528426,50.5197514],[10.0531517,50.5199542],[10.0532005,50.5199862],[10.0532127,50.5199945],[10.0535701,50.5202356],[10.0537626,50.5203853],[10.0540678,50.5206329],[10.054516,50.520992],[10.0546977,50.5211374],[10.0547395,50.5211708],[10.0552592,50.5216137],[10.0553321,50.5216795],[10.0556598,50.5220037],[10.0559985,50.5223387],[10.0562524,50.5225202],[10.0575001,50.5234024],[10.0583636,50.5240422],[10.0588222,50.524227],[10.0594258,50.5245092],[10.0604745,50.5249904],[10.0606006,50.5250482],[10.0607755,50.5251293],[10.0609133,50.5251933],[10.061008,50.5252372],[10.0615178,50.5254738],[10.061684,50.525541],[10.0619229,50.5256375],[10.0623144,50.525827],[10.0633058,50.5264358],[10.0639664,50.5268643],[10.0641224,50.5269885],[10.0645819,50.5274938],[10.0646695,50.5275901],[10.0647771,50.5277425],[10.0649663,50.5279071],[10.0650445,50.5279532],[10.0651979,50.5279975],[10.0654278,50.5280447],[10.065575,50.5280572],[10.0656781,50.5281479],[10.0658737,50.528242],[10.0660852,50.5283988],[10.0665229,50.5287232],[10.0665743,50.5287613],[10.0669258,50.5287072],[10.0672638,50.5286553],[10.0679826,50.5284925],[10.0683284,50.5284105],[10.0689246,50.5282694],[10.0697626,50.5280363],[10.0712699,50.5275992],[10.0712923,50.5275921],[10.0725799,50.5271814],[10.0734115,50.5269027],[10.0737437,50.5272381],[10.0713592,50.5282186],[10.0713821,50.5282414],[10.07175,50.5286087],[10.0731728,50.5279563],[10.0739587,50.5275896],[10.0741887,50.5278233],[10.0736634,50.5281174],[10.0739365,50.5283553],[10.0732536,50.5286687],[10.0729328,50.5287853],[10.07222,50.5290281],[10.0718277,50.5291498],[10.0712708,50.5292841],[10.0703604,50.5295123],[10.0699166,50.5296363],[10.0697863,50.5294689],[10.0691174,50.5296764],[10.0683092,50.529927],[10.0688738,50.5304165],[10.0691553,50.5307183],[10.0693133,50.5309413],[10.069688,50.531432],[10.0698571,50.5316708],[10.0699457,50.5320129],[10.0703744,50.5325239],[10.070759,50.5327949],[10.0708174,50.5328361],[10.070524,50.5336677],[10.0701252,50.534852],[10.0699343,50.5353949],[10.0708665,50.5361878],[10.071828,50.537015],[10.0719971,50.5370223],[10.0722768,50.5370346],[10.0727806,50.5363317],[10.0729964,50.5361588],[10.0730391,50.5369468],[10.0732894,50.5375031],[10.0732932,50.5375116],[10.0734387,50.5378351],[10.0734716,50.5383059],[10.0735016,50.5387395],[10.074173,50.5393398],[10.0742341,50.5393946],[10.0746946,50.5397612],[10.07491,50.5399327],[10.0749513,50.5399655],[10.075093,50.5400784],[10.0752393,50.5401814],[10.0758922,50.5406416],[10.0759592,50.5406798],[10.0760493,50.5407311],[10.0761001,50.54076],[10.0761122,50.5407668],[10.0762764,50.5408605],[10.0765622,50.5409978],[10.0768503,50.5411143],[10.0770794,50.5412068],[10.0773015,50.5412576],[10.0787716,50.5413295],[10.0796393,50.5413864],[10.0802917,50.5414929],[10.0817041,50.541695],[10.0821239,50.5418218],[10.0823596,50.5418931],[10.0827861,50.5419215],[10.0836768,50.5423744],[10.0837205,50.5423967],[10.0842679,50.5427338],[10.0844777,50.5432212],[10.0852123,50.5433805],[10.0859697,50.5435993],[10.0861293,50.5436454],[10.0866955,50.5438089],[10.0872326,50.5439361],[10.0874266,50.5439819],[10.0876193,50.5440275],[10.0877361,50.5440552],[10.087982,50.5441135],[10.0886595,50.5443539],[10.0889162,50.544445],[10.0893037,50.5445826],[10.0895685,50.5446919],[10.0899376,50.5448445],[10.0892192,50.5451355],[10.0891292,50.5452519],[10.0892002,50.5454143],[10.0894898,50.5456868],[10.0897144,50.5460759],[10.0897258,50.5460817],[10.0898204,50.5461288],[10.0899607,50.5461989],[10.0907168,50.5465764],[10.092335,50.5473821],[10.0940505,50.5482661],[10.094212,50.5483493],[10.0942147,50.5483507],[10.0941847,50.5488011],[10.0941276,50.5496624],[10.0939737,50.551486],[10.0939206,50.5522766],[10.0939233,50.553527],[10.0941026,50.553462],[10.094965,50.5531497],[10.0961213,50.5528459],[10.0982765,50.552046],[10.0983613,50.5524415],[10.0984711,50.5528417],[10.0986102,50.553066],[10.098742,50.5532765],[10.099021,50.5535468],[10.0992893,50.5537805],[10.0994758,50.5539445],[10.099704,50.5541449],[10.0997707,50.5545347],[10.0998024,50.554721],[10.0998009,50.5551758],[10.0997633,50.5556671],[10.0997735,50.5558363],[10.0998016,50.5559849],[10.0998831,50.556289],[10.0997273,50.5567527],[10.0996708,50.5574931],[10.0994602,50.5582104],[10.1001137,50.5587637],[10.1011861,50.5591761],[10.1015192,50.5593254],[10.1021424,50.5596765],[10.1027868,50.5600732],[10.1040113,50.5608277],[10.104916,50.56173],[10.1055673,50.5622479],[10.1056022,50.5623035],[10.1058021,50.5626218],[10.1062239,50.5632937],[10.1066791,50.5634433],[10.1079447,50.5637681],[10.1083849,50.5638648],[10.1091639,50.5640357],[10.109623,50.5640435],[10.1105413,50.5641572],[10.1116082,50.5640828],[10.1118477,50.5640661],[10.1126377,50.5638277],[10.1133832,50.5641583],[10.1145636,50.5641926],[10.1148539,50.5642411],[10.115087,50.5643102],[10.1154525,50.5644504],[10.1156605,50.5644942],[10.1158793,50.5645425],[10.1162238,50.5645388],[10.1168698,50.5645194],[10.1180397,50.5644256],[10.1187177,50.5644568],[10.1196148,50.5644767],[10.120256,50.5646246],[10.120644,50.5647142],[10.1206103,50.5646211],[10.1206086,50.5645367],[10.1205768,50.5643757],[10.1207746,50.5642619],[10.1213135,50.5640022],[10.1224163,50.5635313],[10.1230667,50.5632124],[10.1232032,50.5631327],[10.1238689,50.5627754],[10.1244978,50.5624264],[10.1252412,50.5619949],[10.1260592,50.5615107],[10.1262775,50.5614005],[10.1264343,50.5612469],[10.1265875,50.5611072],[10.1267692,50.5609353],[10.1268223,50.5608392],[10.127064,50.5605301],[10.1272017,50.5602146],[10.127282,50.5599287],[10.1273163,50.5597139],[10.1272715,50.5594832],[10.1271838,50.5592663],[10.1268722,50.5588469],[10.1266438,50.5585687],[10.126507,50.5584708],[10.1263921,50.5584642],[10.1261859,50.5585284],[10.1261771,50.5585311],[10.1255691,50.5587817],[10.12529,50.558892],[10.124982,50.5589935],[10.1246881,50.5590331],[10.1245337,50.5590198],[10.1244579,50.5589514],[10.1243999,50.5588557],[10.1242373,50.5587303],[10.1240762,50.5586625],[10.1240538,50.5586532],[10.1237522,50.5586288],[10.1235153,50.5586294],[10.1233717,50.5586092],[10.1232032,50.5585889],[10.1229915,50.558532],[10.1227876,50.5584772],[10.1222263,50.5579682],[10.1227451,50.5574354],[10.1220294,50.556899],[10.1215479,50.5566022],[10.1211414,50.5562757],[10.1207205,50.555883],[10.1211995,50.5557499],[10.1216527,50.5556242],[10.1223944,50.5552605],[10.1232035,50.5548993],[10.1240636,50.5546319],[10.1246218,50.5544318],[10.1251623,50.5542543],[10.125581,50.5540843],[10.1258311,50.5539579],[10.1260701,50.5537997],[10.1267621,50.553254],[10.1272975,50.5528596],[10.1275366,50.5526922],[10.1277608,50.5524289],[10.1278768,50.5522666],[10.1282011,50.5518131],[10.1282773,50.5517083],[10.1283928,50.5515498],[10.1286557,50.5511882],[10.128876,50.5509112],[10.1291534,50.5505905],[10.1293268,50.550268],[10.1294822,50.5499271],[10.1296949,50.5496113],[10.129837,50.5494098],[10.1299756,50.5492381],[10.1302391,50.5489746],[10.1304336,50.548805],[10.1305492,50.5487041],[10.1308314,50.548539],[10.1310598,50.5483944],[10.1311852,50.548362],[10.1313359,50.548364],[10.1315192,50.5484023],[10.1317779,50.5484861],[10.1319474,50.548577],[10.1320878,50.5486339],[10.1325378,50.5483653],[10.1327913,50.548216],[10.1329157,50.5480719],[10.1329967,50.5478638],[10.133074,50.5476374],[10.133101,50.5474339],[10.1332001,50.5472395],[10.1333565,50.5470654],[10.133603,50.5469185],[10.1339357,50.5467897],[10.1342539,50.5466699],[10.1347049,50.5465317],[10.1350272,50.5464372],[10.1354464,50.5463812],[10.1358406,50.5463321],[10.1360304,50.546279],[10.1361348,50.5462407],[10.1362088,50.5462134],[10.1362558,50.5461962],[10.1364232,50.5460358],[10.1366511,50.5458067],[10.1368426,50.5455296],[10.1369484,50.5453101],[10.1370396,50.5450151],[10.137088,50.544775],[10.1371175,50.5444186],[10.1371509,50.5441454],[10.1371512,50.544142],[10.1370851,50.5439458],[10.1370377,50.5438452],[10.1370613,50.5436419],[10.137103,50.5434567],[10.137123,50.5432625],[10.1371396,50.5431071],[10.1371422,50.5429609],[10.1371953,50.542883],[10.137249,50.5428371],[10.1373673,50.5428436],[10.1374057,50.5428843],[10.1374578,50.5429393],[10.1374564,50.5429835],[10.1374519,50.5431245],[10.1374205,50.5433405],[10.1374179,50.5433577],[10.1374122,50.5435541],[10.1374115,50.5435607],[10.1373887,50.5437763],[10.1373854,50.5438078],[10.1373793,50.5439472],[10.1373978,50.5440226],[10.1374663,50.5440474],[10.1375773,50.544022],[10.1377025,50.5440012],[10.1378713,50.544019],[10.1380472,50.5440368],[10.1381368,50.5440251],[10.1382084,50.5440158],[10.1382292,50.5440042],[10.1383229,50.5439515],[10.1383428,50.5439329],[10.1384617,50.5438231],[10.1385825,50.5436652],[10.1386706,50.5434753],[10.1387481,50.5432945],[10.1389013,50.5431434],[10.1390548,50.5430515],[10.1392446,50.5430053],[10.1393782,50.5429957],[10.1396747,50.5429744],[10.1397158,50.5429726],[10.1418694,50.5428769],[10.1422273,50.542857],[10.1422796,50.5428541],[10.1423102,50.5428524],[10.1432534,50.5428],[10.1440062,50.5427454],[10.1441785,50.5427448],[10.1442679,50.5427127],[10.144314,50.5426531],[10.1443819,50.5426232],[10.1444828,50.5426709],[10.1446138,50.5427577],[10.1446713,50.5427959],[10.1447712,50.542862],[10.1449071,50.5428814],[10.1453351,50.5429427],[10.1459419,50.5430302],[10.1462941,50.5431],[10.146499,50.5431816],[10.146701,50.5432975],[10.1469317,50.5434615],[10.1471924,50.5437555],[10.147446,50.5440632],[10.1475764,50.5442479],[10.1476417,50.5443414],[10.1476351,50.5444122],[10.1474995,50.544488],[10.1471991,50.5446258],[10.1471626,50.5446583],[10.1469569,50.5448413],[10.1467153,50.5451299],[10.1466088,50.5452833],[10.1465775,50.5453999],[10.1466401,50.5456053],[10.1467281,50.5458496],[10.1467722,50.5460026],[10.1468089,50.5460938],[10.1470358,50.5462165],[10.1472055,50.5463463],[10.147523,50.5465693],[10.1477831,50.5467924],[10.1479897,50.5470707],[10.1480878,50.5472326],[10.1482615,50.5474171],[10.1484349,50.5475834],[10.1485045,50.54775],[10.1485806,50.5478458],[10.1487318,50.5479231],[10.1488688,50.5480003],[10.1489841,50.5480663],[10.149035,50.5481552],[10.149151,50.5483125],[10.1492703,50.5484288],[10.1494257,50.5485654],[10.149624,50.548695],[10.1499082,50.5487902],[10.1499247,50.5488023],[10.1500636,50.5489033],[10.1501174,50.5489426],[10.1497315,50.5491379],[10.1496949,50.5491556],[10.149535,50.5492321],[10.1493491,50.5493241],[10.1492669,50.5493563],[10.1492001,50.549366],[10.1491236,50.5493772],[10.1489408,50.5493939],[10.1488007,50.5493942],[10.1486827,50.549422],[10.1485934,50.5494725],[10.1485221,50.5495321],[10.1483625,50.5496232],[10.1483614,50.549624],[10.148204,50.549693],[10.1480679,50.549723],[10.1479377,50.5497471],[10.1478924,50.5497555],[10.1477636,50.549781],[10.147538,50.5498272],[10.1476677,50.5499337],[10.1477544,50.5500048],[10.1481585,50.5502596],[10.148407,50.5504212],[10.1486777,50.5506123],[10.1488796,50.5507533],[10.1491682,50.5509444],[10.1495687,50.5512266],[10.1499258,50.5514701],[10.1501476,50.5515898],[10.1501722,50.5516031],[10.1502249,50.5516315],[10.1503909,50.5517635],[10.1504924,50.5518912],[10.1506337,50.5520576],[10.1507275,50.5521827],[10.1508105,50.5522779],[10.1508239,50.5520592],[10.1508436,50.5518399],[10.1508746,50.5516844],[10.150878,50.5516756],[10.1509217,50.5515659],[10.1509346,50.5515335],[10.1510554,50.551396],[10.1510995,50.5513283],[10.1511201,50.5512966],[10.1512148,50.5511511],[10.1513855,50.5509633],[10.1515884,50.5507434],[10.1517164,50.5506037],[10.1518337,50.550464],[10.1519143,50.5502376],[10.1520597,50.55002],[10.1520771,50.54994],[10.1521017,50.5498783],[10.1522266,50.549814],[10.1524989,50.5497652],[10.1534845,50.5496322],[10.1541618,50.5495342],[10.1544916,50.5495082],[10.1545047,50.5495074],[10.1548645,50.5494843],[10.155234,50.5494809],[10.1556179,50.5494775],[10.1560523,50.549499],[10.1563823,50.5495028],[10.156684,50.549552],[10.1570001,50.5496014],[10.1573845,50.5496528],[10.1577001,50.549652],[10.1580806,50.5496692],[10.1583571,50.5497003],[10.1586266,50.5497497],[10.1589139,50.5498084],[10.15909,50.5498283],[10.1592693,50.5498147],[10.1592764,50.5498141],[10.1596526,50.5497399],[10.1601642,50.5495831],[10.1606972,50.5494055],[10.1611696,50.5492396],[10.1617774,50.5490071],[10.1619864,50.5489272],[10.1620701,50.5488951],[10.1623204,50.548799],[10.1625643,50.5487055],[10.1639589,50.5481439],[10.1647848,50.5478011],[10.1654451,50.5475778],[10.1660154,50.5473861],[10.1666202,50.5472061],[10.1669998,50.5471181],[10.1672931,50.5470144],[10.1675037,50.5468882],[10.167746,50.5466933],[10.1680168,50.5464869],[10.1682561,50.5463605],[10.1685746,50.5462383],[10.1689719,50.5461596],[10.1692732,50.5461266],[10.1695702,50.5460434],[10.1698668,50.5459215],[10.1702382,50.5457056],[10.1706097,50.5455195],[10.1708237,50.5453771],[10.1712123,50.5450813],[10.1716437,50.5447875],[10.1718178,50.5446714],[10.1722146,50.5444065],[10.1726108,50.5441746],[10.173161,50.5439124],[10.1735506,50.5437445],[10.1739364,50.5435719],[10.1743471,50.543333],[10.1747439,50.5431696],[10.1752302,50.5429991],[10.1755736,50.5428791],[10.1760634,50.5427085],[10.1763748,50.5426026],[10.1767253,50.5424918],[10.1769686,50.542418],[10.1770367,50.5424154],[10.1770944,50.5424541],[10.1770772,50.5425387],[10.1769754,50.5426629],[10.1768857,50.5427723],[10.1766866,50.5430013],[10.1762378,50.5433798],[10.1759684,50.5437484],[10.1756875,50.5440509],[10.175323,50.5446323],[10.1750036,50.5450445],[10.1747593,50.5454269],[10.1746523,50.5456307],[10.1746429,50.5456487],[10.1745955,50.5457579],[10.1745654,50.5458273],[10.1745663,50.5459323],[10.1745679,50.5461312],[10.1746164,50.5463343],[10.1747082,50.5465991],[10.1747855,50.5468296],[10.1747974,50.546953],[10.1748415,50.5470831],[10.1749689,50.547302],[10.175118,50.5475345],[10.1751842,50.5477423],[10.1753215,50.5482605],[10.1753916,50.548491],[10.1754707,50.5488011],[10.1754842,50.5488539],[10.1755392,50.5489955],[10.1756625,50.5491391],[10.1759121,50.5493781],[10.1762312,50.549793],[10.1764304,50.5500048],[10.1765322,50.5501737],[10.1765163,50.5503796],[10.1767409,50.5505385],[10.1768453,50.5506959],[10.1769653,50.5508715],[10.1771137,50.5510492],[10.1772046,50.5511906],[10.1773022,50.5512771],[10.1774463,50.5513406],[10.17758,50.5514613],[10.1777499,50.5516161],[10.1778375,50.551785],[10.1779789,50.5519444],[10.1780869,50.5519989],[10.1782379,50.5520419],[10.1787051,50.5521341],[10.1790892,50.552142],[10.1793045,50.552146],[10.1795736,50.5521611],[10.1798828,50.5522378],[10.1802316,50.5523145],[10.1805047,50.5523639],[10.1807665,50.552379],[10.181201,50.5524188],[10.1815709,50.5524497],[10.1819728,50.5524643],[10.182346,50.5524769],[10.1825436,50.5524924],[10.1827019,50.552542],[10.1829071,50.5526282],[10.1831914,50.5527233],[10.1835228,50.5528709],[10.1838504,50.5529954],[10.1843178,50.5531356],[10.1848685,50.5533053],[10.1853069,50.5533975],[10.1857032,50.5535015],[10.1863677,50.5536573],[10.1864253,50.5536707],[10.1865178,50.5536945],[10.186578,50.5537099],[10.1867956,50.5537657],[10.1871553,50.5538812],[10.1872812,50.5539196],[10.1874104,50.5539376],[10.1875395,50.5539281],[10.188141,50.5537801],[10.1884526,50.553722],[10.1888536,50.5536387],[10.1890376,50.5536188],[10.1894252,50.5536023],[10.1897464,50.5535766],[10.1901842,50.5535913],[10.1901961,50.5535935],[10.1903838,50.5536281],[10.1904895,50.5536476],[10.1907882,50.5537471],[10.191245,50.5539057],[10.1916085,50.5540395],[10.1920947,50.5542391],[10.1924799,50.5543956],[10.1931168,50.5546336],[10.1934661,50.5547742],[10.1935994,50.5548378],[10.1936895,50.5548787],[10.1938148,50.5548691],[10.1940653,50.5547998],[10.1941379,50.554772],[10.1943479,50.5546917],[10.1946737,50.554613],[10.1950748,50.5545432],[10.1952183,50.5545382],[10.1952189,50.5545388],[10.1952548,50.5545689],[10.1953159,50.5546202],[10.1954611,50.5548277],[10.1955271,50.5549874],[10.1955997,50.55509],[10.1956505,50.5551493],[10.196109,50.5550588],[10.1964135,50.5550305],[10.1968758,50.5549583],[10.1974812,50.5548469],[10.1977678,50.5548117],[10.1981298,50.5547695],[10.1982943,50.5547233],[10.1983907,50.5546636],[10.1984145,50.5545897],[10.1984187,50.5545767],[10.1984926,50.554428],[10.1986173,50.5543179],[10.1986677,50.5542507],[10.1987201,50.5541805],[10.1987872,50.5540478],[10.1988401,50.5539539],[10.1989035,50.553819],[10.1989273,50.5537427],[10.1990048,50.5534942],[10.1990506,50.5534028],[10.1991179,50.5533067],[10.1992431,50.5532673],[10.1994013,50.5532989],[10.1996852,50.5533712],[10.1997385,50.5534056],[10.1997497,50.5534129],[10.1998117,50.5534531],[10.1998518,50.5535557],[10.1998273,50.5536015],[10.2005177,50.5537936],[10.2017005,50.5540756],[10.2029804,50.5543984],[10.2039942,50.5546467],[10.2039416,50.5543771],[10.203802,50.5540053],[10.2036811,50.5537108],[10.2035632,50.5533662],[10.2035948,50.5524659],[10.2037931,50.5517732],[10.2040157,50.5514023],[10.204071,50.5507464],[10.204173,50.5500927],[10.2042477,50.5496287],[10.2043296,50.5492483],[10.2043408,50.5491966],[10.2043464,50.5488057],[10.2043496,50.5485843],[10.2042708,50.5481029],[10.2042587,50.5480293],[10.2041502,50.5475225],[10.2040186,50.5468306],[10.203908,50.5460976],[10.2040152,50.5456518],[10.2042071,50.545032],[10.2043202,50.5446567],[10.204329,50.5446272],[10.2044629,50.5443436],[10.204576,50.544149],[10.2046895,50.5440184],[10.2048499,50.5438946],[10.2049679,50.5438186],[10.2049996,50.5437982],[10.205317,50.5435985],[10.2055425,50.5435337],[10.2057787,50.5434601],[10.2060755,50.5433904],[10.2063619,50.5433051],[10.2065156,50.5432566],[10.2067583,50.543128],[10.2072565,50.5428666],[10.2074889,50.5427165],[10.2075394,50.5426838],[10.2076609,50.5425883],[10.2077426,50.5424829],[10.2078187,50.542266],[10.207865,50.5420353],[10.2078698,50.5418749],[10.2078896,50.5416852],[10.2079632,50.5414862],[10.2080262,50.5413032],[10.2081006,50.5412096],[10.2082148,50.5410456],[10.2082347,50.5410171],[10.2082794,50.5406934],[10.2082846,50.5406556],[10.2083018,50.5405869],[10.2083945,50.5405385],[10.2085588,50.5404829],[10.2090937,50.5403369],[10.2093243,50.540274],[10.2096964,50.5401834],[10.2100362,50.5401064],[10.210387,50.5400273],[10.2106445,50.539969],[10.2109416,50.5399038],[10.211203,50.539873],[10.2114721,50.5398718],[10.2118524,50.5398817],[10.2123656,50.5399001],[10.2127824,50.5399577],[10.213127,50.5399836],[10.2134319,50.5399938],[10.2136831,50.5399928],[10.2139803,50.5399481],[10.2144714,50.5399185],[10.2149083,50.5398526],[10.2152091,50.5398058],[10.2156099,50.5397057],[10.2159283,50.5396289],[10.2162325,50.5395795],[10.2165549,50.5395347],[10.2167768,50.539488],[10.2169841,50.5394186],[10.2172953,50.5393395],[10.2176992,50.5392167],[10.2179569,50.5391607],[10.2182184,50.5391229],[10.2184584,50.5390923],[10.218767,50.5391024],[10.2193879,50.5391317],[10.2197322,50.5391325],[10.2200479,50.5391358],[10.220313,50.5391026],[10.2205453,50.5390308],[10.220756,50.5389429],[10.2209664,50.5388323],[10.2213301,50.5386341],[10.2213899,50.5385614],[10.2214716,50.538462],[10.2217345,50.5382186],[10.2220211,50.5378926],[10.2222443,50.5376378],[10.2223679,50.5374521],[10.2224798,50.537207],[10.222564,50.5370443],[10.2227082,50.5367876],[10.2228888,50.5365742],[10.2231359,50.5362209],[10.2233088,50.5359642],[10.2233901,50.5358565],[10.2234006,50.5358426],[10.2234951,50.5356227],[10.2235968,50.5354371],[10.2237059,50.5352469],[10.2237756,50.5350477],[10.2238568,50.5349307],[10.2239519,50.5347952],[10.2240682,50.534605],[10.2242939,50.5342679],[10.2244529,50.5340386],[10.22464,50.5337863],[10.2247172,50.5336237],[10.2247899,50.5334084],[10.2248306,50.5332417],[10.2248347,50.5332253],[10.2248969,50.5330261],[10.2249381,50.5328705],[10.2247045,50.5325125],[10.2246238,50.5323436],[10.2245791,50.5321815],[10.2245585,50.5319713],[10.2245629,50.5317197],[10.2246393,50.5299879],[10.2246457,50.5298398],[10.2252191,50.5301119],[10.2255864,50.5302427],[10.226299,50.5304615],[10.2268464,50.5306535],[10.2273426,50.5307772],[10.2276479,50.5308261],[10.2280893,50.5308601],[10.2280464,50.5308609],[10.2284593,50.5308957],[10.2288182,50.5309148],[10.229288,50.5309219],[10.2295247,50.5309094],[10.2297654,50.5309495],[10.2299009,50.5309737],[10.2306027,50.5310991],[10.2309692,50.5311546],[10.2313097,50.5311348],[10.231668,50.531099],[10.2321547,50.5310145],[10.2321036,50.5309754],[10.231717,50.5306803],[10.2314183,50.530449],[10.2314059,50.5304393],[10.2308548,50.5299317],[10.2307904,50.5298563],[10.2304986,50.5295151],[10.2303463,50.5293602],[10.230309,50.5293334],[10.2301112,50.529192],[10.2298758,50.528994],[10.2297887,50.5289076],[10.2297686,50.5287088],[10.2296759,50.5284856],[10.2296179,50.5283916],[10.2295987,50.5282797],[10.2295654,50.5281906],[10.2295628,50.5281799],[10.229524,50.5280193],[10.2294936,50.527873],[10.2294858,50.5278068],[10.229514,50.5277724],[10.229557,50.5277471],[10.2295635,50.527706],[10.229538,50.5276626],[10.2295015,50.5276215],[10.2295361,50.5275095],[10.2296383,50.5273489],[10.2297199,50.5272593],[10.2297265,50.5272066],[10.2297647,50.5270968],[10.2298139,50.5270188],[10.2298198,50.5269],[10.2298042,50.5267925],[10.2297877,50.5266097],[10.2298118,50.5265181],[10.2298033,50.5263994],[10.2297878,50.5263102],[10.229732,50.5261274],[10.2296291,50.5259016],[10.2296322,50.5258536],[10.2296492,50.5257918],[10.2295736,50.5257487],[10.22953,50.5257053],[10.2295184,50.5256232],[10.2294953,50.5254883],[10.2294145,50.525331],[10.2293816,50.525267],[10.2293391,50.5252257],[10.2293091,50.5251966],[10.2292689,50.5251326],[10.229254,50.5250847],[10.2292534,50.5250229],[10.2292385,50.5249772],[10.2289651,50.5245943],[10.2288743,50.5244805],[10.2287614,50.5243391],[10.2286049,50.5241409],[10.2285466,50.5240634],[10.2284564,50.5239998],[10.2281941,50.5240597],[10.2281095,50.524079],[10.2279157,50.5237575],[10.227773,50.523518],[10.2277099,50.5233103],[10.2276821,50.523077],[10.2276664,50.5229583],[10.2278195,50.5229127],[10.2281421,50.5228166],[10.2280663,50.5224834],[10.2280133,50.5222526],[10.2278532,50.522043],[10.2277114,50.5218721],[10.2275585,50.5216671],[10.2275024,50.5214386],[10.22755,50.521228],[10.2275734,50.5210702],[10.2275652,50.5210479],[10.2275577,50.5210037],[10.2275616,50.5209377],[10.2275621,50.5209291],[10.2275709,50.5208483],[10.227543,50.5206107],[10.2272012,50.5201869],[10.2268813,50.5198019],[10.2267895,50.5196101],[10.2267722,50.5193428],[10.2266964,50.5191897],[10.226684,50.5191649],[10.2266715,50.5191507],[10.226488,50.5189438],[10.2265979,50.5188358],[10.2266505,50.5187373],[10.2266097,50.5186048],[10.2264476,50.518553],[10.2262894,50.5185404],[10.2261807,50.5184288],[10.2258748,50.5183228],[10.2258861,50.5183069],[10.226168,50.5179126],[10.2262588,50.5177616],[10.2262665,50.5177489],[10.2262791,50.5177199],[10.2263096,50.5176503],[10.2263609,50.5175336],[10.2263993,50.5174425],[10.2264343,50.5173595],[10.226601,50.5172124],[10.2268076,50.5170927],[10.2269601,50.5169458],[10.2270312,50.5168923],[10.2270532,50.5168758],[10.2270736,50.5168355],[10.2272616,50.5166609],[10.2273404,50.5166469],[10.2273941,50.5166329],[10.2274043,50.5166031],[10.227404,50.5165712],[10.2274178,50.5165231],[10.227475,50.5165045],[10.2275394,50.5165043],[10.2275751,50.5164766],[10.2275745,50.5164332],[10.2275773,50.5163668],[10.2276091,50.5163141],[10.2276767,50.5162726],[10.2277481,50.5162358],[10.2278263,50.5161806],[10.2280396,50.5160219],[10.2280461,50.5159601],[10.2280596,50.5158892],[10.228113,50.5158547],[10.2285315,50.5157682],[10.2286456,50.5157129],[10.2287564,50.5156689],[10.2288739,50.515593],[10.2289734,50.5155331],[10.2290374,50.5154871],[10.2291362,50.5154472],[10.2293373,50.5153669],[10.2297262,50.5152121],[10.2298293,50.5151224],[10.2299649,50.5150715],[10.2301009,50.5150503],[10.2303987,50.5150742],[10.230422,50.5150962],[10.2304488,50.515058],[10.230502,50.5150097],[10.2305517,50.5149752],[10.2306375,50.5149427],[10.2307626,50.5149331],[10.2309126,50.5148685],[10.2310911,50.5147945],[10.2312516,50.514716],[10.2312773,50.5146946],[10.2312365,50.5146659],[10.2309983,50.514509],[10.231018,50.5143673],[10.231149,50.5142203],[10.2312372,50.5140782],[10.231278,50.5140359],[10.2312829,50.5140209],[10.2313361,50.5139681],[10.2314182,50.513922],[10.2315033,50.5138507],[10.2315314,50.5137866],[10.2315424,50.513738],[10.2315485,50.513711],[10.2315918,50.5136387],[10.2316147,50.5136001],[10.2316157,50.5135986],[10.2316173,50.5135959],[10.2316178,50.5135952],[10.2316216,50.5135823],[10.2316241,50.5135744],[10.2316464,50.5135003],[10.2316914,50.513361],[10.2316994,50.513336],[10.2317014,50.5133298],[10.2317027,50.5133259],[10.2317061,50.5133153],[10.2317225,50.5132644],[10.2317495,50.5131134],[10.2317226,50.5129557],[10.2316061,50.5127962],[10.2314027,50.5125683],[10.2312699,50.5124479],[10.2312071,50.5123909],[10.2311272,50.512335],[10.2309252,50.5121932],[10.2306938,50.5120159],[10.2305625,50.5118245],[10.2304136,50.5116422],[10.2302036,50.5114739],[10.2300554,50.5113739],[10.2301048,50.5113028],[10.2301917,50.5112894],[10.2303337,50.5112675],[10.2304743,50.5113195],[10.2306122,50.5114652],[10.2308566,50.511687],[10.2309056,50.5117314],[10.2309688,50.5116237],[10.2309967,50.5116161],[10.2310184,50.5116102],[10.2310465,50.5116024],[10.2310794,50.5115934],[10.2311048,50.5115865],[10.2314488,50.5115714],[10.2318717,50.5115603],[10.2323625,50.511556],[10.2329289,50.5115374],[10.2340686,50.5115074],[10.2342334,50.5115042],[10.234531,50.5114983],[10.2349933,50.511494],[10.2353411,50.5115039],[10.2357288,50.5115297],[10.2360982,50.5115509],[10.236529,50.5116085],[10.2368456,50.5117031],[10.237281,50.5118383],[10.2379088,50.5118813],[10.2381819,50.5119327],[10.2385198,50.5120112],[10.2391813,50.5121751],[10.2396054,50.5122625],[10.2400149,50.5123361],[10.2404384,50.5123709],[10.2408979,50.5124121],[10.2412492,50.5124221],[10.2414934,50.5124553],[10.2417163,50.5125161],[10.241904,50.5126204],[10.2420309,50.5127524],[10.2421155,50.5129259],[10.2422403,50.5131745],[10.2425253,50.5136465],[10.2426902,50.5139407],[10.242839,50.5141139],[10.2429731,50.5142275],[10.2431358,50.5142999],[10.2432073,50.5143317],[10.2434596,50.514438],[10.2436044,50.5145654],[10.2437675,50.5146644],[10.2438709,50.5147273],[10.2439332,50.5147651],[10.2438251,50.5144249],[10.2437349,50.5140709],[10.2437094,50.5137304],[10.243712,50.5133371],[10.2437304,50.5130695],[10.2437352,50.5128614],[10.2437197,50.5127254],[10.2437032,50.5125804],[10.2438423,50.5125954],[10.2439258,50.5126045],[10.2441761,50.5125554],[10.2443762,50.5124927],[10.2446481,50.5124365],[10.2451963,50.5124204],[10.2454864,50.5124032],[10.2462255,50.5124364],[10.2466849,50.5124892],[10.2470005,50.5124923],[10.247574,50.5125012],[10.2482048,50.5125646],[10.2484345,50.5126148],[10.2485817,50.5126233],[10.2487066,50.5125886],[10.2487657,50.5125528],[10.2488812,50.5124828],[10.2491373,50.5122875],[10.2493579,50.5121405],[10.2496824,50.511993],[10.2499326,50.511912],[10.2502973,50.5118261],[10.2504902,50.511782],[10.2505171,50.5117734],[10.2506869,50.5117194],[10.2508329,50.5116481],[10.2509541,50.511586],[10.2511478,50.5114229],[10.2511507,50.5114204],[10.2514875,50.5111368],[10.2515343,50.5110975],[10.2516222,50.5110235],[10.2517148,50.5109797],[10.2518223,50.5109587],[10.252005,50.5109695],[10.2523746,50.5110274],[10.252845,50.5111101],[10.2532873,50.511234],[10.253826,50.5113598],[10.2542043,50.5115549],[10.2546041,50.5117384],[10.2552028,50.512097],[10.2556283,50.5123399],[10.2559815,50.5125372],[10.2561624,50.512685],[10.2563432,50.5128375],[10.2563578,50.5128474],[10.2563906,50.5128696],[10.2564335,50.5128988],[10.256481,50.5129023],[10.256523,50.5129053],[10.2565256,50.512904],[10.2565727,50.5128802],[10.2566051,50.5128639],[10.2571838,50.5123497],[10.2572781,50.5122788],[10.2577242,50.5119432],[10.2583029,50.511413],[10.2589538,50.5109329],[10.2593776,50.5106396],[10.2593842,50.510635],[10.2594357,50.5105993],[10.2594483,50.5105905],[10.2594507,50.5105886],[10.2594645,50.5105778],[10.2594782,50.5105672],[10.2596467,50.5104356],[10.2596686,50.5104183],[10.2596862,50.5104024],[10.2596935,50.5103957],[10.2598514,50.5102716],[10.2598458,50.5102683],[10.2597787,50.5102264],[10.2597773,50.5101893],[10.2596749,50.5100001],[10.2596095,50.5098998],[10.2595943,50.5098335],[10.2596024,50.509778],[10.259603,50.5097746],[10.2596034,50.5097714],[10.2596077,50.5097422],[10.2596996,50.5096115],[10.2598162,50.5094534],[10.2603306,50.5089625],[10.2609565,50.5085054],[10.2615964,50.5080274],[10.2621834,50.5076024],[10.2628022,50.5071681],[10.2633215,50.5068003],[10.2636734,50.5065202],[10.2640068,50.5062195],[10.2643092,50.5059876],[10.26459,50.5057854],[10.2649817,50.5055554],[10.2652882,50.5053919],[10.2656687,50.5051185],[10.2660735,50.5047832],[10.2664972,50.5045005],[10.2668923,50.5042727],[10.2670775,50.5041646],[10.2672921,50.5041202],[10.2674496,50.504115],[10.267658,50.5041554],[10.2680428,50.5042863],[10.2685639,50.5044463],[10.2702405,50.5050588],[10.2706613,50.5051942],[10.2710207,50.5053094],[10.2713726,50.5053787],[10.2718284,50.5054363],[10.2723055,50.5054846],[10.2730059,50.5055775],[10.2737266,50.505673],[10.2739421,50.5057041],[10.2741103,50.5057034],[10.2742142,50.505703],[10.2744216,50.5056541],[10.2747144,50.5055639],[10.2750361,50.5054642],[10.2754037,50.5053507],[10.2757283,50.5052055],[10.2760564,50.5050579],[10.2766295,50.504786],[10.2766588,50.5047721],[10.2771927,50.5044386],[10.2777729,50.5040958],[10.2784177,50.5037413],[10.278867,50.5035314],[10.2790842,50.5034026],[10.2792404,50.5032808],[10.2798877,50.5028326],[10.2803925,50.5024832],[10.2806274,50.50232],[10.2808437,50.5021226],[10.2810929,50.5019662],[10.2811494,50.5019401],[10.2813425,50.5018509],[10.281628,50.5017629],[10.2818239,50.5016547],[10.2822338,50.5014588],[10.2823858,50.5013979],[10.282505,50.5013503],[10.282561,50.5013141],[10.2826865,50.501233],[10.2827536,50.5011527],[10.2827632,50.5010544],[10.2828842,50.5009717],[10.2830372,50.500875],[10.2834863,50.5006631],[10.2836681,50.5005579],[10.2839883,50.500373],[10.2843193,50.5001728],[10.2846076,50.5000048],[10.2848246,50.4998531],[10.2851172,50.4997377],[10.2855136,50.4996263],[10.2859546,50.4995441],[10.2864524,50.4994832],[10.2867571,50.4994784],[10.2868934,50.49947],[10.2870734,50.4994117],[10.2874384,50.4992174],[10.2877209,50.4990272],[10.288039,50.4988418],[10.2880623,50.4988275],[10.2880891,50.4988119],[10.2882813,50.498697],[10.2884583,50.4986158],[10.2885851,50.4985251],[10.288641,50.4983815],[10.2886539,50.4982352],[10.2886559,50.4981141],[10.288694,50.4979704],[10.2887919,50.4978864],[10.2891146,50.4976507],[10.2894113,50.4974604],[10.289798,50.4972389],[10.2903514,50.4969086],[10.2906774,50.4966867],[10.2909775,50.4965263],[10.2912482,50.4963885],[10.2914469,50.4962892],[10.2916274,50.4961968],[10.2918513,50.4960792],[10.2920348,50.4960301],[10.2922901,50.4959723],[10.2928606,50.4958716],[10.2931447,50.4958167],[10.2932786,50.4957888],[10.2935405,50.4957607],[10.2938165,50.4957671],[10.2941173,50.4957691],[10.2942048,50.4957645],[10.29439,50.4957548],[10.2944058,50.4957559],[10.2944746,50.4957605],[10.2946154,50.4957699],[10.2947769,50.4957595],[10.2949243,50.4957262],[10.2952411,50.4956299],[10.2954714,50.495565],[10.2955789,50.4955698],[10.2956541,50.4955731],[10.2958871,50.495579],[10.296188,50.4955765],[10.296536,50.4955512],[10.2968451,50.4954915],[10.2970793,50.495413],[10.2973577,50.4952501],[10.2976628,50.4950645],[10.2977446,50.4950147],[10.2980158,50.4948541],[10.2982468,50.4947413],[10.2985425,50.4946243],[10.2986115,50.4945978],[10.2987876,50.4945299],[10.2990214,50.494465],[10.2991794,50.49445],[10.2992208,50.4944462],[10.2993876,50.4944307],[10.2998002,50.49439],[10.2999365,50.4943771],[10.3000917,50.4943118],[10.3003767,50.494181],[10.3005754,50.494077],[10.3007055,50.4940048],[10.300908,50.4938848],[10.3010276,50.4937964],[10.3015924,50.4936536],[10.3018506,50.4936301],[10.3022739,50.4936054],[10.3025932,50.4935822],[10.302737,50.4935511],[10.3030322,50.4934639],[10.3033202,50.4933696],[10.3036985,50.4932349],[10.303969,50.4931199],[10.3044158,50.4929535],[10.3046826,50.4928478],[10.3053099,50.4925865],[10.3058421,50.4923732],[10.3062869,50.4921948],[10.3065403,50.4924982],[10.3067238,50.4926892],[10.3069955,50.492972],[10.3071813,50.4931432],[10.3073525,50.4933012],[10.3076608,50.4935294],[10.3079714,50.4937466],[10.3079906,50.4937602],[10.3082494,50.4939471],[10.3084202,50.4940281],[10.3087024,50.494094],[10.3090813,50.4941649],[10.3095104,50.4942133],[10.3098938,50.4942157],[10.3103312,50.4942024],[10.3107059,50.4942092],[10.311471,50.4941944],[10.3117147,50.4941807],[10.3119047,50.4941373],[10.3125172,50.4939547],[10.3128793,50.4938153],[10.3132769,50.4936784],[10.3140294,50.4934386],[10.3145704,50.4932742],[10.3147841,50.4932162],[10.3148511,50.493198],[10.3151257,50.4931235],[10.3156524,50.4929865],[10.316158,50.4928551],[10.3167423,50.4927536],[10.3172685,50.492741],[10.3181852,50.4927199],[10.3185227,50.4927033],[10.3189483,50.4926811],[10.3190621,50.4926696],[10.3191989,50.4926556],[10.3192875,50.4926478],[10.3194355,50.4926345],[10.3195168,50.4926272],[10.3196073,50.4926191],[10.320234,50.4925894],[10.3208933,50.4925735],[10.3215058,50.4925872],[10.3221684,50.492585],[10.3226771,50.4925849],[10.3236405,50.4925965],[10.3241637,50.4926124],[10.324941,50.4926239],[10.3254711,50.4926146],[10.3257244,50.4932388],[10.3258114,50.4935043],[10.3258932,50.4937617],[10.3259825,50.4940692],[10.3260433,50.4943189],[10.3261386,50.4946163],[10.3262604,50.4946167],[10.3263969,50.4946137],[10.3266181,50.4946108],[10.3269944,50.4946007],[10.3273935,50.4945998],[10.3276446,50.4946071],[10.3278398,50.4946128],[10.3280004,50.4946254],[10.3282563,50.4946366],[10.328563,50.4946435],[10.3287847,50.4946378],[10.329034,50.4946222],[10.3293509,50.4945851],[10.3295667,50.494554],[10.3298287,50.494519],[10.3300425,50.4944826],[10.3305027,50.4944124],[10.3307162,50.494362],[10.3307773,50.494309],[10.3308419,50.4941067],[10.3309039,50.4938759],[10.3309735,50.4936352],[10.3310298,50.4934278],[10.3309638,50.4932475],[10.3308866,50.4929587],[10.3308194,50.4927592],[10.3307761,50.492596],[10.3307555,50.4924871],[10.3307696,50.4924247],[10.33084,50.4923269],[10.3309814,50.492096],[10.3311273,50.491934],[10.3312886,50.4918038],[10.3313926,50.4917307],[10.3315753,50.4916164],[10.331869,50.4914908],[10.3320869,50.491405],[10.3321127,50.4913949],[10.3324388,50.4912327],[10.332796,50.4910855],[10.3330364,50.490951],[10.333155,50.4908753],[10.3332406,50.4907549],[10.3332845,50.490558],[10.3333215,50.4903274],[10.3333625,50.4901591],[10.3334247,50.489918],[10.333471,50.4896389],[10.3334994,50.4894649],[10.3335461,50.4892636],[10.3336466,50.4889049],[10.333704,50.4886377],[10.3337217,50.4885489],[10.3337472,50.488423],[10.3337436,50.4882722],[10.3337294,50.4880917],[10.3336578,50.487916],[10.333642,50.4879004],[10.3334751,50.4877353],[10.3333647,50.4876615],[10.3332603,50.4875916],[10.3330884,50.487459],[10.3329952,50.4873493],[10.3329594,50.4872443],[10.3329595,50.4870913],[10.3329989,50.4869268],[10.3330564,50.4867691],[10.333171,50.4866505],[10.3333645,50.4864974],[10.3335757,50.486349],[10.3338661,50.4861409],[10.334167,50.4859491],[10.3345682,50.4857206],[10.3349085,50.4854761],[10.3351737,50.485266],[10.3354208,50.4850718],[10.3357695,50.484853],[10.3366015,50.4844739],[10.3365082,50.484114],[10.3372405,50.4839479],[10.3379317,50.4838244],[10.3388199,50.4836965],[10.3392639,50.4836228],[10.340257,50.4834213],[10.3413545,50.4831291],[10.3410191,50.4822778],[10.3408151,50.48175],[10.3406398,50.4812772],[10.340486,50.4806125],[10.3404726,50.4805552],[10.3403714,50.4801213],[10.3403639,50.4800853],[10.3402999,50.4797789],[10.3401281,50.4794726],[10.3400027,50.4792488],[10.3397415,50.4788149],[10.3394873,50.4784037],[10.3393299,50.4781409],[10.3391687,50.477762],[10.3389684,50.4773781],[10.3388719,50.4771885],[10.3388468,50.4770058],[10.3388861,50.4767704],[10.3389794,50.476574],[10.3390759,50.4763846],[10.3392408,50.4762221],[10.3393482,50.4760853],[10.3394305,50.4759549],[10.3394343,50.4757995],[10.3394306,50.4756784],[10.3393878,50.4755072],[10.3393092,50.4753522],[10.3393089,50.4753519],[10.3391157,50.4750688],[10.3391028,50.4750543],[10.3388222,50.4747421],[10.3385787,50.4744771],[10.3383605,50.4742441],[10.3380133,50.4739746],[10.3376697,50.4737737],[10.3375623,50.4736409],[10.3375479,50.4736229],[10.3374082,50.4733784],[10.33724,50.4730358],[10.3370898,50.4728211],[10.3369895,50.4724899],[10.3369039,50.4722958],[10.3368321,50.4720103],[10.336818,50.4717887],[10.3368208,50.4716922],[10.3368253,50.4715375],[10.3368538,50.4713295],[10.3368683,50.4710439],[10.3369364,50.4706259],[10.3369724,50.4703381],[10.3369724,50.4701736],[10.3369474,50.4698675],[10.3369474,50.4697122],[10.3369297,50.4694427],[10.336926,50.4691685],[10.3369191,50.4689972],[10.3368761,50.4688534],[10.3368332,50.4687071],[10.3367545,50.4685336],[10.3367074,50.4681666],[10.3366973,50.4680881],[10.3365651,50.4676975],[10.3364541,50.4674005],[10.3363575,50.4670191],[10.3362776,50.4668159],[10.3362395,50.4667198],[10.336168,50.4664687],[10.3360929,50.4661602],[10.3360284,50.4658496],[10.3365621,50.4657969],[10.3370954,50.465733],[10.3377756,50.4656827],[10.3383448,50.4656119],[10.3390501,50.4655478],[10.3395621,50.4654657],[10.3402209,50.4653581],[10.3404321,50.465333],[10.3404965,50.4651982],[10.3405468,50.4649034],[10.3405719,50.4647413],[10.3407044,50.4645722],[10.3408511,50.4644283],[10.3413631,50.4640309],[10.3416315,50.4637658],[10.3418143,50.4636035],[10.3419504,50.4634939],[10.3420111,50.4634436],[10.342072,50.4633271],[10.3434217,50.4632515],[10.3441269,50.4632332],[10.3447355,50.4632126],[10.3452975,50.46316],[10.3465958,50.4630825],[10.3469884,50.463067],[10.347073,50.4630637],[10.3470803,50.4628147],[10.347091,50.4627302],[10.3471304,50.4626343],[10.347177,50.4625429],[10.3471768,50.4624127],[10.3471735,50.462214],[10.3472021,50.4620426],[10.3472163,50.461917],[10.3472378,50.4618118],[10.3472235,50.4616978],[10.3471736,50.4616133],[10.3471377,50.4615355],[10.3471521,50.461451],[10.3471914,50.4612728],[10.3472022,50.4611472],[10.3472452,50.4609713],[10.347306,50.4608296],[10.3473939,50.4608052],[10.3474705,50.4607839],[10.3475923,50.4606902],[10.3477749,50.4604687],[10.3481903,50.4600277],[10.348337,50.4598061],[10.3485052,50.4595914],[10.3486735,50.4594474],[10.3488847,50.4593492],[10.3490601,50.4592349],[10.3492175,50.4590752],[10.3494646,50.458858],[10.3507073,50.4578779],[10.3507374,50.4578398],[10.3508119,50.4577455],[10.3509092,50.4576257],[10.3509881,50.4574763],[10.3510534,50.4573548],[10.3511036,50.4572056],[10.3511397,50.4570727],[10.3511696,50.456965],[10.3511914,50.4568277],[10.35125,50.4567357],[10.3513091,50.456653],[10.3513825,50.4565791],[10.3514615,50.4565171],[10.351509,50.4564797],[10.351671,50.4563708],[10.3518368,50.4562732],[10.351975,50.456208],[10.3520395,50.456181],[10.3522337,50.4561003],[10.35249,50.4560362],[10.352731,50.4559425],[10.3529518,50.4558485],[10.3529612,50.4558444],[10.3532353,50.4557823],[10.3534348,50.455737],[10.3536836,50.4556707],[10.3540899,50.4555959],[10.3544316,50.4555263],[10.3547592,50.4554525],[10.355115,50.4553668],[10.355578,50.4552826],[10.3558662,50.4551997],[10.3561581,50.4551376],[10.3564845,50.4550179],[10.3566616,50.4549408],[10.3568734,50.4548199],[10.3570564,50.4546857],[10.3572473,50.4545833],[10.3574053,50.4544607],[10.3575091,50.4542998],[10.3575767,50.4541393],[10.3576447,50.4539877],[10.3577335,50.4537971],[10.3577222,50.4536191],[10.3576661,50.4533682],[10.3575655,50.4531887],[10.3574465,50.453],[10.3573814,50.4528178],[10.3573744,50.4526717],[10.3574483,50.4524677],[10.3574948,50.4523095],[10.3575754,50.452078],[10.3576428,50.4519081],[10.3578246,50.451719],[10.3579892,50.4515644],[10.3581469,50.4514258],[10.3583295,50.4512824],[10.3585281,50.4510519],[10.3586822,50.4509156],[10.3588181,50.4507568],[10.3589355,50.4505772],[10.3590712,50.4504115],[10.3592238,50.4501997],[10.3593022,50.4500367],[10.3594228,50.4498345],[10.3596201,50.4495538],[10.3597193,50.4493474],[10.3598326,50.4491496],[10.3599734,50.4489107],[10.3600377,50.448817],[10.3600982,50.4487289],[10.3601841,50.4485772],[10.3602784,50.4484804],[10.3604711,50.448314],[10.3606153,50.4481983],[10.3609629,50.4480867],[10.3610327,50.4480643],[10.361151,50.4480402],[10.3615044,50.4479681],[10.3617827,50.4479381],[10.3620223,50.4479381],[10.3622544,50.4479154],[10.3626004,50.447871],[10.3628361,50.447855],[10.3631101,50.4477973],[10.3633739,50.4477561],[10.3633616,50.4476831],[10.3632698,50.4475834],[10.3631775,50.4474803],[10.3631743,50.4474769],[10.3630947,50.4474412],[10.3630304,50.4474508],[10.3629305,50.4474517],[10.3627906,50.4474417],[10.3626941,50.4474427],[10.3625871,50.4474642],[10.3624595,50.4475065],[10.3623385,50.4475421],[10.3622243,50.4475478],[10.3621454,50.447537],[10.3620346,50.4475381],[10.361938,50.447539],[10.361802,50.4475404],[10.3617588,50.4475247],[10.3617038,50.4474728],[10.3616418,50.4474185],[10.3615552,50.4473895],[10.3614864,50.4473582],[10.3614137,50.4473064],[10.3613624,50.4472589],[10.361336,50.4471905],[10.3613343,50.447122],[10.3613073,50.4470637],[10.3613004,50.4470494],[10.3612379,50.4469768],[10.361179,50.4469042],[10.3611275,50.4468452],[10.3610723,50.4467817],[10.361057,50.4467294],[10.3610514,50.4466517],[10.3610569,50.4465809],[10.3610411,50.4465193],[10.3610177,50.4464372],[10.3609804,50.4463715],[10.360933,50.4463306],[10.3608851,50.4462763],[10.3608372,50.4462127],[10.3608185,50.446174],[10.3608027,50.4461149],[10.3607919,50.4459526],[10.3607646,50.4457061],[10.3607645,50.4457049],[10.360754,50.4455645],[10.3607607,50.4455299],[10.3607732,50.4454637],[10.3608892,50.445369],[10.361062,50.4452692],[10.3612956,50.4451641],[10.361654,50.4450348],[10.3621906,50.4448857],[10.3625496,50.444784],[10.3627721,50.4446585],[10.3630476,50.4445142],[10.3632562,50.4444116],[10.3633898,50.4443053],[10.3635271,50.4442125],[10.363607,50.4441112],[10.363744,50.4438495],[10.3638678,50.4435782],[10.3638801,50.4435511],[10.3639493,50.443414],[10.3640168,50.4432802],[10.3640862,50.4430349],[10.3641886,50.4428236],[10.3643184,50.4425687],[10.3645304,50.4423039],[10.3646689,50.4421039],[10.3649046,50.44209],[10.3656203,50.4423176],[10.3660934,50.4425324],[10.3662439,50.4426221],[10.3664801,50.4427628],[10.3665144,50.4427163],[10.3675167,50.4413543],[10.3657199,50.4408833],[10.3655658,50.4408429],[10.3656982,50.4405377],[10.3657886,50.4402808],[10.3658526,50.4401089],[10.3659333,50.4398887],[10.366011,50.4396894],[10.3660865,50.4395537],[10.3661668,50.4394569],[10.3662729,50.4392685],[10.3663896,50.4390572],[10.3665338,50.4388066],[10.3665466,50.4387908],[10.3666381,50.4386778],[10.3672816,50.4386623],[10.3677886,50.4386232],[10.3681859,50.4386331],[10.3685614,50.4386363],[10.3689807,50.4386666],[10.3696107,50.4386879],[10.369722,50.4387052],[10.3697591,50.4387619],[10.3697496,50.4391139],[10.3700997,50.4390968],[10.3705611,50.4390903],[10.3711121,50.439101],[10.3714699,50.4391065],[10.3718104,50.4391375],[10.3721762,50.4391683],[10.3726382,50.4392004],[10.3732094,50.4392501],[10.3737686,50.4392703],[10.3740556,50.4392806],[10.3742596,50.4401447],[10.3759646,50.4405565],[10.3775822,50.4404383],[10.3778718,50.4400977],[10.3778925,50.4400733],[10.3779022,50.440062],[10.3789759,50.4399542],[10.3795915,50.4398798],[10.3801929,50.4398237],[10.3805042,50.4397628],[10.3807265,50.4396967],[10.3808803,50.4396536],[10.3809306,50.4396148],[10.381186,50.4392679],[10.3812364,50.4391857],[10.3812657,50.4390213],[10.3812626,50.4388957],[10.3812345,50.4387744],[10.3811562,50.438699],[10.3810168,50.4386462],[10.3807773,50.4385728],[10.3805771,50.4385312],[10.3799479,50.438425],[10.3791182,50.4383252],[10.3785317,50.438274],[10.3776732,50.4382382],[10.3768078,50.4381591],[10.3765351,50.4381463],[10.3761497,50.4381282],[10.3761803,50.437951],[10.376307,50.4372214],[10.3752985,50.4371418],[10.3744364,50.4371085],[10.373803,50.4371437],[10.3732096,50.4372001],[10.3729236,50.4371957],[10.372695,50.4372162],[10.3723705,50.4372513],[10.372415,50.4370201],[10.3724607,50.4368231],[10.37254,50.4365528],[10.3725954,50.4363282],[10.3726683,50.436083],[10.3727197,50.4358334],[10.3728273,50.4355421],[10.3729592,50.4350748],[10.3724686,50.4350431],[10.3718078,50.4349305],[10.3713003,50.4348555],[10.3708736,50.4347858],[10.3706347,50.4347797],[10.3699766,50.4347767],[10.3700521,50.4343776],[10.3700575,50.4343496],[10.3701451,50.4338861],[10.3702526,50.4334419],[10.3703133,50.4331304],[10.370407,50.4328575],[10.3704862,50.4324203],[10.3705407,50.4320084],[10.3705927,50.4317839],[10.3719467,50.4318715],[10.3726025,50.4319315],[10.3732098,50.431983],[10.3732148,50.4319834],[10.3738052,50.432043],[10.3751252,50.4321765],[10.37623,50.4322927],[10.3784829,50.4324772],[10.3785985,50.4317813],[10.3786697,50.4313511],[10.3789297,50.4298482],[10.3789729,50.4297728],[10.3801674,50.4298457],[10.3814907,50.4299257],[10.3838403,50.4300188],[10.3849135,50.429991],[10.3858204,50.4299725],[10.3868391,50.4299518],[10.3870541,50.4299476],[10.3868974,50.429816],[10.3863467,50.4293537],[10.3860953,50.4290822],[10.3858445,50.4288113],[10.3857985,50.4286193],[10.3859402,50.4286264],[10.386074,50.4286331],[10.3868913,50.4286743],[10.3880053,50.4287305],[10.3903727,50.4288485],[10.3921824,50.4289246],[10.3921815,50.4288613],[10.3921806,50.4287983],[10.3921798,50.4287354],[10.3921795,50.4287213],[10.3921789,50.4286665],[10.3921782,50.4286186],[10.3921654,50.4276587],[10.3921764,50.4276131],[10.3922372,50.4275835],[10.3923734,50.4275586],[10.3929883,50.4276097],[10.3940074,50.4277074],[10.3945974,50.4277587],[10.3949548,50.4277844],[10.3954235,50.4277692],[10.3973909,50.4277471],[10.3976768,50.4266938],[10.3977316,50.4264923],[10.3977631,50.4263763],[10.3977895,50.4262786],[10.3985618,50.4263712],[10.3987689,50.4264355],[10.3989405,50.426509],[10.3991153,50.4266097],[10.3999599,50.4254481],[10.4014611,50.425809],[10.4024937,50.426078],[10.4031331,50.4262391],[10.4034498,50.4257345],[10.4037481,50.4252917],[10.4039532,50.4249904],[10.4040447,50.4248423],[10.4042414,50.4243191],[10.4044397,50.4238739],[10.4046699,50.4234903],[10.4047892,50.4231387],[10.403188,50.4228074],[10.3998357,50.422128],[10.4004425,50.4204246],[10.4005292,50.4201528],[10.4006376,50.4198558],[10.4009325,50.4191507],[10.4009802,50.4190408],[10.3982918,50.418712],[10.3982778,50.4186183],[10.3983316,50.4185213],[10.3983823,50.4184289],[10.3977816,50.4184393],[10.3977432,50.4184354],[10.3976959,50.4184307],[10.3974708,50.4184182],[10.3971774,50.4183813],[10.396963,50.4183718],[10.3966839,50.4183599],[10.3963585,50.418348],[10.396051,50.4183405],[10.395765,50.4183447],[10.3954932,50.4183693],[10.3952211,50.4184009],[10.3949027,50.4184301],[10.3948156,50.4178017],[10.3946605,50.4162113],[10.3946085,50.4151082],[10.3944566,50.413782],[10.3938042,50.4136257],[10.3934621,50.4135348],[10.3931586,50.4134876],[10.3929692,50.413489],[10.3923648,50.413502],[10.3917747,50.4135241],[10.3919454,50.4118295],[10.3914065,50.4117467],[10.3911139,50.4117041],[10.3906893,50.4116334],[10.3890266,50.4113622],[10.3898025,50.4096136],[10.3894451,50.4096028],[10.3891128,50.409585],[10.3888416,50.4095539],[10.3885134,50.4094882],[10.3882919,50.409478],[10.3880559,50.4094791],[10.3877195,50.4095116],[10.3873512,50.4095189],[10.387058,50.4095082],[10.386826,50.4094774],[10.3864836,50.4094093],[10.3860092,50.4093179],[10.3856631,50.4092523],[10.3852818,50.4091634],[10.3848648,50.4090675],[10.3842334,50.4089501],[10.3843072,50.4088355],[10.3843537,50.4087632],[10.383923,50.408608],[10.3840957,50.4082365],[10.3843621,50.4078013],[10.3844725,50.4075438],[10.3846085,50.4072405],[10.3847845,50.4068803],[10.3849025,50.4065907],[10.3850784,50.4061539],[10.3851582,50.4059559],[10.3851608,50.4059498],[10.3842327,50.4058287],[10.3842785,50.4055959],[10.3838933,50.4055207],[10.3844213,50.4041683],[10.3844699,50.4039971],[10.3844998,50.4036022],[10.3844952,50.4028228],[10.3867404,50.402793],[10.386735,50.4026652],[10.386663,50.4026922],[10.3866246,50.4025096],[10.3866158,50.402468],[10.3866181,50.4022806],[10.3866274,50.4021163],[10.3867046,50.4019337],[10.3867828,50.4017575],[10.3868371,50.4016351],[10.3869843,50.4012884],[10.387298,50.4007712],[10.3877877,50.3999031],[10.38757,50.3998725],[10.3877315,50.3995304],[10.3878969,50.3991588],[10.3871585,50.3990385],[10.3871884,50.3988424],[10.3871913,50.3988228],[10.3872635,50.3983512],[10.387967,50.398412],[10.3881404,50.3976769],[10.3885433,50.3977408],[10.3885682,50.397469],[10.3898427,50.3975873],[10.3895844,50.3985458],[10.3899911,50.3985664],[10.3903722,50.3985859],[10.3904108,50.3985878],[10.3911777,50.398627],[10.3913184,50.3982142],[10.3914339,50.3978306],[10.3915595,50.3975046],[10.3918128,50.396946],[10.3922695,50.3958583],[10.3926296,50.3959218],[10.3927037,50.3957051],[10.3928177,50.3954521],[10.3929125,50.3953017],[10.393043,50.3951538],[10.3931807,50.3949854],[10.3932825,50.3948489],[10.3933733,50.3947397],[10.3934891,50.3946214],[10.3936158,50.394478],[10.3937569,50.3943393],[10.3938908,50.3942052],[10.3943064,50.3938188],[10.3947913,50.3933346],[10.3954792,50.3937722],[10.3948753,50.3943702],[10.3958538,50.3947315],[10.3957223,50.3948714],[10.3953901,50.3952251],[10.3949672,50.3956205],[10.395232,50.3958938],[10.3951474,50.3960807],[10.3950388,50.3962036],[10.3949543,50.3963837],[10.3948729,50.3966255],[10.3947819,50.3970364],[10.3959263,50.396985],[10.3957378,50.3966207],[10.39604,50.3964531],[10.3963499,50.3971356],[10.3967349,50.3969205],[10.3969111,50.3968275],[10.3971276,50.3966641],[10.3974809,50.3964146],[10.3979771,50.3961589],[10.3984054,50.3959371],[10.3990293,50.3955891],[10.3994151,50.395374],[10.3997006,50.3952145],[10.3998529,50.3956358],[10.4002253,50.3955782],[10.4003045,50.3957593],[10.4004344,50.3960559],[10.4004478,50.3960866],[10.4015542,50.3959253],[10.4026103,50.3957864],[10.4036031,50.3958487],[10.4037259,50.3954447],[10.4034513,50.3954022],[10.4036349,50.3949919],[10.4039696,50.3944885],[10.4043095,50.3947712],[10.4044906,50.3945596],[10.4048238,50.3947967],[10.4043997,50.3952812],[10.4051521,50.3954403],[10.4052977,50.3952262],[10.4063268,50.3955261],[10.4062474,50.3952926],[10.4061789,50.3950455],[10.4061638,50.3948124],[10.4061662,50.3946181],[10.4061901,50.3943989],[10.4062002,50.3941682],[10.406224,50.3939558],[10.4062654,50.3938028],[10.4063843,50.3934104],[10.408303,50.3937488],[10.408364,50.3945597],[10.4083865,50.3948575],[10.4092294,50.3946943],[10.4097018,50.3946029],[10.409862,50.3945719],[10.4101538,50.3945154],[10.4102062,50.3945054],[10.4101385,50.3947747],[10.4102759,50.3947811],[10.4119316,50.3948656],[10.4127319,50.3948993],[10.412713,50.3949905],[10.4129745,50.3950276],[10.4133461,50.3950804],[10.4140473,50.3951798],[10.4141594,50.3947714],[10.4142639,50.3944132],[10.4143604,50.3940891],[10.4146054,50.3936127],[10.4146681,50.3934599],[10.414822,50.3934356],[10.4150937,50.3934414],[10.4153614,50.3934563],[10.4154098,50.3934622],[10.4157183,50.3934993],[10.416246,50.393607],[10.417276,50.393861],[10.4175898,50.3939265],[10.4179899,50.3939352],[10.4185256,50.3939583],[10.4189043,50.3939785],[10.4192079,50.3939936],[10.4194787,50.3940567],[10.4197565,50.394154],[10.4198705,50.3941705],[10.4200639,50.394144],[10.4203181,50.3941018],[10.4206334,50.3940394],[10.4212715,50.3938848],[10.4215864,50.393836],[10.4219764,50.3937921],[10.4223342,50.3937779],[10.4226379,50.3937633],[10.4230066,50.3937354],[10.4231778,50.3934482],[10.4233654,50.392783],[10.4234087,50.3926291],[10.4245522,50.3926932],[10.4252804,50.392734],[10.4256035,50.3927563],[10.4256338,50.3927584],[10.4260369,50.3928198],[10.4265078,50.3928905],[10.4269392,50.392984],[10.4281232,50.3932158],[10.4283423,50.3932693],[10.4286757,50.3933509],[10.4296933,50.3935927],[10.4302563,50.3937264],[10.4308703,50.3938782],[10.4316053,50.3940594],[10.4326284,50.394295],[10.4328058,50.3943316],[10.43302,50.3943757],[10.4334213,50.3944585],[10.4336157,50.3944985],[10.4337515,50.3945265],[10.4346217,50.3946813],[10.4349065,50.3947248],[10.4350913,50.394753],[10.4353638,50.3947945],[10.4355292,50.3948356],[10.4357113,50.3948807],[10.4360213,50.3949284],[10.436465,50.3949966],[10.4366226,50.3950208],[10.436783,50.3950455],[10.4369815,50.395076],[10.4374775,50.3951523],[10.437591,50.3951697],[10.4380568,50.3952413],[10.4381347,50.3953376],[10.438173,50.3954383],[10.4381069,50.3956253],[10.4377906,50.3961859],[10.437601,50.3965938],[10.43755,50.3967035],[10.437263,50.397191],[10.4372439,50.3973234],[10.4372798,50.3976914],[10.4372694,50.3980361],[10.4372828,50.3981208],[10.4374365,50.3984938],[10.4375773,50.3987342],[10.4376144,50.3988223],[10.4376235,50.398844],[10.4377451,50.3991348],[10.4377997,50.3994113],[10.4378396,50.3997221],[10.4378924,50.4002066],[10.4378538,50.4012549],[10.4379608,50.4012581],[10.4406409,50.4013375],[10.4408405,50.401409],[10.4411044,50.401488],[10.4417103,50.4016548],[10.4421919,50.4017597],[10.4428166,50.4018398],[10.4435947,50.4019573],[10.444091,50.4020165],[10.4442503,50.4029446],[10.4450735,50.4029367],[10.4454157,50.4029335],[10.4462239,50.4029048],[10.4467133,50.4029227],[10.4471315,50.4029221],[10.447543,50.4028941],[10.447847,50.4028611],[10.4483874,50.4027788],[10.448695,50.4027687],[10.4489842,50.4027927],[10.4492019,50.4028347],[10.4494227,50.4029224],[10.4497823,50.4030838],[10.4498136,50.4030372],[10.449853,50.4029787],[10.449891,50.4029221],[10.4499653,50.4027971],[10.450047,50.40266],[10.4501306,50.4025119],[10.4502506,50.4022772],[10.4506752,50.4021971],[10.4507399,50.4021553],[10.4503484,50.4021381],[10.4504742,50.4020472],[10.4505253,50.4020203],[10.4513329,50.4015917],[10.4517096,50.4014355],[10.4519102,50.4013724],[10.4520998,50.4013594],[10.4522858,50.4013626],[10.4524674,50.4014137],[10.4526315,50.4014623],[10.4529947,50.4016121],[10.4533266,50.4016614],[10.4533245,50.4014902],[10.45333,50.401296],[10.4533562,50.4011431],[10.453408,50.4009628],[10.4534806,50.4008421],[10.4536113,50.400612],[10.4537601,50.4003658],[10.4538002,50.4002654],[10.4538018,50.4001055],[10.4537751,50.3998816],[10.4537735,50.399676],[10.4537931,50.3994818],[10.4537984,50.3992764],[10.4538178,50.399128],[10.4538693,50.3989591],[10.4539018,50.3988398],[10.4539061,50.3988239],[10.4539211,50.3987698],[10.4540507,50.3985107],[10.4540956,50.3984211],[10.4542268,50.3982157],[10.4543096,50.398086],[10.4545675,50.3976394],[10.4548392,50.3972088],[10.4550999,50.3968489],[10.4551633,50.3967872],[10.4552657,50.3966874],[10.4553109,50.3966112],[10.4553347,50.3965712],[10.4553503,50.3964365],[10.4553369,50.3963178],[10.4552505,50.3961463],[10.4552491,50.3961437],[10.4551038,50.3960061],[10.4549547,50.395905],[10.4545995,50.3956682],[10.4542403,50.3954636],[10.4541105,50.3953832],[10.4539916,50.3953095],[10.453761,50.3951212],[10.4535839,50.3949515],[10.4534,50.3947383],[10.4533087,50.394546],[10.4532211,50.3943652],[10.4531687,50.394228],[10.4530961,50.3939787],[10.4530576,50.3938712],[10.4529156,50.3937701],[10.4525529,50.393563],[10.4525706,50.392807],[10.4529354,50.3927719],[10.4531357,50.3927569],[10.4533683,50.392696],[10.4536335,50.3926172],[10.4538666,50.3925336],[10.4541032,50.39245],[10.4542829,50.3923572],[10.4544016,50.3922594],[10.4544845,50.3921775],[10.4546908,50.3918906],[10.4549302,50.3914917],[10.4551334,50.39115],[10.4552245,50.3909677],[10.4553008,50.3908354],[10.4553266,50.390719],[10.45536,50.3905935],[10.4554289,50.3904864],[10.4555694,50.3903614],[10.4556881,50.390275],[10.4558383,50.3902529],[10.4560675,50.3902058],[10.4562166,50.3901218],[10.4562687,50.3900923],[10.4564267,50.3900131],[10.4564821,50.3898164],[10.456585,50.3894745],[10.4567066,50.3891319],[10.4568299,50.3887847],[10.4568343,50.3887721],[10.4570283,50.3882612],[10.4571647,50.3878095],[10.4597269,50.3877833],[10.4597095,50.3876665],[10.4596729,50.3874199],[10.4596358,50.387173],[10.4595524,50.3869122],[10.4594732,50.3865808],[10.4593624,50.3861897],[10.4590529,50.3852176],[10.4589282,50.3847967],[10.4587426,50.384369],[10.4584486,50.3836871],[10.4582048,50.3829734],[10.4586799,50.3829913],[10.4587366,50.3829094],[10.4587439,50.382899],[10.4588933,50.3826838],[10.4590525,50.3824811],[10.4592079,50.3822922],[10.4593378,50.3821374],[10.4594782,50.3820237],[10.4599912,50.3817723],[10.4602638,50.381659],[10.4599181,50.3811735],[10.4596951,50.3809305],[10.4595395,50.3807447],[10.459426,50.3806025],[10.4593841,50.3805501],[10.4595463,50.3803885],[10.4597334,50.380243],[10.4601418,50.3801077],[10.460977,50.3798209],[10.4614965,50.3796517],[10.4617744,50.3795429],[10.4617755,50.3795425],[10.4617796,50.3795409],[10.4617845,50.3795376],[10.4618801,50.3794727],[10.4619778,50.379343],[10.4624089,50.3786867],[10.4626043,50.3783952],[10.4627568,50.3781263],[10.4629343,50.3778393],[10.4629854,50.3777092],[10.4630008,50.3775881],[10.463002,50.377458],[10.4629714,50.3772728],[10.4629624,50.3770854],[10.4629747,50.3769119],[10.4630082,50.3767545],[10.4630846,50.3766085],[10.463182,50.3764994],[10.4635383,50.3762038],[10.4638434,50.3760291],[10.4640335,50.3759499],[10.4647908,50.3767684],[10.4655561,50.3774749],[10.4657158,50.3771923],[10.4658319,50.3769987],[10.4659546,50.376837],[10.4665827,50.376522],[10.4667017,50.3767943],[10.4666265,50.3768053],[10.4666426,50.3770042],[10.466684,50.3771665],[10.4668782,50.37743],[10.4670426,50.3776197],[10.4670728,50.3776547],[10.4672682,50.3775303],[10.4674011,50.3774461],[10.468341,50.3768487],[10.4685168,50.3767649],[10.4694307,50.3764237],[10.4694917,50.3764009],[10.4695278,50.3763487],[10.4695211,50.3762823],[10.4695179,50.3762286],[10.4695119,50.3761269],[10.4695451,50.3759946],[10.4698037,50.3756552],[10.4698539,50.3755904],[10.4698886,50.3755735],[10.4699094,50.3755618],[10.4699264,50.3755522],[10.4710893,50.3745452],[10.4713553,50.374316],[10.4717163,50.3738964],[10.4718565,50.3736756],[10.4719977,50.3734531],[10.4720337,50.3733964],[10.4726419,50.3734737],[10.4729991,50.3734709],[10.473067,50.373462],[10.4731073,50.3733639],[10.4731729,50.3732248],[10.4732817,50.37307],[10.4733545,50.3729331],[10.4734025,50.3727802],[10.4734145,50.3726592],[10.4733876,50.3724899],[10.4743101,50.3727065],[10.4752929,50.3729532],[10.4761368,50.3731785],[10.4768704,50.3733738],[10.4769559,50.3733786],[10.477192,50.3733409],[10.477371,50.3732983],[10.4780976,50.3731347],[10.4784299,50.3730881],[10.4788767,50.3730444],[10.4792162,50.3730093],[10.4794201,50.3729805],[10.4797594,50.3729569],[10.480156,50.3729472],[10.4804985,50.3729578],[10.480784,50.3729796],[10.4808768,50.3729983],[10.4809367,50.3730535],[10.481045,50.3732916],[10.4810974,50.3734083],[10.4812388,50.3735415],[10.481384,50.373661],[10.4815823,50.3738104],[10.4818703,50.3739488],[10.4821903,50.3740691],[10.482578,50.3742102],[10.4827845,50.3742796],[10.4829698,50.3743102],[10.4831407,50.3743612],[10.4834078,50.3744332],[10.4836887,50.3745443],[10.4838955,50.3746453],[10.4841025,50.3746964],[10.4844844,50.3747481],[10.4848197,50.3747951],[10.4851478,50.3748603],[10.485615,50.3749374],[10.4862072,50.3750539],[10.486464,50.3751028],[10.486685,50.3751493],[10.4869955,50.3751756],[10.4873204,50.3752065],[10.4876751,50.3745438],[10.4877462,50.3744109],[10.4881582,50.3745436],[10.4885286,50.3746629],[10.4894601,50.3747806],[10.4912685,50.3750935],[10.491507,50.3747654],[10.4907728,50.3745433],[10.4887444,50.3742027],[10.4879996,50.3740715],[10.4881698,50.3738095],[10.4883335,50.373529],[10.4886384,50.373023],[10.4889207,50.3726449],[10.4890802,50.3723986],[10.4892045,50.3721205],[10.4893752,50.3718356],[10.4894818,50.3715343],[10.4896059,50.3712538],[10.4897688,50.370674],[10.4900532,50.3700765],[10.4903316,50.3693807],[10.4906411,50.3687741],[10.4908727,50.368823],[10.4912968,50.368898],[10.491685,50.3689797],[10.4921309,50.3690272],[10.492605,50.3690933],[10.4932254,50.369176],[10.4937533,50.3692286],[10.4939651,50.3692565],[10.4944164,50.3693159],[10.4947274,50.3688369],[10.4951161,50.3682379],[10.4953516,50.367887],[10.4956597,50.3674176],[10.4956684,50.3673094],[10.49549,50.3672524],[10.4953225,50.3670858],[10.4947017,50.3668806],[10.4943307,50.3666411],[10.4940953,50.3665408],[10.4941239,50.3664995],[10.4945216,50.3659249],[10.4950235,50.3653351],[10.4959869,50.3657324],[10.4960831,50.3657624],[10.4960446,50.36568],[10.4960587,50.3656548],[10.4960958,50.3656062],[10.4960027,50.3655975],[10.4960708,50.3655431],[10.4961396,50.3655178],[10.4962518,50.3654766],[10.4960709,50.3653487],[10.4959647,50.3653298],[10.4956963,50.3652825],[10.4953466,50.3651685],[10.4946976,50.3648836],[10.4943231,50.3647786],[10.4937809,50.3646899],[10.4935881,50.3645689],[10.4929926,50.3643249],[10.4926073,50.3643159],[10.4919132,50.3639182],[10.4919357,50.3638738],[10.4921726,50.3634078],[10.4927247,50.3621007],[10.4915772,50.3619084],[10.4908502,50.3617749],[10.4909493,50.3615983],[10.4909629,50.3615743],[10.4900093,50.3613388],[10.489852,50.3612999],[10.4897944,50.3613522],[10.4895638,50.3615615],[10.489793,50.3616249],[10.4907528,50.3618911],[10.4915473,50.3620294],[10.4925132,50.3621935],[10.492425,50.3624308],[10.4914344,50.3622642],[10.4909171,50.3632238],[10.490824,50.3633966],[10.4901149,50.3633787],[10.4898913,50.3633732],[10.4897503,50.3633696],[10.4890013,50.3632831],[10.4885485,50.3632683],[10.4880348,50.3632516],[10.4873106,50.3630691],[10.4870397,50.3630268],[10.4868151,50.3629848],[10.4866511,50.3629795],[10.4862254,50.3630621],[10.4863158,50.3629392],[10.4864495,50.3627844],[10.4866864,50.3626619],[10.4869301,50.3625442],[10.4871816,50.3624105],[10.4873608,50.3623449],[10.4874317,50.3623955],[10.4878683,50.3622671],[10.4882229,50.3621429],[10.4885025,50.3620482],[10.4888356,50.3619148],[10.4890291,50.3618402],[10.4891826,50.3617417],[10.4892627,50.3616903],[10.4894172,50.3615814],[10.4894609,50.3615264],[10.4894716,50.361513],[10.489168,50.3611621],[10.4888122,50.3608112],[10.4888225,50.3608002],[10.4895285,50.3600555],[10.4897568,50.3598387],[10.4897569,50.3598384],[10.4899206,50.3596742],[10.4899849,50.3596139],[10.4899942,50.3596051],[10.4903236,50.3592953],[10.4906979,50.3589323],[10.4908762,50.3586582],[10.4910188,50.3583774],[10.4911363,50.3579415],[10.4909875,50.3565723],[10.4909128,50.3558839],[10.4908897,50.3556705],[10.4917498,50.3556975],[10.4917772,50.3554508],[10.4918278,50.3550122],[10.4918573,50.3542216],[10.492342,50.3542969],[10.492365,50.3544957],[10.4923312,50.3546533],[10.4931334,50.3547436],[10.4935679,50.3548391],[10.4935376,50.3550255],[10.4935223,50.35512],[10.4935126,50.35536],[10.4935459,50.3556092],[10.493536,50.3558902],[10.4943834,50.3560904],[10.4946683,50.3561579],[10.495086,50.3561551],[10.4954709,50.3561911],[10.4959135,50.3562044],[10.496206,50.3562217],[10.49668,50.3563014],[10.4972225,50.3570053],[10.497304,50.3570628],[10.4982131,50.3573592],[10.4983771,50.3574472],[10.4987317,50.3575671],[10.4987322,50.3575674],[10.4990068,50.3576603],[10.4991987,50.3575183],[10.4993381,50.357382],[10.4994202,50.3572469],[10.4995445,50.356954],[10.4995963,50.3567689],[10.4996304,50.3565981],[10.4996241,50.3564324],[10.499543,50.3562695],[10.4994943,50.3561694],[10.4994621,50.3560973],[10.4994201,50.3559229],[10.4993892,50.3558084],[10.4994174,50.3556431],[10.4997449,50.3552939],[10.5012705,50.3557706],[10.5017953,50.3550445],[10.5018321,50.3549282],[10.5019385,50.3546364],[10.5020443,50.3544328],[10.5020961,50.3542496],[10.5020967,50.3541553],[10.5013633,50.353944],[10.5015329,50.3537072],[10.5015502,50.3536831],[10.5029077,50.3540502],[10.503556,50.3531023],[10.5040954,50.3532712],[10.5047837,50.3534866],[10.5050294,50.3535636],[10.505111,50.3536233],[10.5051748,50.3536762],[10.5052812,50.3537291],[10.5054092,50.3537846],[10.5052467,50.3539893],[10.5052568,50.354035],[10.5053919,50.3540996],[10.5060605,50.3544073],[10.5059178,50.3547232],[10.5056605,50.3547517],[10.5055954,50.3552105],[10.5059949,50.3555806],[10.5063656,50.3558687],[10.5072214,50.3562808],[10.5074137,50.3563864],[10.5070149,50.3571992],[10.5070138,50.3573157],[10.5070911,50.3574394],[10.5073395,50.3575913],[10.5080599,50.3580307],[10.5088518,50.3584842],[10.5091072,50.3582844],[10.5097386,50.358538],[10.5105794,50.3588757],[10.5109243,50.3590257],[10.5111766,50.3591411],[10.5114218,50.3592701],[10.51193,50.3595236],[10.5124453,50.3597589],[10.512602,50.3598052],[10.5127091,50.3598081],[10.5127527,50.3597215],[10.5128078,50.3595527],[10.5128107,50.3592536],[10.512793,50.3588629],[10.5128182,50.3584725],[10.5128604,50.3581507],[10.512927,50.3578976],[10.5129656,50.357587],[10.5129538,50.3573382],[10.5128442,50.3568512],[10.5128117,50.3566584],[10.5127799,50.3564695],[10.5127532,50.3562706],[10.5127478,50.356104],[10.5128218,50.3558257],[10.5129097,50.3555908],[10.5130536,50.3551006],[10.5130657,50.3549521],[10.5130105,50.3547326],[10.5128775,50.3544626],[10.5127902,50.3542451],[10.5127633,50.3540829],[10.512757,50.3539801],[10.5128196,50.3537908],[10.5130068,50.353625],[10.513673,50.3537672],[10.5140042,50.3538556],[10.5143853,50.3539304],[10.5144832,50.3537756],[10.5145347,50.3536205],[10.5145473,50.3534241],[10.5145483,50.3533145],[10.5144425,50.3531702],[10.5143261,50.3530235],[10.51427,50.3529112],[10.514129,50.3523557],[10.5139949,50.3518024],[10.5139816,50.3517042],[10.5139863,50.3515946],[10.5141119,50.3511406],[10.5142975,50.3507555],[10.5143966,50.3504727],[10.5147377,50.3498828],[10.5156098,50.3500502],[10.5158102,50.3500887],[10.51582,50.3501732],[10.5158188,50.3503056],[10.5158418,50.350509],[10.5159606,50.3511627],[10.5160718,50.351492],[10.5162432,50.351856],[10.5163796,50.352158],[10.5165582,50.3525173],[10.5168317,50.353053],[10.5176486,50.3530978],[10.5185518,50.3531018],[10.5183552,50.3542564],[10.5192197,50.3542009],[10.5197408,50.3541988],[10.5200871,50.3542003],[10.5204295,50.3542429],[10.5210995,50.3543326],[10.521459,50.3544394],[10.5218937,50.354528],[10.5221824,50.3545864],[10.5224712,50.3546242],[10.5229529,50.3546514],[10.5231663,50.3546654],[10.5240017,50.3547201],[10.5239231,50.354912],[10.5238301,50.3551395],[10.5237375,50.355484],[10.5237363,50.3554912],[10.5236547,50.3559586],[10.5239773,50.3562112],[10.5242042,50.3563812],[10.5246724,50.3566938],[10.5243889,50.3568685],[10.5253718,50.3575009],[10.5255461,50.3575748],[10.5258164,50.3576787],[10.5262387,50.35795],[10.5263552,50.3580808],[10.5264854,50.3582937],[10.5265937,50.3585499],[10.5266348,50.3587419],[10.5266361,50.3589909],[10.5265165,50.3591936],[10.526329,50.3593892],[10.5261346,50.3595824],[10.5260151,50.3597487],[10.5258602,50.3602846],[10.5260954,50.3603428],[10.5265062,50.3614819],[10.526598,50.3615805],[10.5270797,50.3612195],[10.5272112,50.3612863],[10.5277826,50.3612682],[10.5281555,50.3611055],[10.5283781,50.3609511],[10.5286328,50.3608244],[10.5287156,50.3607563],[10.5288161,50.3606973],[10.5289413,50.360659],[10.5291953,50.3606144],[10.5294954,50.3605906],[10.5297203,50.3605803],[10.5298702,50.36059],[10.5300733,50.3606298],[10.5302336,50.3606784],[10.5303294,50.3607336],[10.5303541,50.3607634],[10.5299385,50.3612781],[10.5298485,50.3613892],[10.5295058,50.3617874],[10.5293642,50.3619584],[10.5292496,50.3620968],[10.5290756,50.3623679],[10.5289781,50.3624885],[10.5292549,50.3626746],[10.5296314,50.362891],[10.5302492,50.3632637],[10.5306043,50.3634799],[10.5304568,50.3636003],[10.530658,50.3636881],[10.5308693,50.3637802],[10.5308941,50.3638077],[10.5309006,50.3638694],[10.5308855,50.3639584],[10.5308091,50.3641203],[10.530779,50.3642776],[10.5307991,50.3644331],[10.530859,50.3645178],[10.5309512,50.3645822],[10.5314878,50.3648746],[10.5317291,50.3650331],[10.5320136,50.3651555],[10.5322059,50.3652253],[10.5323125,50.3652641],[10.5323718,50.3652844],[10.5326365,50.3653751],[10.5329211,50.3654745],[10.5333059,50.3655699],[10.5336122,50.3656489],[10.533794,50.3656885],[10.533951,50.3656914],[10.5340834,50.3656669],[10.5343697,50.3655927],[10.534567,50.3654931],[10.5346926,50.3654161],[10.5347826,50.3653388],[10.5348839,50.3651908],[10.5349532,50.3650497],[10.5350876,50.364776],[10.5352032,50.3646281],[10.535456,50.364314],[10.5362427,50.3633856],[10.5371403,50.3624143],[10.5379631,50.3626325],[10.5384691,50.3627558],[10.5390071,50.3628746],[10.5395239,50.3629773],[10.539834,50.3630356],[10.5400408,50.3630662],[10.5403406,50.3630675],[10.5406798,50.3630849],[10.5411007,50.3631118],[10.5414646,50.3631363],[10.5417713,50.3631855],[10.5422059,50.3632969],[10.5429923,50.3635882],[10.5432868,50.3633998],[10.5445605,50.3643005],[10.5453687,50.3637603],[10.546008,50.3633246],[10.5464783,50.3630206],[10.5467625,50.3628003],[10.5470251,50.3625775],[10.547471,50.3621981],[10.5479962,50.361748],[10.5482693,50.3615552],[10.5481735,50.3614839],[10.5492002,50.3608283],[10.5501841,50.3601838],[10.5511104,50.3595778],[10.5518591,50.359149],[10.5516973,50.3589934],[10.551787,50.3589431],[10.5520454,50.3587984],[10.5524653,50.3585399],[10.5528211,50.3582673],[10.5531308,50.3579671],[10.5532931,50.3577714],[10.55391,50.3570089],[10.5539798,50.3569228],[10.5542166,50.3566311],[10.5539107,50.3565133],[10.5539421,50.3564658],[10.5539834,50.3564038],[10.5541708,50.3561222],[10.5542832,50.3559531],[10.5545232,50.3555882],[10.5545979,50.3554748],[10.554722,50.3552916],[10.554974,50.3549192],[10.5542367,50.3543063],[10.554491,50.3542136],[10.5539502,50.3537963],[10.5538065,50.3536856],[10.5533386,50.3533183],[10.553002,50.3530986],[10.5528771,50.3530171],[10.5519763,50.3523419],[10.5513484,50.3518917],[10.5510007,50.3516322],[10.5508307,50.3515037],[10.5507108,50.3513363],[10.5506337,50.3511579],[10.5505569,50.3509794],[10.5505581,50.3508173],[10.5505845,50.3506667],[10.5506535,50.3505276],[10.5508156,50.3503753],[10.5509378,50.3502617],[10.5512792,50.3500004],[10.5497983,50.3495397],[10.5499547,50.3492002],[10.550146,50.3488297],[10.5502088,50.3487079],[10.5503513,50.3483431],[10.5504795,50.3479668],[10.5505342,50.3478232],[10.5505619,50.3475196],[10.5505653,50.3471359],[10.5505176,50.346864],[10.5504028,50.3465186],[10.550399,50.3465094],[10.5503504,50.3463905],[10.5503515,50.346265],[10.5503643,50.3461996],[10.5503926,50.346055],[10.5504677,50.3458409],[10.5504694,50.345836],[10.5505743,50.3456697],[10.5507883,50.3452756],[10.5510016,50.3449636],[10.5511892,50.3447337],[10.5514805,50.3444428],[10.551542,50.3443813],[10.5520711,50.343865],[10.5526254,50.3433124],[10.5531864,50.3428351],[10.5536086,50.3425019],[10.5536498,50.3424694],[10.5539062,50.3422383],[10.5540383,50.3421193],[10.5541144,50.341978],[10.5542331,50.3418894],[10.5543694,50.3417941],[10.5545383,50.3416623],[10.5547001,50.3415168],[10.5547365,50.3414393],[10.5547299,50.3413822],[10.5547483,50.3413001],[10.5548098,50.3412136],[10.5550468,50.3410432],[10.5555173,50.3406912],[10.5562603,50.3401964],[10.5567579,50.3398729],[10.5570317,50.3396949],[10.5573081,50.3395202],[10.5574118,50.3394955],[10.5576661,50.3393778],[10.5578347,50.3392734],[10.5578888,50.3391937],[10.5580144,50.3391325],[10.558243,50.339097],[10.5586218,50.339046],[10.5586287,50.33904],[10.5586596,50.3390136],[10.5591537,50.3385915],[10.5596124,50.3383764],[10.5599457,50.3381836],[10.5601387,50.3381661],[10.5602603,50.3381256],[10.5603933,50.3380188],[10.5604866,50.3379461],[10.5605656,50.337887],[10.5607143,50.3378191],[10.5617741,50.3372381],[10.5651124,50.3379242],[10.5657008,50.3379073],[10.5662185,50.3378559],[10.5664968,50.337814],[10.5673084,50.3376916],[10.5676449,50.337607],[10.5683956,50.3374747],[10.5685212,50.3374442],[10.569215,50.3375074],[10.5709485,50.3376804],[10.5715041,50.3374305],[10.5720148,50.3372009],[10.572517,50.3369397],[10.5727178,50.3368351],[10.5731182,50.3366303],[10.5742844,50.3366035],[10.5744439,50.3366047],[10.5746555,50.336429],[10.5749472,50.3361867],[10.5751767,50.3359961],[10.5752542,50.3359319],[10.5752923,50.3359002],[10.5759017,50.3353661],[10.575969,50.3353073],[10.577125,50.3354966],[10.5778314,50.335628],[10.5780121,50.3354606],[10.5780284,50.3354455],[10.5780765,50.3353453],[10.5783364,50.335101],[10.5787305,50.3346538],[10.5788669,50.3344552],[10.5792005,50.3339508],[10.5802994,50.3341195],[10.5804879,50.3339973],[10.5805034,50.3339873],[10.5811098,50.3341185],[10.5813629,50.3342583],[10.5819745,50.3338686],[10.5816752,50.3337151],[10.5819293,50.3335007],[10.5820532,50.3333814],[10.5824388,50.3330101],[10.5825083,50.3329432],[10.5825738,50.33288],[10.5830652,50.332463],[10.5831721,50.3323722],[10.5832166,50.3323343],[10.5836832,50.3325662],[10.5838971,50.3326077],[10.5841575,50.3326379],[10.5843536,50.332684],[10.5845709,50.3327782],[10.5846297,50.3328802],[10.5846325,50.3328848],[10.584649,50.3329137],[10.584662,50.3329362],[10.5849367,50.3329983],[10.5852469,50.3331063],[10.5856073,50.3331937],[10.5861243,50.3333612],[10.5866381,50.333481],[10.5870875,50.333596],[10.5876799,50.3337111],[10.5880722,50.3337917],[10.5880897,50.3337968],[10.5884788,50.3339089],[10.5889427,50.3340262],[10.5890104,50.3340331],[10.5898176,50.3339178],[10.5904106,50.3337909],[10.5912863,50.3333993],[10.5913684,50.3333902],[10.5914898,50.3333972],[10.591636,50.3334317],[10.5920319,50.3335649],[10.5922428,50.3334829],[10.5923355,50.3334877],[10.5924354,50.3335129],[10.5927278,50.3336163],[10.5928136,50.3336187],[10.5929064,50.3336097],[10.5929865,50.3335989],[10.5930242,50.3335939],[10.5931957,50.333585],[10.5933527,50.3335699],[10.5934063,50.3335648],[10.593573,50.333565],[10.5935778,50.333565],[10.5936956,50.3335173],[10.5941405,50.3333972],[10.5942851,50.3333583],[10.5948142,50.3330505],[10.5950611,50.3328805],[10.5951431,50.3327961],[10.5952682,50.3327438],[10.595461,50.3327098],[10.5956896,50.3326966],[10.5959037,50.3326923],[10.5961679,50.3326998],[10.5964996,50.3327484],[10.5967742,50.3328083],[10.5970421,50.3328804],[10.5972207,50.3329285],[10.5974562,50.3329495],[10.5979452,50.3329959],[10.5983235,50.3330582],[10.5986909,50.3331296],[10.599201,50.3332674],[10.5996113,50.3333846],[10.5998516,50.333476],[10.6001178,50.3335773],[10.600449,50.333804],[10.6008801,50.3341268],[10.6010662,50.3339877],[10.6011878,50.3339103],[10.6012344,50.3338417],[10.6012344,50.3338256],[10.6012346,50.3337687],[10.6012097,50.333684],[10.6010573,50.3332907],[10.6009122,50.3328802],[10.600528,50.3322276],[10.6001635,50.3314794],[10.5999342,50.3310873],[10.5999013,50.3310309],[10.5997915,50.3308409],[10.5995748,50.3306073],[10.5992977,50.3302684],[10.5991561,50.3300168],[10.5989576,50.3297008],[10.5986815,50.3291768],[10.5984166,50.3285087],[10.5982686,50.3281272],[10.5981696,50.3278718],[10.59812,50.3277438],[10.5980784,50.3276456],[10.5978494,50.3271065],[10.5976395,50.326612],[10.5972295,50.3256854],[10.5968867,50.3249211],[10.5964448,50.3239327],[10.5963858,50.3238141],[10.5963642,50.3237705],[10.5963457,50.3237335],[10.5962006,50.323491],[10.5960621,50.3233147],[10.5958667,50.3231223],[10.5957035,50.3229139],[10.595629,50.3227674],[10.5955993,50.3226974],[10.5955443,50.3225685],[10.5954529,50.3222688],[10.5954163,50.322155],[10.5953684,50.3220057],[10.5953406,50.3218296],[10.5953411,50.3216741],[10.5955472,50.3210823],[10.5957275,50.3206437],[10.5957752,50.3203398],[10.5957942,50.3201135],[10.5957953,50.3198208],[10.5957817,50.3196608],[10.5957361,50.3194915],[10.5956474,50.3193793],[10.5954517,50.3192281],[10.5951067,50.3189852],[10.5945833,50.3187007],[10.5942417,50.3185126],[10.593907,50.3183289],[10.5935441,50.3181248],[10.5930137,50.3177879],[10.5928359,50.3176823],[10.5927152,50.3175311],[10.5926198,50.3173435],[10.5925277,50.3171536],[10.5924463,50.3170254],[10.5923006,50.3168902],[10.5922403,50.3168033],[10.5922372,50.3167072],[10.592284,50.3165976],[10.5923791,50.316434],[10.5923956,50.3164058],[10.5924558,50.3163292],[10.5924957,50.3162783],[10.5925641,50.3161912],[10.5927396,50.3160246],[10.5929044,50.3158489],[10.592994,50.3157987],[10.5932334,50.3157352],[10.5935154,50.3156854],[10.5937366,50.3156676],[10.5937606,50.3156627],[10.5938259,50.3156495],[10.5938583,50.3155855],[10.5938982,50.3154301],[10.59391,50.3152061],[10.5939073,50.3150209],[10.5939506,50.3148929],[10.5940476,50.314717],[10.5942387,50.3142648],[10.5943069,50.3140583],[10.5943153,50.3140326],[10.5943219,50.3140122],[10.5943616,50.3138923],[10.5944,50.3138276],[10.5944015,50.3138252],[10.5945415,50.3135886],[10.5943752,50.3132545],[10.5941695,50.3129455],[10.5940138,50.3126663],[10.593911,50.3125197],[10.5938044,50.3124167],[10.5936123,50.3122815],[10.5930998,50.3119901],[10.5927441,50.3117745],[10.592509,50.3116461],[10.5923708,50.3114766],[10.5922363,50.3112341],[10.5921871,50.3110283],[10.592195,50.3108705],[10.592217,50.3107128],[10.5922463,50.3105665],[10.5922469,50.3104133],[10.5922121,50.3102211],[10.5921951,50.310036],[10.5921746,50.3098347],[10.5922112,50.3096337],[10.5922761,50.3094623],[10.5924058,50.3091814],[10.5924562,50.3090512],[10.5924181,50.3088224],[10.5923868,50.308635],[10.5923269,50.3084358],[10.5923098,50.3082918],[10.5923067,50.3081615],[10.5923788,50.3079924],[10.5925191,50.3077321],[10.5925821,50.3076312],[10.592678,50.3074773],[10.5928352,50.3072252],[10.5930225,50.3068574],[10.5931376,50.3066381],[10.5932164,50.3065743],[10.59332,50.3065264],[10.5934485,50.3065107],[10.5937445,50.306525],[10.5943361,50.3066381],[10.5949119,50.3067013],[10.5950351,50.3067148],[10.5953773,50.3067475],[10.5958339,50.3067599],[10.5961372,50.3067627],[10.5963975,50.3067609],[10.5964832,50.306761],[10.5965547,50.3067246],[10.5966549,50.3066173],[10.5968058,50.3063753],[10.596903,50.3062263],[10.597086,50.305946],[10.5972439,50.3057395],[10.5973215,50.3056381],[10.5973515,50.3055989],[10.5975023,50.3053707],[10.5975493,50.3052312],[10.5975857,50.3050392],[10.5976096,50.3049321],[10.5976475,50.3047627],[10.5977271,50.3044954],[10.5978786,50.3041093],[10.5979585,50.3038054],[10.5980713,50.3035593],[10.5980736,50.3035541],[10.598122,50.3034608],[10.5982103,50.3032915],[10.598361,50.3030998],[10.5984085,50.3030429],[10.5986227,50.3027869],[10.5989094,50.3024674],[10.5993394,50.301988],[10.5995688,50.3017348],[10.5998236,50.3013602],[10.5999886,50.3011388],[10.6001862,50.3008031],[10.6006755,50.2999684],[10.601119,50.2992644],[10.6014157,50.2988568],[10.6014323,50.2988339],[10.601854,50.2982539],[10.6026033,50.2972115],[10.603257,50.2964272],[10.6039676,50.2956429],[10.6043114,50.2949595],[10.6045982,50.2943173],[10.6047018,50.2940458],[10.6047932,50.2938067],[10.60486,50.2936317],[10.6049353,50.2932529],[10.6049656,50.2931003],[10.604215,50.2926326],[10.6037384,50.2923369],[10.6034005,50.2921145],[10.6031836,50.291938],[10.6030914,50.2918281],[10.6029672,50.2916906],[10.6028534,50.2915808],[10.6022773,50.2912129],[10.6017544,50.2908521],[10.601861,50.2902472],[10.6018701,50.2901959],[10.6018958,50.2900495],[10.6002401,50.2897548],[10.6001635,50.2897412],[10.6000861,50.2897274],[10.5979146,50.2892122],[10.5978934,50.2892072],[10.5978178,50.2891893],[10.5976368,50.2891464],[10.5973062,50.2881279],[10.5970436,50.2872448],[10.5970115,50.2871367],[10.5970412,50.2870267],[10.5970775,50.2868935],[10.5970873,50.2868566],[10.5971391,50.2866658],[10.5971719,50.2865444],[10.5972588,50.2863207],[10.5974142,50.2859203],[10.5976319,50.2853593],[10.5978188,50.2848191],[10.5978579,50.2847062],[10.5980349,50.284195],[10.5980877,50.2840829],[10.5981657,50.2840279],[10.5983866,50.2840181],[10.598568,50.2840059],[10.5991635,50.2839658],[10.5995307,50.2839695],[10.5997485,50.2840055],[10.5999913,50.2840734],[10.6000266,50.2840919],[10.6001773,50.2841712],[10.6002397,50.2842032],[10.6003419,50.2842553],[10.6005228,50.2842983],[10.6005555,50.2843061],[10.6006592,50.2843307],[10.6008273,50.2843707],[10.6008936,50.2842248],[10.6009343,50.2841353],[10.6010668,50.2838626],[10.6011363,50.2837066],[10.6011862,50.2835949],[10.6011992,50.2835434],[10.6012906,50.2831833],[10.6013669,50.2828083],[10.6013659,50.2826848],[10.6008947,50.2825489],[10.6005553,50.282447],[10.6001839,50.28232],[10.5997836,50.2821634],[10.5994085,50.2820135],[10.5988646,50.2816834],[10.5980282,50.2813039],[10.5978531,50.2812358],[10.5973526,50.280988],[10.5970913,50.2808195],[10.59683,50.280658],[10.5967474,50.280553],[10.596693,50.2803932],[10.5966176,50.2801637],[10.5965877,50.2800735],[10.5965228,50.2799411],[10.5964083,50.2798751],[10.5961188,50.2797433],[10.595872,50.2796068],[10.5956574,50.2794634],[10.5953931,50.2793841],[10.5952965,50.2793318],[10.5949744,50.2791314],[10.5946343,50.2788809],[10.5941691,50.2785873],[10.5939617,50.2784598],[10.593786,50.2782957],[10.5935995,50.2780927],[10.5934632,50.2779514],[10.5933914,50.2778534],[10.5932906,50.2776799],[10.5932182,50.277495],[10.5931306,50.277166],[10.5930617,50.2769696],[10.5929854,50.276723],[10.5929452,50.2765449],[10.5929301,50.2763987],[10.5929292,50.2762592],[10.5929211,50.2761039],[10.5929169,50.275969],[10.5929266,50.2758159],[10.5929754,50.2756512],[10.5930629,50.2753607],[10.5930936,50.2751298],[10.5931068,50.2749447],[10.5931095,50.2748075],[10.5930585,50.2746111],[10.5929715,50.2743553],[10.5929024,50.2741316],[10.5928157,50.2739466],[10.5927183,50.2737503],[10.5926282,50.2735951],[10.5925205,50.2734399],[10.5924662,50.2732938],[10.5923346,50.2727388],[10.591808,50.2723812],[10.5916439,50.2722697],[10.5909426,50.2717984],[10.5915197,50.2711685],[10.5919168,50.2707835],[10.5920246,50.2706686],[10.5923098,50.2703643],[10.5925633,50.2701019],[10.592812,50.2698447],[10.5928589,50.2697961],[10.5931034,50.2695624],[10.593507,50.2691134],[10.5936042,50.2692571],[10.5937259,50.2693642],[10.5939547,50.2694802],[10.5942299,50.2696006],[10.5945192,50.2697142],[10.5948333,50.2697682],[10.5951576,50.2697948],[10.5953968,50.2698335],[10.5955465,50.2698578],[10.5955753,50.2698593],[10.5957069,50.2698665],[10.5958033,50.2699006],[10.595921,50.2699773],[10.5960967,50.2700918],[10.5967347,50.2701199],[10.5969093,50.2701034],[10.597098,50.2700642],[10.5972761,50.2700568],[10.597679,50.2700763],[10.5979627,50.2701078],[10.5980214,50.2701143],[10.5980899,50.2701288],[10.5980943,50.2701296],[10.5982355,50.2701594],[10.5983961,50.2702116],[10.5986427,50.2702955],[10.5987961,50.2703431],[10.5989067,50.2703611],[10.5990137,50.2703586],[10.5991598,50.2703513],[10.5994413,50.2703552],[10.5996445,50.2703592],[10.5997943,50.2703862],[10.6005078,50.2704826],[10.6009499,50.2705387],[10.6010928,50.2705703],[10.6012464,50.2706339],[10.6013501,50.2706838],[10.6014786,50.2707179],[10.6016569,50.2707402],[10.6022347,50.2708027],[10.6030408,50.2709011],[10.6038681,50.2709972],[10.6041179,50.271024],[10.6043354,50.2710554],[10.6045853,50.2711325],[10.6047606,50.2712166],[10.6050609,50.2713667],[10.6052968,50.2714848],[10.6056115,50.2716669],[10.6057725,50.2717578],[10.6060619,50.2718713],[10.6063691,50.2719712],[10.6065404,50.2720118],[10.6067073,50.2720231],[10.6067685,50.2720272],[10.6073676,50.2720667],[10.6073745,50.2720486],[10.6070378,50.2717729],[10.6068951,50.271748],[10.6066808,50.2716778],[10.6063199,50.2715325],[10.6060197,50.2713938],[10.6056768,50.2712621],[10.6053657,50.2711031],[10.6050761,50.2709689],[10.6049332,50.2709008],[10.6047155,50.2708579],[10.6042018,50.2707632],[10.6034562,50.2706464],[10.6032563,50.2705989],[10.6030634,50.270524],[10.6029061,50.2704375],[10.6027771,50.2703441],[10.6026981,50.2702393],[10.6026654,50.2701136],[10.6026381,50.2697572],[10.6025679,50.2693369],[10.6024096,50.2685321],[10.6023949,50.2684574],[10.6022228,50.2676808],[10.6019838,50.2676563],[10.6017482,50.2675792],[10.6014339,50.2674795],[10.6011909,50.2673704],[10.6008835,50.2672294],[10.6007227,50.2671498],[10.6005649,50.2669926],[10.6003892,50.2667988],[10.6002421,50.2666369],[10.6000775,50.2665391],[10.5999096,50.266464],[10.5992563,50.2662692],[10.5993978,50.2661157],[10.5995001,50.2659303],[10.59954,50.2657343],[10.5995493,50.2655859],[10.5994987,50.2653937],[10.5993673,50.2651827],[10.5991405,50.2648184],[10.5989924,50.2645047],[10.5989437,50.2644015],[10.5988458,50.2640446],[10.5986786,50.2637947],[10.5982602,50.2631144],[10.598084,50.2628275],[10.5981032,50.2627036],[10.5981119,50.2626474],[10.5981132,50.26264],[10.5981431,50.2625124],[10.5982022,50.2623863],[10.5982276,50.2623316],[10.5982518,50.2623012],[10.5983809,50.2621381],[10.5984998,50.2619882],[10.5988182,50.2616079],[10.5992677,50.2616731],[10.5994345,50.2615629],[10.5996266,50.2615145],[10.5998402,50.2614796],[10.5999507,50.2614725],[10.5999699,50.261506],[10.6000082,50.2615729],[10.6003322,50.2615491],[10.6003976,50.2615355],[10.6006457,50.2614836],[10.6008519,50.2614404],[10.6011721,50.2613527],[10.6012801,50.2613166],[10.6014914,50.2612461],[10.6015098,50.2612399],[10.6017694,50.2611295],[10.6021141,50.2609754],[10.6022705,50.260911],[10.6020511,50.2605917],[10.6026155,50.2602268],[10.6030665,50.2599947],[10.6031306,50.2599603],[10.6032333,50.2598801],[10.6033683,50.2598066],[10.6034855,50.2597583],[10.6036668,50.2596778],[10.6039475,50.2595491],[10.6043631,50.2593514],[10.6046758,50.2592135],[10.6048426,50.2590873],[10.6049345,50.2589797],[10.60503,50.2588605],[10.6050969,50.2587142],[10.605167,50.2585334],[10.605235,50.2584281],[10.6052587,50.2583915],[10.6052847,50.2583667],[10.6053192,50.2583341],[10.6053602,50.2582953],[10.6053651,50.2582906],[10.6054176,50.2582498],[10.605445,50.2582283],[10.6055566,50.2581415],[10.6057229,50.2579719],[10.6058253,50.2578049],[10.6059487,50.2576011],[10.6060152,50.257409],[10.6060602,50.2572054],[10.6060737,50.2570637],[10.6060655,50.2568946],[10.6059969,50.2567622],[10.6057953,50.2564291],[10.6056482,50.256249],[10.6058254,50.2560953],[10.6059023,50.256],[10.6059491,50.2559419],[10.6059742,50.2558831],[10.6060066,50.2558075],[10.6060088,50.2558023],[10.6060224,50.2556972],[10.606023,50.2556851],[10.6060294,50.255567],[10.606032,50.2555188],[10.6061576,50.2550911],[10.6061738,50.2548351],[10.6062332,50.2546613],[10.6062714,50.2544874],[10.6063379,50.2542907],[10.6063294,50.2540622],[10.6063245,50.2538496],[10.6063232,50.2536325],[10.6063219,50.2534177],[10.6063351,50.253244],[10.6063843,50.2531433],[10.606448,50.2530929],[10.6065763,50.2530789],[10.6068504,50.2530712],[10.6070282,50.2530274],[10.6071133,50.2529356],[10.6071873,50.2528234],[10.6072536,50.2525742],[10.6073801,50.252311],[10.6075286,50.2521049],[10.6076803,50.2518736],[10.6078464,50.2516607],[10.6080695,50.2514384],[10.6082287,50.2512711],[10.6084451,50.2511289],[10.608527,50.2511241],[10.6087161,50.2511533],[10.6092401,50.2512135],[10.6096146,50.2512651],[10.609921,50.2512849],[10.6100564,50.2512777],[10.6102272,50.2512498],[10.610416,50.2512401],[10.6108469,50.2512321],[10.6114165,50.2512458],[10.6114457,50.2512465],[10.6114478,50.2511599],[10.6114626,50.2505798],[10.6114627,50.2505745],[10.6114887,50.2501905],[10.6114941,50.2501079],[10.6115312,50.2495443],[10.6114981,50.2494824],[10.6113556,50.2492635],[10.6112428,50.2490903],[10.6110063,50.248841],[10.6109683,50.248801],[10.6106464,50.2486256],[10.6096541,50.2481796],[10.6085761,50.2477559],[10.6084716,50.2477107],[10.6082818,50.2476285],[10.6081246,50.2475606],[10.607208,50.2471639],[10.6060352,50.2466392],[10.6047938,50.2461873],[10.6044286,50.2460496],[10.6037866,50.2458074],[10.6034847,50.2457372],[10.6031786,50.2457151],[10.6022419,50.2456739],[10.6014799,50.2456562],[10.6003966,50.2456553],[10.6000221,50.2456968],[10.599229,50.2458665],[10.5987219,50.2459691],[10.598397,50.2460108],[10.5975091,50.2460749],[10.5971274,50.2461163],[10.5977008,50.2458404],[10.5989392,50.2451039],[10.5993018,50.2448476],[10.5999312,50.2444027],[10.6008352,50.2437617],[10.6009772,50.2436608],[10.6014063,50.2432424],[10.6016774,50.242926],[10.601987,50.2426762],[10.6026416,50.2421722],[10.6028186,50.2420218],[10.6028758,50.2419732],[10.6030269,50.241845],[10.6030883,50.2417544],[10.6032666,50.2414908],[10.6034988,50.2411478],[10.6035203,50.2411161],[10.6040301,50.2402295],[10.6046514,50.2392407],[10.605538,50.2378259],[10.6060258,50.2369804],[10.6064143,50.2362855],[10.6065904,50.2359708],[10.60685,50.2354281],[10.607128,50.2348308],[10.6073459,50.2344889],[10.6075113,50.234245],[10.6075128,50.234243],[10.6075389,50.2341517],[10.6075199,50.2339459],[10.6072984,50.2331425],[10.6072209,50.2327764],[10.6072132,50.2325319],[10.6072622,50.232315],[10.6075309,50.2318714],[10.6075603,50.2318228],[10.6078407,50.231319],[10.6079731,50.2309815],[10.6080631,50.2306094],[10.6081297,50.2304109],[10.6082716,50.2301669],[10.6086874,50.2296487],[10.6090021,50.2292564],[10.6094129,50.2287452],[10.6094422,50.2287086],[10.609664,50.2284323],[10.6100987,50.2278842],[10.6105249,50.2273464],[10.611042,50.2267022],[10.6112496,50.2263307],[10.6113812,50.2260502],[10.6115367,50.2258591],[10.6117349,50.2256635],[10.6118293,50.2255199],[10.6118791,50.22523],[10.6119925,50.2246911],[10.6121063,50.2241248],[10.6125754,50.2240662],[10.6128237,50.2240353],[10.6135191,50.2239484],[10.6137076,50.2239249],[10.6145418,50.2238627],[10.6150834,50.2238311],[10.6152136,50.2238352],[10.6169879,50.2238908],[10.6178139,50.223904],[10.6188534,50.223875],[10.6188577,50.2238749],[10.6189585,50.223874],[10.6192002,50.2238718],[10.6205102,50.2238601],[10.6210235,50.2238238],[10.6218067,50.223846],[10.6229914,50.2237772],[10.6232199,50.223722],[10.6238154,50.2236515],[10.6241789,50.223582],[10.6249444,50.2234358],[10.6250564,50.2234143],[10.6252934,50.2233459],[10.6254565,50.2232988],[10.6255576,50.2232697],[10.6257249,50.2232525],[10.6262791,50.2231954],[10.627377,50.2230791],[10.6282999,50.2229943],[10.6290349,50.2229936],[10.6292594,50.2229864],[10.6299584,50.2229637],[10.6302648,50.2229539],[10.6312924,50.2229212],[10.6320829,50.2229938],[10.6330442,50.223076],[10.6330545,50.2230772],[10.6339165,50.2231786],[10.6340517,50.2231881],[10.6342764,50.2231382],[10.6344002,50.2231103],[10.6346971,50.2230433],[10.6349359,50.2230117],[10.6357587,50.2230318],[10.6358923,50.2230477],[10.6363319,50.2230995],[10.6372182,50.2232546],[10.6376769,50.2233769],[10.638178,50.223634],[10.6390944,50.2241825],[10.6397301,50.2245839],[10.6402575,50.2249121],[10.6403978,50.2249993],[10.6407354,50.2251623],[10.641379,50.2254061],[10.6422645,50.2257236],[10.6430289,50.2260477],[10.6436719,50.226392],[10.6440668,50.2265072],[10.6446257,50.2266066],[10.6448296,50.2266218],[10.6453236,50.2266586],[10.6459114,50.2266804],[10.6461996,50.2267313],[10.6470996,50.227019],[10.6480137,50.2273068],[10.6487748,50.2275644],[10.6492298,50.2277758],[10.649539,50.2279708],[10.6497557,50.2281106],[10.6500756,50.2282371],[10.6505456,50.2283296],[10.6512857,50.2284958],[10.6519119,50.2286548],[10.6522695,50.2287818],[10.6527087,50.2289377],[10.6530183,50.2290024],[10.6533311,50.2291768],[10.6537793,50.2293195],[10.6544763,50.2295564],[10.6553052,50.2298349],[10.6561305,50.230136],[10.6564414,50.2302587],[10.6572258,50.2305681],[10.6585597,50.231035],[10.6592637,50.2313611],[10.6595163,50.2314142],[10.6596554,50.2314305],[10.6598477,50.231424],[10.6599477,50.2313556],[10.6600698,50.2311546],[10.6600956,50.2309603],[10.6600928,50.2309506],[10.66005,50.2307979],[10.6598837,50.2305347],[10.6597845,50.2303927],[10.6598029,50.2302556],[10.6598854,50.2301368],[10.6602245,50.2299798],[10.6609456,50.2296727],[10.6610421,50.2296043],[10.6611352,50.2294809],[10.6612143,50.2293028],[10.6614109,50.2291569],[10.6615898,50.2289835],[10.6616615,50.2288533],[10.6616236,50.228604],[10.6616453,50.228492],[10.6615892,50.228325],[10.6616544,50.2282295],[10.661811,50.2280946],[10.662093,50.2279556],[10.6622969,50.2277777],[10.6623689,50.2276064],[10.6623517,50.2274509],[10.662256,50.2273295],[10.6622209,50.2272379],[10.6622928,50.2271032],[10.6623141,50.2270144],[10.6623325,50.2269387],[10.6622657,50.2267556],[10.6620745,50.2264993],[10.6618787,50.2264462],[10.6617221,50.2263933],[10.6616017,50.2262651],[10.6614316,50.2260589],[10.6613077,50.2258643],[10.6607349,50.2256666],[10.6605082,50.2254031],[10.6597626,50.2248346],[10.6592976,50.2244747],[10.6590629,50.2243851],[10.6588495,50.2243092],[10.6586578,50.2241487],[10.6585229,50.2240686],[10.6583482,50.2240795],[10.6582129,50.2240792],[10.6579074,50.2238615],[10.6577977,50.2237377],[10.6577981,50.2236326],[10.6579302,50.2235482],[10.6584369,50.2233709],[10.6588467,50.2233078],[10.6594947,50.2234006],[10.6600762,50.2232006],[10.6607137,50.2232109],[10.6612064,50.2229422],[10.6614565,50.2227918],[10.6618164,50.2227559],[10.6622664,50.2224688],[10.6625107,50.2223113],[10.6626599,50.2220969],[10.6628528,50.2219624],[10.6631565,50.2217618],[10.6638335,50.221706],[10.6643187,50.2215081],[10.6644858,50.2215202],[10.6646069,50.221524],[10.6651769,50.2215555],[10.665377,50.2215044],[10.6657546,50.221408],[10.6663926,50.2213179],[10.6668625,50.2213852],[10.6671547,50.2214133],[10.6673468,50.2214317],[10.6676778,50.2214598],[10.6679771,50.2214444],[10.6683159,50.2213423],[10.6687726,50.2211922],[10.6694105,50.2211157],[10.6698381,50.2210685],[10.6700517,50.2210919],[10.6704039,50.2211748],[10.6706675,50.2211868],[10.6711267,50.2212608],[10.6716817,50.2213991],[10.6718499,50.2214417],[10.6722088,50.2215329],[10.67239,50.2215789],[10.672828,50.2215933],[10.6731973,50.2218707],[10.6734063,50.2221546],[10.6735127,50.2222509],[10.6737759,50.2223451],[10.673932,50.2225055],[10.6742083,50.2228741],[10.6743677,50.2230916],[10.6745028,50.2231604],[10.6748338,50.2232252],[10.6752755,50.2232327],[10.675513,50.2232244],[10.675703,50.2232176],[10.6763688,50.2233081],[10.6772909,50.2234058],[10.6779145,50.2233635],[10.6786943,50.2234153],[10.6796914,50.2235246],[10.6800261,50.2235367],[10.6804358,50.2235306],[10.6808308,50.2236136],[10.6811118,50.2237285],[10.6811583,50.2237632],[10.6814066,50.2239484],[10.6818834,50.2240797],[10.6827015,50.2243922],[10.683356,50.2246037],[10.6835731,50.2246887],[10.6838788,50.2248356],[10.6845301,50.2249922],[10.6849569,50.2251622],[10.6857198,50.2254567],[10.6860394,50.2255706],[10.6865057,50.2256991],[10.6866811,50.2257681],[10.6869254,50.225864],[10.6864536,50.2252697],[10.6861347,50.2247531],[10.6858478,50.2242136],[10.6857742,50.2238253],[10.6857199,50.2233071],[10.6856912,50.2230326],[10.6857113,50.2223223],[10.6857199,50.2223063],[10.6861048,50.2216027],[10.6861482,50.2215234],[10.6865634,50.2208181],[10.6870687,50.2197863],[10.6874198,50.2191289],[10.6874841,50.2190444],[10.6876477,50.2189653],[10.6876768,50.2189511],[10.6880884,50.2187853],[10.6881973,50.2187416],[10.68839,50.2186389],[10.6885686,50.2184611],[10.6887186,50.2183196],[10.6889219,50.2182011],[10.6893819,50.2179847],[10.6898989,50.2177797],[10.6900915,50.2176726],[10.6907912,50.2170636],[10.691052,50.2168149],[10.6912479,50.216592],[10.6912807,50.2165547],[10.6915167,50.2162399],[10.6918415,50.2159821],[10.6920632,50.2156421],[10.6923314,50.2152929],[10.6927492,50.2147884],[10.6927923,50.2147361],[10.6929601,50.2145947],[10.6934061,50.2143233],[10.6938416,50.2139013],[10.6940568,50.2133785],[10.6945426,50.2128721],[10.694996,50.2124523],[10.6954281,50.2120211],[10.6957742,50.2117222],[10.696607,50.2118785],[10.6978171,50.212074],[10.6982785,50.2121521],[10.6989453,50.2122649],[10.6995609,50.2124095],[10.7001234,50.2124923],[10.7008848,50.2123597],[10.7014271,50.2122652],[10.7015386,50.2118474],[10.7016566,50.2116374],[10.7019352,50.2113362],[10.7024347,50.2109348],[10.70292,50.2105812],[10.7036424,50.2107351],[10.7042759,50.2108247],[10.7049805,50.2109214],[10.7057464,50.210824],[10.7067044,50.2107154],[10.7075059,50.210618],[10.7084795,50.2104155],[10.7089486,50.210318],[10.7092,50.2102641],[10.7096468,50.210168],[10.7104504,50.2098778],[10.7105557,50.2098445],[10.7107632,50.2097762],[10.7111843,50.2096375],[10.7114893,50.2095372],[10.7121238,50.2092613],[10.7131788,50.2087667],[10.7135755,50.2085768],[10.7138027,50.2084682],[10.713996,50.2080571],[10.7140033,50.2078808],[10.714129,50.207763],[10.7144732,50.20744],[10.7150636,50.2068392],[10.715671,50.2063229],[10.7159761,50.206098],[10.7161952,50.2059206],[10.7163329,50.2056903],[10.7168049,50.2048306],[10.7170267,50.2043995],[10.7174795,50.2043467],[10.7177782,50.2044051],[10.7188689,50.2046819],[10.7188837,50.2046745],[10.7189743,50.2046295],[10.7194775,50.2043783],[10.7203465,50.2047295],[10.7209695,50.2047574],[10.7216569,50.204774],[10.7225035,50.2048783],[10.723232,50.2050369],[10.7237612,50.2052038],[10.7238918,50.2053209],[10.7241588,50.2056787],[10.7243722,50.2060706],[10.7245949,50.2065881],[10.7247113,50.2070549],[10.7246894,50.2074595],[10.7246306,50.2076215],[10.7247872,50.207645],[10.7250744,50.2077789],[10.725149,50.2078807],[10.7256307,50.2082507],[10.7259823,50.2086827],[10.7264263,50.2091947],[10.7267106,50.2094303],[10.7273895,50.2098694],[10.7277877,50.2101689],[10.7282608,50.2103909],[10.728798,50.2105717],[10.7292212,50.2107068],[10.7296729,50.2110065],[10.7300212,50.2113128],[10.7303728,50.2117266],[10.7305146,50.2119893],[10.7305923,50.2122726],[10.7312034,50.2129127],[10.7311174,50.213189],[10.7310701,50.2133332],[10.7310277,50.2134631],[10.7309789,50.2138499],[10.7309603,50.2139841],[10.7309404,50.2141277],[10.7308649,50.2146735],[10.7306999,50.2152238],[10.7306057,50.2156189],[10.7304951,50.2160825],[10.7303298,50.2167037],[10.7301432,50.2174274],[10.7298812,50.2183295],[10.7298281,50.2188374],[10.7295969,50.2197564],[10.729408,50.2203159],[10.7293461,50.2207399],[10.7292989,50.2210369],[10.7291018,50.2214838],[10.7289064,50.2218943],[10.7288107,50.2222214],[10.7288268,50.2224874],[10.7289627,50.2230888],[10.7289866,50.2231755],[10.7289997,50.2232402],[10.7290051,50.2232623],[10.7289972,50.2235594],[10.7289746,50.2241554],[10.7290093,50.2245918],[10.7290999,50.2254849],[10.7291369,50.2264647],[10.7291668,50.2267912],[10.7291925,50.2270724],[10.7291522,50.2275862],[10.729037,50.2281618],[10.7290324,50.228614],[10.7290882,50.2291234],[10.7291977,50.2296146],[10.7293606,50.2300509],[10.7294813,50.2302566],[10.7294716,50.2302599],[10.7291765,50.2303578],[10.7288525,50.2304653],[10.7288342,50.2304715],[10.728599,50.23052],[10.7282283,50.2305965],[10.7277758,50.2306601],[10.7269992,50.2306936],[10.7272172,50.2319843],[10.7273007,50.2328684],[10.7273246,50.2329927],[10.727445,50.2336223],[10.7275365,50.2341362],[10.7275352,50.2347209],[10.7275447,50.235244],[10.7275518,50.2352654],[10.7276473,50.2355524],[10.7277177,50.2359637],[10.7277207,50.2359723],[10.7278226,50.2362623],[10.7278556,50.2363567],[10.7278515,50.2366308],[10.7278048,50.2368431],[10.7276685,50.2371948],[10.7276005,50.237414],[10.7276109,50.2375465],[10.7277028,50.2378138],[10.7279226,50.2383439],[10.7279862,50.2385792],[10.727961,50.2387002],[10.7277321,50.2390495],[10.7276602,50.2393508],[10.7275673,50.2395039],[10.7273531,50.2396545],[10.7268253,50.2398801],[10.7265827,50.2400489],[10.7263525,50.2404349],[10.7263484,50.2404404],[10.7263125,50.2404888],[10.7259213,50.2410191],[10.726421,50.2409615],[10.7270229,50.2409619],[10.7269473,50.2415265],[10.7269327,50.2416348],[10.7269032,50.2417599],[10.7275585,50.2417789],[10.7281428,50.2418135],[10.7281176,50.2419643],[10.7278637,50.2423821],[10.7285155,50.2424672],[10.7291602,50.2424997],[10.7296841,50.2424658],[10.7297828,50.2429616],[10.7297842,50.2429811],[10.729807,50.2432997],[10.7298293,50.243654],[10.7298301,50.2436663],[10.7298311,50.2436834],[10.7299445,50.2439645],[10.7301606,50.2444991],[10.730139,50.2446338],[10.7300673,50.2448645],[10.729842,50.2452],[10.7294352,50.2454509],[10.7288397,50.2456673],[10.7284439,50.2458361],[10.7279585,50.2461989],[10.7275836,50.2464932],[10.7270589,50.2469495],[10.7267874,50.2472143],[10.7266874,50.2473535],[10.7266887,50.2475696],[10.7268037,50.2479292],[10.7270306,50.2484045],[10.7273753,50.2488412],[10.727386,50.2488548],[10.7275566,50.2490331],[10.7279019,50.2491612],[10.7281575,50.2495485],[10.7282224,50.2496544],[10.7291468,50.2500782],[10.7294125,50.2503691],[10.7294796,50.2504607],[10.7296006,50.2505273],[10.729988,50.2506792],[10.7301982,50.2507369],[10.7305008,50.2508153],[10.7306894,50.2508753],[10.7308138,50.2509327],[10.730925,50.2510011],[10.7310375,50.2510704],[10.7313751,50.2512632],[10.7322621,50.2517977],[10.7332173,50.2513824],[10.7336994,50.2512077],[10.7339101,50.2511558],[10.7343025,50.2511065],[10.7347518,50.2510506],[10.7352975,50.2509972],[10.7358538,50.2509416],[10.7363568,50.2508813],[10.7369027,50.2507867],[10.7375877,50.2506651],[10.7382479,50.2505504],[10.7387579,50.250458],[10.7391289,50.2504018],[10.7394319,50.2504004],[10.739856,50.2504197],[10.7403052,50.2504163],[10.7411038,50.2503865],[10.7413784,50.2503506],[10.7416497,50.2502805],[10.7418819,50.2501783],[10.7420856,50.2500897],[10.7423035,50.2499852],[10.7424679,50.2498965],[10.7427072,50.2498011],[10.7429001,50.2497537],[10.7430295,50.2497066],[10.7431929,50.249647],[10.7433381,50.2495463],[10.7435412,50.249409],[10.7439263,50.2492859],[10.7442793,50.2491377],[10.7444293,50.2490282],[10.744599,50.2488371],[10.7446543,50.2487748],[10.7448862,50.24859],[10.7456277,50.248442],[10.7461451,50.248312],[10.74638,50.248253],[10.7468126,50.2481171],[10.7468753,50.2480974],[10.7468829,50.248095],[10.7469672,50.2480684],[10.747453,50.2479158],[10.7482166,50.2476821],[10.7485368,50.2475931],[10.7484888,50.2475289],[10.7482167,50.2471652],[10.7479821,50.2469499],[10.7478187,50.2467191],[10.7475771,50.2462918],[10.7473817,50.2460084],[10.7472219,50.2457182],[10.7471865,50.2456151],[10.7470553,50.2452317],[10.7469351,50.2447223],[10.7458983,50.2446734],[10.7461352,50.2437395],[10.7465459,50.2439522],[10.7467913,50.2439417],[10.7471583,50.2439454],[10.7473899,50.2439488],[10.7477973,50.2439862],[10.748217,50.24393],[10.7482684,50.2439092],[10.7483715,50.2439094],[10.7485355,50.2439075],[10.7486208,50.2438939],[10.7486531,50.2438757],[10.748671,50.2438506],[10.7486818,50.2438118],[10.7486714,50.2437272],[10.7486679,50.2436998],[10.7486823,50.2436723],[10.7486957,50.2436701],[10.7487793,50.2436558],[10.7488504,50.243656],[10.7489323,50.2436562],[10.7490249,50.2436564],[10.7490711,50.2436473],[10.7491,50.2436222],[10.7491036,50.2435835],[10.7491037,50.2435561],[10.7490791,50.243508],[10.7490756,50.2434828],[10.7491077,50.2434669],[10.7491507,50.2434374],[10.7491794,50.2434099],[10.7491796,50.2433711],[10.7491619,50.2433367],[10.7491266,50.2433185],[10.7490731,50.2432977],[10.7490484,50.2432703],[10.7490451,50.2432336],[10.7491272,50.2431859],[10.7493088,50.2431817],[10.7494085,50.243182],[10.749487,50.2431502],[10.7495692,50.2431024],[10.7496263,50.2430613],[10.7496767,50.2429815],[10.7497198,50.2429062],[10.7497379,50.2428377],[10.7497347,50.2427714],[10.749735,50.2427029],[10.7497388,50.2426754],[10.7497853,50.2426482],[10.749846,50.24263],[10.7499102,50.2425913],[10.7499389,50.2425433],[10.7499426,50.2425],[10.7499181,50.2424542],[10.7499074,50.2424244],[10.7498798,50.2423676],[10.7498332,50.2422163],[10.74982,50.2421733],[10.7499946,50.2421279],[10.7501872,50.242078],[10.7503617,50.2420303],[10.7505186,50.2419964],[10.7507182,50.241967],[10.7508998,50.2419514],[10.7511491,50.2419541],[10.751537,50.2420075],[10.7517044,50.2420306],[10.7518111,50.2420765],[10.7518674,50.2421229],[10.7518815,50.2421687],[10.7519239,50.2422305],[10.7519769,50.2422808],[10.7520302,50.2423175],[10.7521155,50.2423497],[10.7522257,50.2423591],[10.7522969,50.2423821],[10.7523358,50.242428],[10.7523783,50.2424646],[10.7524209,50.2424852],[10.7524743,50.2424923],[10.7525385,50.2424649],[10.7525565,50.2424308],[10.7525888,50.2423875],[10.7526388,50.2423669],[10.7527031,50.2423328],[10.7527389,50.2422872],[10.7527854,50.2422211],[10.7528285,50.2421778],[10.7529175,50.242171],[10.7530244,50.2421713],[10.7531278,50.242135],[10.7531422,50.2420802],[10.7531498,50.24203],[10.7531609,50.2419614],[10.7531966,50.2419113],[10.7532608,50.241884],[10.7533536,50.2418774],[10.7535526,50.2419098],[10.7537377,50.2419377],[10.7538694,50.2419723],[10.7539653,50.2419839],[10.7540436,50.2419818],[10.7540866,50.2419384],[10.7541331,50.2419089],[10.7542186,50.2418999],[10.7542789,50.241916],[10.7543395,50.2419368],[10.7544389,50.241953],[10.7544888,50.2419555],[10.754546,50.2419418],[10.7545639,50.2419007],[10.7545642,50.2418665],[10.7545964,50.241814],[10.7546392,50.241782],[10.7547142,50.2417639],[10.7548068,50.2417574],[10.7549138,50.2417302],[10.7550457,50.2416802],[10.7551455,50.2416736],[10.755256,50.2416761],[10.7553448,50.2416855],[10.7554481,50.2416834],[10.7555799,50.2416677],[10.7557759,50.2416498],[10.7558507,50.2416364],[10.7559646,50.2416366],[10.7560606,50.2416551],[10.7561424,50.2416896],[10.7562205,50.2417264],[10.7562985,50.2417745],[10.7563126,50.2418088],[10.7563078,50.2418158],[10.7562983,50.2418294],[10.7562767,50.2418369],[10.756227,50.2418543],[10.7562217,50.2418617],[10.7562055,50.241884],[10.7562053,50.2418933],[10.7562053,50.2419226],[10.7562052,50.2419251],[10.7562051,50.2419269],[10.7562052,50.2419279],[10.756205,50.2419644],[10.7562049,50.2419708],[10.7562058,50.2419716],[10.7562175,50.2419809],[10.756251,50.2420075],[10.756315,50.2420419],[10.7563896,50.2420536],[10.7564643,50.2420651],[10.7565569,50.2420676],[10.7566388,50.2420678],[10.7567243,50.2420452],[10.7567994,50.2420066],[10.75686,50.2419632],[10.7569065,50.2419428],[10.7569741,50.2419452],[10.7570487,50.2419796],[10.7570913,50.2420094],[10.7571375,50.2420255],[10.7571946,50.2420097],[10.7572338,50.2419778],[10.7572555,50.2419459],[10.7572984,50.2419116],[10.7573804,50.2418913],[10.7574513,50.241928],[10.7574973,50.2419852],[10.7575895,50.2420403],[10.7576698,50.2420663],[10.757675,50.242068],[10.7577496,50.2420841],[10.7579063,50.2420959],[10.7579987,50.2420892],[10.7580986,50.2420712],[10.7581593,50.2420439],[10.7582269,50.2420278],[10.7583018,50.2420099],[10.7583837,50.2420078],[10.758462,50.242024],[10.7585259,50.2420584],[10.7586004,50.2421158],[10.7586498,50.2421959],[10.7586709,50.2422485],[10.7587097,50.2423262],[10.7587485,50.2423674],[10.7587806,50.2423857],[10.7588162,50.2423951],[10.758873,50.2423997],[10.7589978,50.2423841],[10.7590906,50.2423409],[10.7591977,50.2422931],[10.7592619,50.2422543],[10.7592872,50.2422133],[10.7592874,50.2421516],[10.7592876,50.2421173],[10.7593092,50.2420763],[10.7593556,50.2420489],[10.7593911,50.2420397],[10.7594341,50.2420286],[10.7595052,50.2420287],[10.759555,50.2420357],[10.7596332,50.2420656],[10.7597398,50.2420978],[10.7598181,50.2421117],[10.7598465,50.2421233],[10.7599391,50.2421348],[10.760028,50.2421351],[10.7601064,50.2421329],[10.7602274,50.2421286],[10.7603166,50.2421129],[10.7603629,50.2420947],[10.7604164,50.2420674],[10.7604702,50.2420309],[10.7605095,50.2419899],[10.7605881,50.2419603],[10.7606486,50.2419445],[10.7607518,50.2419288],[10.7608731,50.2419152],[10.7609409,50.2418858],[10.7610121,50.2418563],[10.7610908,50.2417833],[10.7611374,50.24174],[10.7612018,50.2416944],[10.7612588,50.2416762],[10.7613301,50.2416627],[10.7614227,50.241656],[10.7614833,50.2416288],[10.7615333,50.2416014],[10.7615691,50.2415741],[10.7616548,50.2415309],[10.7617261,50.2415173],[10.761783,50.2415152],[10.7618507,50.2415108],[10.761922,50.241504],[10.7619933,50.2414837],[10.7620647,50.2414518],[10.7621147,50.2414199],[10.7621825,50.2413813],[10.7622432,50.2413495],[10.7623073,50.2413381],[10.7623857,50.2413337],[10.7624426,50.2413545],[10.7625065,50.2413957],[10.7625918,50.2414233],[10.7626736,50.241435],[10.7627625,50.2414396],[10.7628372,50.2414536],[10.7629119,50.2414675],[10.7629867,50.2414859],[10.7630826,50.241509],[10.7631929,50.2415366],[10.7633104,50.2415621],[10.7633992,50.241576],[10.7634669,50.2415807],[10.7635344,50.2415831],[10.7636021,50.2415764],[10.7636771,50.2415492],[10.7637127,50.2415196],[10.7637342,50.2414899],[10.7637487,50.2414648],[10.7637633,50.2413963],[10.7638096,50.2413712],[10.7638666,50.2413644],[10.7639059,50.2413623],[10.7639664,50.2413625],[10.7640092,50.2413488],[10.7640449,50.2413284],[10.7640629,50.2413055],[10.7640879,50.2412691],[10.7640881,50.2412394],[10.7641133,50.2411777],[10.7641596,50.2411687],[10.7642238,50.2411665],[10.7642949,50.2411666],[10.7643661,50.2411737],[10.7644552,50.2411807],[10.7645262,50.2411901],[10.7646081,50.2412154],[10.7646577,50.2412429],[10.7646965,50.2413024],[10.7647107,50.2413435],[10.764746,50.2413871],[10.7647778,50.2414328],[10.764806,50.2414764],[10.7648201,50.2415083],[10.7648449,50.2415404],[10.764859,50.2415587],[10.7649088,50.2415954],[10.7650014,50.2415819],[10.7650405,50.2415751],[10.7651012,50.2415478],[10.7651476,50.2415341],[10.765194,50.2415183],[10.7652973,50.2415049],[10.7653294,50.2415049],[10.7653826,50.241521],[10.7654181,50.2415486],[10.765457,50.2415806],[10.7654854,50.2416241],[10.765503,50.241663],[10.7655242,50.2416973],[10.7655666,50.2417523],[10.7656128,50.2417821],[10.7656838,50.2418051],[10.7657443,50.2418212],[10.7658189,50.2418442],[10.7659293,50.2418673],[10.7660003,50.241879],[10.7660964,50.2418814],[10.766164,50.2418998],[10.766228,50.2419298],[10.7662955,50.2419572],[10.7663666,50.2419665],[10.7664307,50.241969],[10.7665091,50.2419577],[10.7665733,50.2419374],[10.7666303,50.24191],[10.7666733,50.2418736],[10.7666913,50.241853],[10.766695,50.2418302],[10.7666949,50.2418182],[10.766695,50.2418004],[10.766694,50.2417975],[10.7666811,50.2417548],[10.7666741,50.241709],[10.7666815,50.2416633],[10.7667174,50.2416178],[10.7667708,50.2415949],[10.76686,50.2415563],[10.7669314,50.2415221],[10.7669958,50.2414698],[10.7670531,50.2414036],[10.767096,50.2413581],[10.7670742,50.2413325],[10.7671746,50.2412987],[10.7672354,50.2412509],[10.7673211,50.2412055],[10.767414,50.2411668],[10.7674675,50.2411257],[10.767546,50.2410871],[10.7676281,50.2410668],[10.7676814,50.2410669],[10.7677241,50.2410829],[10.7677561,50.2411012],[10.7678092,50.2411379],[10.7678412,50.241154],[10.7678768,50.2411724],[10.7679336,50.2411954],[10.7679692,50.2412092],[10.7680366,50.2412207],[10.7680794,50.2412209],[10.7681293,50.2412164],[10.7681829,50.2411822],[10.7682221,50.2411434],[10.7682473,50.2411115],[10.7682547,50.2410681],[10.76828,50.2409721],[10.7683195,50.2409311],[10.7683766,50.2408879],[10.7683944,50.2408765],[10.7684337,50.2408651],[10.7684765,50.2408652],[10.7685476,50.2408883],[10.768608,50.2409089],[10.7686827,50.2409273],[10.7686899,50.2409274],[10.7687573,50.2409321],[10.7688428,50.2409323],[10.7689784,50.2408868],[10.7690675,50.2408619],[10.7691354,50.2408279],[10.7692139,50.240796],[10.7692923,50.2407711],[10.769392,50.2407598],[10.7694703,50.24076],[10.7695772,50.2407603],[10.7696626,50.2407604],[10.7697445,50.2407606],[10.7698157,50.2407653],[10.7698688,50.2408043],[10.7698937,50.2408272],[10.769929,50.2408616],[10.7699681,50.2408936],[10.7700178,50.2409257],[10.7701103,50.2409557],[10.7701102,50.2409579],[10.7701672,50.2409672],[10.7703058,50.2409926],[10.7704341,50.2410089],[10.7706154,50.2410436],[10.7707719,50.2410782],[10.7707643,50.2411673],[10.7707642,50.2411682],[10.7707605,50.2412153],[10.7707566,50.2412884],[10.7707314,50.2413455],[10.7706955,50.2414026],[10.7706417,50.2414733],[10.7706201,50.2415326],[10.7707942,50.241581],[10.7708654,50.2415721],[10.7709157,50.2415241],[10.7709799,50.2414946],[10.7710795,50.2414949],[10.7711935,50.2414974],[10.771286,50.2415068],[10.7713605,50.2415412],[10.771396,50.2415869],[10.7714348,50.2416396],[10.7714276,50.2416898],[10.7713988,50.2417195],[10.7713062,50.2417535],[10.771281,50.2417809],[10.7713271,50.241829],[10.7714194,50.2418818],[10.7715083,50.2419185],[10.7715617,50.241921],[10.7716222,50.2419165],[10.771672,50.2419074],[10.7717219,50.2419076],[10.7717432,50.241919],[10.7717822,50.2419466],[10.7718358,50.2419421],[10.7719068,50.24194],[10.7719317,50.2419606],[10.771935,50.242004],[10.7719278,50.2420359],[10.7719063,50.2420725],[10.7718279,50.2420768],[10.7719771,50.2421458],[10.7720303,50.2421619],[10.7720909,50.242162],[10.7721622,50.2421621],[10.7722263,50.2421692],[10.7722938,50.2421899],[10.7723507,50.2421969],[10.7723864,50.2421809],[10.7723865,50.2421443],[10.7724082,50.2421056],[10.7724261,50.2420851],[10.772476,50.2420805],[10.7725293,50.242099],[10.7725683,50.2421197],[10.7726106,50.2421974],[10.7726495,50.2422433],[10.772685,50.242289],[10.7727273,50.2423576],[10.7727948,50.2424058],[10.7728517,50.2424059],[10.7729264,50.2423969],[10.7730085,50.2423857],[10.7730584,50.2423743],[10.7731261,50.2423608],[10.7732116,50.242361],[10.7732791,50.2423726],[10.7733254,50.2423658],[10.7733791,50.2423225],[10.773429,50.2422929],[10.7735146,50.2422634],[10.7735823,50.2422658],[10.7736464,50.2422774],[10.7737031,50.2423027],[10.7737565,50.2423256],[10.7738631,50.2423578],[10.7738987,50.242367],[10.7739305,50.2424014],[10.7739375,50.2424425],[10.7739125,50.2424676],[10.7738909,50.2425088],[10.7738658,50.242536],[10.7738585,50.2425589],[10.7738763,50.2425795],[10.7739189,50.242591],[10.7739723,50.2425934],[10.7740221,50.2425981],[10.7740932,50.2426052],[10.7741217,50.2426326],[10.7741957,50.2426942],[10.7742702,50.2428315],[10.774348,50.2429869],[10.7743478,50.2430258],[10.7743264,50.2430578],[10.7742978,50.2430874],[10.7742978,50.2431056],[10.7744224,50.2431562],[10.7744222,50.2431859],[10.7743864,50.2432429],[10.7743719,50.2433206],[10.7744215,50.2434167],[10.7744853,50.2435287],[10.7745776,50.243634],[10.774606,50.2436683],[10.77467,50.2437439],[10.7746717,50.2437445],[10.774828,50.2438065],[10.7749668,50.2438342],[10.7750557,50.2438526],[10.7751555,50.2438368],[10.7752339,50.2438187],[10.7753303,50.2437915],[10.7753945,50.2437459],[10.7754873,50.2437004],[10.7755338,50.2436481],[10.7755517,50.2436183],[10.7756998,50.2435514],[10.7758352,50.2435059],[10.7760847,50.24344],[10.7763172,50.2436314],[10.7764804,50.2437667],[10.7766399,50.2438949],[10.7767466,50.2439431],[10.776871,50.2439777],[10.7770346,50.2440009],[10.7771272,50.2440239],[10.7772195,50.2440515],[10.7772908,50.2440814],[10.7773368,50.2441341],[10.7773791,50.2441866],[10.7774004,50.2442415],[10.7774283,50.2443356],[10.777517,50.2444524],[10.7776129,50.2445416],[10.7776819,50.2445671],[10.7777125,50.2445783],[10.7777275,50.2445798],[10.77783,50.24459],[10.7779796,50.2445948],[10.7781292,50.2445904],[10.7783001,50.2445702],[10.7783858,50.2445383],[10.7785737,50.2447945],[10.7786323,50.244907],[10.7786898,50.2450278],[10.7787223,50.2451284],[10.7787317,50.2451688],[10.778761,50.2452953],[10.7788213,50.2454324],[10.778924,50.2456246],[10.7790624,50.2457847],[10.7792721,50.2459816],[10.7794425,50.2461463],[10.7796023,50.246302],[10.7798546,50.2465058],[10.7801319,50.2467119],[10.780402,50.2469203],[10.780626,50.2470304],[10.7808927,50.2471473],[10.7810956,50.2472435],[10.7812913,50.2473079],[10.7815758,50.247434],[10.7818248,50.2475373],[10.7821345,50.24762],[10.7824264,50.2476593],[10.7827823,50.2477375],[10.7832061,50.2478502],[10.783505,50.2479215],[10.7838429,50.24805],[10.7843019,50.2482496],[10.7847498,50.2485427],[10.7843608,50.2488436],[10.7841217,50.2490285],[10.7836041,50.249375],[10.7833485,50.2495499],[10.7831519,50.2497256],[10.7819996,50.2512048],[10.7821043,50.2512117],[10.7826804,50.2512492],[10.7835324,50.2512367],[10.7846805,50.2511538],[10.7853474,50.2510749],[10.7856675,50.2510244],[10.7859912,50.2509733],[10.7864102,50.2509072],[10.7871269,50.2508466],[10.7880273,50.2508652],[10.7892472,50.2510437],[10.7895159,50.2510708],[10.7897283,50.2510924],[10.7900314,50.2510539],[10.7901769,50.2510152],[10.7907164,50.2508721],[10.7913664,50.2506551],[10.7914799,50.2506171],[10.7921204,50.2504404],[10.7924111,50.2503602],[10.7927356,50.2502601],[10.7929461,50.2502467],[10.7931432,50.2503272],[10.793384,50.2504255],[10.7940001,50.2506206],[10.7944882,50.2507309],[10.7950657,50.2507409],[10.7958106,50.2507693],[10.7963274,50.2507791],[10.7973718,50.2508811],[10.7986081,50.2510883],[10.7991425,50.2511988],[10.800432,50.2515455],[10.8006513,50.2513617],[10.8009571,50.2511051],[10.8014681,50.2506464],[10.8020365,50.249973],[10.8024567,50.2495481],[10.803059,50.2488432],[10.8031319,50.2487577],[10.8031783,50.2486825],[10.8032856,50.2485181],[10.8034251,50.248292],[10.8036535,50.2480501],[10.8039107,50.2477717],[10.804093,50.2475366],[10.804382,50.2472629],[10.8045856,50.2470255],[10.8047715,50.2467721],[10.8048858,50.2465758],[10.8050074,50.2463863],[10.8052434,50.2460095],[10.8052934,50.2459183],[10.8053312,50.2449586],[10.8056688,50.2452859],[10.8062896,50.2448206],[10.8068891,50.2443392],[10.8058542,50.2436158],[10.8060729,50.2430288],[10.806327,50.2424396],[10.8064846,50.2420696],[10.8066425,50.2415398],[10.8078428,50.2414706],[10.8073614,50.2401812],[10.8079559,50.2402186],[10.8084153,50.2402604],[10.8088319,50.2402884],[10.809213,50.2403117],[10.8094053,50.2403098],[10.8099679,50.2403036],[10.8101994,50.240288],[10.8104418,50.2402585],[10.8107175,50.2402407],[10.8112732,50.2401938],[10.811705,50.2401278],[10.8122435,50.2400703],[10.812315,50.2400626],[10.8125588,50.2400185],[10.8126829,50.2399961],[10.8131508,50.2399005],[10.8139226,50.2397242],[10.814365,50.239672],[10.814442,50.2396646],[10.8148393,50.2396266],[10.8153422,50.2395792],[10.8157737,50.2395543],[10.8162512,50.2395432],[10.8165639,50.2395532],[10.8166821,50.239557],[10.8169567,50.2395312],[10.8172996,50.23946],[10.8176622,50.239363],[10.8177429,50.2393414],[10.8184043,50.2391622],[10.8191657,50.2389492],[10.8195883,50.2388106],[10.8196451,50.238792],[10.8197085,50.2387682],[10.8199279,50.238686],[10.8200499,50.2386228],[10.8202185,50.2385209],[10.8203485,50.238389],[10.8203882,50.2383457],[10.8204929,50.2383623],[10.8205375,50.2383695],[10.8205816,50.2383224],[10.8208842,50.2379987],[10.8211153,50.2380412],[10.8213927,50.2380817],[10.8215092,50.2380966],[10.8216166,50.2381103],[10.8217806,50.2381152],[10.8218018,50.2381159],[10.8219516,50.2381099],[10.8219993,50.238107],[10.8221619,50.2380974],[10.8223723,50.2380802],[10.8225725,50.238022],[10.8227276,50.237971],[10.8229054,50.2378867],[10.8231884,50.2377785],[10.8234342,50.2377083],[10.8235101,50.2376866],[10.8237996,50.2376082],[10.8238235,50.237604],[10.8241167,50.2375511],[10.8241317,50.2375483],[10.8243993,50.2375155],[10.8246082,50.2375109],[10.824645,50.2375101],[10.8247944,50.2375292],[10.8249863,50.2375714],[10.8252278,50.2376368],[10.8254585,50.2377066],[10.8257248,50.2377722],[10.8259381,50.2378053],[10.8259868,50.2378101],[10.8261908,50.2378297],[10.8268034,50.2378676],[10.8268385,50.2378699],[10.8270816,50.2378661],[10.8272698,50.2378631],[10.8275904,50.2378534],[10.8278225,50.2378112],[10.827957,50.2377897],[10.8280011,50.2377826],[10.8280222,50.2380753],[10.8289124,50.2381077],[10.8291898,50.2381458],[10.8294988,50.2382298],[10.8296691,50.2382857],[10.8298639,50.2383714],[10.8301257,50.2385145],[10.8305933,50.2387252],[10.830841,50.2388638],[10.8310361,50.2389357],[10.8312769,50.2390399],[10.8313765,50.2390496],[10.831548,50.2390163],[10.8320172,50.2389252],[10.8323264,50.2388652],[10.8325055,50.2388298],[10.8327764,50.2387762],[10.8329478,50.2387543],[10.8331329,50.2387644],[10.8332613,50.2387827],[10.8333675,50.2387977],[10.8337335,50.2388798],[10.8340279,50.2389729],[10.8342765,50.2390336],[10.8346958,50.2391251],[10.835261,50.2392312],[10.8358017,50.2393274],[10.8358438,50.2393349],[10.8358825,50.2393762],[10.8359413,50.2395252],[10.8360444,50.2398252],[10.8360945,50.240093],[10.8361551,50.2403745],[10.8361597,50.2405849],[10.836136,50.2407723],[10.8360555,50.2409479],[10.8365256,50.2409505],[10.8359739,50.2420677],[10.8367939,50.2423145],[10.8372193,50.24247],[10.8375668,50.2426022],[10.8377907,50.2426447],[10.8381213,50.2427173],[10.8384274,50.2427373],[10.8387336,50.2427482],[10.8390862,50.2427501],[10.8397092,50.2427969],[10.8401972,50.2428018],[10.8407349,50.2428322],[10.8411441,50.2428642],[10.8415562,50.2429602],[10.8419079,50.243042],[10.8425986,50.2430847],[10.8430505,50.2431352],[10.8434668,50.2431694],[10.8438762,50.2432082],[10.8442317,50.2432628],[10.844456,50.2432869],[10.8446408,50.2433221],[10.8448466,50.2433758],[10.8450417,50.2434546],[10.8456685,50.2437735],[10.8459687,50.2439924],[10.8462972,50.2442227],[10.8465156,50.2444159],[10.8467707,50.2445477],[10.8471919,50.2447694],[10.8475068,50.2449403],[10.8477475,50.2450834],[10.8478355,50.2451616],[10.8478977,50.2453173],[10.8479449,50.2455486],[10.8479642,50.2457201],[10.8479523,50.2458092],[10.8478544,50.2459527],[10.8477621,50.246222],[10.847753,50.2463751],[10.847744,50.2465442],[10.8477658,50.2467958],[10.8478207,50.2469722],[10.8479499,50.2471855],[10.8483595,50.2477844],[10.8486742,50.2482799],[10.8489825,50.2488417],[10.8490228,50.2489151],[10.8491698,50.2491353],[10.8493454,50.2493489],[10.8494795,50.2495512],[10.8496977,50.2499488],[10.8500252,50.250431],[10.8501997,50.2506184],[10.8504455,50.2507898],[10.8509335,50.2511144],[10.8512078,50.2512378],[10.8518489,50.2513889],[10.8516814,50.2516195],[10.8518418,50.2520285],[10.8520375,50.2524856],[10.8520836,50.2529334],[10.8521476,50.253267],[10.8520763,50.2535183],[10.8519586,50.2538702],[10.851766,50.254215],[10.8514985,50.2544996],[10.8512705,50.2547291],[10.8509818,50.2550603],[10.8509638,50.2553254],[10.8509175,50.2554648],[10.8509425,50.2557114],[10.8509779,50.2559696],[10.8509423,50.2560976],[10.8509065,50.2565226],[10.8508812,50.2573999],[10.8508131,50.2579779],[10.8506243,50.2583914],[10.8505743,50.2586107],[10.8505063,50.2594081],[10.8504497,50.2598088],[10.8504061,50.2601141],[10.8504667,50.2603357],[10.8505698,50.2606305],[10.8507549,50.2611813],[10.8509899,50.2617044],[10.8513033,50.2623215],[10.8515312,50.2627419],[10.8514099,50.2630686],[10.8512636,50.2633817],[10.8512458,50.2636398],[10.8512275,50.2646611],[10.8504504,50.2651727],[10.8498663,50.2655716],[10.8496946,50.2656888],[10.8489318,50.2661708],[10.8482866,50.266543],[10.8477161,50.2669335],[10.8470779,50.2673926],[10.8469042,50.2675254],[10.846725,50.2676621],[10.8464468,50.2680162],[10.8460474,50.2685644],[10.8455516,50.2692885],[10.8453625,50.2696289],[10.8451592,50.2700151],[10.8452088,50.2704011],[10.8452229,50.2706822],[10.8451799,50.2712259],[10.8452045,50.2719959],[10.8452159,50.2721218],[10.845247,50.2724597],[10.8453857,50.2727751],[10.8456316,50.273239],[10.8458631,50.2736434],[10.8461017,50.2740023],[10.8463474,50.2744341],[10.8464863,50.2746787],[10.8465574,50.2751562],[10.846696,50.2760222],[10.8466031,50.2761533],[10.8465719,50.2761917],[10.8464366,50.2762447],[10.8463642,50.2762552],[10.8460576,50.276383],[10.8454097,50.2766902],[10.8451913,50.2765381],[10.8448032,50.2759644],[10.8441402,50.2758523],[10.8434558,50.2757561],[10.8425362,50.275589],[10.8421763,50.2754198],[10.8416382,50.2752391],[10.8409255,50.2749281],[10.8402946,50.2747452],[10.8399953,50.2744343],[10.8397532,50.2743177],[10.838962,50.2740135],[10.8382742,50.2737528],[10.8372124,50.2733915],[10.836414,50.2731559],[10.8361574,50.273078],[10.8358865,50.2730939],[10.835284,50.2731485],[10.8348243,50.2731986],[10.8340365,50.2733606],[10.8338164,50.273402],[10.8333342,50.2734928],[10.8328493,50.2735451],[10.8322361,50.2735791],[10.8321994,50.2737009],[10.8321843,50.2737514],[10.832079,50.2741],[10.8320161,50.2742207],[10.8319897,50.2742713],[10.8320003,50.2743422],[10.8318861,50.2745569],[10.8317041,50.2747579],[10.8315044,50.2748652],[10.8313851,50.2749787],[10.8311599,50.2751929],[10.8311084,50.275242],[10.8306163,50.2756188],[10.8305351,50.2757192],[10.8301453,50.2762012],[10.8297848,50.2765734],[10.829136,50.2767172],[10.8285534,50.2768505],[10.8284193,50.2768813],[10.8275993,50.277114],[10.8270147,50.2773043],[10.8269824,50.2773148],[10.8268576,50.2774129],[10.8268019,50.2774798],[10.826622,50.2776961],[10.8264328,50.2780045],[10.825909,50.2778009],[10.8253353,50.2775995],[10.8247044,50.2774781],[10.8235638,50.2773313],[10.8226549,50.2771869],[10.8221738,50.2771365],[10.8214931,50.2770424],[10.8209975,50.277017],[10.820332,50.2770696],[10.8199397,50.2771023],[10.8192755,50.2772743],[10.8185482,50.2774522],[10.8182522,50.2775],[10.817878,50.2774656],[10.8173967,50.2774036],[10.8171329,50.2774057],[10.8169761,50.2774331],[10.8168246,50.2774763],[10.8167158,50.2775677],[10.81597,50.2781477],[10.8152925,50.2784397],[10.8146859,50.2788255],[10.8143403,50.2787728],[10.8139411,50.2786491],[10.8132533,50.2784499],[10.8128969,50.2783058],[10.8122451,50.2779833],[10.8118711,50.2777066],[10.8115041,50.2774984],[10.8114007,50.2775692],[10.8113394,50.2781883],[10.8111853,50.2787937],[10.8110028,50.2794128],[10.8109241,50.2795498],[10.8107159,50.2795533],[10.810365,50.2794329],[10.8096626,50.2792926],[10.8088924,50.2791727],[10.8083932,50.279099],[10.8076768,50.2789473],[10.8071811,50.278869],[10.8069171,50.2788869],[10.8063534,50.2789822],[10.8057964,50.2791941],[10.8048328,50.2794328],[10.804201,50.2796103],[10.803765,50.2799457],[10.8036706,50.2800233],[10.8034432,50.2802104],[10.8034179,50.2802338],[10.8026817,50.280911],[10.8027196,50.2810304],[10.8027596,50.2811556],[10.8027913,50.2813294],[10.8027124,50.2814938],[10.8026657,50.2816309],[10.8026686,50.2816413],[10.8027081,50.2817818],[10.8028183,50.2819625],[10.8029357,50.282086],[10.8026497,50.2822822],[10.8021777,50.2827113],[10.8017131,50.2830923],[10.8018756,50.2832765],[10.801923,50.2833302],[10.8021863,50.283566],[10.8026458,50.2838591],[10.8031299,50.2842437],[10.8028549,50.2843872],[10.8026677,50.2845164],[10.8025011,50.2846314],[10.802357,50.2847108],[10.8021116,50.2848457],[10.8016689,50.2850165],[10.8022841,50.2857853],[10.8025435,50.2861626],[10.802628,50.2863437],[10.8026748,50.2864438],[10.8028133,50.2866817],[10.803176,50.2871462],[10.8034428,50.2874664],[10.8036313,50.2876747],[10.8039339,50.2879241],[10.8040335,50.2880682],[10.8041933,50.2883908],[10.8042686,50.2885736],[10.8043101,50.2886742],[10.8043133,50.2888982],[10.804283,50.2895267],[10.8042605,50.2899951],[10.8041304,50.2906851],[10.8038339,50.2908195],[10.803612,50.2910341],[10.8035029,50.2912147],[10.8033965,50.2913378],[10.803037,50.2916586],[10.802478,50.2919696],[10.8013428,50.2920887],[10.8001965,50.292258],[10.7992533,50.2924394],[10.7989456,50.2925548],[10.7980932,50.2925492],[10.7974684,50.2926199],[10.796889,50.2928164],[10.7961118,50.2931906],[10.7955099,50.2935014],[10.795137,50.2937467],[10.7948817,50.2939788],[10.7947085,50.2941999],[10.7946285,50.2943938],[10.7945685,50.2947112],[10.7943368,50.295124],[10.7942598,50.2953546],[10.7941422,50.2953336],[10.7936972,50.2952541],[10.7932697,50.2951953],[10.7933297,50.2952664],[10.7932397,50.2953642],[10.7931106,50.2954438],[10.7929988,50.2954201],[10.7928685,50.2953925],[10.7929894,50.2950045],[10.7926226,50.2949481],[10.7923659,50.2948815],[10.79132,50.2946184],[10.7899068,50.294286],[10.7895115,50.2942021],[10.7887813,50.2940987],[10.7873991,50.2938875],[10.7869537,50.2938514],[10.786725,50.2938894],[10.7859563,50.2941079],[10.7858231,50.2941542],[10.7851226,50.2943972],[10.7847174,50.2945317],[10.7840746,50.2947449],[10.7835594,50.2949052],[10.782889,50.2948887],[10.7825828,50.2948396],[10.7821528,50.294655],[10.7817113,50.2945617],[10.7808208,50.294421],[10.7801042,50.2944021],[10.7793656,50.294406],[10.7792049,50.2944223],[10.7790145,50.2944418],[10.778459,50.2944983],[10.7774201,50.294606],[10.7766315,50.2946189],[10.7756168,50.2946014],[10.7748911,50.2945889],[10.7748539,50.2945697],[10.7745858,50.2944322],[10.7745323,50.2941058],[10.7745317,50.2941028],[10.774499,50.2939862],[10.7744453,50.2937963],[10.7739199,50.293522],[10.7733292,50.2933643],[10.7721338,50.2930301],[10.7712376,50.2927499],[10.7709674,50.2926413],[10.7708417,50.2927575],[10.7702442,50.2929423],[10.7698868,50.2930254],[10.7695529,50.2931037],[10.7694936,50.2931176],[10.7693883,50.2932548],[10.7693,50.2933699],[10.7692221,50.2934717],[10.7689991,50.2937623],[10.7688189,50.2939649],[10.7686923,50.2941365],[10.7685307,50.2943556],[10.7684542,50.2944594],[10.7684494,50.2944886],[10.7683407,50.2951721],[10.7679033,50.2954079],[10.7678852,50.2954153],[10.7676709,50.2955019],[10.7675955,50.2955324],[10.7668743,50.2956727],[10.7668593,50.2956755],[10.766441,50.295792],[10.7663015,50.2958309],[10.7654678,50.296504],[10.765107,50.2969344],[10.7647615,50.2972758],[10.7642344,50.2975845],[10.7634787,50.2979104],[10.7629378,50.2981641],[10.7625399,50.2983636],[10.7624442,50.2986877],[10.7623917,50.2988073],[10.7623799,50.2988343],[10.7623691,50.2988593],[10.7622655,50.2990961],[10.7619151,50.2999654],[10.7616144,50.3008373],[10.7613466,50.301259],[10.7609288,50.3016777],[10.7606183,50.3020902],[10.760323,50.3023769],[10.7602245,50.3029889],[10.7600642,50.3031884],[10.7598455,50.3034605],[10.759325,50.3038126],[10.7589415,50.3039961],[10.7583152,50.3042174],[10.7581542,50.3042693],[10.7576862,50.3043381],[10.7576806,50.3043387],[10.7573148,50.3043686],[10.7569004,50.3044468],[10.7568763,50.3044566],[10.7567356,50.3045147],[10.7561489,50.3050653],[10.7553623,50.3048768],[10.7551376,50.3048552],[10.7547209,50.3051597],[10.7543897,50.3054669],[10.7541019,50.3057399],[10.7532491,50.3061179],[10.7528906,50.3063084],[10.7523129,50.3066534],[10.7520258,50.3068372],[10.7516114,50.3072651],[10.7513843,50.3075064],[10.7512968,50.3077049],[10.7512709,50.3081734],[10.7511603,50.3085614],[10.7510198,50.3086979],[10.7509983,50.3087599],[10.7509355,50.3089421],[10.7509136,50.3090586],[10.750849,50.3094011],[10.7507509,50.3095835],[10.7502211,50.3094941],[10.7500847,50.309471],[10.7494158,50.3100212],[10.7491657,50.3100704],[10.7487263,50.3101142],[10.748694,50.3101164],[10.7482139,50.3101486],[10.7477024,50.3102569],[10.7476954,50.3102722],[10.7476299,50.3104167],[10.7479107,50.3105143],[10.7482139,50.3106197],[10.7483289,50.3106558],[10.7482138,50.3107752],[10.7475195,50.3114591],[10.747038,50.3119334],[10.7465026,50.3124508],[10.7462935,50.3123528],[10.7459332,50.3121838],[10.745521,50.312425],[10.7452591,50.3126117],[10.7450688,50.3127576],[10.7449006,50.3128324],[10.7447001,50.3129119],[10.7444746,50.3129913],[10.7442705,50.3130707],[10.7441307,50.3131662],[10.7435989,50.3136723],[10.7439565,50.3138677],[10.7441503,50.3139735],[10.7436443,50.3143745],[10.743102,50.3148256],[10.7424089,50.3154386],[10.7417519,50.3159832],[10.7416712,50.3159634],[10.7416201,50.3159507],[10.741438,50.3159388],[10.7410952,50.3159285],[10.7407702,50.3159527],[10.7405274,50.315952],[10.7403452,50.3159469],[10.7402061,50.3159235],[10.739889,50.3158288],[10.739351,50.3156624],[10.7387843,50.3155075],[10.7384777,50.3154218],[10.738207,50.3153318],[10.7380895,50.315272],[10.7379262,50.3151411],[10.7376665,50.3149895],[10.7373929,50.3148079],[10.7371585,50.3146197],[10.7370342,50.3145277],[10.7367187,50.3141952],[10.7363156,50.3146605],[10.7353623,50.3146459],[10.7352871,50.3146823],[10.7351438,50.3147619],[10.735004,50.3148323],[10.734671,50.3149708],[10.7342411,50.3151547],[10.733951,50.3152956],[10.7337253,50.3154115],[10.7335068,50.3155],[10.7333706,50.315575],[10.7332951,50.3156525],[10.7332303,50.3157415],[10.7331545,50.3158579],[10.7330717,50.3159583],[10.7327163,50.3162339],[10.7326085,50.3163365],[10.732472,50.3164457],[10.7323251,50.3165321],[10.7321173,50.3166276],[10.7319562,50.3166934],[10.731566,50.3168293],[10.7312262,50.3169266],[10.7310149,50.3170151],[10.7307461,50.3171401],[10.7304741,50.3172398],[10.7301877,50.3173669],[10.7300227,50.3174419],[10.729758,50.3175119],[10.7295147,50.317582],[10.7293357,50.3176501],[10.7291175,50.317718],[10.7290102,50.3177337],[10.7288746,50.3177218],[10.7287424,50.3177145],[10.7280963,50.3176986],[10.7278578,50.3181187],[10.7277964,50.3182192],[10.7277542,50.3182451],[10.7276852,50.3182874],[10.7274811,50.3183828],[10.7273021,50.3184302],[10.7270805,50.3184615],[10.726823,50.3185087],[10.7266122,50.3185264],[10.7264409,50.3185281],[10.7262947,50.3184819],[10.726056,50.3184263],[10.7257992,50.3183568],[10.7255961,50.3183058],[10.7253394,50.3182524],[10.7250682,50.3182057],[10.7246794,50.3181679],[10.7243223,50.3181531],[10.7240401,50.3181635],[10.7236329,50.318185],[10.7231076,50.3182382],[10.722979,50.3182447],[10.7228792,50.3182329],[10.7224656,50.3181539],[10.7222158,50.3181004],[10.7219877,50.3180654],[10.7218625,50.318065],[10.7217304,50.3180783],[10.7216195,50.3181122],[10.7214583,50.3181803],[10.7211434,50.3182707],[10.7208322,50.3183611],[10.7201453,50.318519],[10.7201255,50.3185641],[10.7200205,50.3188022],[10.719953,50.3189552],[10.7196102,50.3198671],[10.7196036,50.3198848],[10.7191281,50.3199586],[10.7184523,50.3201006],[10.7180694,50.3201884],[10.7176797,50.3202717],[10.7175723,50.3203057],[10.7174325,50.3203647],[10.7168233,50.3206806],[10.7167839,50.3206942],[10.7164766,50.3207206],[10.7161547,50.3207858],[10.7159973,50.3208333],[10.7159679,50.3208756],[10.7159324,50.3209269],[10.7155872,50.3212367],[10.7154723,50.3213439],[10.7154447,50.3213971],[10.7154251,50.3214352],[10.7153886,50.321554],[10.7153583,50.3217872],[10.7153174,50.3220088],[10.7152481,50.322212],[10.7151241,50.322573],[10.7150621,50.3227466],[10.7150502,50.3228975],[10.715038,50.3231147],[10.7150333,50.3232657],[10.7149966,50.3234278],[10.7149563,50.3235535],[10.714844,50.323775],[10.7145475,50.3242816],[10.7142535,50.3249348],[10.7141868,50.3250658],[10.714191,50.3251769],[10.7142436,50.3253189],[10.7143101,50.3254883],[10.7143869,50.3257333],[10.7145349,50.3260265],[10.7146581,50.3262532],[10.7148664,50.3266153],[10.7150572,50.3268881],[10.7151455,50.3270278],[10.7153624,50.327159],[10.7157209,50.3274689],[10.7160937,50.3277743],[10.7161895,50.3278753],[10.7162635,50.3279989],[10.7162595,50.328063],[10.716187,50.3281932],[10.7161077,50.3283003],[10.7160497,50.3284327],[10.7160341,50.3286043],[10.7160338,50.3286421],[10.716032,50.3288901],[10.7160301,50.3291462],[10.7160172,50.3294549],[10.7160367,50.3297431],[10.7160391,50.3298917],[10.7160139,50.3299396],[10.7159168,50.3300216],[10.7158198,50.3300992],[10.7157405,50.3301949],[10.7156427,50.3303935],[10.7154434,50.3307817],[10.7152041,50.3312954],[10.7151314,50.3314484],[10.7150948,50.3315809],[10.7151184,50.3317685],[10.7151058,50.3320429],[10.7150853,50.3323836],[10.7150581,50.332776],[10.7150509,50.3328825],[10.7150259,50.3329923],[10.7158361,50.3329535],[10.7161289,50.3329421],[10.7162931,50.3329626],[10.716668,50.3330404],[10.7168751,50.3331089],[10.7172178,50.3331569],[10.7174784,50.3332393],[10.7177283,50.3333399],[10.7179213,50.3334176],[10.7180746,50.3334428],[10.7184924,50.3334405],[10.7185566,50.3334038],[10.7187458,50.333285],[10.7188599,50.3332118],[10.7189599,50.3331889],[10.7195704,50.3332323],[10.7198024,50.3332506],[10.7200202,50.3332553],[10.7201132,50.3333032],[10.720288,50.3333947],[10.7210094,50.3338998],[10.7213165,50.3340896],[10.7215558,50.3342588],[10.7217701,50.3343525],[10.7219093,50.3343913],[10.7225198,50.3345079],[10.7230108,50.3346717],[10.723079,50.3346943],[10.7232054,50.3347365],[10.7231148,50.3351407],[10.7230933,50.3352375],[10.7230082,50.3356165],[10.7230025,50.3356419],[10.7246125,50.3353971],[10.7249163,50.3359732],[10.7261196,50.3364075],[10.7261915,50.3364792],[10.7263454,50.3366327],[10.7265735,50.3368601],[10.7265735,50.337043],[10.7283164,50.3380991],[10.7278422,50.3388331],[10.7276994,50.3389336],[10.7276782,50.3389988],[10.7275979,50.3392452],[10.7275392,50.3394252],[10.7280072,50.3398801],[10.7280572,50.3399487],[10.7280609,50.3400059],[10.7279646,50.3403123],[10.7274791,50.3404335],[10.7271937,50.3407993],[10.7271916,50.3408161],[10.7271783,50.3409333],[10.7271264,50.3413846],[10.727459,50.3424453],[10.727292,50.3433736],[10.7276062,50.3434375],[10.7278381,50.3430809],[10.7281416,50.3431631],[10.7280242,50.3438262],[10.7276853,50.3442377],[10.7284782,50.3445005],[10.7285281,50.3444137],[10.7294282,50.3446902],[10.7290821,50.3450858],[10.7284962,50.3448961],[10.7279887,50.3454808],[10.7279683,50.3455042],[10.7278507,50.3459066],[10.7273796,50.3461398],[10.727369,50.346181],[10.7274977,50.3465834],[10.7274905,50.3466177],[10.7273443,50.3467434],[10.7272014,50.3468074],[10.7271228,50.346828],[10.7266516,50.3468807],[10.7277267,50.3472259],[10.727698,50.3472852],[10.7282627,50.3475687],[10.728784,50.3478361],[10.7287094,50.3483048],[10.7286313,50.3487963],[10.7283782,50.3488298],[10.7279028,50.3488924],[10.7272209,50.3489565],[10.7270387,50.3489611],[10.726828,50.3489452],[10.7260423,50.3488309],[10.7260399,50.3488301],[10.7259207,50.348792],[10.7258066,50.348792],[10.7257529,50.3488032],[10.7256217,50.3488302],[10.7253745,50.3488813],[10.725178,50.3489018],[10.7249394,50.3488524],[10.7249245,50.3488493],[10.7247585,50.3488302],[10.7246246,50.348815],[10.7240603,50.3487669],[10.7240448,50.3487751],[10.723939,50.3488303],[10.7234392,50.3490917],[10.7231143,50.3492518],[10.7225644,50.349469],[10.722468,50.3494736],[10.7221253,50.3494552],[10.7216823,50.349437],[10.7206217,50.3494028],[10.7203468,50.349524],[10.7200932,50.3495948],[10.7197754,50.3495399],[10.7196111,50.3494782],[10.7194254,50.3493891],[10.7192503,50.3492702],[10.7190788,50.3491353],[10.7189396,50.3489844],[10.7188358,50.3488541],[10.7188221,50.3488309],[10.7187251,50.3486689],[10.718607,50.3483718],[10.7184783,50.348054],[10.7187282,50.347823],[10.7173533,50.3476424],[10.7169748,50.3475899],[10.716689,50.3475419],[10.7165605,50.3475121],[10.7163533,50.347439],[10.7160069,50.3472493],[10.7150408,50.3467533],[10.7149426,50.3467028],[10.7145068,50.3464651],[10.7142817,50.346337],[10.7142359,50.3462992],[10.714021,50.3461221],[10.7140471,50.3461928],[10.7140893,50.3463061],[10.7141033,50.3463438],[10.7141105,50.3466],[10.7140927,50.346936],[10.7140571,50.3473063],[10.7139468,50.3479167],[10.7139076,50.3481111],[10.7138612,50.3482917],[10.7138612,50.3484403],[10.7138648,50.3486095],[10.7139421,50.3488312],[10.7139437,50.3488358],[10.71399,50.3489547],[10.7139436,50.3490575],[10.7138973,50.3491604],[10.7134972,50.349085],[10.7131865,50.3490598],[10.7129294,50.3489912],[10.712837,50.349972],[10.712837,50.3503413],[10.7128372,50.3504153],[10.712837,50.35049],[10.7128372,50.350651],[10.7128374,50.3508591],[10.7128159,50.3510169],[10.7127767,50.3511609],[10.7127232,50.3514008],[10.7126769,50.3517004],[10.7126448,50.3518834],[10.7126414,50.3521827],[10.712638,50.3524549],[10.7126345,50.3526812],[10.712631,50.3529236],[10.7126524,50.3530515],[10.7127096,50.3531155],[10.7127096,50.3532665],[10.7127027,50.3534677],[10.7126883,50.3536277],[10.7126456,50.3538106],[10.7125956,50.353966],[10.7125421,50.3541237],[10.7124315,50.3543044],[10.7123762,50.3544129],[10.7123208,50.3545216],[10.7125208,50.3545558],[10.7124816,50.3546725],[10.7133567,50.3548051],[10.7143016,50.3549437],[10.7147747,50.3550131],[10.715557,50.3550932],[10.7155354,50.355171],[10.7171928,50.3553905],[10.7177785,50.3554681],[10.7177037,50.3556853],[10.7175823,50.3559413],[10.7173574,50.3562614],[10.7170826,50.356657],[10.716872,50.3570274],[10.7167366,50.3573063],[10.7166794,50.3574366],[10.716701,50.3575783],[10.7167511,50.3577589],[10.7171336,50.3585568],[10.7172587,50.358854],[10.717366,50.359149],[10.7173625,50.3593067],[10.7171843,50.3599034],[10.7171556,50.3600406],[10.717095,50.3600977],[10.7169343,50.3602189],[10.7165737,50.3604453],[10.7162416,50.3606762],[10.7158451,50.3609253],[10.7154595,50.3612271],[10.7153131,50.3613917],[10.7151704,50.3615472],[10.7150668,50.3616889],[10.7150348,50.3618467],[10.7149524,50.3620596],[10.714917,50.3621508],[10.7148671,50.3623542],[10.7148699,50.3624991],[10.7148708,50.3625463],[10.7148994,50.3627749],[10.7149531,50.362976],[10.7149736,50.3630178],[10.7150961,50.3632664],[10.7152427,50.3636025],[10.7152695,50.363673],[10.715275,50.363687],[10.7163643,50.3635362],[10.7177574,50.363415],[10.7187003,50.3633122],[10.719329,50.3632481],[10.7196612,50.3632344],[10.7201471,50.3632526],[10.7215723,50.3632458],[10.7219116,50.3632618],[10.7222403,50.363232],[10.7226225,50.3631634],[10.7238012,50.3629988],[10.724412,50.3629415],[10.7251692,50.3628683],[10.7258372,50.3628134],[10.7265588,50.3627379],[10.7279196,50.3626395],[10.7279733,50.3625213],[10.7280196,50.36242],[10.7296914,50.3626576],[10.7308596,50.3628128],[10.7311739,50.362838],[10.7313455,50.3628997],[10.7314238,50.3629548],[10.7314885,50.3630003],[10.7316529,50.3630438],[10.732235,50.3631762],[10.7325102,50.3632265],[10.7326995,50.3632288],[10.7329467,50.3632017],[10.732971,50.363199],[10.7334246,50.3631394],[10.7339424,50.3630548],[10.7342926,50.3630228],[10.7347104,50.3630067],[10.7355177,50.3629998],[10.7360031,50.3623687],[10.7372033,50.3625261],[10.7374963,50.3625787],[10.737536,50.3625915],[10.7378036,50.362677],[10.7385861,50.3629717],[10.7392441,50.3625735],[10.7395609,50.3623817],[10.7407568,50.361643],[10.7411958,50.3613708],[10.7415958,50.3611924],[10.7420884,50.3609523],[10.7428916,50.3605497],[10.7432059,50.3604125],[10.7436521,50.3602386],[10.7443021,50.3600121],[10.7448626,50.3598177],[10.745259,50.3596805],[10.7455838,50.3595684],[10.7457802,50.3594746],[10.7461515,50.3592984],[10.7466082,50.3590691],[10.7466587,50.3590438],[10.7470317,50.3588564],[10.7471252,50.3588094],[10.7472903,50.3587265],[10.7478757,50.3584498],[10.7482114,50.3582783],[10.7486092,50.3581031],[10.7486925,50.3580664],[10.7487209,50.3580538],[10.7489015,50.357968],[10.7489972,50.3579225],[10.7490323,50.3579124],[10.749241,50.3578526],[10.7494522,50.3578362],[10.7495198,50.357831],[10.7498735,50.3578302],[10.7499499,50.3578357],[10.7500979,50.3578461],[10.7502483,50.3578568],[10.7506338,50.3579018],[10.7510585,50.3579423],[10.7513077,50.3579705],[10.7513345,50.3579735],[10.751474,50.3579897],[10.7518115,50.3580277],[10.7518955,50.3580299],[10.7524223,50.3580438],[10.7528062,50.3580508],[10.752962,50.3580537],[10.7530689,50.3580556],[10.753808,50.3580837],[10.7545725,50.3580936],[10.7546437,50.3581282],[10.7548492,50.3583004],[10.7549843,50.3583603],[10.7552799,50.3584711],[10.7555252,50.3585863],[10.7556492,50.3586896],[10.75584,50.3589143],[10.7560344,50.3591458],[10.7562396,50.3593499],[10.756516,50.3595931],[10.7567569,50.3597998],[10.7570765,50.3600021],[10.7573288,50.3601379],[10.7575208,50.3602528],[10.7576589,50.3603653],[10.7578181,50.360519],[10.7579706,50.3606635],[10.7581975,50.3608381],[10.7586373,50.3611688],[10.7589927,50.3613781],[10.7593053,50.3615621],[10.7596282,50.3618032],[10.7597735,50.361939],[10.759837,50.3619983],[10.7599819,50.3621564],[10.7601561,50.3622644],[10.7603832,50.3624139],[10.760489,50.3625742],[10.7606039,50.3628763],[10.7606667,50.3630455],[10.7606976,50.3631782],[10.7606961,50.363338],[10.7607268,50.3634775],[10.7608273,50.3638023],[10.7610396,50.3643993],[10.7612418,50.3648883],[10.7611448,50.365004],[10.7613329,50.365109],[10.7614378,50.3653627],[10.7614832,50.3654656],[10.7615419,50.3656943],[10.7616671,50.3660489],[10.7617333,50.3662274],[10.7618197,50.3665293],[10.7619729,50.3669479],[10.7620879,50.3672476],[10.7621613,50.3674398],[10.7621718,50.3674665],[10.762224,50.3675999],[10.7622397,50.3678331],[10.7622394,50.3682465],[10.762641,50.3682926],[10.7630425,50.3683387],[10.7635848,50.3684162],[10.7639203,50.3684678],[10.7641057,50.3685189],[10.7642653,50.3686406],[10.7647504,50.3691153],[10.7647607,50.3691588],[10.7647245,50.369202],[10.7645738,50.369254],[10.76374,50.3693992],[10.7630275,50.3695311],[10.7634074,50.37017],[10.7640472,50.3705312],[10.7642213,50.3706346],[10.7643258,50.3707232],[10.7645085,50.3708779],[10.7646538,50.3710109],[10.7650791,50.3713827],[10.7658165,50.3716324],[10.7658919,50.3715938],[10.7659859,50.3714823],[10.7663172,50.3712231],[10.7665076,50.371105],[10.7665798,50.3710277],[10.7666565,50.3708589],[10.7668276,50.3705238],[10.7668853,50.3704624],[10.7669556,50.370454],[10.7670141,50.370447],[10.7671503,50.3704704],[10.767271,50.3704914],[10.7677491,50.3705663],[10.7686841,50.3707139],[10.7697577,50.3709306],[10.7704176,50.3710587],[10.7714166,50.3712386],[10.7723013,50.3713996],[10.7728861,50.3715436],[10.773499,50.3717287],[10.7738271,50.3718007],[10.773962,50.3718858],[10.7740329,50.371954],[10.7741073,50.3720258],[10.774454,50.3724177],[10.774631,50.3726057],[10.7749814,50.372968],[10.775268,50.3732638],[10.7756434,50.373633],[10.7760614,50.3740504],[10.7762148,50.374224],[10.7765038,50.374551],[10.7765698,50.3747777],[10.7767283,50.3750639],[10.777166,50.3757328],[10.7775671,50.3764999],[10.7778773,50.377022],[10.7781195,50.3775554],[10.7782426,50.377798],[10.7785394,50.3782127],[10.7790913,50.3789186],[10.7794134,50.3792945],[10.7797703,50.37981],[10.7800669,50.3802338],[10.7803813,50.3806921],[10.7805124,50.3808502],[10.7807361,50.3810111],[10.7810802,50.3813276],[10.781676,50.3819035],[10.7819528,50.3821467],[10.7821188,50.3822905],[10.7824426,50.3825713],[10.7824465,50.3825749],[10.7831698,50.383239],[10.7837869,50.3838422],[10.7841986,50.3842047],[10.7845318,50.3845648],[10.7846878,50.3847276],[10.7849295,50.3848884],[10.7853907,50.3851519],[10.7854811,50.3852036],[10.7858232,50.3853169],[10.78631,50.3846556],[10.7865026,50.384394],[10.7868139,50.3839039],[10.7869043,50.3837671],[10.7871379,50.3835943],[10.7878774,50.3831904],[10.7884231,50.3829136],[10.7889863,50.3826507],[10.7895385,50.3824152],[10.7902809,50.3821139],[10.7906138,50.3820352],[10.7910936,50.381909],[10.7918097,50.3817586],[10.7923845,50.3816451],[10.7924685,50.3816286],[10.7936142,50.3813678],[10.7940686,50.3812985],[10.7943301,50.3812218],[10.7945558,50.3811519],[10.7948744,50.3810822],[10.7951925,50.3810697],[10.7955998,50.3810826],[10.7961787,50.3810984],[10.7970258,50.3811039],[10.797922,50.3812167],[10.797968,50.3803715],[10.7992631,50.3802026],[10.7992315,50.3796586],[10.800179,50.3796026],[10.8011768,50.3795125],[10.8012154,50.379432],[10.8014128,50.3790198],[10.8014878,50.3790238],[10.8032224,50.3791137],[10.8042301,50.3791585],[10.8043776,50.3791651],[10.8049911,50.3793961],[10.8052724,50.379516],[10.8054672,50.3796047],[10.8055444,50.3796399],[10.8056464,50.3796863],[10.8060276,50.3798454],[10.8063054,50.379979],[10.8066718,50.3802041],[10.8081486,50.3810732],[10.8082862,50.3811569],[10.808885,50.3815213],[10.8096292,50.3818827],[10.8098796,50.3820359],[10.8101318,50.3821902],[10.8105009,50.3824159],[10.810574,50.383152],[10.8107105,50.3834267],[10.8107867,50.3836327],[10.8108401,50.3838385],[10.8108569,50.3839796],[10.8108757,50.3841379],[10.8114657,50.3841838],[10.8117303,50.3840239],[10.8122947,50.3839451],[10.8126959,50.3838892],[10.813164,50.3842276],[10.8134142,50.3843739],[10.8137395,50.3845935],[10.8145725,50.3850255],[10.8149517,50.3847833],[10.8158953,50.3854509],[10.8167533,50.386018],[10.8181408,50.385497],[10.8192532,50.3850789],[10.8201151,50.3848093],[10.8206404,50.3853511],[10.8212732,50.3859478],[10.8218702,50.3864964],[10.8221413,50.3867572],[10.8227137,50.3873079],[10.8231176,50.3876897],[10.8239184,50.388355],[10.8244976,50.3887825],[10.8251804,50.3892763],[10.8252817,50.3893527],[10.8254797,50.3895019],[10.8257417,50.3896992],[10.8264353,50.3901175],[10.8274078,50.3907233],[10.8285199,50.3913863],[10.8297071,50.3921635],[10.8304723,50.3927122],[10.8306189,50.3926391],[10.8308657,50.3925202],[10.831395,50.3924471],[10.8319601,50.3923511],[10.8320129,50.39234],[10.8325825,50.3922208],[10.833076,50.3921065],[10.8336053,50.3919762],[10.8339843,50.3918665],[10.834342,50.3917568],[10.8346997,50.3916449],[10.8347224,50.3916351],[10.8350181,50.3915077],[10.8355009,50.3912768],[10.8356976,50.3912036],[10.8359015,50.3911534],[10.8361731,50.3911351],[10.8367638,50.3911039],[10.8369958,50.3910917],[10.837897,50.3910277],[10.8393526,50.390848],[10.8394526,50.3908356],[10.8405756,50.3907213],[10.8415984,50.390607],[10.8416595,50.3906003],[10.842453,50.3905132],[10.8439935,50.3904308],[10.8445308,50.3904057],[10.8454392,50.3903438],[10.8460257,50.3903072],[10.8471163,50.3902912],[10.8479748,50.390291],[10.8486077,50.3903184],[10.8489788,50.3903442],[10.84933,50.3903686],[10.8497878,50.3904303],[10.8497921,50.3904189],[10.8500452,50.389749],[10.8505135,50.3888415],[10.8508351,50.388245],[10.8525302,50.3881624],[10.8535995,50.3881028],[10.8540833,50.3880645],[10.8545829,50.388025],[10.8561562,50.3879218],[10.8566391,50.3879058],[10.8573078,50.3878805],[10.8577404,50.387885],[10.8581946,50.3878872],[10.8585199,50.387878],[10.8588455,50.3878094],[10.8591814,50.3877362],[10.8594675,50.3876858],[10.8597965,50.3876698],[10.8603078,50.3876286],[10.8605546,50.3876216],[10.8609516,50.387665],[10.8613414,50.3877265],[10.8620316,50.3878453],[10.8622462,50.3878749],[10.8624572,50.3879343],[10.8625823,50.3879618],[10.8628827,50.3880348],[10.8632225,50.3881468],[10.8634264,50.3882564],[10.86387,50.3885078],[10.8642384,50.3887431],[10.8647071,50.3890104],[10.8648502,50.3890607],[10.8651005,50.3891246],[10.8660054,50.3893186],[10.8660912,50.3893803],[10.8661091,50.3894855],[10.8661092,50.3896844],[10.8660594,50.3900433],[10.8660714,50.3903018],[10.8660775,50.3904341],[10.8661347,50.3906993],[10.8661626,50.390966],[10.8661924,50.3912501],[10.8662784,50.3917256],[10.8663751,50.3920569],[10.8665613,50.392402],[10.8667153,50.3926923],[10.8668512,50.39293],[10.8669408,50.3931585],[10.867066,50.3933574],[10.8672236,50.3936087],[10.8673882,50.3937846],[10.8675707,50.3939675],[10.8678319,50.3941915],[10.8679537,50.3943171],[10.8682184,50.3945159],[10.8684653,50.3946713],[10.8688337,50.3948335],[10.8692059,50.3949705],[10.8696674,50.3951921],[10.8699965,50.3953703],[10.870415,50.3955873],[10.8708623,50.3958272],[10.8714239,50.3960488],[10.8718962,50.3962794],[10.8721788,50.3964074],[10.872508,50.3965194],[10.8729015,50.3966426],[10.8729352,50.3966505],[10.8732099,50.3967156],[10.8738039,50.3966976],[10.8744712,50.3966775],[10.8746228,50.3966747],[10.8755403,50.396658],[10.8760946,50.396647],[10.876357,50.3959117],[10.8764144,50.3957746],[10.8765261,50.3952698],[10.8765839,50.3950049],[10.8766557,50.3947788],[10.8767563,50.3945526],[10.8768459,50.3944362],[10.877122,50.3940297],[10.8774803,50.3935801],[10.8775735,50.3935025],[10.8777952,50.3933633],[10.8780353,50.39319],[10.8781819,50.393094],[10.8783249,50.3930532],[10.878493,50.393051],[10.878972,50.3931131],[10.8796867,50.3932577],[10.8798781,50.3932902],[10.8807005,50.3934296],[10.8807447,50.3934371],[10.880783,50.3934381],[10.8808303,50.3934394],[10.8809024,50.3934222],[10.8809162,50.3934189],[10.8811499,50.3933414],[10.8816101,50.3931888],[10.8821396,50.3930476],[10.8825937,50.3929452],[10.8831016,50.3928361],[10.8834484,50.3927884],[10.8846532,50.3927118],[10.8856937,50.3926556],[10.8867698,50.392627],[10.8870951,50.3926181],[10.8871175,50.3926119],[10.8871555,50.3926014],[10.8871774,50.3925953],[10.8872348,50.3925154],[10.8873065,50.3923692],[10.8873175,50.3923295],[10.8873181,50.3923275],[10.887364,50.3921591],[10.8873966,50.3919444],[10.887422,50.3917204],[10.8875052,50.3913991],[10.8875118,50.3913733],[10.8874953,50.3913645],[10.8874619,50.391347],[10.8871691,50.3911924],[10.8868226,50.3910094],[10.8865011,50.390824],[10.886337,50.3906571],[10.8861551,50.3904193],[10.8860125,50.3901793],[10.8858343,50.3899004],[10.885663,50.3896192],[10.8856099,50.3894112],[10.8855064,50.3892398],[10.8853708,50.3891483],[10.8848318,50.3886954],[10.8849507,50.3886409],[10.8851751,50.3885381],[10.8854719,50.3884561],[10.8857224,50.3883855],[10.8859871,50.3883058],[10.8866593,50.3881304],[10.8866632,50.3879864],[10.8866634,50.3877832],[10.8867138,50.3876483],[10.8867999,50.3874931],[10.8869109,50.387331],[10.8870612,50.3871575],[10.8872567,50.3869697],[10.8873084,50.3869201],[10.8876628,50.3865777],[10.8877989,50.3864133],[10.8880748,50.3860274],[10.8881679,50.3858744],[10.8883077,50.3857147],[10.8884187,50.3855342],[10.8885404,50.385379],[10.8886873,50.3852351],[10.8889344,50.384936],[10.8892821,50.3842373],[10.8895045,50.3838216],[10.8898737,50.3831845],[10.8900959,50.3828146],[10.8901141,50.3827824],[10.8904507,50.3821866],[10.8905582,50.3820312],[10.890723,50.3817687],[10.8908983,50.3815815],[10.8910344,50.3814811],[10.8911311,50.3813486],[10.8912458,50.3811683],[10.8913747,50.3810153],[10.891525,50.3808669],[10.8916468,50.3807573],[10.8917897,50.3806387],[10.8919543,50.3805817],[10.8922332,50.3804883],[10.8932131,50.3801715],[10.8935129,50.3803727],[10.893738,50.3805284],[10.8940556,50.3807159],[10.89427,50.3808601],[10.8945592,50.3810089],[10.8948664,50.3811324],[10.8949307,50.3811709],[10.8950271,50.3812285],[10.8952056,50.381343],[10.895891,50.3818531],[10.8964588,50.3823081],[10.8968552,50.382537],[10.8972586,50.3828023],[10.8974014,50.3829464],[10.897537,50.3830881],[10.8976726,50.3832801],[10.8977652,50.3834311],[10.8978365,50.3835751],[10.8979793,50.3837511],[10.898215,50.3839454],[10.8985541,50.3841742],[10.8986731,50.3842788],[10.8988612,50.384444],[10.8990863,50.3845608],[10.899254,50.3846226],[10.8995828,50.3847005],[10.8999545,50.3847534],[10.9003726,50.3848496],[10.9009978,50.3849964],[10.9013587,50.3851063],[10.9015481,50.3851315],[10.9017662,50.3851751],[10.9020484,50.3852668],[10.9023199,50.385372],[10.9025414,50.3854339],[10.9027023,50.3854501],[10.9030453,50.3854595],[10.90341,50.3854665],[10.9038996,50.3854898],[10.9042821,50.3854992],[10.9046145,50.3854927],[10.9049934,50.3854563],[10.9051615,50.3854564],[10.9052079,50.3854725],[10.9062865,50.3862547],[10.9065117,50.3861817],[10.9067691,50.386134],[10.9068907,50.3861523],[10.9071015,50.3862598],[10.9072514,50.3863696],[10.9074156,50.3865707],[10.907812,50.3868475],[10.9081301,50.3868888],[10.9082229,50.3869164],[10.9083958,50.3870707],[10.9084744,50.3871408],[10.9086018,50.3872545],[10.908677,50.3873216],[10.9086943,50.3873371],[10.9087148,50.3873259],[10.9088518,50.3872511],[10.9092129,50.3870541],[10.9094598,50.3869515],[10.9096387,50.3868054],[10.9098283,50.3866365],[10.9100109,50.3864561],[10.9102936,50.3861501],[10.9104044,50.3860314],[10.9111341,50.3856459],[10.9118388,50.385203],[10.9121352,50.3853883],[10.9125068,50.3855828],[10.9128177,50.3857109],[10.913157,50.38583],[10.9135288,50.3859696],[10.913811,50.3860611],[10.9140146,50.386139],[10.9140896,50.3861915],[10.9142003,50.3863196],[10.914304,50.3864453],[10.9143894,50.386603],[10.9144788,50.3867333],[10.9146394,50.3868545],[10.9148287,50.386962],[10.9149895,50.3870216],[10.9153341,50.3871409],[10.9153396,50.3871429],[10.91559,50.3872047],[10.9156434,50.3872143],[10.9160294,50.3872827],[10.9162975,50.3873514],[10.9163354,50.3873673],[10.9163902,50.3873903],[10.9164845,50.3874299],[10.9165582,50.3874609],[10.916619,50.3874865],[10.9166427,50.3874972],[10.916728,50.3875359],[10.9169514,50.3876374],[10.9171622,50.3877403],[10.9173692,50.3879096],[10.9177729,50.3882045],[10.9179707,50.3883329],[10.9180373,50.3883761],[10.9182373,50.3884699],[10.9185626,50.3885911],[10.9191164,50.3887926],[10.919449,50.3889066],[10.919522,50.3889317],[10.9196357,50.3889706],[10.9197239,50.3890008],[10.9202052,50.3891658],[10.9203922,50.3892298],[10.9215571,50.389612],[10.921558,50.3896122],[10.9220075,50.3897288],[10.9226115,50.3898846],[10.9231655,50.3900151],[10.9238159,50.3901686],[10.9243484,50.3902809],[10.9248238,50.3903565],[10.9251063,50.3903864],[10.9253028,50.3904185],[10.9255137,50.3904872],[10.9267646,50.390858],[10.9275293,50.391112],[10.9281871,50.3913248],[10.9288482,50.3915651],[10.9294165,50.3917619],[10.9300133,50.3919495],[10.9305996,50.3920732],[10.9312357,50.3922267],[10.9318863,50.3923686],[10.9323188,50.3924534],[10.9329943,50.3926022],[10.9332733,50.3925772],[10.9338094,50.3925341],[10.9343279,50.3924681],[10.9348678,50.3923976],[10.9357097,50.3922929],[10.9369424,50.3921841],[10.9371072,50.3921696],[10.9372391,50.3921579],[10.9378613,50.3916893],[10.9379086,50.3916536],[10.938725,50.3910511],[10.939109,50.3904528],[10.9392202,50.3902884],[10.9394892,50.3899482],[10.9397113,50.3897496],[10.9398061,50.3896667],[10.94003,50.3894711],[10.9402127,50.3893387],[10.940871,50.3890195],[10.9414579,50.3886635],[10.9414779,50.3886529],[10.9419089,50.3884241],[10.9422059,50.3882529],[10.9423992,50.3880954],[10.9426072,50.3878146],[10.942765,50.3876091],[10.9429369,50.3874173],[10.943109,50.387262],[10.9433093,50.3871594],[10.9436505,50.3870527],[10.9439233,50.3869673],[10.944139,50.3868997],[10.945244,50.3865762],[10.9462347,50.3862801],[10.9462914,50.386267],[10.9464133,50.3862391],[10.9467099,50.3862462],[10.9466332,50.3858909],[10.9466175,50.3858183],[10.9465934,50.3857069],[10.9473947,50.3853283],[10.9477668,50.3851344],[10.948121,50.3849473],[10.9482678,50.3848491],[10.9488585,50.3843493],[10.9496106,50.3836918],[10.9495868,50.3835134],[10.949572,50.3834016],[10.9495118,50.3831273],[10.9494372,50.3829924],[10.9493551,50.3828918],[10.9493556,50.3827525],[10.9493881,50.3825674],[10.949467,50.3823918],[10.9494743,50.3823755],[10.9494746,50.382268],[10.9494248,50.3821721],[10.9493105,50.3821102],[10.9490783,50.3820872],[10.9489034,50.3820757],[10.9487321,50.3820069],[10.9485216,50.3818467],[10.9484646,50.3817964],[10.9485401,50.3816159],[10.9486403,50.3815292],[10.9487475,50.3814973],[10.9489442,50.3814679],[10.9491908,50.38142],[10.9492237,50.3814127],[10.9494876,50.3813541],[10.9497665,50.3812469],[10.9503138,50.3809892],[10.9505363,50.3808786],[10.9508646,50.3807154],[10.9514441,50.3804234],[10.9516912,50.3802637],[10.9518416,50.3800856],[10.9520207,50.3798846],[10.9521567,50.3797522],[10.9523609,50.3795719],[10.952565,50.3793938],[10.953302,50.3789237],[10.9535417,50.3787799],[10.9539638,50.3785815],[10.9544681,50.3783466],[10.9547757,50.3781891],[10.9553123,50.3778789],[10.9555091,50.3777693],[10.955763,50.3776643],[10.95585,50.3776548],[10.9559487,50.377644],[10.9560881,50.3776555],[10.9561025,50.3776583],[10.956363,50.3777083],[10.9565056,50.3775897],[10.9566278,50.377488],[10.9567252,50.3774071],[10.9568571,50.3772974],[10.9568931,50.3771626],[10.9570005,50.3770622],[10.9571686,50.3769617],[10.9572651,50.3769367],[10.9580703,50.3763729],[10.9586751,50.3758889],[10.9591581,50.3756152],[10.9597267,50.3752774],[10.9599398,50.3755647],[10.9600118,50.3756616],[10.9600871,50.3757708],[10.9603706,50.3761821],[10.9604248,50.3762606],[10.9605742,50.376528],[10.9607026,50.3767179],[10.9609093,50.3768872],[10.9611661,50.3770815],[10.9607043,50.3775337],[10.9609505,50.3776778],[10.961172,50.377614],[10.9614297,50.3774772],[10.9616228,50.3774247],[10.9618979,50.377361],[10.9620087,50.3773199],[10.9620803,50.3772446],[10.9622021,50.3770709],[10.962395,50.3771305],[10.9625309,50.3770461],[10.9628286,50.3765184],[10.9630977,50.3760228],[10.9633415,50.3755545],[10.9633739,50.3754334],[10.9633742,50.3753215],[10.9633852,50.3752027],[10.9634642,50.3750198],[10.9635036,50.3749125],[10.9634825,50.3747732],[10.9634362,50.3746634],[10.9633616,50.3745551],[10.9632215,50.3743508],[10.9631611,50.374314],[10.9630757,50.3742795],[10.9630115,50.3742474],[10.9629372,50.374142],[10.9629594,50.3740621],[10.9630455,50.3739914],[10.9632609,50.3738549],[10.9632933,50.3738184],[10.9633366,50.3737751],[10.9633509,50.3737386],[10.9633409,50.3735908],[10.9633284,50.3734115],[10.9633145,50.3730983],[10.9632969,50.3730046],[10.9632647,50.3729611],[10.9630624,50.3728404],[10.9629866,50.3727751],[10.9629511,50.3727316],[10.9629408,50.3726676],[10.962952,50.3726127],[10.9629217,50.3723361],[10.9628839,50.3722736],[10.962883,50.3722719],[10.9628656,50.3722103],[10.9628591,50.3721301],[10.9628486,50.3720867],[10.9628419,50.3720273],[10.9628425,50.3719427],[10.9628428,50.3718924],[10.9628396,50.3718765],[10.9623695,50.3717308],[10.9621597,50.3716141],[10.9621267,50.3715958],[10.9619445,50.3715363],[10.9618577,50.3715146],[10.9617054,50.3714767],[10.9614302,50.3714034],[10.9612089,50.3713187],[10.9609125,50.3711699],[10.9606591,50.3710052],[10.9604057,50.3708473],[10.960195,50.3707284],[10.9600663,50.3706871],[10.9599013,50.3706659],[10.959745,50.3706458],[10.9597417,50.3704126],[10.9595309,50.3703759],[10.9593069,50.3703021],[10.9591503,50.3702217],[10.9591046,50.3701278],[10.9590483,50.3699951],[10.9589811,50.3699263],[10.9589207,50.3698735],[10.9589048,50.369867],[10.958853,50.3698458],[10.9587675,50.369825],[10.9586961,50.3698043],[10.9586465,50.3697447],[10.9586184,50.3696966],[10.9585793,50.3696599],[10.9585188,50.3696277],[10.9583942,50.3695701],[10.9582769,50.3694944],[10.9582203,50.3694279],[10.9582027,50.3693593],[10.9581996,50.3693113],[10.958232,50.3692748],[10.958268,50.3692406],[10.9582861,50.3692155],[10.9582612,50.3691858],[10.9582186,50.3691696],[10.9581221,50.369167],[10.9580685,50.3691669],[10.9580079,50.3691667],[10.9579292,50.369155],[10.9578721,50.3691388],[10.9578295,50.3691181],[10.9578083,50.3690838],[10.9577586,50.3690379],[10.9576874,50.3690171],[10.9575054,50.3690051],[10.9574536,50.368994],[10.9574392,50.3689483],[10.9573786,50.3689185],[10.9572643,50.3688956],[10.9571428,50.3688704],[10.9570216,50.3687766],[10.956918,50.3687148],[10.9567395,50.3686324],[10.9566681,50.3686163],[10.9565967,50.3686026],[10.9564645,50.3686002],[10.9568027,50.3684328],[10.9568935,50.3683879],[10.957131,50.368261],[10.9573504,50.3681439],[10.9577229,50.3679449],[10.9577277,50.3679424],[10.9577832,50.3679118],[10.9580268,50.3677782],[10.9581522,50.3677199],[10.9581986,50.3676983],[10.9584557,50.3676184],[10.9587453,50.3675433],[10.9597994,50.3672993],[10.9602493,50.3674939],[10.9609314,50.3677321],[10.9612671,50.3678419],[10.9614091,50.3678615],[10.9614171,50.3678626],[10.9615852,50.3678399],[10.9617317,50.3677919],[10.9617359,50.3677749],[10.9618106,50.3674765],[10.961843,50.367232],[10.9619076,50.3670353],[10.961965,50.3668525],[10.9620367,50.366688],[10.962162,50.3665029],[10.9623123,50.3663338],[10.9624769,50.3661603],[10.9628274,50.3658519],[10.9631742,50.3656051],[10.963453,50.365427],[10.9637247,50.3652946],[10.9639249,50.3651781],[10.9640787,50.3651005],[10.9642538,50.3650572],[10.9644323,50.3650184],[10.9646576,50.3649385],[10.9648328,50.3648289],[10.9652274,50.3645413],[10.9652404,50.364532],[10.9654086,50.3643286],[10.9656446,50.3641413],[10.9658162,50.3639517],[10.9660022,50.3638146],[10.9661667,50.3637233],[10.9664738,50.3636321],[10.9668277,50.363511],[10.967128,50.3634015],[10.967303,50.3633102],[10.9677106,50.3630863],[10.9683185,50.362657],[10.9685615,50.3624947],[10.9689548,50.362159],[10.9691996,50.3619789],[10.9692872,50.3619145],[10.969509,50.3617455],[10.9697022,50.3615513],[10.9698881,50.361309],[10.9700813,50.3610394],[10.9701922,50.3609001],[10.9702888,50.3608018],[10.9704103,50.3607196],[10.9706641,50.3605552],[10.9709072,50.3604158],[10.9710467,50.3603107],[10.9711647,50.3601965],[10.9712362,50.3600823],[10.9713006,50.3599909],[10.9714008,50.3599314],[10.9715543,50.3598836],[10.971765,50.3598288],[10.9718831,50.359774],[10.971976,50.3596872],[10.9723837,50.3592828],[10.9725267,50.3591388],[10.9726626,50.3590177],[10.9727556,50.3589379],[10.9728341,50.3588417],[10.97287,50.3587366],[10.9728737,50.3586361],[10.9729061,50.3584852],[10.9729704,50.3583504],[10.9730599,50.3582293],[10.9731779,50.3580991],[10.973321,50.3579391],[10.9734175,50.3578317],[10.973564,50.3577038],[10.9737537,50.3576216],[10.9746575,50.3572654],[10.9750648,50.3571262],[10.9752758,50.357028],[10.9755116,50.3569001],[10.9757082,50.3567859],[10.9758333,50.3566899],[10.9759656,50.3565711],[10.9761479,50.3564204],[10.9762909,50.356265],[10.9763912,50.3561279],[10.9765627,50.3559725],[10.9766341,50.3559108],[10.9767378,50.3558514],[10.9769451,50.3557349],[10.9772202,50.3556208],[10.9773454,50.3555499],[10.977574,50.3554358],[10.9778314,50.3552827],[10.9783281,50.3550087],[10.9785719,50.354875],[10.9788355,50.3547254],[10.9791821,50.354481],[10.9794287,50.3543017],[10.979468,50.3542731],[10.9796196,50.3541289],[10.9796218,50.3541269],[10.9796857,50.3540422],[10.9797148,50.3540035],[10.9797362,50.3539006],[10.9797506,50.3537864],[10.9797528,50.3537792],[10.9797829,50.3536811],[10.979858,50.3535784],[10.9800367,50.353471],[10.9804019,50.3532459],[10.98073,50.3530439],[10.9809751,50.3529033],[10.9810088,50.3528839],[10.9812123,50.3527652],[10.9813447,50.3526555],[10.9814734,50.3525595],[10.9816128,50.3524338],[10.9817056,50.3523493],[10.9818522,50.3522557],[10.9819986,50.3521712],[10.9821057,50.3521118],[10.9822237,50.3520958],[10.982338,50.352089],[10.9824452,50.3520456],[10.9825881,50.3519565],[10.9826704,50.3518742],[10.9827597,50.3517348],[10.9828205,50.3516297],[10.9829027,50.3514994],[10.9829172,50.3513897],[10.9828958,50.3511954],[10.982871,50.3510309],[10.9828319,50.3508525],[10.982775,50.3506696],[10.9827715,50.3505554],[10.9828215,50.3504411],[10.9829288,50.3503222],[10.9833005,50.3499064],[10.9834328,50.3497579],[10.9835758,50.3496025],[10.9836401,50.3495042],[10.9837581,50.3493877],[10.9839154,50.3492757],[10.984087,50.3491158],[10.9842227,50.3489467],[10.9843041,50.3488314],[10.9843371,50.3487844],[10.9845196,50.3484484],[10.9845894,50.3483443],[10.9846054,50.3483205],[10.9847162,50.3482108],[10.9850128,50.3479869],[10.9852736,50.3477996],[10.9854738,50.3476693],[10.9856059,50.3475276],[10.9858687,50.347333],[10.9864451,50.3475486],[10.9866414,50.3476035],[10.98687,50.3476378],[10.9872735,50.3476701],[10.9876484,50.347741],[10.9879805,50.3478211],[10.9882734,50.3478738],[10.9884983,50.3478807],[10.9888054,50.3478923],[10.9892696,50.347897],[10.9900016,50.3479201],[10.9901622,50.3479224],[10.9903302,50.3479431],[10.9905193,50.3479911],[10.9908193,50.3481124],[10.9912978,50.3482726],[10.9916013,50.3484303],[10.992101,50.3487369],[10.9922321,50.3488292],[10.9923509,50.3489129],[10.9923644,50.3489245],[10.9926328,50.349153],[10.9928622,50.3490349],[10.99289,50.3490206],[10.993,50.3489587],[10.9932052,50.3488436],[10.9932311,50.3488289],[10.993358,50.3487578],[10.9934786,50.3486737],[10.9936366,50.3485636],[10.9938474,50.3484014],[10.9940618,50.34823],[10.9943297,50.3480449],[10.994637,50.3478255],[10.9949437,50.3475719],[10.995173,50.3473822],[10.9956446,50.347044],[10.9961055,50.3467059],[10.9962657,50.3468539],[10.9964125,50.3469895],[10.9964544,50.3470507],[10.9964658,50.3470672],[10.9964591,50.3471689],[10.9964586,50.3471746],[10.9964335,50.3472569],[10.9965122,50.3473964],[10.9966584,50.3475839],[10.9969368,50.3478857],[10.9971189,50.3482103],[10.9972222,50.3485144],[10.997365,50.3488276],[10.9973826,50.3488664],[10.9975637,50.3491135],[10.9976038,50.3491682],[10.9978395,50.3495112],[10.9982123,50.3498828],[10.9985976,50.3502078],[10.9986562,50.3501906],[10.9988084,50.3501463],[10.9988429,50.3501917],[10.9989009,50.3502676],[10.9990076,50.3505283],[10.9990893,50.3507638],[10.9991886,50.351036],[10.9992456,50.3512532],[10.9992771,50.3515276],[10.9993185,50.3517887],[10.9993476,50.3519711],[10.9986562,50.352044],[10.9982496,50.3520869],[10.9982121,50.3521788],[10.9981164,50.3523891],[10.9980484,50.3526132],[10.9980448,50.3527663],[10.9980733,50.3529103],[10.9980909,50.3530292],[10.9980981,50.3531435],[10.9980909,50.353212],[10.9980409,50.3533263],[10.9978264,50.3536624],[10.9977264,50.3538383],[10.9974547,50.3538405],[10.9969942,50.3537878],[10.9967835,50.3537511],[10.9963906,50.3536894],[10.9961298,50.3536596],[10.9958799,50.353632],[10.9957228,50.3536411],[10.9954798,50.3536891],[10.9952834,50.3537096],[10.9950942,50.3536844],[10.9946941,50.3536408],[10.9942632,50.3535821],[10.9942227,50.3535767],[10.9941883,50.3536648],[10.9941511,50.3537595],[10.9941224,50.3539196],[10.9940724,50.3542693],[10.9940186,50.3544727],[10.9939933,50.3545655],[10.9939756,50.3546304],[10.9939148,50.3547607],[10.9938825,50.3548315],[10.9938495,50.3548476],[10.993704,50.3549183],[10.9935898,50.3549777],[10.9934591,50.3550636],[10.9933395,50.3551423],[10.9931001,50.3552839],[10.99315,50.3554166],[10.993152,50.3554306],[10.9931749,50.3555949],[10.9933925,50.3559629],[10.9935318,50.3562716],[10.9936923,50.3565619],[10.9938028,50.3568431],[10.9938884,50.3570237],[10.9939704,50.3572203],[10.9939703,50.3573666],[10.9939273,50.3575998],[10.9938557,50.3578352],[10.9937305,50.3581414],[10.9935087,50.3587106],[10.9932581,50.3594739],[10.9930936,50.3597254],[10.9930472,50.3598602],[10.993047,50.359995],[10.993054,50.3600866],[10.9925325,50.3602076],[10.9923431,50.360308],[10.9922645,50.3603514],[10.9922109,50.3604543],[10.9922144,50.3605822],[10.9922714,50.3607698],[10.9923177,50.3609229],[10.992382,50.3610441],[10.9924925,50.3612316],[10.992621,50.3614145],[10.992721,50.3616019],[10.9927585,50.3617515],[10.9927619,50.3617652],[10.9927743,50.3618145],[10.9927919,50.36205],[10.9928455,50.3622215],[10.9928562,50.3623312],[10.9928489,50.3625026],[10.9928917,50.362706],[10.9928979,50.3628163],[10.9929057,50.3629575],[10.9929019,50.3632022],[10.9929482,50.3634947],[10.9930012,50.3635611],[10.9930339,50.3636021],[10.9931838,50.3637303],[10.9934625,50.3638994],[10.9936462,50.364],[10.9937552,50.3640596],[10.9940089,50.3641557],[10.9936978,50.3643201],[10.9934013,50.3645121],[10.9929117,50.3647611],[10.9932931,50.3653026],[10.9933577,50.3653943],[10.9938973,50.3653214],[10.9942294,50.3652849],[10.9945224,50.3652896],[10.9946615,50.3652967],[10.9948405,50.3653057],[10.9951548,50.365347],[10.9954548,50.3653927],[10.9957869,50.3654294],[10.996105,50.3654981],[10.9963943,50.3655736],[10.99668,50.3656605],[10.996973,50.3657018],[10.9972981,50.3657293],[10.9976909,50.3657613],[10.9979839,50.3657638],[10.9982116,50.3657238],[10.9983135,50.3656257],[10.9985137,50.3655573],[10.9986559,50.3655307],[10.9987925,50.3655051],[10.9989855,50.3654482],[10.9991643,50.3653386],[10.9992788,50.3652268],[10.999323,50.3651873],[10.9994112,50.3651081],[10.9995221,50.3650625],[10.9996366,50.3649667],[10.9997725,50.3648708],[11.0000191,50.3647591],[11.0001909,50.3646885],[11.0004054,50.364579],[11.0005169,50.3645264],[11.0005984,50.3644878],[11.0008344,50.3643989],[11.0010882,50.3643444],[11.001174,50.3642919],[11.0012597,50.3642646],[11.0015348,50.3642443],[11.0019242,50.3642723],[11.0023061,50.3643984],[11.0026311,50.3644834],[11.0027875,50.3645471],[11.0028845,50.3645865],[11.0030809,50.3646302],[11.0031972,50.3646435],[11.0032187,50.3646459],[11.0033451,50.3646603],[11.0036451,50.3647338],[11.003825,50.3647769],[11.0038557,50.3647843],[11.0040235,50.3648623],[11.0041411,50.3649248],[11.0041484,50.3649287],[11.0042915,50.3649334],[11.004989,50.3648677],[11.0051059,50.3648567],[11.0052382,50.3648659],[11.0060796,50.3649249],[11.0061346,50.3649288],[11.0062502,50.3649255],[11.0063668,50.3649222],[11.0065562,50.3648927],[11.0067241,50.3648769],[11.0068111,50.3649043],[11.0069063,50.3649343],[11.0070276,50.3650144],[11.007149,50.3650352],[11.0072884,50.365033],[11.007399,50.3650172],[11.0074822,50.3650173],[11.0075527,50.3650173],[11.0076419,50.3650562],[11.0077419,50.3650838],[11.0079883,50.3651115],[11.0080955,50.3651116],[11.0081494,50.3649768],[11.0082781,50.3648993],[11.0085678,50.3647373],[11.0089324,50.3645732],[11.0091577,50.3644226],[11.0093435,50.364304],[11.0095546,50.3642036],[11.0097941,50.3641078],[11.01003,50.364051],[11.0103766,50.3639668],[11.0106018,50.3639122],[11.0109413,50.3638165],[11.0111735,50.3637459],[11.0113808,50.3636935],[11.011656,50.363614],[11.011867,50.3635479],[11.012085,50.3634864],[11.0122709,50.3633838],[11.0123998,50.3632856],[11.0125176,50.3631965],[11.012768,50.36303],[11.0129647,50.3629159],[11.0131507,50.3627813],[11.0133294,50.3626764],[11.013619,50.3625304],[11.0137561,50.3624511],[11.0138836,50.3623774],[11.0141446,50.3622658],[11.0144664,50.3620649],[11.0147726,50.3622505],[11.0148277,50.3622726],[11.0148868,50.3622964],[11.0149801,50.3623924],[11.015048,50.3624771],[11.015062,50.3625639],[11.0150012,50.3626416],[11.0149225,50.3626849],[11.0148439,50.3627215],[11.0148581,50.3627946],[11.0149652,50.3628793],[11.0152327,50.363067],[11.0152366,50.3628704],[11.015201,50.3627698],[11.0158381,50.3625839],[11.0165661,50.3623713],[11.0166382,50.3620902],[11.0166669,50.3619942],[11.0171278,50.3616798],[11.0173426,50.3615332],[11.017482,50.3615631],[11.0176642,50.3615769],[11.0176982,50.3615798],[11.017832,50.3615909],[11.0179034,50.3615613],[11.0179464,50.3615201],[11.0180133,50.3614239],[11.018018,50.3614173],[11.0181892,50.3615273],[11.0187579,50.3611964],[11.0190295,50.3610596],[11.0191654,50.3609248],[11.019337,50.3608313],[11.0196582,50.3609984],[11.0200152,50.3611567],[11.0198758,50.3612524],[11.0197399,50.3613483],[11.019636,50.3614991],[11.0195859,50.3616407],[11.0195605,50.3617573],[11.0195586,50.3617721],[11.0195389,50.361915],[11.0195568,50.3619905],[11.019635,50.362098],[11.019753,50.3621964],[11.0198955,50.3622696],[11.0200993,50.3622196],[11.0204067,50.3621354],[11.0206566,50.3621037],[11.0208854,50.3620924],[11.021414,50.3620953],[11.0217307,50.3615655],[11.0218795,50.3613163],[11.0219607,50.3612341],[11.0220441,50.3611496],[11.0223799,50.3611773],[11.0227977,50.3612532],[11.0236834,50.3613501],[11.0236901,50.3613354],[11.0238876,50.3609023],[11.0240667,50.360619],[11.0242563,50.3604272],[11.0245096,50.3605829],[11.0247775,50.3606929],[11.025195,50.3608374],[11.0258271,50.3609935],[11.0265734,50.3611679],[11.0272733,50.3613126],[11.0273271,50.3612144],[11.0276131,50.3609655],[11.0277991,50.3608125],[11.0279814,50.3606619],[11.0281246,50.3604792],[11.0285602,50.3606076],[11.0291101,50.3607567],[11.0294175,50.3605192],[11.0299596,50.3607992],[11.0301493,50.3608972],[11.0313147,50.3602468],[11.0317892,50.360661],[11.0320856,50.3604994],[11.0325255,50.3602593],[11.0328858,50.3606506],[11.0331354,50.3610074],[11.0333529,50.3613436],[11.0335103,50.3612249],[11.0338389,50.3611338],[11.0340677,50.3610358],[11.034275,50.3609353],[11.0346252,50.3607688],[11.0348862,50.3606159],[11.0352151,50.3604151],[11.0357764,50.3600704],[11.0359677,50.3599885],[11.036096,50.3598442],[11.035866,50.3596522],[11.0362698,50.3595726],[11.0362127,50.3595154],[11.0361771,50.3594627],[11.0361771,50.3594033],[11.0361772,50.3593576],[11.0361485,50.359321],[11.0360772,50.3593003],[11.0359485,50.3593002],[11.0358451,50.359291],[11.0357379,50.3592475],[11.0356631,50.3591971],[11.035638,50.3591605],[11.0356203,50.3590873],[11.0356204,50.3590301],[11.0356739,50.3590142],[11.0358061,50.3589915],[11.0359884,50.3589825],[11.0361205,50.358946],[11.0362349,50.3588685],[11.0363349,50.3588068],[11.0363708,50.3587292],[11.0363745,50.3586514],[11.0363317,50.358592],[11.0362568,50.3585393],[11.0361245,50.358514],[11.0360318,50.358482],[11.0359496,50.3584247],[11.0358604,50.3583538],[11.035789,50.3583194],[11.0356819,50.3583033],[11.0354642,50.3582711],[11.0353498,50.3582435],[11.0351571,50.3581292],[11.0348715,50.3580282],[11.0348143,50.3580054],[11.0347715,50.3579368],[11.0347858,50.3579047],[11.034786,50.3578453],[11.0347682,50.357779],[11.0347218,50.3577264],[11.0346575,50.3576944],[11.0345432,50.3576828],[11.0344539,50.357669],[11.0343718,50.35763],[11.0343113,50.3575683],[11.0342506,50.3575133],[11.0342005,50.3574676],[11.0341435,50.3574447],[11.0340685,50.3574309],[11.0338792,50.357417],[11.03369,50.35741],[11.033622,50.3574213],[11.0335326,50.3574624],[11.0334291,50.3574897],[11.0333611,50.3574989],[11.0332683,50.3574758],[11.033215,50.3574277],[11.0331579,50.3573455],[11.0331044,50.3572448],[11.0330652,50.3571945],[11.0330009,50.3571555],[11.032933,50.3570938],[11.0328512,50.3570115],[11.0327834,50.3568993],[11.0327371,50.3567942],[11.0327194,50.3567119],[11.0327123,50.3565838],[11.0327231,50.3564628],[11.0327699,50.3563165],[11.0328271,50.3562091],[11.0328844,50.3560949],[11.0329666,50.3559943],[11.0329775,50.35596],[11.0329774,50.3559326],[11.0329383,50.3559143],[11.0328561,50.3558799],[11.0327633,50.3558569],[11.0327131,50.355818],[11.0326847,50.3557677],[11.0326492,50.3556991],[11.0325634,50.3556373],[11.0324529,50.355571],[11.0323922,50.3555366],[11.0322994,50.3554816],[11.032253,50.3554633],[11.0321708,50.3554564],[11.0320351,50.3554312],[11.0318709,50.3554013],[11.0317995,50.3553577],[11.0318042,50.3553005],[11.0317935,50.35528],[11.0318078,50.3552504],[11.0318365,50.3551909],[11.0318544,50.355127],[11.0318867,50.355063],[11.0318976,50.3549944],[11.0319011,50.3549625],[11.0318621,50.3549213],[11.0317477,50.3548937],[11.0316551,50.3548845],[11.0315729,50.3548662],[11.031441,50.3548272],[11.0313447,50.3547952],[11.0313055,50.3547608],[11.0313021,50.3547356],[11.0313377,50.3546877],[11.0313629,50.3546214],[11.0313522,50.3545735],[11.0312952,50.3545255],[11.0312238,50.3545185],[11.0311918,50.354514],[11.0311454,50.3544934],[11.0311526,50.3544613],[11.0312062,50.3544386],[11.0312918,50.3544066],[11.0313561,50.3543907],[11.0314025,50.3543884],[11.0314846,50.354368],[11.0315346,50.3543543],[11.0315668,50.3543041],[11.0315598,50.3542424],[11.0315457,50.3541555],[11.0315102,50.354055],[11.031496,50.3539727],[11.0315548,50.3539791],[11.0317367,50.3542079],[11.0318614,50.3544298],[11.0320181,50.3547133],[11.0321497,50.3551021],[11.0323858,50.3549972],[11.0325709,50.3549176],[11.0327895,50.3548238],[11.0330237,50.3547542],[11.0331039,50.3547303],[11.0331252,50.354725],[11.0337041,50.3545801],[11.034433,50.3543658],[11.035076,50.3542134],[11.0355547,50.3541612],[11.0357547,50.3541499],[11.0360405,50.3541159],[11.0363084,50.3541207],[11.0367297,50.3541326],[11.0370939,50.3541877],[11.0373225,50.3542405],[11.0374868,50.3542453],[11.0378048,50.3541838],[11.0383084,50.3540929],[11.0388407,50.3539859],[11.0394837,50.3537899],[11.0403161,50.3535781],[11.0409806,50.3534026],[11.0415272,50.3533025],[11.0419629,50.3532982],[11.0425735,50.3533331],[11.0429628,50.3533311],[11.0433097,50.3534302],[11.043349,50.3529017],[11.0433781,50.3524012],[11.0428246,50.3522795],[11.0425641,50.352245],[11.0422211,50.3522264],[11.0418784,50.3522055],[11.0414391,50.3522006],[11.0409497,50.3522117],[11.0405749,50.3522158],[11.0399211,50.3522793],[11.0394746,50.3523452],[11.039121,50.3524066],[11.0386817,50.3524976],[11.0383565,50.3525728],[11.038135,50.3526503],[11.0379421,50.3527118],[11.0377886,50.3527254],[11.0373849,50.3527502],[11.0370599,50.3527636],[11.0368562,50.3527471],[11.0367742,50.3527405],[11.0364635,50.3526899],[11.0364149,50.3526818],[11.0361458,50.3526371],[11.0357673,50.3525773],[11.0354281,50.3525244],[11.0351746,50.3524693],[11.034971,50.3524028],[11.0347677,50.3522952],[11.0346321,50.3522264],[11.0344222,50.3521471],[11.0344142,50.352144],[11.0342668,50.3521018],[11.0341572,50.3520706],[11.0335326,50.351862],[11.0329684,50.3517038],[11.0328328,50.3516693],[11.0327079,50.3515686],[11.0325151,50.3514885],[11.0322331,50.3514287],[11.032036,50.3513997],[11.0318582,50.3513735],[11.0315797,50.3513459],[11.0312939,50.3513501],[11.0310618,50.3513979],[11.0307046,50.3515005],[11.0299899,50.3517786],[11.0300725,50.3513558],[11.0309836,50.351016],[11.0313016,50.3509273],[11.0316624,50.3508773],[11.0319803,50.3508318],[11.0322553,50.3507705],[11.0323876,50.350702],[11.0324437,50.3506465],[11.0324985,50.3505923],[11.0325914,50.3504438],[11.0328043,50.3501663],[11.0330279,50.349875],[11.0333891,50.3493863],[11.0334785,50.3493497],[11.0337928,50.3492769],[11.0340858,50.3491697],[11.0344431,50.3490466],[11.0347897,50.3488687],[11.0348327,50.348835],[11.0350578,50.3486586],[11.035115,50.3485306],[11.0350867,50.3483615],[11.0350797,50.3481649],[11.0350693,50.3480598],[11.0352015,50.3478702],[11.0354305,50.3475297],[11.0356235,50.3473425],[11.0358487,50.347162],[11.0360489,50.3470114],[11.0362526,50.3468585],[11.0363885,50.346719],[11.036478,50.3465501],[11.0365425,50.3463489],[11.0365568,50.346198],[11.0365608,50.3459238],[11.0365971,50.3457637],[11.0366039,50.3457341],[11.0368724,50.3452292],[11.037761,50.3455454],[11.0384071,50.34577],[11.0386032,50.3458124],[11.038939,50.3458848],[11.0393497,50.3459789],[11.0394543,50.3460064],[11.0396815,50.3460661],[11.0403242,50.3462838],[11.0405347,50.3463411],[11.0407524,50.3464327],[11.0411629,50.3466868],[11.0411811,50.3466615],[11.041729,50.3458988],[11.0418172,50.3457685],[11.041871,50.3456176],[11.0419997,50.3454623],[11.0421534,50.3452956],[11.0424107,50.3451312],[11.0428877,50.3448471],[11.0430217,50.3447614],[11.0433965,50.3449058],[11.0439068,50.3451576],[11.0444387,50.3454118],[11.0448312,50.3456292],[11.0448904,50.3456434],[11.0450811,50.345689],[11.0453024,50.345792],[11.0454881,50.3458996],[11.0455523,50.3459545],[11.045517,50.3459711],[11.0454844,50.3459864],[11.0455558,50.3460711],[11.0461268,50.3462955],[11.0466515,50.3464263],[11.0473693,50.3466235],[11.0479547,50.3467451],[11.0485331,50.3468644],[11.0490294,50.3469608],[11.04934,50.3469954],[11.0497185,50.3470529],[11.0498738,50.3470856],[11.0501111,50.3471355],[11.0505004,50.3471952],[11.0509396,50.3472619],[11.0515608,50.3472967],[11.0520571,50.3473862],[11.0523857,50.3474504],[11.0523929,50.3473922],[11.0525824,50.3474393],[11.0529179,50.3474921],[11.0530177,50.347515],[11.053089,50.3475333],[11.0531782,50.3475539],[11.0532567,50.3475906],[11.0533066,50.3476135],[11.05336,50.3476249],[11.0534671,50.3476205],[11.0535634,50.3476182],[11.053674,50.3476206],[11.0537491,50.3476367],[11.0538239,50.3476664],[11.0538967,50.3476998],[11.0538989,50.3477007],[11.0540094,50.3477283],[11.054095,50.3477534],[11.0541914,50.3477855],[11.0542769,50.3478085],[11.0544302,50.3478474],[11.0545765,50.3478795],[11.0547477,50.3479413],[11.0551401,50.3480192],[11.0552115,50.3480468],[11.0552685,50.3480834],[11.05534,50.3481245],[11.0554327,50.3481452],[11.0559094,50.3484887],[11.0561632,50.3483585],[11.056331,50.3483746],[11.0565416,50.3484434],[11.0567308,50.3484869],[11.0568236,50.3485351],[11.0569272,50.3486059],[11.0570699,50.3486791],[11.0572985,50.3487936],[11.0573712,50.3488341],[11.0575176,50.3489152],[11.0575625,50.3489402],[11.0578232,50.3490615],[11.0580558,50.3491331],[11.0580837,50.3491417],[11.058373,50.3492128],[11.0587122,50.3492976],[11.0589906,50.3493481],[11.0592887,50.3493773],[11.0593778,50.3493934],[11.059542,50.3493912],[11.059692,50.3493897],[11.0597668,50.349389],[11.0598043,50.3493904],[11.0599571,50.3493962],[11.0600166,50.3493984],[11.0601985,50.3494008],[11.0602579,50.3493993],[11.0604698,50.3493941],[11.0607128,50.3493765],[11.0611281,50.3493108],[11.061477,50.3492499],[11.0616657,50.3492103],[11.0618545,50.349189],[11.0620435,50.3491698],[11.0621791,50.3491761],[11.0623184,50.3491801],[11.0624644,50.3491726],[11.0626712,50.3491397],[11.062785,50.3491209],[11.0629062,50.3490975],[11.0630629,50.3490695],[11.0631413,50.3490714],[11.0632519,50.3490778],[11.0633447,50.3490728],[11.0634589,50.3490701],[11.0636051,50.3490671],[11.0637765,50.3490801],[11.0638838,50.3491002],[11.0639552,50.3491045],[11.0640408,50.3490973],[11.0641122,50.3490969],[11.064173,50.3491218],[11.0642232,50.349149],[11.0643055,50.3491555],[11.0643697,50.3491644],[11.0644628,50.3491913],[11.0645489,50.3492344],[11.0646457,50.3492728],[11.064721,50.3493251],[11.0648467,50.349393],[11.0649399,50.3494292],[11.0650365,50.3494516],[11.0651153,50.3494787],[11.0651442,50.3495198],[11.0651768,50.3495562],[11.065213,50.3496062],[11.0652279,50.349661],[11.065239,50.3497067],[11.0652505,50.3497569],[11.0652972,50.3497932],[11.0653941,50.3498454],[11.0654732,50.349893],[11.0655269,50.3499202],[11.0655734,50.3499291],[11.0656125,50.3499198],[11.0656588,50.3499082],[11.0657087,50.3499012],[11.0657764,50.3499008],[11.0658229,50.3499053],[11.0658875,50.3499324],[11.0659414,50.3499778],[11.0660031,50.3500598],[11.0660895,50.3501371],[11.0661759,50.3502144],[11.0662481,50.3502872],[11.066342,50.3503805],[11.0664499,50.35046],[11.0665684,50.3505349],[11.066669,50.3505984],[11.0667589,50.3506688],[11.0668739,50.3507391],[11.0669604,50.3507982],[11.0670286,50.3508436],[11.0671433,50.3508888],[11.067276,50.3509408],[11.0673582,50.3509701],[11.0674369,50.3509857],[11.0674941,50.3509901],[11.0675582,50.3509852],[11.0676579,50.3509665],[11.0677361,50.3509411],[11.0678251,50.3509155],[11.0679357,50.3509151],[11.0680177,50.3509262],[11.0680823,50.3509487],[11.0681826,50.3509779],[11.0682827,50.3510004],[11.0683508,50.3510206],[11.0684258,50.3510363],[11.0685116,50.3510405],[11.068597,50.3510379],[11.0686791,50.3510375],[11.0687825,50.3510301],[11.0688751,50.3510137],[11.0689535,50.3510019],[11.0690213,50.3510063],[11.0691251,50.351031],[11.0692288,50.3510556],[11.0693075,50.3510713],[11.0693896,50.3510686],[11.0694644,50.3510615],[11.0695217,50.3510703],[11.0695574,50.3510862],[11.0696113,50.3511157],[11.0696688,50.3511428],[11.0697258,50.3511539],[11.0698043,50.3511491],[11.069872,50.3511397],[11.0699614,50.3511507],[11.0700294,50.3511755],[11.0700725,50.3512072],[11.0701049,50.3512231],[11.0701336,50.3512299],[11.0702444,50.3512568],[11.0710713,50.3514902],[11.0710979,50.351497],[11.0712959,50.3515478],[11.0714635,50.3516121],[11.0716307,50.3517246],[11.0717627,50.3517522],[11.0719374,50.3517777],[11.0720264,50.3518305],[11.072133,50.3519404],[11.0721825,50.3520502],[11.0721891,50.3521623],[11.0721889,50.3522126],[11.07237,50.3524461],[11.0725225,50.352627],[11.0727852,50.3529613],[11.0733102,50.3536894],[11.0732989,50.3537968],[11.0733587,50.3537844],[11.0733598,50.3537841],[11.0736027,50.3537333],[11.0740422,50.3536405],[11.0744567,50.3535407],[11.0748139,50.3534706],[11.0752176,50.3534142],[11.0755533,50.3533623],[11.0759891,50.3532945],[11.0762571,50.353247],[11.0765501,50.3531699],[11.0770576,50.3530314],[11.0773686,50.3529383],[11.077644,50.3528382],[11.0779657,50.3527268],[11.078216,50.3526221],[11.0782857,50.3525996],[11.0784342,50.3525517],[11.0788236,50.3524358],[11.0792058,50.3523863],[11.0796417,50.3523139],[11.0799845,50.3522712],[11.0803524,50.3522102],[11.0806882,50.3521604],[11.0809971,50.3517243],[11.0812539,50.3517683],[11.0815644,50.3517804],[11.0818142,50.3517808],[11.0819772,50.3517728],[11.0821285,50.3517654],[11.0824068,50.351791],[11.0827242,50.3518511],[11.0830167,50.3519043],[11.0833449,50.3519324],[11.0836481,50.3519763],[11.0839692,50.3520135],[11.0841904,50.3520437],[11.0844006,50.3521057],[11.0845969,50.3521564],[11.0848003,50.3521797],[11.0850537,50.3522006],[11.0854353,50.3522426],[11.0857923,50.3522707],[11.0859957,50.352271],[11.0859163,50.3524766],[11.0857801,50.3525953],[11.0856621,50.3526453],[11.0856441,50.3526909],[11.0855179,50.3526901],[11.0852717,50.3526935],[11.0850362,50.3526968],[11.084833,50.3527069],[11.0846834,50.3527396],[11.0845127,50.3527792],[11.0843453,50.3528074],[11.0841813,50.3528173],[11.0839814,50.352825],[11.0838534,50.3528553],[11.0837075,50.3528902],[11.0836007,50.3529067],[11.0833973,50.3529076],[11.0831906,50.3529199],[11.0830339,50.3529595],[11.0828848,50.3530196],[11.082718,50.3531071],[11.0825799,50.3531854],[11.0824379,50.3532637],[11.0823497,50.3533487],[11.082304,50.353406],[11.0821556,50.3535301],[11.0820429,50.3536517],[11.0819772,50.3537195],[11.0819509,50.353747],[11.0819476,50.3537504],[11.0819548,50.3539598],[11.0819772,50.3540157],[11.0820996,50.3543212],[11.082195,50.3545112],[11.0823407,50.3546852],[11.0825005,50.3548707],[11.082639,50.3550287],[11.0827489,50.3552186],[11.08288,50.3554498],[11.0829434,50.3556557],[11.0830169,50.355985],[11.0831011,50.3563258],[11.083136,50.3565248],[11.0832387,50.3567125],[11.0833915,50.3568636],[11.0836049,50.3570538],[11.0838043,50.3571936],[11.0841889,50.3573909],[11.0846877,50.3576342],[11.0852435,50.357889],[11.0856673,50.3581161],[11.0858666,50.3582971],[11.0861331,50.3585559],[11.0863109,50.3587414],[11.0864242,50.3589794],[11.0865447,50.359151],[11.0865694,50.3592197],[11.0865549,50.3592813],[11.0863971,50.3594548],[11.0860994,50.3597743],[11.0859092,50.3600094],[11.0856795,50.360288],[11.0853886,50.3606761],[11.0853491,50.3607651],[11.0853227,50.3610554],[11.0853006,50.3612589],[11.0855157,50.3618674],[11.0856184,50.362087],[11.0857497,50.3622496],[11.0859491,50.3623826],[11.0861985,50.3624973],[11.0864018,50.3625891],[11.0866546,50.36272],[11.0869149,50.3628004],[11.0872288,50.3628628],[11.0875073,50.3628883],[11.087982,50.362903],[11.0879368,50.3634745],[11.0878719,50.3636435],[11.0878093,50.3640595],[11.0877405,50.3642995],[11.0876681,50.364521],[11.0876104,50.3646878],[11.0875813,50.3647975],[11.087788,50.364887],[11.0881621,50.3650774],[11.088497,50.3652335],[11.0888034,50.3654055],[11.0893305,50.36569],[11.0896333,50.3659169],[11.0897295,50.3659559],[11.0899688,50.3659609],[11.0907153,50.3658708],[11.0909761,50.3658416],[11.0913657,50.3657622],[11.0920659,50.3656324],[11.092316,50.3655903],[11.0925805,50.365561],[11.0930448,50.3655024],[11.0933198,50.3654892],[11.0934874,50.3655306],[11.0936086,50.3656176],[11.0936938,50.3656955],[11.0938233,50.3657236],[11.094274,50.3656759],[11.0945006,50.3656519],[11.0946042,50.3656607],[11.0946683,50.3656466],[11.0947359,50.3656235],[11.0948036,50.3656117],[11.0948998,50.3656067],[11.0949964,50.3656222],[11.0950622,50.3656353],[11.0951323,50.365649],[11.0952791,50.3656804],[11.0953612,50.3657006],[11.095422,50.3657003],[11.0954827,50.3657],[11.0955969,50.3656971],[11.095686,50.3656785],[11.0957786,50.365669],[11.095875,50.3656662],[11.0959143,50.3656706],[11.0959682,50.365707],[11.0960076,50.3657182],[11.0960435,50.3657317],[11.0960757,50.3657407],[11.0961221,50.3657451],[11.0962077,50.3657378],[11.0962788,50.3657261],[11.0963289,50.3657167],[11.0964571,50.3657138],[11.0965465,50.3657156],[11.0966605,50.365706],[11.0967425,50.365692],[11.0968169,50.365655],[11.0968773,50.3656205],[11.0969412,50.365595],[11.0969697,50.3655859],[11.0970481,50.3655717],[11.0971589,50.365585],[11.0972196,50.3656029],[11.0972522,50.365637],[11.0971608,50.3657449],[11.0971254,50.3657884],[11.0970475,50.3658323],[11.0969942,50.3658553],[11.0969912,50.3658987],[11.0969915,50.3659238],[11.0969956,50.3659696],[11.0970393,50.3660356],[11.0970402,50.3661178],[11.0970449,50.3662184],[11.0969961,50.3663122],[11.0969502,50.3663536],[11.0973489,50.3663733],[11.0975152,50.3663814],[11.0976325,50.3665348],[11.0978282,50.366702],[11.0979719,50.3667945],[11.0980347,50.3668349],[11.0983734,50.3669864],[11.0988548,50.3671587],[11.0992077,50.3672668],[11.0993264,50.3672978],[11.0995859,50.3673657],[11.0999782,50.3674761],[11.1002281,50.3674903],[11.1008207,50.367505],[11.1011922,50.3675011],[11.1018238,50.3675639],[11.1021917,50.3675509],[11.1025024,50.36754],[11.1028848,50.3674858],[11.1034278,50.3674135],[11.1037814,50.3673798],[11.1041812,50.3673714],[11.1046919,50.3673631],[11.1050171,50.3673294],[11.1055456,50.3672891],[11.1058599,50.3672667],[11.1060813,50.3672717],[11.1063383,50.3672927],[11.106774,50.3673048],[11.1071309,50.3673055],[11.107481,50.3672694],[11.1075469,50.3672684],[11.1076168,50.3672674],[11.1077419,50.3672173],[11.1084394,50.3669236],[11.108686,50.3668599],[11.1089004,50.3667849],[11.1092078,50.3667008],[11.1094617,50.3666532],[11.1096473,50.3666375],[11.1098543,50.366663],[11.1103215,50.3667941],[11.1109708,50.3669506],[11.1112849,50.3669923],[11.1116383,50.367018],[11.1119524,50.3670459],[11.1122842,50.3671013],[11.1127767,50.3672028],[11.113037,50.3672672],[11.1132833,50.3672996],[11.1135057,50.3673269],[11.1135296,50.3673298],[11.1137868,50.367305],[11.1141977,50.3672348],[11.1145442,50.367153],[11.1150589,50.3670166],[11.1152019,50.3669666],[11.115302,50.366937],[11.1154177,50.3669314],[11.1154904,50.3668544],[11.1154704,50.3667934],[11.1156103,50.3666244],[11.1157864,50.3663527],[11.1158009,50.366268],[11.1151366,50.3652794],[11.1153085,50.3651882],[11.1155444,50.3650902],[11.115827,50.3649993],[11.1161342,50.3649129],[11.1164131,50.3648379],[11.116549,50.3647672],[11.1166637,50.3646554],[11.1169287,50.3644111],[11.1168111,50.3643287],[11.1168259,50.3642488],[11.1168547,50.3641322],[11.1169442,50.3640454],[11.1170338,50.363977],[11.1170732,50.363929],[11.1170884,50.3636684],[11.1171246,50.3635404],[11.1171642,50.3634444],[11.1171823,50.3634011],[11.1172577,50.3632915],[11.1172938,50.3631761],[11.1173335,50.3630493],[11.1174089,50.3629037],[11.1174269,50.3628689],[11.1175098,50.3626815],[11.1176353,50.3625285],[11.1176251,50.362373],[11.1175865,50.3621832],[11.1175906,50.3620118],[11.1177522,50.3617651],[11.1178812,50.3616785],[11.1181247,50.3614594],[11.1182893,50.3613384],[11.1185076,50.3611856],[11.1186259,50.3610852],[11.1186476,50.3609801],[11.1186822,50.3608652],[11.1187162,50.3607517],[11.1187814,50.3605071],[11.1188641,50.3603334],[11.1188881,50.3602893],[11.1189326,50.3602079],[11.1189715,50.3601593],[11.1190077,50.3601142],[11.119012,50.3601098],[11.119108,50.3600115],[11.1191327,50.3599698],[11.1192985,50.3596895],[11.1193525,50.3595341],[11.1193708,50.3594152],[11.1194,50.3592301],[11.1193972,50.359045],[11.1193761,50.3589191],[11.1193375,50.3587339],[11.1192738,50.3585601],[11.1192172,50.3584251],[11.119157,50.3583153],[11.1190522,50.3581869],[11.1190467,50.3581802],[11.1189081,50.3580359],[11.1187941,50.357926],[11.1186662,50.3577887],[11.1185383,50.3576033],[11.1184673,50.3574934],[11.1184142,50.3573585],[11.1183789,50.357235],[11.1183615,50.3571],[11.1183296,50.3570519],[11.1182835,50.3569833],[11.1182303,50.3568781],[11.1181629,50.356766],[11.118099,50.3566516],[11.1179961,50.356512],[11.1179321,50.3564387],[11.1178788,50.3563563],[11.1178612,50.356274],[11.1178258,50.3561894],[11.1177156,50.3560635],[11.1177272,50.3558395],[11.1176866,50.3558071],[11.1171005,50.3553401],[11.1170339,50.3549992],[11.1169813,50.3547615],[11.1168931,50.3544824],[11.1168048,50.3542445],[11.1167482,50.3540821],[11.1166238,50.3539127],[11.1165066,50.3537548],[11.1162752,50.3535967],[11.1160576,50.3535369],[11.1160142,50.3535291],[11.1158149,50.353493],[11.115794,50.3534896],[11.1155261,50.3534469],[11.1153548,50.3534078],[11.1151767,50.3533297],[11.115027,50.353254],[11.1147146,50.3530853],[11.1146067,50.353027],[11.1144845,50.3529444],[11.1143965,50.352885],[11.1142708,50.3527881],[11.1141794,50.3527177],[11.1141369,50.3526285],[11.1141301,50.3524982],[11.114454,50.3518219],[11.1147394,50.351843],[11.1148151,50.3516237],[11.1149899,50.351672],[11.1151147,50.3517064],[11.1152479,50.3514071],[11.1152924,50.3513216],[11.1153953,50.3511239],[11.1154784,50.3508657],[11.1156007,50.3505687],[11.1156798,50.3504134],[11.1157767,50.3502672],[11.1158845,50.3500867],[11.1160279,50.3499361],[11.1161602,50.3498221],[11.1165182,50.3495688],[11.1166613,50.3494708],[11.1168403,50.3493294],[11.1170071,50.3491817],[11.1170157,50.3491742],[11.1170436,50.3491536],[11.1170638,50.3491387],[11.1171767,50.3490556],[11.1172949,50.3489597],[11.1175057,50.3488823],[11.1177807,50.3488415],[11.1179492,50.3488358],[11.1180984,50.3488305],[11.118193,50.3488358],[11.1182705,50.3488401],[11.1183555,50.3488447],[11.1184207,50.348855],[11.1185623,50.348877],[11.1185767,50.3488704],[11.1186517,50.3488358],[11.1190557,50.3486492],[11.1192556,50.3486244],[11.1194911,50.3486293],[11.1199441,50.3487009],[11.1201296,50.3487493],[11.120268,50.348836],[11.120272,50.3488386],[11.1204253,50.3489121],[11.1206359,50.3489627],[11.1208854,50.3489859],[11.1211532,50.3490046],[11.1214635,50.3490371],[11.1216374,50.3491007],[11.1216454,50.3491036],[11.1218022,50.3491679],[11.1219483,50.3492505],[11.1220516,50.349326],[11.1221653,50.3494451],[11.1222505,50.3495869],[11.1223215,50.3497128],[11.1224137,50.3498524],[11.1225272,50.3500515],[11.122691,50.3501935],[11.1228333,50.3502965],[11.1229581,50.3503608],[11.1230793,50.3504089],[11.1232126,50.350439],[11.1233809,50.3504978],[11.1235096,50.3506143],[11.1236419,50.3510073],[11.123674,50.3515722],[11.1236742,50.3515764],[11.1234958,50.3516221],[11.1234922,50.3517385],[11.1234016,50.3517657],[11.1233246,50.3517888],[11.1233911,50.3520563],[11.1234138,50.3521477],[11.1234675,50.3522985],[11.123564,50.3524356],[11.1236891,50.3526367],[11.1238286,50.3530686],[11.1239823,50.353384],[11.1241682,50.3537565],[11.12464,50.3545585],[11.1249444,50.3549954],[11.1250365,50.3551276],[11.1252224,50.3554932],[11.1254047,50.3556487],[11.1261829,50.3555299],[11.1263481,50.3555345],[11.1266687,50.3555436],[11.1265437,50.3557995],[11.126351,50.3560715],[11.1267868,50.3562406],[11.1268723,50.3562144],[11.1274187,50.3560464],[11.128065,50.3558043],[11.1286469,50.3556833],[11.129111,50.3556284],[11.1294252,50.3555896],[11.1299751,50.3554776],[11.1303144,50.3554252],[11.1309426,50.3553314],[11.1318672,50.3551213],[11.1322813,50.354975],[11.13259,50.3548252],[11.1335235,50.3543719],[11.1338944,50.3542408],[11.1344804,50.3540337],[11.1346467,50.3539487],[11.1350657,50.3537344],[11.1351478,50.3536832],[11.1355266,50.3534474],[11.1355831,50.3534121],[11.1357365,50.353275],[11.1359701,50.3533272],[11.1361973,50.3533779],[11.1368972,50.3535196],[11.1374579,50.3535812],[11.1377095,50.3535513],[11.1382826,50.353483],[11.1386267,50.3535412],[11.138986,50.3536018],[11.1390431,50.3534944],[11.1390164,50.3534285],[11.1389716,50.3533185],[11.1382714,50.3529209],[11.1378322,50.3528707],[11.1375786,50.3527494],[11.1374893,50.3526261],[11.1374713,50.3524821],[11.1379778,50.3518812],[11.1381094,50.3518141],[11.1381706,50.3517829],[11.1382097,50.3517075],[11.1381775,50.3516116],[11.1379094,50.3511453],[11.1379379,50.3509208],[11.137952,50.3508094],[11.137784,50.3506289],[11.137691,50.350533],[11.1374555,50.3504713],[11.1374803,50.350373],[11.1374694,50.3502884],[11.1372552,50.3501353],[11.1370516,50.350028],[11.1367588,50.3499456],[11.1363231,50.3498703],[11.1362267,50.3498702],[11.1361443,50.349708],[11.1362905,50.3494795],[11.1366154,50.3492693],[11.1369473,50.3490979],[11.1371401,50.3490019],[11.1372676,50.3489465],[11.1372953,50.3489344],[11.1373293,50.3489198],[11.1375276,50.3488353],[11.1375569,50.3488229],[11.1378502,50.348698],[11.1376216,50.3485335],[11.1377806,50.3483582],[11.1378142,50.348321],[11.137982,50.348145],[11.1384208,50.3477931],[11.1391664,50.3471875],[11.139905,50.3466413],[11.1406078,50.3461318],[11.141307,50.3455697],[11.1417993,50.3451218],[11.1422307,50.3444682],[11.1426871,50.3438763],[11.1427279,50.343822],[11.1430115,50.3434674],[11.1435572,50.3428572],[11.1439335,50.3424737],[11.1441313,50.3422722],[11.1446948,50.3416323],[11.1448302,50.3414654],[11.1451695,50.3414517],[11.1454421,50.3413923],[11.1456094,50.3413616],[11.14639,50.3412209],[11.1468861,50.3411363],[11.1471536,50.3408804],[11.1474216,50.3405933],[11.147446,50.3405672],[11.1476564,50.3403913],[11.1480915,50.3400074],[11.1487477,50.3394656],[11.1493719,50.3389675],[11.1501282,50.3384258],[11.1502717,50.3382247],[11.1503738,50.3380821],[11.1505985,50.3377677],[11.1511047,50.3371529],[11.1516144,50.336513],[11.1521777,50.3358868],[11.1527053,50.3352652],[11.1529119,50.3350118],[11.1530296,50.3348675],[11.1531043,50.3346848],[11.1533329,50.3345507],[11.1538141,50.3342687],[11.1544562,50.3339304],[11.1548202,50.3338001],[11.1551092,50.3336927],[11.1553873,50.3335761],[11.1555733,50.3334901],[11.1555851,50.3334847],[11.1557332,50.3334162],[11.1560363,50.333151],[11.156129,50.3330161],[11.1562611,50.3328919],[11.1565986,50.3326706],[11.1568466,50.3324528],[11.1570312,50.3323038],[11.1572186,50.3321],[11.1573785,50.331999],[11.1575206,50.3319278],[11.15773,50.3317832],[11.1580422,50.3315356],[11.1583011,50.3313246],[11.1585671,50.3311],[11.1588146,50.3308069],[11.1593393,50.3303645],[11.1593407,50.3303634],[11.1595094,50.3302269],[11.1592669,50.3300783],[11.159074,50.3299484],[11.1589025,50.3298297],[11.1588417,50.3297407],[11.1587699,50.3295514],[11.1587169,50.3293707],[11.158662,50.3291838],[11.1586078,50.329004],[11.158583,50.3289774],[11.1584777,50.3288645],[11.1583476,50.3286686],[11.1580683,50.3281122],[11.1576219,50.3271978],[11.157478,50.3268936],[11.1574731,50.3268832],[11.1573389,50.3266232],[11.1572978,50.3263789],[11.1572924,50.3261643],[11.1572916,50.3260639],[11.1574903,50.3260256],[11.1581219,50.3259036],[11.1585316,50.3258133],[11.1588237,50.3257279],[11.1589691,50.3256269],[11.159061,50.3255079],[11.1591064,50.3253821],[11.1591088,50.325252],[11.1591081,50.3251592],[11.1591078,50.3251218],[11.1590672,50.3249346],[11.1589585,50.32475],[11.1588499,50.3245516],[11.1587953,50.3244331],[11.1587125,50.3243329],[11.1586404,50.3242509],[11.158547,50.3241644],[11.1582308,50.3239051],[11.1580655,50.32392],[11.1564156,50.3240683],[11.1558773,50.3237046],[11.1555186,50.3239272],[11.1552738,50.3236723],[11.1552171,50.3232796],[11.1549882,50.3232073],[11.1547302,50.3230711],[11.1545721,50.3229345],[11.1543351,50.322764],[11.154188,50.3226639],[11.1541203,50.3226619],[11.1528344,50.3229833],[11.1526494,50.3230524],[11.1525424,50.3230687],[11.1524246,50.3230645],[11.1523641,50.3230853],[11.1523001,50.3231106],[11.1519368,50.3227669],[11.1516565,50.3225005],[11.1514294,50.3222363],[11.1512241,50.3219881],[11.1510543,50.3217214],[11.1509496,50.3215623],[11.1508592,50.321425],[11.1507472,50.3212404],[11.1507016,50.3211951],[11.1506716,50.3211653],[11.1505711,50.3210925],[11.1505135,50.3210804],[11.1503781,50.321052],[11.1501278,50.3209911],[11.1497382,50.3209102],[11.1494471,50.3208675],[11.1493559,50.3208542],[11.1491857,50.3208279],[11.1490522,50.3208071],[11.148766,50.3207099],[11.1485118,50.3206101],[11.1482503,50.3204968],[11.1480426,50.3204061],[11.147796,50.3203452],[11.1475216,50.3202761],[11.1472489,50.3202075],[11.1468628,50.3201379],[11.1463268,50.3200436],[11.1457049,50.3199222],[11.1452833,50.3198413],[11.1451079,50.3197665],[11.1448465,50.319653],[11.1443917,50.3194557],[11.144191,50.3193604],[11.1439822,50.3192817],[11.1438905,50.3192471],[11.1437079,50.319186],[11.1434822,50.319052],[11.1431989,50.3188976],[11.1430126,50.3187816],[11.1426002,50.3185134],[11.1422596,50.3183387],[11.1419546,50.3181066],[11.1415991,50.3178267],[11.1412869,50.3175971],[11.1410105,50.3173764],[11.1406877,50.3171649],[11.140619,50.3171307],[11.1405015,50.3170719],[11.1403547,50.3170106],[11.1399895,50.3168609],[11.1396989,50.3167369],[11.1396495,50.3167159],[11.1393097,50.3166164],[11.1389379,50.3165171],[11.1387124,50.3164446],[11.1384583,50.3163357],[11.1382714,50.3161604],[11.1380883,50.3160194],[11.1379227,50.3158349],[11.137786,50.3156709],[11.1376631,50.3154589],[11.1374951,50.3152795],[11.1374903,50.3152743],[11.1373285,50.3151082],[11.137167,50.314983],[11.1368907,50.3147874],[11.1367763,50.3147225],[11.1366579,50.3146553],[11.1366185,50.314633],[11.1363356,50.3145059],[11.1360279,50.314395],[11.1357632,50.3143112],[11.1354629,50.3142344],[11.1352694,50.3141346],[11.1350685,50.3140004],[11.13485,50.3138448],[11.1345212,50.3136105],[11.1344701,50.3135741],[11.1344482,50.3135585],[11.1342579,50.3134227],[11.1347152,50.3133877],[11.1350009,50.3133657],[11.1354952,50.3133278],[11.1355008,50.3133084],[11.135666,50.3127951],[11.134924,50.3128087],[11.1341963,50.3128632],[11.1338755,50.3128873],[11.1338023,50.3128273],[11.1335561,50.3126255],[11.1330832,50.3123757],[11.1323878,50.3119461],[11.1322977,50.3118322],[11.1322358,50.3116702],[11.1321805,50.3114306],[11.1320898,50.3112139],[11.1320514,50.3111255],[11.1320315,50.3110793],[11.1319589,50.3108968],[11.1319072,50.3106572],[11.1318549,50.3103513],[11.1318035,50.3101856],[11.1317926,50.3101506],[11.1316987,50.3099841],[11.1315508,50.3097721],[11.1313922,50.3095602],[11.1312623,50.3093734],[11.1311756,50.3091978],[11.1311101,50.3090426],[11.1310656,50.308819],[11.1308723,50.3077644],[11.1308468,50.3076631],[11.130795,50.3074564],[11.1306443,50.3068563],[11.1304997,50.3061189],[11.1305145,50.3060818],[11.1307548,50.3055419],[11.1309114,50.3051901],[11.1311365,50.3048374],[11.1312953,50.3044529],[11.1313559,50.3040534],[11.1313416,50.3032687],[11.1313717,50.3029763],[11.1314479,50.3026861],[11.1315175,50.3024461],[11.131587,50.3022152],[11.1316283,50.3020209],[11.1316907,50.3017833],[11.1317894,50.3014743],[11.1318198,50.3013787],[11.1318636,50.3011798],[11.1319198,50.3009239],[11.1322432,50.3002858],[11.132927,50.3001491],[11.133743,50.3000165],[11.1338678,50.3000185],[11.1340643,50.3000453],[11.1348472,50.2999782],[11.1350837,50.2999577],[11.1356326,50.2998785],[11.1362067,50.2998516],[11.1366914,50.2998092],[11.1371691,50.2997803],[11.1374742,50.2997214],[11.1376297,50.2996856],[11.1377047,50.2996512],[11.1377778,50.2995981],[11.1380257,50.299353],[11.1381952,50.2991515],[11.1382798,50.2990211],[11.1383092,50.2989173],[11.1383146,50.2988977],[11.1383178,50.2988507],[11.1383187,50.2988411],[11.1383211,50.298804],[11.1383523,50.2987057],[11.1384124,50.298621],[11.1384404,50.2985726],[11.1384652,50.2985295],[11.1385179,50.2984106],[11.138556,50.2982848],[11.1385979,50.2981409],[11.1386326,50.2980335],[11.1386675,50.2979215],[11.1387274,50.2978208],[11.1388581,50.297618],[11.1388896,50.2975691],[11.1393328,50.2967731],[11.1395902,50.296384],[11.1398756,50.2959242],[11.1400057,50.2956749],[11.1401151,50.2955192],[11.140213,50.2952723],[11.1402654,50.29511],[11.1402995,50.2949318],[11.1403198,50.2947695],[11.140304,50.2945755],[11.1402419,50.294377],[11.1402083,50.2941853],[11.1401999,50.294014],[11.1401233,50.2938086],[11.1399419,50.2933982],[11.1397895,50.2930469],[11.1404341,50.2929398],[11.1409438,50.2928904],[11.1412613,50.2928986],[11.1415541,50.2929366],[11.1417825,50.2929678],[11.1420577,50.2930355],[11.1430121,50.293309],[11.1427482,50.2924077],[11.14269,50.2922389],[11.1426894,50.2921635],[11.142744,50.2920852],[11.1427882,50.2920216],[11.1428654,50.291866],[11.1428898,50.291777],[11.1428855,50.2917058],[11.1428568,50.2912243],[11.1428514,50.2909562],[11.1427767,50.2905881],[11.1425878,50.2903113],[11.1422991,50.2899979],[11.1419031,50.2896937],[11.1416786,50.2895267],[11.141371,50.2894162],[11.141366,50.2894144],[11.1412008,50.2893551],[11.1409195,50.2892614],[11.1410753,50.2891102],[11.1411956,50.2890207],[11.1412915,50.2889382],[11.1413941,50.2888374],[11.1415076,50.2887457],[11.1415853,50.2886655],[11.1416457,50.2886197],[11.1417129,50.2885555],[11.1417731,50.2884868],[11.1418188,50.2884135],[11.1419037,50.2883058],[11.1420098,50.2881891],[11.1421233,50.2880905],[11.1422223,50.287992],[11.1422967,50.2879277],[11.1423677,50.2878911],[11.1424601,50.2878543],[11.1426097,50.2878173],[11.1426806,50.2877805],[11.1428087,50.2877413],[11.1428868,50.2877114],[11.1429507,50.2876678],[11.1429966,50.2876015],[11.143021,50.2875328],[11.1430633,50.2874573],[11.1431092,50.2873886],[11.1431728,50.2872993],[11.1432368,50.2872694],[11.1433041,50.2872235],[11.143343,50.2871938],[11.1433604,50.2871251],[11.1433778,50.2870521],[11.1434233,50.2869353],[11.1434799,50.2868712],[11.1435188,50.2868254],[11.1435614,50.2867887],[11.1436109,50.2867612],[11.1437,50.2867496],[11.1437785,50.2867493],[11.1439173,50.2867489],[11.1440492,50.2867348],[11.1441808,50.2867094],[11.1443088,50.2866611],[11.1444226,50.2866059],[11.1444899,50.2865669],[11.1445893,50.2865072],[11.1446568,50.2864636],[11.1447028,50.2864154],[11.1447378,50.2863194],[11.1447514,50.2862416],[11.1448148,50.2861272],[11.1448958,50.285983],[11.14497,50.2858914],[11.1450799,50.2858066],[11.1451401,50.2857516],[11.1451966,50.2856874],[11.1452601,50.2855867],[11.1452771,50.2854748],[11.1453052,50.2853946],[11.1453155,50.2853329],[11.1453301,50.285308],[11.1453436,50.2852849],[11.1454038,50.2852459],[11.1454894,50.2852319],[11.1455747,50.2852134],[11.1456422,50.2851904],[11.1457488,50.2851238],[11.1458018,50.285062],[11.1458655,50.2849932],[11.1459647,50.284913],[11.1461928,50.2850354],[11.1466208,50.2852208],[11.147013,50.2853146],[11.1472806,50.2852965],[11.1475196,50.2853216],[11.1480759,50.2854613],[11.1490103,50.2856423],[11.1493517,50.2856988],[11.1494667,50.2857178],[11.1498127,50.2857819],[11.1500195,50.2860037],[11.1502551,50.2859729],[11.1504903,50.2859422],[11.1509076,50.2859812],[11.151143,50.2859561],[11.1512216,50.2858486],[11.1517101,50.2861049],[11.151835,50.2859541],[11.1519741,50.2855928],[11.1520921,50.2853299],[11.1522026,50.2852043],[11.152381,50.2851151],[11.1526021,50.2850396],[11.1527697,50.2849437],[11.1528554,50.2848134],[11.1528626,50.2846648],[11.1528127,50.2844772],[11.1528128,50.2843538],[11.1528591,50.2842897],[11.1529305,50.2842623],[11.1531124,50.2842304],[11.1532336,50.2841915],[11.15333,50.2841161],[11.1533942,50.2839904],[11.1535262,50.2839013],[11.153669,50.2837298],[11.1536476,50.2835972],[11.1537524,50.2835788],[11.1538145,50.2835815],[11.1541111,50.2835951],[11.1543217,50.2834945],[11.1545997,50.2837301],[11.1548601,50.2839405],[11.1545603,50.2841691],[11.1542928,50.2843977],[11.1542714,50.2844731],[11.1543107,50.2845669],[11.1543774,50.2846096],[11.1544853,50.2846789],[11.1548028,50.2848826],[11.1552734,50.2852531],[11.1550524,50.2853537],[11.1548918,50.2854542],[11.1548026,50.2855799],[11.1548026,50.2857354],[11.1548453,50.2859161],[11.1549629,50.2860922],[11.1553943,50.2865244],[11.1557154,50.2868972],[11.1560113,50.2873866],[11.1563464,50.2877937],[11.1564928,50.2879486],[11.1568137,50.2881551],[11.1570384,50.2882832],[11.1571775,50.2883153],[11.1577622,50.2886834],[11.158333,50.2891158],[11.1585329,50.2883842],[11.158772,50.2877691],[11.1588469,50.2876845],[11.1589289,50.2874834],[11.1590218,50.2872021],[11.159086,50.2867883],[11.1591396,50.2862419],[11.1596033,50.2860156],[11.1598851,50.2858122],[11.1601134,50.285819],[11.1602739,50.2856453],[11.1605879,50.2852978],[11.1610837,50.284852],[11.1616366,50.2844178],[11.1619825,50.2841594],[11.1624962,50.2837686],[11.1625329,50.2838105],[11.1626245,50.2839149],[11.1630669,50.2835972],[11.1635912,50.2833207],[11.1644757,50.2829344],[11.1653003,50.2827703],[11.1654828,50.2827341],[11.1655207,50.2827265],[11.1655602,50.2827155],[11.1657669,50.2826579],[11.1658028,50.2826579],[11.1659253,50.2826579],[11.1662519,50.282658],[11.1666798,50.282617],[11.1673609,50.2830149],[11.1677968,50.2832279],[11.1678568,50.2832573],[11.1682347,50.2833626],[11.1690802,50.2834725],[11.1694371,50.2834995],[11.1695365,50.2835069],[11.1701358,50.2834932],[11.170749,50.2834379],[11.1708704,50.283427],[11.171673,50.2834111],[11.1722471,50.283354],[11.1723755,50.2832397],[11.1729965,50.2829992],[11.1734026,50.282842],[11.1739768,50.2826019],[11.1748184,50.2822247],[11.1749284,50.2821535],[11.1752001,50.2819778],[11.1753582,50.2819063],[11.175635,50.2817813],[11.176434,50.2814886],[11.177222,50.2812326],[11.1777178,50.2811435],[11.1780262,50.2811435],[11.1780708,50.2811435],[11.1782675,50.2811564],[11.1785559,50.2811755],[11.1793867,50.2812396],[11.1797219,50.2812369],[11.1805209,50.2812306],[11.1813518,50.2812283],[11.1820081,50.2812992],[11.1822422,50.2812618],[11.1824646,50.2812261],[11.1831993,50.2811392],[11.1838519,50.28105],[11.1838462,50.2810377],[11.1837305,50.280787],[11.1832737,50.2798611],[11.1830381,50.2794151],[11.182765,50.279026],[11.1826671,50.2788869],[11.1823889,50.278521],[11.1823103,50.2785531],[11.181686,50.2777207],[11.181069,50.2769571],[11.1807798,50.2765363],[11.180081,50.2766643],[11.1797778,50.2760103],[11.1796137,50.2757359],[11.1793676,50.2753724],[11.1788373,50.2744904],[11.1788322,50.2744823],[11.1779761,50.2747428],[11.1774875,50.2749835],[11.1774227,50.2750241],[11.1768352,50.2753952],[11.1765216,50.2755693],[11.1762933,50.2756899],[11.1762546,50.2756237],[11.1758334,50.2748302],[11.1754163,50.2740368],[11.1754946,50.2740115],[11.1754064,50.2738837],[11.1753164,50.2737532],[11.1750809,50.2735199],[11.1748956,50.2733302],[11.1749168,50.2732044],[11.1749406,50.2730534],[11.1749453,50.2730238],[11.1748811,50.2728683],[11.1748347,50.2726694],[11.1748489,50.2725595],[11.1749666,50.2724407],[11.1751199,50.2723652],[11.1746742,50.2719263],[11.1741001,50.2714049],[11.1736792,50.2710847],[11.1735826,50.2709968],[11.173508,50.2709291],[11.1735687,50.2708309],[11.1740321,50.2705633],[11.1744956,50.2703096],[11.1741068,50.2698614],[11.1742531,50.269802],[11.1746525,50.2697883],[11.1748592,50.2697425],[11.1751159,50.2696329],[11.1752432,50.2695328],[11.175305,50.2694843],[11.175533,50.2691847],[11.1756043,50.2691893],[11.1758326,50.2693105],[11.1760466,50.2694432],[11.176207,50.2695254],[11.1763354,50.269633],[11.1764495,50.2697016],[11.1766491,50.2697359],[11.1767524,50.2697222],[11.176831,50.2696742],[11.1768951,50.2695941],[11.1776653,50.2696262],[11.1786459,50.2696606],[11.1793053,50.2696789],[11.1792774,50.2697214],[11.1792912,50.2700699],[11.1796586,50.2700882],[11.1802005,50.2702049],[11.1806177,50.269935],[11.1810634,50.2701272],[11.1816197,50.2703376],[11.1820903,50.270461],[11.1821973,50.270397],[11.1824861,50.270365],[11.1830316,50.2702987],[11.1834916,50.2702141],[11.1841654,50.2700198],[11.1847894,50.269814],[11.1853882,50.2696173],[11.1857165,50.2695884],[11.1862263,50.2695478],[11.1866429,50.2696103],[11.1869708,50.2695973],[11.1875204,50.2694155],[11.1879882,50.2691968],[11.1883327,50.2695084],[11.1884608,50.2695938],[11.1889579,50.2699256],[11.1892596,50.2702508],[11.1894624,50.2703243],[11.1894825,50.27035],[11.1895376,50.2704201],[11.1896512,50.2705597],[11.189717,50.2706421],[11.1899724,50.2709489],[11.1904994,50.2718986],[11.1907752,50.2723997],[11.1908846,50.2726673],[11.1909614,50.273056],[11.191141,50.273557],[11.191303,50.2740099],[11.1903711,50.2744036],[11.1893783,50.2748383],[11.1900277,50.2755412],[11.1904887,50.2760793],[11.1908681,50.276551],[11.1915383,50.2774026],[11.1912667,50.2775369],[11.1907488,50.2777622],[11.1901166,50.2781062],[11.1903594,50.2788473],[11.1904116,50.2790454],[11.190438,50.2791452],[11.1905241,50.2794716],[11.1902164,50.2795687],[11.1897033,50.2797306],[11.1898998,50.2804487],[11.1900615,50.280984],[11.190344,50.2816383],[11.1906517,50.2821943],[11.1908495,50.2826472],[11.191318,50.2831351],[11.1915655,50.2833425],[11.1918756,50.2836024],[11.1921528,50.2837789],[11.1927865,50.284011],[11.1928546,50.2843847],[11.1928769,50.2845072],[11.1937784,50.2846346],[11.1937732,50.2849944],[11.1937733,50.2849981],[11.193827,50.2851291],[11.1941401,50.2858103],[11.1942538,50.2860574],[11.1943629,50.2863662],[11.1944782,50.2865611],[11.1945753,50.2867254],[11.1945257,50.2875094],[11.1945428,50.2877243],[11.1947516,50.2880882],[11.1949893,50.2883148],[11.1952667,50.2885188],[11.1953253,50.2885436],[11.1955158,50.2886244],[11.1962421,50.2888703],[11.1968533,50.2893653],[11.1966945,50.2897347],[11.1965867,50.2899857],[11.196547,50.2900783],[11.1963961,50.2904296],[11.1966824,50.2910153],[11.1967781,50.2912216],[11.196927,50.2913748],[11.1971436,50.2915239],[11.197275,50.291611],[11.1975134,50.2916846],[11.1977555,50.2917606],[11.197841,50.2917584],[11.1979518,50.2917244],[11.1985735,50.2914538],[11.1990311,50.2912221],[11.1994348,50.2910113],[11.2004902,50.2904903],[11.2007174,50.2903781],[11.2021138,50.2897818],[11.2027959,50.289479],[11.2034998,50.289126],[11.2046788,50.2884767],[11.2049763,50.2883198],[11.206576,50.2874765],[11.2073734,50.287046],[11.2081699,50.2866162],[11.2088959,50.286223],[11.2094125,50.2859431],[11.210048,50.2856883],[11.210434,50.285442],[11.2105523,50.2852822],[11.2107921,50.2850083],[11.2108514,50.2849635],[11.2110567,50.2848077],[11.2114032,50.2846094],[11.2119423,50.2844389],[11.2125079,50.2843422],[11.2125378,50.284337],[11.2131477,50.284281],[11.2135541,50.2842497],[11.2136491,50.2842577],[11.2143965,50.2843217],[11.2145092,50.2843313],[11.2151833,50.2842272],[11.2159483,50.2840986],[11.2161418,50.284066],[11.2162471,50.2840483],[11.2162172,50.2840044],[11.2161848,50.2839368],[11.2161512,50.2838378],[11.2161557,50.2837647],[11.2161613,50.2836887],[11.2162032,50.283654],[11.2162197,50.2836405],[11.216204,50.2836408],[11.2161914,50.2836411],[11.2160844,50.283635],[11.2159827,50.283612],[11.2158838,50.283556],[11.2158115,50.2834692],[11.2157911,50.2834197],[11.2157745,50.2833401],[11.2157745,50.2832702],[11.2157988,50.2831977],[11.2158591,50.2831206],[11.2159244,50.2830521],[11.2159724,50.2829795],[11.2160306,50.2829478],[11.2159764,50.2829361],[11.2158931,50.2829234],[11.2157387,50.2828995],[11.2156702,50.2828013],[11.2156506,50.2826631],[11.2156401,50.2826142],[11.215622,50.2825179],[11.2156139,50.2824492],[11.2156173,50.2823913],[11.2156116,50.2823682],[11.2155881,50.2823516],[11.2155342,50.2823343],[11.2154468,50.2823081],[11.2153801,50.2822414],[11.2153633,50.2821908],[11.2153507,50.2821314],[11.2153505,50.2820717],[11.2153597,50.2820281],[11.2153855,50.2819518],[11.2153885,50.2819494],[11.2154533,50.2818982],[11.2154971,50.2818653],[11.2155388,50.2818342],[11.2155683,50.2818109],[11.2155301,50.2817781],[11.215505,50.2817594],[11.2154657,50.2817468],[11.2154199,50.2817403],[11.2153174,50.2817275],[11.2152566,50.2817125],[11.2151411,50.2816797],[11.2150833,50.2815952],[11.2150835,50.2815095],[11.2151381,50.2814435],[11.2151955,50.2813995],[11.21521,50.2813933],[11.215191,50.2813822],[11.2151342,50.2813601],[11.2151087,50.2813549],[11.2150494,50.2813586],[11.2149779,50.2813799],[11.2148697,50.2813672],[11.2147596,50.281322],[11.2147166,50.2812511],[11.2146968,50.2812082],[11.2146458,50.2811385],[11.2146185,50.2810734],[11.2145827,50.2809991],[11.2145743,50.2809244],[11.2145697,50.2808709],[11.2146493,50.2808261],[11.2146998,50.2807977],[11.2147508,50.2807269],[11.2150248,50.2808622],[11.215437,50.2812264],[11.216112,50.281847],[11.2165867,50.2816535],[11.2171826,50.2814945],[11.2178248,50.2813904],[11.2186982,50.2813141],[11.2191726,50.2812556],[11.219633,50.2810986],[11.2203828,50.2807272],[11.2206039,50.280739],[11.2210826,50.2804381],[11.2214865,50.2801576],[11.2220907,50.2795848],[11.2226882,50.2789983],[11.2232569,50.2784507],[11.22384,50.2778824],[11.2245193,50.2772618],[11.2247301,50.2771433],[11.2251191,50.2769816],[11.2255653,50.2768337],[11.2260504,50.2767408],[11.2267133,50.2766938],[11.2280037,50.276689],[11.2287347,50.2765897],[11.2294552,50.2764674],[11.230646,50.2763549],[11.2317807,50.2761965],[11.2318441,50.2761876],[11.2332491,50.2759567],[11.2339447,50.2758068],[11.2348508,50.2755797],[11.2355251,50.2753887],[11.2358394,50.2752041],[11.2362644,50.2748961],[11.2364614,50.2747202],[11.2366273,50.274572],[11.2368293,50.2743918],[11.2371154,50.2741088],[11.237287,50.2739421],[11.2376834,50.2736844],[11.2377779,50.2731131],[11.2379339,50.272279],[11.238804,50.2721408],[11.2397238,50.2720554],[11.2402698,50.2717887],[11.241176,50.2714998],[11.2416081,50.2712284],[11.2425148,50.2707108],[11.2430507,50.2703231],[11.2434943,50.2698094],[11.2442755,50.2695545],[11.2449281,50.2694137],[11.24567,50.2692158],[11.2461873,50.269052],[11.2468117,50.2687672],[11.2472293,50.2685986],[11.2474709,50.2680246],[11.2476205,50.2676689],[11.2479045,50.2670959],[11.2480154,50.2668574],[11.248055,50.266772],[11.2482202,50.2668069],[11.2486248,50.2669548],[11.249169,50.2671535],[11.2493255,50.267202],[11.2495211,50.2672531],[11.2496599,50.2672857],[11.2498809,50.267282],[11.2500019,50.2672792],[11.2502982,50.2672722],[11.2507437,50.2672854],[11.2510036,50.2673161],[11.2513599,50.2673564],[11.251705,50.2674378],[11.2520683,50.2674941],[11.2523599,50.2675821],[11.2526229,50.2676814],[11.2528292,50.2677463],[11.2531027,50.2678525],[11.2535003,50.2680598],[11.2536671,50.268161],[11.2538516,50.2682645],[11.2540217,50.2683909],[11.2542696,50.2685955],[11.2544687,50.2687491],[11.2545915,50.2688801],[11.2547393,50.269123],[11.2548022,50.2692741],[11.2548656,50.2693796],[11.2549887,50.2695628],[11.2551046,50.2697805],[11.2551603,50.2699361],[11.255216,50.2701123],[11.2552421,50.2703891],[11.2553152,50.2707361],[11.2553313,50.2708123],[11.255369,50.270993],[11.2553894,50.2711212],[11.255466,50.2713294],[11.2555647,50.2714693],[11.2557208,50.2715568],[11.2557646,50.2715745],[11.2559091,50.2716329],[11.2564538,50.271754],[11.2567382,50.2718533],[11.2569042,50.2719117],[11.2569551,50.2719296],[11.2570875,50.2719791],[11.2571967,50.2720198],[11.2573953,50.2721485],[11.2574179,50.2721689],[11.2576608,50.2723896],[11.2577704,50.2724883],[11.2578905,50.2726213],[11.2579736,50.2727654],[11.2580277,50.2728596],[11.2581929,50.2731392],[11.2582646,50.2732712],[11.2583967,50.2735148],[11.2584673,50.2735951],[11.2585989,50.2736389],[11.2587449,50.273667],[11.2590728,50.2736912],[11.25929,50.2737102],[11.2599815,50.2737542],[11.2601883,50.2737549],[11.2605304,50.2737837],[11.2607581,50.2738463],[11.2610286,50.2739068],[11.2612846,50.2739923],[11.2615158,50.2740595],[11.2617398,50.2741472],[11.2620484,50.2743428],[11.2622008,50.2744503],[11.2623288,50.2745389],[11.2622851,50.274653],[11.2621908,50.2748469],[11.2621181,50.2750204],[11.2620305,50.2752509],[11.2619508,50.2754152],[11.2618453,50.2756616],[11.2617651,50.2758625],[11.261693,50.2759789],[11.2616102,50.2760585],[11.2615195,50.2760897],[11.2613671,50.2761421],[11.2611455,50.2762052],[11.26097,50.2762983],[11.2608158,50.2764119],[11.2606687,50.2765235],[11.2605214,50.2766395],[11.2604168,50.2767899],[11.2603586,50.2769154],[11.2603076,50.2770707],[11.2602629,50.2773036],[11.2602347,50.2774639],[11.2602104,50.277603],[11.2601797,50.2778633],[11.2601451,50.277934],[11.2601181,50.2779888],[11.2601025,50.2781466],[11.2600231,50.2782628],[11.2599571,50.2784728],[11.2598918,50.2786166],[11.2598762,50.2787765],[11.2598785,50.2789206],[11.2599233,50.2791104],[11.2599894,50.2793119],[11.2600341,50.2795622],[11.2600372,50.2795795],[11.2600513,50.2796576],[11.2600781,50.279806],[11.2601126,50.2799479],[11.2601259,50.2800622],[11.2601179,50.2801742],[11.2601227,50.2804531],[11.2601265,50.2804979],[11.2601454,50.2807206],[11.2601791,50.2809631],[11.2601657,50.2812875],[11.2601588,50.281699],[11.2601286,50.2819023],[11.2600552,50.2821512],[11.2599826,50.2823109],[11.259903,50.2824455],[11.2598057,50.2825548],[11.2596905,50.2826938],[11.2595983,50.2828341],[11.259575,50.2828693],[11.2595239,50.2829972],[11.2594828,50.2832371],[11.2594697,50.2835159],[11.2595142,50.2837378],[11.2595666,50.283866],[11.259699,50.2841205],[11.2597036,50.2841294],[11.2597155,50.2841495],[11.2598479,50.2843745],[11.2600052,50.2847478],[11.2600785,50.2849491],[11.2601126,50.2850428],[11.2601377,50.2851118],[11.2597636,50.2853157],[11.2595716,50.2854204],[11.2599566,50.2858837],[11.2600868,50.2860761],[11.2602695,50.2864266],[11.2603956,50.2866946],[11.2604889,50.2868826],[11.2606237,50.2871549],[11.2599625,50.2873169],[11.2596696,50.2873798],[11.2594661,50.2874132],[11.2593228,50.2874859],[11.2592484,50.2875538],[11.2591107,50.2876794],[11.2588243,50.2878017],[11.258588,50.2879081],[11.2583587,50.288017],[11.2581759,50.2881352],[11.2580328,50.2881757],[11.2577151,50.288218],[11.2574437,50.2882672],[11.257371,50.2882984],[11.2572647,50.2883442],[11.2572401,50.2887259],[11.2572893,50.2888312],[11.2575026,50.2893281],[11.2580604,50.2891679],[11.2586825,50.2889921],[11.2589077,50.2889358],[11.2590245,50.289046],[11.25941,50.2895076],[11.2596813,50.2898326],[11.2592951,50.2899682],[11.2586539,50.2902811],[11.2580487,50.2905691],[11.2572858,50.2909434],[11.2568416,50.2912209],[11.2565944,50.2913179],[11.2562184,50.2914716],[11.2554411,50.291786],[11.2546671,50.2921162],[11.2539399,50.2924239],[11.2535275,50.2926233],[11.2526452,50.2930719],[11.2519499,50.2933843],[11.2524929,50.2937371],[11.2526797,50.2938584],[11.2528285,50.2939665],[11.252938,50.2940607],[11.2531074,50.294226],[11.2532452,50.2943546],[11.2533228,50.2944509],[11.2534429,50.294559],[11.253599,50.294635],[11.2539005,50.2948056],[11.2536175,50.294914],[11.253536,50.2952062],[11.2537167,50.2953305],[11.2540846,50.2956247],[11.2538001,50.2958748],[11.2537429,50.2959311],[11.2536775,50.2959953],[11.2536888,50.2960626],[11.2536909,50.2960755],[11.2537024,50.2960864],[11.2539876,50.2963602],[11.2540756,50.2964749],[11.2540997,50.2965595],[11.2540984,50.2966806],[11.2540476,50.2967559],[11.253879,50.2968488],[11.2537073,50.2969052],[11.2533746,50.2969884],[11.2532457,50.2970358],[11.2530694,50.2971653],[11.2529683,50.2972791],[11.252849,50.2974317],[11.2527301,50.2975409],[11.2524639,50.2977856],[11.2524528,50.2977956],[11.2524022,50.2978458],[11.2523833,50.2978718],[11.2523444,50.2979256],[11.2522604,50.2981148],[11.252216,50.2982587],[11.2522108,50.298279],[11.2521824,50.2983888],[11.2521068,50.2984639],[11.2518301,50.298657],[11.2515543,50.2988325],[11.2515091,50.2988613],[11.2513631,50.2989543],[11.2519785,50.2991422],[11.252251,50.2992196],[11.2524445,50.2992745],[11.2527041,50.2993419],[11.2529499,50.2993773],[11.2532637,50.2993924],[11.2535489,50.2994074],[11.2540235,50.2994004],[11.2543664,50.2993698],[11.2547662,50.2993464],[11.2551052,50.2993319],[11.2554261,50.2993425],[11.2559001,50.2993993],[11.2562881,50.2994742],[11.2565796,50.299538],[11.2566085,50.2995442],[11.2570422,50.2996923],[11.2578524,50.3000022],[11.2582199,50.3000015],[11.2584576,50.299998],[11.2586984,50.2999945],[11.2588193,50.2999927],[11.2590984,50.2999809],[11.2591016,50.2999807],[11.2592486,50.2999745],[11.2594583,50.2999657],[11.2597935,50.2999808],[11.2601355,50.3000257],[11.2603564,50.3000564],[11.2605269,50.3001304],[11.2606647,50.3002521],[11.2608061,50.3003829],[11.2610141,50.3006285],[11.2611515,50.3007891],[11.2612816,50.3009839],[11.2614047,50.3011399],[11.2615318,50.3012731],[11.261815,50.3014868],[11.2620271,50.3016842],[11.2622851,50.3019117],[11.2624794,50.3021114],[11.2626383,50.3022537],[11.2627384,50.3023234],[11.2628367,50.3023918],[11.263025,50.3024817],[11.2632704,50.3025536],[11.2634331,50.3025771],[11.2634662,50.3025818],[11.2635224,50.3025844],[11.2636303,50.3025894],[11.2640903,50.302612],[11.264383,50.3026087],[11.2648965,50.3026452],[11.2654065,50.3026611],[11.2658627,50.3027064],[11.265908,50.3027436],[11.2659692,50.3027937],[11.2660113,50.3028283],[11.2661665,50.302998],[11.2665839,50.3033564],[11.2671637,50.3038754],[11.2671713,50.3038819],[11.2672857,50.3039789],[11.2675812,50.3042292],[11.2680412,50.3045854],[11.268408,50.3048775],[11.2685093,50.3049582],[11.2685261,50.3049715],[11.2686064,50.3051023],[11.2686105,50.305109],[11.2686701,50.3051985],[11.2687612,50.305274],[11.2689887,50.3054626],[11.2692293,50.3056488],[11.2694306,50.3058599],[11.2698041,50.3063256],[11.270252,50.3068395],[11.2704286,50.3070116],[11.2704564,50.3070848],[11.2704045,50.307272],[11.2702924,50.3074201],[11.2701916,50.3075089],[11.2697619,50.3076671],[11.2694608,50.3077915],[11.2692386,50.3078888],[11.2690017,50.3080249],[11.2688115,50.3081201],[11.2685963,50.3082449],[11.2683382,50.3083536],[11.2681512,50.3084969],[11.2680398,50.3085901],[11.267529,50.3089719],[11.2669974,50.3093261],[11.2666305,50.3095989],[11.2663338,50.3099999],[11.2662824,50.3101459],[11.2662849,50.3102489],[11.2663364,50.3104456],[11.2664736,50.3106405],[11.2666083,50.3107794],[11.2666449,50.3108171],[11.2667384,50.3109136],[11.2669222,50.3110859],[11.2670099,50.3112256],[11.2670118,50.3112422],[11.2670263,50.3113789],[11.2670205,50.3115937],[11.2669454,50.3117573],[11.2668438,50.3119457],[11.2668281,50.3119728],[11.2667692,50.3120749],[11.2666684,50.3121727],[11.2665466,50.3122134],[11.2660624,50.3123151],[11.2659708,50.3123343],[11.2655023,50.3124489],[11.2645045,50.3126458],[11.2643183,50.3127135],[11.2642459,50.3128161],[11.2637797,50.3133763],[11.2637073,50.3134834],[11.2636699,50.3136455],[11.2635998,50.3138784],[11.2635884,50.3139434],[11.2635656,50.3140726],[11.263517,50.3142827],[11.2634475,50.3144515],[11.2633382,50.3146682],[11.2632719,50.314869],[11.2632141,50.3152779],[11.2631647,50.3155589],[11.2630094,50.3159988],[11.2628987,50.3164445],[11.2628852,50.3164813],[11.2627114,50.316958],[11.2623614,50.3176743],[11.2622806,50.3178957],[11.262165,50.3180391],[11.2620314,50.3181916],[11.2618797,50.3183671],[11.2617065,50.3185377],[11.2615367,50.3187335],[11.261378,50.3188974],[11.2612733,50.319009],[11.2611511,50.3190838],[11.2604375,50.3194168],[11.2596841,50.3198066],[11.2591171,50.3200808],[11.2588121,50.3202463],[11.2585537,50.3203755],[11.2583706,50.3204867],[11.2583235,50.3205212],[11.2581726,50.320632],[11.2580215,50.3207663],[11.2578591,50.3209324],[11.2577185,50.3210598],[11.2575963,50.321153],[11.257442,50.3212185],[11.2572022,50.3212976],[11.2571887,50.321304],[11.2570695,50.3213611],[11.2569901,50.321427],[11.2568671,50.3215795],[11.2567372,50.3217252],[11.2566179,50.321871],[11.2565451,50.3220056],[11.2564684,50.3221676],[11.2564026,50.3223227],[11.2563469,50.3225236],[11.2563419,50.3226721],[11.2563404,50.3227955],[11.2564036,50.3229055],[11.25652,50.3230477],[11.2566087,50.3231052],[11.2568574,50.3232046],[11.2570883,50.3233039],[11.2572662,50.3233549],[11.2574374,50.3233762],[11.2577369,50.3234027],[11.2580079,50.3234314],[11.2583074,50.3234692],[11.2585783,50.3235001],[11.2590878,50.3235869],[11.2594013,50.3236545],[11.2600352,50.3237967],[11.2603623,50.3239101],[11.2607038,50.3240305],[11.2609525,50.3241481],[11.2611265,50.3242288],[11.2613675,50.3243853],[11.2614947,50.3245208],[11.261668,50.3246655],[11.261816,50.3248535],[11.2619401,50.3249478],[11.2621284,50.3250309],[11.2624871,50.325197],[11.2624828,50.3252107],[11.2623689,50.3255782],[11.2622654,50.3259298],[11.2622281,50.3260805],[11.2621302,50.3262355],[11.2619526,50.3264931],[11.2617566,50.3268095],[11.2617493,50.3268212],[11.2616894,50.326929],[11.2613892,50.3274757],[11.2612587,50.3276512],[11.2612,50.3278109],[11.2612198,50.3279687],[11.2612856,50.3281563],[11.2613336,50.3283554],[11.2613284,50.3285132],[11.261287,50.3287209],[11.2612531,50.3288854],[11.2611836,50.3290474],[11.2611002,50.329175],[11.2609333,50.3294418],[11.2608428,50.329551],[11.2607774,50.3296605],[11.2607435,50.3298317],[11.2607313,50.3299849],[11.2607656,50.3301176],[11.2608568,50.3302688],[11.2609829,50.3305025],[11.2610672,50.3306378],[11.261144,50.3308072],[11.2611886,50.3309834],[11.2612262,50.331139],[11.261238,50.3312746],[11.2612422,50.3313219],[11.2612424,50.3313304],[11.2612466,50.3314485],[11.2612477,50.3314773],[11.2612413,50.3315818],[11.2612391,50.3316191],[11.2612053,50.3317766],[11.2611529,50.3320163],[11.2611046,50.3321967],[11.2610994,50.332343],[11.2611689,50.3325307],[11.2612599,50.3327162],[11.2613953,50.332889],[11.2615726,50.333265],[11.2616282,50.3333997],[11.2616564,50.3334897],[11.2618162,50.3339252],[11.2620111,50.3343858],[11.2621318,50.3347844],[11.2621931,50.3350706],[11.2622277,50.3355122],[11.2622434,50.3357137],[11.2622277,50.3358485],[11.2621611,50.3360678],[11.2621321,50.3362559],[11.2621189,50.3363421],[11.2620738,50.3365523],[11.2620399,50.3367145],[11.2617922,50.3371244],[11.2617202,50.3372436],[11.2613907,50.3377694],[11.2613823,50.3377828],[11.26132,50.3378874],[11.2619243,50.3378714],[11.2628498,50.3377819],[11.2631392,50.3377696],[11.2633424,50.3377957],[11.2637378,50.3378685],[11.2640837,50.337916],[11.2643793,50.3379768],[11.264846,50.338091],[11.2648988,50.3381049],[11.26512,50.3381632],[11.2653909,50.3382171],[11.2656012,50.3382364],[11.2659047,50.3382492],[11.2660833,50.3382454],[11.2662305,50.3381593],[11.266543,50.3379754],[11.2667732,50.3378027],[11.266996,50.337671],[11.2671796,50.3375186],[11.2673848,50.3373709],[11.2676077,50.337221],[11.2677405,50.3371552],[11.2678697,50.3370781],[11.2682118,50.336803],[11.2684186,50.3368427],[11.2686966,50.3368852],[11.2689747,50.3369277],[11.2692452,50.336993],[11.2695978,50.3370656],[11.2697725,50.3370961],[11.2698655,50.3370897],[11.2701919,50.3370587],[11.2711306,50.3369697],[11.2713165,50.3369431],[11.2715137,50.336864],[11.2723276,50.3365177],[11.2726396,50.3363796],[11.2730084,50.3362738],[11.2734556,50.3362004],[11.2737165,50.3361674],[11.2737734,50.3361632],[11.2744631,50.3361135],[11.274874,50.3360996],[11.2755881,50.3360752],[11.2770524,50.3360317],[11.2770221,50.3360786],[11.2762713,50.3371631],[11.2755102,50.338269],[11.2752149,50.3387325],[11.2746573,50.3396078],[11.2737693,50.3408915],[11.2736538,50.3410631],[11.273592,50.3411538],[11.2734385,50.3413832],[11.2730404,50.3419748],[11.2721194,50.3433407],[11.2715332,50.3442353],[11.2712968,50.3445961],[11.2712557,50.3446588],[11.2712485,50.3446698],[11.2707318,50.3454474],[11.2706026,50.3456417],[11.2695806,50.3470963],[11.269238,50.3475881],[11.2689388,50.3480174],[11.2688444,50.3481625],[11.2684083,50.3488319],[11.2683254,50.3489593],[11.2683161,50.3489731],[11.2676435,50.349974],[11.2672779,50.3504969],[11.2669294,50.3509954],[11.266816,50.351165],[11.2666584,50.3514009],[11.2663487,50.3518643],[11.2658134,50.351832],[11.2655102,50.3518008],[11.2651,50.3517463],[11.2644899,50.3516977],[11.2637553,50.3515936],[11.2635364,50.3515647],[11.2634129,50.3515485],[11.2632561,50.3515111],[11.2628937,50.3513379],[11.2628206,50.351288],[11.2626916,50.3511997],[11.26247,50.3515532],[11.262371,50.3517976],[11.2623621,50.3519598],[11.2622865,50.3523598],[11.2624225,50.3524001],[11.263362,50.3526788],[11.2636501,50.3527643],[11.2642092,50.3532449],[11.2654115,50.3533718],[11.2655004,50.3533997],[11.2656783,50.3534738],[11.2660866,50.3536975],[11.2662429,50.3537737],[11.266339,50.3538016],[11.2677557,50.3539272],[11.2681837,50.353984],[11.2690757,50.3540568],[11.269286,50.3540875],[11.26945,50.3541317],[11.2696563,50.3542036],[11.2700756,50.3544092],[11.2703528,50.3545385],[11.2706408,50.3546794],[11.2710985,50.3549537],[11.2711778,50.3549822],[11.2712658,50.355014],[11.2713023,50.3550192],[11.2713656,50.3550281],[11.2724222,50.3550834],[11.2729436,50.355088],[11.2734472,50.3550939],[11.2735972,50.3550957],[11.2737366,50.3551073],[11.2740412,50.3551327],[11.2742074,50.3551465],[11.2749711,50.3552025],[11.27556,50.3552373],[11.2758631,50.3552868],[11.276116,50.3553359],[11.2764083,50.3553944],[11.2765352,50.3554143],[11.2768148,50.3554581],[11.2768679,50.3554695],[11.2771485,50.3555296],[11.2771854,50.3555376],[11.2776279,50.355639],[11.2779332,50.3557091],[11.2779515,50.3557132],[11.27803,50.3557313],[11.2781057,50.355746],[11.2783899,50.3557993],[11.2790029,50.3559279],[11.2789592,50.356057],[11.278911,50.3561996],[11.2789989,50.3563212],[11.2791398,50.3565254],[11.2792916,50.3566932],[11.2794511,50.3568174],[11.2796604,50.3569533],[11.2799018,50.3570986],[11.280007,50.3571549],[11.2801672,50.3572403],[11.2802214,50.3572692],[11.2805236,50.357417],[11.280698,50.357475],[11.280926,50.3575355],[11.2811003,50.3575889],[11.2812567,50.3576765],[11.2815014,50.35784],[11.2816714,50.3579918],[11.2817407,50.3580535],[11.2819403,50.358231],[11.2820821,50.358341],[11.2822066,50.3584377],[11.2822309,50.3584564],[11.2825146,50.358659],[11.2829684,50.3590018],[11.2826495,50.3594419],[11.2841039,50.3600866],[11.2840204,50.3602258],[11.2840161,50.3602944],[11.2840187,50.3603767],[11.2840391,50.3604958],[11.2840844,50.3605967],[11.2841372,50.3606746],[11.2839995,50.3608731],[11.2839848,50.3608933],[11.2838617,50.3610646],[11.2837029,50.3612309],[11.2834718,50.3614676],[11.2833489,50.3616113],[11.2831433,50.3618093],[11.2831351,50.3618204],[11.2830275,50.3619666],[11.2828428,50.3622151],[11.2827372,50.3624067],[11.2825813,50.3626416],[11.28245,50.3628926],[11.2822762,50.3631344],[11.2822109,50.363221],[11.282067,50.3633347],[11.2818042,50.3635119],[11.2814768,50.3637483],[11.2809191,50.3641483],[11.2810609,50.3642588],[11.2805991,50.3646959],[11.2804401,50.3648759],[11.2803387,50.3650241],[11.2802979,50.3651588],[11.280285,50.3653852],[11.280269,50.3655362],[11.2801845,50.3657691],[11.2800235,50.366139],[11.2799825,50.3663057],[11.2798958,50.3664014],[11.2797517,50.3665151],[11.2795138,50.3667244],[11.2793156,50.3668951],[11.2792147,50.366993],[11.2791846,50.3671233],[11.2791832,50.367272],[11.279186,50.3672896],[11.2792067,50.3674161],[11.2792841,50.3675285],[11.279468,50.3677124],[11.2796623,50.3679146],[11.2797927,50.3680982],[11.2799371,50.368307],[11.2800949,50.3685776],[11.2801934,50.3687313],[11.2803169,50.3688828],[11.2804659,50.3690025],[11.2805677,50.3691676],[11.2806557,50.3692984],[11.2806934,50.3694449],[11.280695,50.3696462],[11.2806996,50.3698933],[11.2807231,50.3700352],[11.2807749,50.3702161],[11.2808016,50.3703971],[11.2807949,50.370708],[11.2808079,50.3711794],[11.2807996,50.3712983],[11.2807558,50.3713895],[11.2806368,50.3714942],[11.2803923,50.371651],[11.2801368,50.3718167],[11.2798678,50.3719345],[11.2796453,50.3720227],[11.2793617,50.3721495],[11.2791965,50.3722471],[11.2788905,50.3724607],[11.2785627,50.3727223],[11.2783396,50.3728791],[11.2782098,50.3729837],[11.2781188,50.3731572],[11.2780706,50.3733193],[11.2780763,50.3734635],[11.2781242,50.3736741],[11.2781334,50.3738137],[11.2781036,50.3739348],[11.2779926,50.3743003],[11.2779306,50.3744235],[11.277797,50.3745586],[11.2776304,50.3747663],[11.2771818,50.3752553],[11.277066,50.3753918],[11.2770431,50.3755219],[11.2770505,50.3758213],[11.2770721,50.37613],[11.2771402,50.3764161],[11.2772283,50.3768484],[11.2772356,50.3771662],[11.277274,50.3775571],[11.2771448,50.3785825],[11.2771316,50.3787973],[11.2770547,50.3789682],[11.2768217,50.379335],[11.2767089,50.3795309],[11.2766569,50.3796976],[11.276651,50.3799123],[11.2766307,50.3801338],[11.2766062,50.3804012],[11.2765799,50.3805221],[11.2765181,50.3806086],[11.2761647,50.3808947],[11.2757354,50.3812514],[11.2752226,50.381724],[11.2747248,50.3821511],[11.2742163,50.3825621],[11.2739961,50.3827553],[11.2738908,50.382901],[11.2737562,50.3831105],[11.2735196,50.3834909],[11.2732465,50.3839535],[11.2730325,50.384222],[11.2727535,50.3845702],[11.2725288,50.3848433],[11.2723898,50.3851259],[11.2723235,50.3852878],[11.2722142,50.3854929],[11.2720318,50.3855011],[11.271681,50.3855405],[11.2713051,50.385607],[11.2709466,50.3856898],[11.2708723,50.3857014],[11.2705924,50.3857451],[11.2696531,50.3862955],[11.269502,50.3863839],[11.2692977,50.3864582],[11.2687415,50.3866404],[11.2683787,50.3867939],[11.2682243,50.3868662],[11.2680407,50.3869864],[11.2678139,50.38712],[11.2675731,50.3872444],[11.2673542,50.3873324],[11.2672072,50.3873659],[11.2669391,50.3873623],[11.266607,50.3873423],[11.2655705,50.3873345],[11.2653028,50.3873012],[11.2650463,50.3872517],[11.2646576,50.3871584],[11.2644258,50.3870732],[11.2641844,50.3869845],[11.2641183,50.3872403],[11.2640293,50.387599],[11.2640367,50.3877544],[11.2640547,50.3879052],[11.2640834,50.3880103],[11.2641229,50.3882022],[11.2641559,50.3882954],[11.264173,50.3883439],[11.2642483,50.3885038],[11.2642983,50.3887003],[11.2643343,50.3889127],[11.2643381,50.3891366],[11.2643205,50.3893972],[11.2642994,50.3896965],[11.2642889,50.3898838],[11.2642713,50.3901625],[11.2643252,50.3903955],[11.2644074,50.3905738],[11.2644407,50.3906464],[11.2644826,50.3907382],[11.2645436,50.3908479],[11.2645686,50.3909918],[11.2645332,50.3911404],[11.2645082,50.3912683],[11.2645155,50.3913734],[11.2645834,50.391442],[11.2647621,50.3915516],[11.2648801,50.3916271],[11.2649979,50.3917252],[11.2650911,50.3918258],[11.2651841,50.3919789],[11.26532,50.3921365],[11.2653602,50.3921722],[11.2654845,50.3922827],[11.265774,50.3924792],[11.2660492,50.3926734],[11.2662638,50.392831],[11.2664175,50.3929567],[11.2665354,50.3930412],[11.2666498,50.3931029],[11.2667284,50.3931372],[11.2668355,50.3931509],[11.2669357,50.3931439],[11.2670248,50.3931394],[11.2671678,50.3931486],[11.2673178,50.3931942],[11.2674608,50.3932353],[11.2675929,50.3932536],[11.2677251,50.3932627],[11.2678894,50.3932719],[11.2680573,50.3932672],[11.2681394,50.3932559],[11.2682145,50.3932285],[11.2683037,50.3931805],[11.2683823,50.393153],[11.2685179,50.3931508],[11.2686609,50.3931896],[11.2687681,50.3932444],[11.2688682,50.3932901],[11.2690325,50.3933221],[11.2692577,50.3933518],[11.2694506,50.39337],[11.2696862,50.3934089],[11.2699187,50.3934956],[11.270083,50.3935961],[11.2702617,50.393683],[11.2704261,50.3937561],[11.2706261,50.3937812],[11.270683,50.3938401],[11.2707388,50.3939683],[11.2705277,50.3942986],[11.2702495,50.3944019],[11.2697472,50.3945752],[11.2691902,50.3948283],[11.2689745,50.3949369],[11.2687115,50.3951138],[11.2685167,50.3952658],[11.2682929,50.395468],[11.2679905,50.3956425],[11.2675372,50.3959052],[11.2666554,50.396433],[11.2661259,50.3967754],[11.2655431,50.3971059],[11.2651334,50.3972821],[11.2649397,50.3973697],[11.264864,50.3974041],[11.2647166,50.3974833],[11.26453,50.3975394],[11.2643619,50.3975454],[11.2640513,50.3975095],[11.2638235,50.3975121],[11.2636985,50.3974939],[11.263577,50.3974778],[11.2634163,50.3974847],[11.263334,50.3974938],[11.263234,50.3975121],[11.2630377,50.3975327],[11.2629304,50.3975373],[11.2628053,50.3975373],[11.2626983,50.3975144],[11.262559,50.3975007],[11.2623766,50.3975099],[11.2622482,50.3975167],[11.2621016,50.3975326],[11.2619874,50.3975419],[11.2618625,50.3975693],[11.2617481,50.3976241],[11.2616909,50.3976698],[11.2616304,50.3977315],[11.2615836,50.3977773],[11.2615233,50.3978366],[11.2614377,50.3979394],[11.2613377,50.3980468],[11.2612377,50.398129],[11.2611164,50.3982113],[11.2609986,50.3983141],[11.2609541,50.3983559],[11.260863,50.3984421],[11.2607701,50.3985312],[11.2607026,50.39858],[11.2606059,50.39865],[11.260506,50.3987299],[11.2603739,50.3987893],[11.2602748,50.3988239],[11.2601927,50.3988496],[11.2601597,50.3988601],[11.259999,50.3989104],[11.259849,50.3989766],[11.2597597,50.3990475],[11.2597062,50.3991229],[11.2596278,50.3992394],[11.2595599,50.3993422],[11.2594721,50.3994308],[11.2594671,50.3994359],[11.2593458,50.3995249],[11.2592696,50.3995759],[11.2592671,50.3995775],[11.2591279,50.3996323],[11.2589672,50.3996941],[11.2588387,50.3997352],[11.2587422,50.3997672],[11.2585894,50.3998445],[11.2584252,50.3999276],[11.2584235,50.4000385],[11.2584368,50.4001125],[11.2584577,50.4001728],[11.2585003,50.4002193],[11.2585576,50.400252],[11.2586368,50.4002756],[11.2587021,50.4002667],[11.2587601,50.4002578],[11.2588025,50.4002559],[11.2588533,50.4002538],[11.2589534,50.4002607],[11.2590775,50.4003015],[11.2591635,50.4003575],[11.2592634,50.4004459],[11.2593514,50.4005386],[11.2593914,50.4005807],[11.259583,50.4008131],[11.2596968,50.400934],[11.2597758,50.4009761],[11.2599191,50.4010556],[11.2601414,50.4011772],[11.260335,50.4012848],[11.26045,50.4013224],[11.2606013,50.4013604],[11.2608027,50.4014356],[11.2608745,50.401473],[11.2609803,50.4015743],[11.2610518,50.4016955],[11.2611378,50.4018394],[11.2612308,50.4019925],[11.261281,50.4021113],[11.2613311,50.4022461],[11.2613526,50.4023878],[11.2613435,50.4025227],[11.2613421,50.4025432],[11.2613101,50.4027556],[11.2612784,50.4028349],[11.2612353,50.402943],[11.2611853,50.4030777],[11.2610676,50.4032331],[11.2609713,50.4033633],[11.2608606,50.4035484],[11.2608108,50.4036695],[11.2607717,50.4037997],[11.2607397,50.4039322],[11.2607076,50.4040579],[11.2606914,50.4041802],[11.2606899,50.4041927],[11.2606792,50.4043411],[11.2606823,50.4044847],[11.26102,50.4045997],[11.2613373,50.4047076],[11.2616185,50.4047958],[11.2618074,50.4048769],[11.2619487,50.4050215],[11.261996,50.4051105],[11.2620293,50.4051729],[11.2620951,50.4053582],[11.2621914,50.405681],[11.2624463,50.4062738],[11.2626355,50.4062878],[11.2626499,50.4062896],[11.2627965,50.4063083],[11.2629108,50.4063358],[11.2629965,50.406386],[11.2630518,50.406428],[11.2630716,50.4064431],[11.2631217,50.4065094],[11.2631298,50.4065211],[11.2631575,50.4065619],[11.2632256,50.4066739],[11.2632557,50.4067568],[11.2632971,50.4068704],[11.2633188,50.4070212],[11.2633259,50.4071354],[11.2633124,50.4072792],[11.2633119,50.4072839],[11.2633228,50.4074438],[11.2633264,50.4075992],[11.2633402,50.4077308],[11.2633409,50.4077363],[11.2633624,50.4078779],[11.2633753,50.4079614],[11.2633876,50.4080424],[11.2634063,50.4081155],[11.2634172,50.4081579],[11.2634378,50.4082384],[11.2634379,50.4082389],[11.2634633,50.4083045],[11.2635024,50.4084057],[11.2635229,50.4084668],[11.2635454,50.4085337],[11.2636133,50.4086684],[11.2637171,50.4088352],[11.2637887,50.4089495],[11.2638602,50.409034],[11.2638961,50.4091049],[11.2638855,50.4091756],[11.2638641,50.4092694],[11.2638107,50.4093561],[11.2637571,50.409443],[11.2637,50.4095229],[11.2636467,50.4096303],[11.2636145,50.409733],[11.2636181,50.4098382],[11.2636789,50.4099022],[11.2637059,50.4099201],[11.2637719,50.4099638],[11.2638792,50.4100232],[11.26399,50.4100918],[11.2641259,50.4101603],[11.2642296,50.4102015],[11.2643619,50.4102701],[11.2644369,50.4103408],[11.2644585,50.4104299],[11.2644657,50.4105327],[11.2644516,50.4106722],[11.2644517,50.4107484],[11.2644517,50.4107681],[11.2644768,50.4108732],[11.2645127,50.4109965],[11.2645558,50.4111679],[11.2646165,50.4112616],[11.2646559,50.4113941],[11.2646989,50.4115312],[11.2647133,50.4116385],[11.2647279,50.4117778],[11.2647112,50.4118538],[11.264678,50.4120041],[11.264646,50.4121092],[11.2646105,50.4122417],[11.2645927,50.4123582],[11.2645749,50.4124884],[11.2646001,50.4126049],[11.2646717,50.4126964],[11.2647719,50.4128129],[11.2648898,50.412918],[11.26504,50.4130483],[11.2651831,50.4131624],[11.2653405,50.4132698],[11.2655622,50.4134161],[11.2658126,50.4136194],[11.2659843,50.4137747],[11.2661023,50.4138889],[11.2662239,50.4140123],[11.266317,50.4141288],[11.2664029,50.4142705],[11.2664995,50.414451],[11.2665667,50.4145761],[11.2665927,50.4146246],[11.2666751,50.4148028],[11.2667396,50.4149536],[11.2668005,50.4151089],[11.26689,50.4153008],[11.2669474,50.4154379],[11.2669546,50.4155682],[11.2669332,50.4156755],[11.2668941,50.4157738],[11.2668548,50.4158697],[11.2667835,50.4159794],[11.2667641,50.4160104],[11.266635,50.4162166],[11.2666306,50.4162238],[11.2666064,50.4165225],[11.2666132,50.4166207],[11.2666451,50.4166709],[11.2667058,50.4167465],[11.2667842,50.4168288],[11.2668447,50.416902],[11.2669587,50.4170232],[11.2670548,50.4171513],[11.2671402,50.4172794],[11.2672329,50.4173869],[11.2673182,50.4174989],[11.2674,50.4176246],[11.2674818,50.4177687],[11.2675566,50.4178784],[11.2676385,50.4179494],[11.2677242,50.4179975],[11.2678492,50.4180593],[11.2679419,50.4181029],[11.2680203,50.4181578],[11.2681129,50.4182424],[11.2681913,50.4183248],[11.2682769,50.418414],[11.2683446,50.4184666],[11.2683909,50.4185169],[11.2685085,50.4186473],[11.2686367,50.4187549],[11.2687582,50.4188396],[11.2688936,50.4189425],[11.2689658,50.4190065],[11.2689969,50.419034],[11.2690826,50.4191119],[11.2691465,50.4191828],[11.2691823,50.4192537],[11.2691749,50.4192992],[11.2691534,50.4193564],[11.2691246,50.4194043],[11.2690851,50.4194477],[11.2690313,50.4195001],[11.268992,50.4195457],[11.2689633,50.4196028],[11.2689487,50.4196804],[11.2689342,50.419774],[11.2689017,50.4198813],[11.26888,50.4199842],[11.2688797,50.4200654],[11.2688797,50.420087],[11.2688866,50.4201341],[11.2688938,50.4201806],[11.2689077,50.4202652],[11.2689182,50.4203771],[11.2689358,50.4205096],[11.2689354,50.4206079],[11.2689138,50.4207152],[11.2688704,50.4208317],[11.2688203,50.4209298],[11.2687735,50.4210189],[11.2687124,50.4210941],[11.2686409,50.4211466],[11.2685765,50.4211898],[11.2684547,50.421249],[11.2683152,50.4213106],[11.2682078,50.4213561],[11.2681112,50.4213994],[11.2679539,50.4214631],[11.2677,50.4215381],[11.2675927,50.4215654],[11.2674496,50.4216086],[11.2673245,50.4216587],[11.2671777,50.4217453],[11.2670917,50.4218045],[11.2670308,50.4218866],[11.2669662,50.4219871],[11.2669087,50.4221126],[11.2668619,50.4222199],[11.2668006,50.4223821],[11.2667359,50.4225327],[11.2667356,50.4226218],[11.2667712,50.4226858],[11.2668318,50.4227521],[11.2668924,50.4228139],[11.2669351,50.4228688],[11.2669384,50.422926],[11.266931,50.4230196],[11.2669344,50.4231018],[11.2669412,50.4232138],[11.2669516,50.4232914],[11.2669621,50.4233874],[11.266994,50.423472],[11.2670296,50.4235771],[11.2670615,50.423673],[11.2671076,50.4237897],[11.2671609,50.4239107],[11.2671836,50.4239771],[11.267207,50.4240456],[11.2672352,50.4241416],[11.2672779,50.4242216],[11.267317,50.4243085],[11.2673417,50.4243976],[11.2673309,50.4244707],[11.2673199,50.4245346],[11.2673091,50.4245734],[11.2673018,50.4246306],[11.2672979,50.4246968],[11.2673051,50.4247516],[11.2673085,50.4248201],[11.2673261,50.4248933],[11.2673329,50.4249663],[11.2673541,50.4250852],[11.267368,50.4251971],[11.2673606,50.4252932],[11.267339,50.4253708],[11.2673067,50.4254346],[11.2672492,50.4255511],[11.2672024,50.4256264],[11.2671924,50.4256407],[11.2671809,50.4256569],[11.2671379,50.4257176],[11.2670984,50.4257746],[11.2670698,50.4258364],[11.2670516,50.4259071],[11.2670452,50.425986],[11.2670442,50.4259985],[11.2668625,50.4270809],[11.2668299,50.4272295],[11.2667689,50.4273002],[11.2666901,50.4273685],[11.2666184,50.4274507],[11.2665503,50.4275306],[11.2664928,50.4276241],[11.2664639,50.4277086],[11.2665066,50.4277749],[11.2666017,50.4278664],[11.2666136,50.4278779],[11.2666885,50.4279282],[11.2667355,50.4279595],[11.2667884,50.4279945],[11.2668776,50.4280747],[11.2669666,50.4281594],[11.26698,50.4281725],[11.2670271,50.4282189],[11.2671055,50.4283217],[11.2672125,50.4284406],[11.2673158,50.4285573],[11.2674262,50.428674],[11.2675118,50.4287586],[11.2675508,50.4288409],[11.2675828,50.4289323],[11.2676182,50.429026],[11.2676536,50.429138],[11.2676855,50.4292386],[11.2677032,50.4293231],[11.2677066,50.4293606],[11.2677136,50.4294396],[11.2678026,50.429554],[11.2678703,50.4296546],[11.2680163,50.4298215],[11.268166,50.4299839],[11.2682693,50.4301211],[11.268341,50.4302343],[11.2683547,50.430256],[11.2683829,50.4303543],[11.2683898,50.4304571],[11.2683717,50.4305325],[11.2683466,50.430601],[11.2683117,50.4306694],[11.2683105,50.4306717],[11.2682746,50.4307562],[11.2682565,50.4308179],[11.2681433,50.4309027],[11.2681105,50.430994],[11.2680773,50.4311105],[11.2680621,50.4312339],[11.2680541,50.4313436],[11.268003,50.4314622],[11.2679201,50.4315489],[11.2677799,50.4316329],[11.2676181,50.431726],[11.2675353,50.4317943],[11.2675204,50.4318606],[11.2675341,50.4319452],[11.2675836,50.4320208],[11.267694,50.4321149],[11.2677932,50.4322205],[11.267864,50.4323304],[11.2678953,50.4324403],[11.2678912,50.4325088],[11.2678512,50.432591],[11.2677433,50.43265],[11.2674815,50.4327519],[11.2673092,50.4328244],[11.2672336,50.4328686],[11.2671617,50.4329108],[11.2670788,50.4330065],[11.2670669,50.4331436],[11.267066,50.433267],[11.2671012,50.4333403],[11.2671649,50.4334137],[11.2672683,50.4334712],[11.2673089,50.4334775],[11.2674649,50.4335017],[11.2677652,50.4335211],[11.2679046,50.4335559],[11.2679794,50.4335882],[11.268022,50.4336363],[11.2680359,50.4337025],[11.2680248,50.43373],[11.2679029,50.4337753],[11.267795,50.4338457],[11.267712,50.4339391],[11.2676684,50.4340121],[11.2676678,50.4341127],[11.2676783,50.4341888],[11.2676813,50.4342111],[11.2677485,50.4343073],[11.2678408,50.4343899],[11.2679653,50.434507],[11.2680323,50.4346215],[11.2679128,50.4348251],[11.2678328,50.4349614],[11.2677611,50.4349726],[11.2675929,50.4349972],[11.2675019,50.4350119],[11.267385,50.4350307],[11.2672415,50.4350827],[11.2671046,50.435192],[11.2670321,50.4353152],[11.266996,50.4353676],[11.2669622,50.435407],[11.2669454,50.4354268],[11.2669397,50.4354288],[11.2668522,50.4354585],[11.2667625,50.4354823],[11.2666907,50.4355013],[11.2664075,50.4355758],[11.2662603,50.4356461],[11.2661522,50.4357257],[11.2661465,50.4357314],[11.2660621,50.4358146],[11.2660596,50.4358189],[11.2660076,50.4359104],[11.2662182,50.4359935],[11.2663072,50.4360555],[11.2663997,50.4361221],[11.2664705,50.4362184],[11.2664876,50.4363235],[11.2664617,50.4364309],[11.2664036,50.436529],[11.2663061,50.436643],[11.2662162,50.4367135],[11.2660511,50.4367814],[11.2658752,50.4368379],[11.265685,50.4369081],[11.2655486,50.4369556],[11.2654587,50.4370125],[11.265415,50.4371129],[11.2654143,50.4371883],[11.265432,50.4372456],[11.2655099,50.4373281],[11.2655845,50.4374129],[11.2656232,50.4374931],[11.2656082,50.4375913],[11.2655467,50.4376551],[11.2654463,50.4376937],[11.2652888,50.4376885],[11.2651674,50.4376628],[11.2650672,50.4376649],[11.2649488,50.4376942],[11.2648936,50.4377326],[11.264841,50.4377691],[11.264801,50.437849],[11.2647966,50.4379519],[11.2648423,50.4380458],[11.2649599,50.4381216],[11.2649989,50.4381338],[11.2651205,50.4381725],[11.2652667,50.4382324],[11.2653845,50.4382809],[11.2653651,50.4384637],[11.265403,50.4386673],[11.265546,50.4387904],[11.2654917,50.4389386],[11.2654805,50.4390286],[11.2654744,50.4391044],[11.2654377,50.4392353],[11.2654213,50.4393395],[11.2653894,50.439483],[11.2653305,50.4396059],[11.2652414,50.4397649],[11.2651568,50.4398891],[11.2650993,50.4399689],[11.2650314,50.4400465],[11.2649488,50.4401172],[11.2649456,50.4401199],[11.2648987,50.4401583],[11.2648775,50.4401756],[11.2648485,50.4401993],[11.2648018,50.4402471],[11.264741,50.4402836],[11.2646587,50.4403155],[11.2645441,50.4403633],[11.2644726,50.4403998],[11.2644224,50.4404294],[11.2643759,50.4404567],[11.2642971,50.4405092],[11.2642181,50.4405661],[11.2641716,50.4406163],[11.2640604,50.4407258],[11.264039,50.4407496],[11.2640067,50.4407851],[11.2639528,50.4408467],[11.2638775,50.4409288],[11.2638309,50.4409928],[11.26382,50.4410429],[11.2638025,50.4411145],[11.263802,50.441116],[11.263791,50.4412075],[11.2637657,50.4413125],[11.2637404,50.44139],[11.2636721,50.4415111],[11.2636146,50.4416229],[11.2635586,50.4417212],[11.263507,50.4418615],[11.2634754,50.4419877],[11.2634832,50.4421188],[11.2634842,50.4422199],[11.2634971,50.4423369],[11.2635295,50.4424761],[11.2635948,50.4426134],[11.2636926,50.4427794],[11.2629987,50.4429909],[11.2625049,50.4431395],[11.2623565,50.4431902],[11.2618187,50.4433736],[11.2617227,50.4434064],[11.2614678,50.4434877],[11.2612637,50.4435121],[11.260877,50.443529],[11.260365,50.443566],[11.2599337,50.4436411],[11.2596194,50.4436958],[11.259329,50.4437564],[11.2592461,50.4437752],[11.2590099,50.4438284],[11.258716,50.4438937],[11.2583754,50.4439678],[11.2578843,50.4440643],[11.257762,50.4440909],[11.2574506,50.4441588],[11.2574306,50.4441659],[11.2572093,50.4442456],[11.2570234,50.4443126],[11.2568437,50.4443941],[11.2566391,50.4444803],[11.2564625,50.4445906],[11.256319,50.4446803],[11.2560061,50.4448665],[11.2559795,50.4448871],[11.2558404,50.4449939],[11.2555557,50.4453891],[11.2555127,50.4454325],[11.2554517,50.4454941],[11.2553763,50.4455625],[11.255311,50.4456198],[11.2552725,50.4456536],[11.2551219,50.4457676],[11.2550252,50.4458337],[11.2549247,50.4459182],[11.2548029,50.4460253],[11.2547097,50.4461005],[11.2546059,50.4461712],[11.2545316,50.4462118],[11.2545056,50.4462259],[11.2543587,50.446317],[11.254219,50.4463785],[11.2541259,50.4464218],[11.2539934,50.4464741],[11.2539076,50.4465082],[11.253861,50.4465424],[11.2538001,50.4465858],[11.2537498,50.4466268],[11.2536257,50.4466749],[11.2532777,50.4467972],[11.2531566,50.4468514],[11.2528322,50.4469967],[11.2525484,50.4471145],[11.2523008,50.4471889],[11.251875,50.4471988],[11.2515706,50.4471931],[11.2512486,50.4471987],[11.2509832,50.4472503],[11.250714,50.4473384],[11.2504124,50.4474608],[11.250204,50.4475537],[11.2498984,50.4477423],[11.2496036,50.4478897],[11.2492914,50.4479914],[11.2489219,50.4481043],[11.2489111,50.4481095],[11.2486415,50.4482404],[11.2486197,50.4482491],[11.2482113,50.4484118],[11.2480118,50.4485127],[11.2480107,50.4485132],[11.247924,50.4485569],[11.2477322,50.4486661],[11.2474708,50.4488148],[11.2473494,50.4488839],[11.2470091,50.4489467],[11.2463508,50.4491038],[11.246324,50.4491101],[11.2463105,50.4491135],[11.2462137,50.4491359],[11.2461848,50.4491746],[11.2461949,50.4492524],[11.2462477,50.4493553],[11.2463147,50.4494903],[11.246357,50.4496246],[11.2463671,50.4496572],[11.2463639,50.449724],[11.2463628,50.4497486],[11.2463334,50.4498672],[11.246308,50.4498993],[11.2462757,50.4499401],[11.2461605,50.4500356],[11.2461574,50.4500389],[11.2460812,50.4501199],[11.2460483,50.4502065],[11.2460692,50.4502684],[11.2461903,50.4503463],[11.2463509,50.4503857],[11.2465403,50.4504138],[11.2467617,50.450451],[11.247015,50.4505386],[11.247272,50.4506308],[11.2473928,50.4507249],[11.2474598,50.450837],[11.247534,50.4509697],[11.2476011,50.451107],[11.2476506,50.4511734],[11.2477645,50.4512263],[11.2479287,50.4512863],[11.248082,50.4513507],[11.2482111,50.4513956],[11.2484041,50.4514581],[11.2485787,50.451548],[11.2486194,50.4515813],[11.2487103,50.4516559],[11.2487843,50.4517911],[11.2488587,50.451892],[11.249036,50.4521006],[11.2491781,50.4522451],[11.2492488,50.4523437],[11.2492904,50.4524993],[11.249318,50.4526343],[11.2493849,50.452774],[11.2494843,50.4528795],[11.2497866,50.4531047],[11.2502032,50.4533965],[11.2508265,50.4537738],[11.2514611,50.4541077],[11.2520268,50.4544011],[11.2521312,50.4544554],[11.2521767,50.4544792],[11.2528085,50.45481],[11.2534681,50.4551439],[11.2540887,50.4554387],[11.254577,50.4557527],[11.2548922,50.4560394],[11.2550543,50.4563031],[11.2550888,50.4565478],[11.2550633,50.4567962],[11.2549885,50.4570446],[11.254912,50.457225],[11.2547706,50.457437],[11.2546474,50.4576285],[11.2544842,50.457799],[11.2543982,50.4578888],[11.2541317,50.4582083],[11.2540289,50.4583313],[11.2537354,50.4586659],[11.2536101,50.458859],[11.2535635,50.4590125],[11.253525,50.4592501],[11.253517,50.4594098],[11.2535112,50.459522],[11.2534791,50.4597513],[11.2534648,50.4598531],[11.2534096,50.4599877],[11.253286,50.4601471],[11.2531021,50.4602881],[11.2528027,50.4604947],[11.2526077,50.4606492],[11.2524951,50.4608019],[11.2524183,50.4609501],[11.25242,50.4611168],[11.2524148,50.4612069],[11.2523714,50.4619622],[11.2523906,50.4624879],[11.2524217,50.4629198],[11.2523927,50.4630555],[11.2523575,50.4632212],[11.2523018,50.4634038],[11.252211,50.4635314],[11.2521342,50.4636077],[11.2520372,50.4637043],[11.2517812,50.4638769],[11.2514243,50.4641039],[11.2512436,50.464263],[11.2511954,50.4643183],[11.2510805,50.4644498],[11.2510083,50.4645642],[11.2509735,50.4646195],[11.2508693,50.4647847],[11.2507236,50.4650081],[11.2505956,50.4651705],[11.2504223,50.4653906],[11.2502151,50.4656685],[11.2499261,50.465921],[11.2496876,50.4661279],[11.2491577,50.4664706],[11.248619,50.466806],[11.2484764,50.4668949],[11.2483576,50.4669516],[11.2482099,50.4669898],[11.2479979,50.4670576],[11.2477811,50.4671901],[11.2476228,50.4672988],[11.2474398,50.4674253],[11.2473251,50.467517],[11.247225,50.4676104],[11.2471632,50.4676985],[11.2470972,50.4677986],[11.2470469,50.4678935],[11.2469655,50.4680223],[11.246855,50.4681542],[11.2466951,50.4683304],[11.2466001,50.4684381],[11.2464411,50.4685742],[11.2462962,50.4686921],[11.2461123,50.4688696],[11.2459971,50.4689632],[11.2458574,50.4690799],[11.2457704,50.4691653],[11.2456805,50.4692929],[11.2455866,50.4694585],[11.2455353,50.4695751],[11.2454434,50.4697344],[11.2453352,50.4699465],[11.2452535,50.4701065],[11.2451627,50.4702568],[11.2451075,50.4703648],[11.2450427,50.4705262],[11.2450254,50.4706547],[11.2450243,50.4707731],[11.2450259,50.4709949],[11.2450346,50.4711788],[11.2450547,50.4713681],[11.2450536,50.4714828],[11.2450559,50.4715964],[11.2450799,50.4717096],[11.2451369,50.4718143],[11.2452475,50.4719966],[11.2454168,50.4722548],[11.2455392,50.4724503],[11.2457154,50.4727016],[11.2457691,50.4727842],[11.2458103,50.4728477],[11.2458776,50.4729417],[11.2459259,50.473009],[11.2459979,50.4731123],[11.2460425,50.4731761],[11.2461578,50.4733368],[11.2462632,50.4734735],[11.2464022,50.4736218],[11.2465527,50.4737887],[11.2466945,50.4739558],[11.2468085,50.4741152],[11.2469136,50.4742874],[11.2470061,50.4744627],[11.2470676,50.4746501],[11.247113,50.4747976],[11.2471572,50.4749497],[11.2472473,50.4751672],[11.2473089,50.4753407],[11.2473456,50.475519],[11.2473474,50.4757303],[11.2473274,50.4759287],[11.2473071,50.4760967],[11.2472433,50.4762778],[11.2471504,50.4764359],[11.2470873,50.4765729],[11.2470678,50.4767007],[11.2470968,50.4768308],[11.2471234,50.4770402],[11.2471778,50.4772635],[11.2472194,50.4774548],[11.2472566,50.4776496],[11.2472983,50.4778036],[11.2473231,50.4778948],[11.2474045,50.4780497],[11.2475237,50.4782233],[11.2476729,50.4783737],[11.2477983,50.4784817],[11.2479454,50.4786151],[11.2480762,50.4787178],[11.2482088,50.4788352],[11.2484308,50.4790474],[11.2485976,50.4791784],[11.2486188,50.4791913],[11.2490706,50.4794706],[11.249405,50.4796641],[11.2497037,50.4798459],[11.2501802,50.4801359],[11.2506569,50.4804214],[11.250938,50.4805757],[11.2510804,50.4806425],[11.251234,50.4806913],[11.2518127,50.4807966],[11.252163,50.4808552],[11.252463,50.4809159],[11.2526849,50.480926],[11.2529609,50.4809158],[11.2532824,50.4809674],[11.2538577,50.4810728],[11.2544399,50.4812056],[11.2552075,50.4814053],[11.255768,50.4815586],[11.2562214,50.4816703],[11.2567249,50.4817958],[11.2569966,50.4818313],[11.2572615,50.4818416],[11.2576197,50.4818339],[11.2579386,50.4818102],[11.2582505,50.4817681],[11.258559,50.4817191],[11.2587673,50.4816583],[11.2590155,50.4815519],[11.259235,50.4814501],[11.2594647,50.4813939],[11.2595415,50.4813771],[11.2596842,50.4813458],[11.2598249,50.481315],[11.2598516,50.4813091],[11.2600892,50.4812572],[11.2603586,50.4811875],[11.2607176,50.4810999],[11.2608873,50.4810766],[11.2612519,50.4810268],[11.2619226,50.4809062],[11.2626429,50.4808613],[11.2639008,50.4807364],[11.2644522,50.4807187],[11.2645522,50.480651],[11.2650564,50.480154],[11.2650904,50.4799918],[11.2651578,50.4795918],[11.2652301,50.4792737],[11.2662549,50.4789136],[11.2668056,50.479302],[11.267186,50.4795459],[11.2676595,50.4798107],[11.2682114,50.4800965],[11.2687065,50.4803476],[11.2694109,50.4807572],[11.2698412,50.4810378],[11.2704173,50.4813945],[11.270958,50.4817418],[11.2714239,50.4820363],[11.2716829,50.4822498],[11.2719536,50.4823857],[11.2722007,50.4825013],[11.2723776,50.4825841],[11.2727166,50.4826951],[11.2730882,50.4827744],[11.2736851,50.4828523],[11.2742707,50.4830078],[11.2746658,50.4825456],[11.274887,50.4822882],[11.2750568,50.4821541],[11.2753121,50.4820546],[11.2755705,50.4819986],[11.2759933,50.4819615],[11.2764623,50.4819611],[11.2767883,50.4819487],[11.2771648,50.4818863],[11.2774558,50.4818052],[11.2777756,50.4816946],[11.2780348,50.4815562],[11.2782257,50.4814474],[11.278402,50.4813704],[11.2785774,50.4813711],[11.278885,50.4814043],[11.2791351,50.4814488],[11.2792528,50.4815064],[11.2795117,50.4817429],[11.2795894,50.4818323],[11.2795467,50.4819279],[11.2795454,50.4819304],[11.2793426,50.4821604],[11.2790605,50.4824242],[11.2787029,50.4827245],[11.2779632,50.4832721],[11.2784464,50.4832855],[11.2788508,50.4833009],[11.2792233,50.4832956],[11.2794452,50.4832919],[11.2796741,50.4833271],[11.279887,50.4833939],[11.2800015,50.4834298],[11.2801023,50.4834615],[11.2807736,50.4836447],[11.2813017,50.4838251],[11.281829,50.4840718],[11.2822251,50.4842129],[11.2826029,50.484372],[11.2825843,50.4841023],[11.282597,50.4839035],[11.2826664,50.4837781],[11.2828011,50.483909],[11.2829709,50.4841153],[11.2830757,50.4843511],[11.2831414,50.4845753],[11.2831795,50.484708],[11.2832617,50.4847335],[11.2834152,50.4847661],[11.2835744,50.4847957],[11.2841943,50.4849109],[11.2842985,50.4849347],[11.2846106,50.4850062],[11.2846623,50.4850179],[11.2850948,50.4850906],[11.2858201,50.4852534],[11.2864385,50.485345],[11.286921,50.4854338],[11.2873861,50.4854722],[11.2882065,50.4854322],[11.2885324,50.485422],[11.288826,50.4854277],[11.2891437,50.4855228],[11.2892674,50.4853592],[11.2894125,50.4851673],[11.2896952,50.4848165],[11.2899895,50.4845436],[11.2900459,50.4844911],[11.2901365,50.4844081],[11.2903314,50.4842295],[11.2904048,50.4840653],[11.2904351,50.4839101],[11.2904901,50.4837799],[11.2905879,50.4836729],[11.2907255,50.483525],[11.2907591,50.4833812],[11.2907574,50.4831914],[11.2907269,50.4830314],[11.2906392,50.4828573],[11.2906342,50.482846],[11.2906318,50.4828408],[11.2906294,50.4828354],[11.2905656,50.4826925],[11.2904924,50.482498],[11.2904437,50.4823538],[11.2904271,50.4822235],[11.2905717,50.4817443],[11.2907873,50.4809727],[11.2908269,50.4808559],[11.2908289,50.4808501],[11.2908501,50.4807878],[11.2909737,50.4805964],[11.29102,50.4805292],[11.2911264,50.4803753],[11.2912928,50.4801977],[11.2914772,50.4800226],[11.2916263,50.4798083],[11.2917498,50.4796259],[11.2918342,50.4794321],[11.2919306,50.4790966],[11.2919622,50.4788202],[11.2919017,50.4787674],[11.2917636,50.4786343],[11.291547,50.4784551],[11.2914275,50.478233],[11.2912479,50.4779398],[11.2910928,50.4776992],[11.2908309,50.4773988],[11.290637,50.4771033],[11.2904426,50.476874],[11.2901798,50.4766581],[11.2901062,50.4765093],[11.2907046,50.4764545],[11.2905261,50.476054],[11.2905693,50.4760338],[11.2907348,50.4759565],[11.2906648,50.4757939],[11.2904509,50.4757039],[11.291112,50.4754134],[11.2914956,50.4752447],[11.2917456,50.4751401],[11.2918486,50.4755564],[11.2919214,50.4757967],[11.2920041,50.4761032],[11.2921581,50.4764649],[11.2923149,50.4768768],[11.2924567,50.4773642],[11.2925644,50.4776868],[11.2926408,50.4778749],[11.2926657,50.4779363],[11.2928315,50.4781747],[11.2930223,50.4784199],[11.2933766,50.4787915],[11.2934506,50.4789129],[11.2934954,50.4790959],[11.2935552,50.4791784],[11.2937008,50.4792955],[11.2939854,50.4794932],[11.2945106,50.4799432],[11.294773,50.4801933],[11.2951028,50.4805008],[11.2953756,50.4808058],[11.2955387,50.4809573],[11.2956198,50.481081],[11.2955729,50.4811105],[11.2957963,50.4813286],[11.2959981,50.4815441],[11.2960593,50.4813036],[11.2960763,50.4812587],[11.2961894,50.4810444],[11.2963774,50.4808577],[11.2965757,50.4807374],[11.2967517,50.4806719],[11.2969888,50.4805997],[11.29767,50.4805019],[11.2983433,50.4811946],[11.2985136,50.4813437],[11.2986473,50.481582],[11.298806,50.4820293],[11.2986265,50.4820904],[11.2984,50.4821877],[11.2981868,50.4823127],[11.2980712,50.482367],[11.2980416,50.482561],[11.2982949,50.4826603],[11.2987588,50.4828083],[11.2991365,50.4829835],[11.2995639,50.4832115],[11.3000091,50.4834692],[11.3003725,50.4836328],[11.3007718,50.4838103],[11.3012025,50.4840611],[11.3013446,50.4841713],[11.3014997,50.4843505],[11.3015252,50.48438],[11.3017625,50.4846346],[11.301974,50.4849622],[11.3021466,50.4852646],[11.3021752,50.4853264],[11.3023079,50.4856148],[11.3023595,50.4858115],[11.3024184,50.4860128],[11.3024493,50.4861524],[11.3025489,50.4862421],[11.3026124,50.4862993],[11.3027439,50.486414],[11.3029166,50.4863187],[11.3030082,50.4864859],[11.3031291,50.4865572],[11.3025171,50.486893],[11.3022871,50.4869745],[11.3019854,50.4870646],[11.3016338,50.4871363],[11.3012787,50.4871853],[11.3007193,50.4872584],[11.3001998,50.4872907],[11.2995332,50.4873452],[11.2997568,50.4875473],[11.300002,50.4877401],[11.3003039,50.4879766],[11.3004356,50.4880777],[11.3005882,50.4881949],[11.3007733,50.4883168],[11.3010235,50.4883702],[11.3016028,50.4884457],[11.3018257,50.4883528],[11.3020013,50.4883375],[11.3023305,50.4883686],[11.3026917,50.4884202],[11.3028505,50.4884708],[11.303407,50.4886481],[11.3035483,50.4886932],[11.3042584,50.4889542],[11.3043718,50.4889924],[11.304601,50.4890698],[11.3049554,50.4890849],[11.3053816,50.4890774],[11.3055405,50.4890699],[11.3057968,50.4890579],[11.3059226,50.489052],[11.3062197,50.4890554],[11.3066217,50.4889611],[11.3070346,50.4888666],[11.3075373,50.4887292],[11.3076234,50.4887121],[11.3078861,50.4886598],[11.3079258,50.4886817],[11.3079689,50.4887091],[11.3080261,50.4887296],[11.3080905,50.4887455],[11.3081657,50.4887409],[11.3082479,50.4887271],[11.3083874,50.4887134],[11.3084911,50.4886973],[11.3086163,50.4886926],[11.3087773,50.4886765],[11.3090063,50.4886787],[11.3091781,50.4886945],[11.3092998,50.488715],[11.3094145,50.4887355],[11.3094968,50.4887697],[11.3095719,50.4888152],[11.3096471,50.4888495],[11.3098011,50.4888951],[11.3099372,50.4889247],[11.3100769,50.4889588],[11.3102272,50.4889907],[11.3103775,50.4890225],[11.3105457,50.4890521],[11.310711,50.4890731],[11.3108644,50.4890969],[11.3109645,50.4891061],[11.3110575,50.4891197],[11.3111362,50.4891403],[11.3112078,50.4891654],[11.3112113,50.4891667],[11.3112829,50.4891927],[11.311351,50.4892019],[11.3114833,50.4892087],[11.3116263,50.4892086],[11.3117408,50.4892018],[11.311866,50.4891858],[11.3119911,50.4891721],[11.3120447,50.4891675],[11.3121145,50.4891629],[11.3121164,50.4891629],[11.3121915,50.4891743],[11.3122594,50.4891902],[11.3123382,50.4892062],[11.3124205,50.4892198],[11.312578,50.489238],[11.3126315,50.4892426],[11.3127281,50.4892312],[11.3127889,50.4892175],[11.312864,50.4891992],[11.3129177,50.4891923],[11.3129714,50.4892014],[11.3130214,50.4892174],[11.3130823,50.4892288],[11.3131252,50.4892333],[11.313168,50.4892311],[11.3131968,50.4892174],[11.3132146,50.4892037],[11.3132325,50.4891899],[11.3132574,50.489174],[11.3133075,50.4891671],[11.3133505,50.4891693],[11.3134076,50.4891625],[11.3134863,50.4891465],[11.3135901,50.4891328],[11.3136974,50.4891213],[11.3137975,50.4891099],[11.3138869,50.489119],[11.3148098,50.4892258],[11.3149101,50.4892374],[11.3150353,50.4892351],[11.3150809,50.4892298],[11.315114,50.4892259],[11.315164,50.4892282],[11.3152321,50.4892305],[11.3153,50.4892465],[11.315368,50.4892693],[11.3154251,50.489292],[11.3154645,50.489308],[11.315504,50.4893172],[11.3155469,50.489308],[11.3155968,50.4893148],[11.3156399,50.489308],[11.3156935,50.4892988],[11.3157364,50.4892851],[11.3158008,50.489276],[11.3159011,50.489285],[11.3160226,50.4892873],[11.3161335,50.4892873],[11.3162159,50.489285],[11.3163051,50.4892758],[11.3163731,50.4892644],[11.316434,50.4892529],[11.3164696,50.4892438],[11.3165412,50.4892347],[11.3166307,50.4892278],[11.3173067,50.4891842],[11.3174138,50.4891774],[11.3174783,50.4891773],[11.3175034,50.4891773],[11.3175285,50.4891773],[11.3175499,50.4891888],[11.3175643,50.4892002],[11.3175749,50.4892138],[11.3175964,50.4892207],[11.3176393,50.4892275],[11.3176715,50.4892229],[11.3176966,50.4892161],[11.3177252,50.4892252],[11.3177502,50.4892366],[11.3177753,50.4892435],[11.3178146,50.4892388],[11.3178648,50.4892411],[11.3178719,50.489248],[11.3179398,50.4892525],[11.3179791,50.4892593],[11.3180186,50.4892616],[11.3180472,50.4892639],[11.3180757,50.489257],[11.3180901,50.4892456],[11.3181044,50.4892341],[11.3181258,50.4892136],[11.3181474,50.4891908],[11.3181544,50.4891794],[11.3181723,50.4891588],[11.3181973,50.4891384],[11.3182115,50.4891269],[11.3182438,50.4891177],[11.3182867,50.4891199],[11.3183117,50.4891109],[11.3183796,50.4891086],[11.3184441,50.4890926],[11.3185011,50.4890788],[11.3185405,50.4890651],[11.318587,50.4890469],[11.318637,50.4890285],[11.31868,50.4890195],[11.318705,50.4890148],[11.3187407,50.489008],[11.3187621,50.4889874],[11.318773,50.4889691],[11.3187837,50.4889532],[11.3188087,50.4889304],[11.3188337,50.4889075],[11.318873,50.4888847],[11.3188944,50.4888733],[11.3189337,50.4888573],[11.318973,50.4888459],[11.3190016,50.488839],[11.319041,50.4888367],[11.3190769,50.4888412],[11.3191091,50.4888481],[11.3191413,50.4888618],[11.3191627,50.4888755],[11.3191914,50.4888914],[11.3192094,50.4889211],[11.3192344,50.4889142],[11.3192772,50.4889302],[11.3193095,50.4889393],[11.3193453,50.4889439],[11.3194168,50.4889324],[11.3194632,50.4889142],[11.319517,50.4888913],[11.3195849,50.4888617],[11.3196277,50.488841],[11.3196885,50.4888182],[11.319735,50.4887999],[11.3197635,50.4887863],[11.3198028,50.4887748],[11.3198351,50.4887656],[11.31986,50.4887565],[11.3199102,50.4887565],[11.3200425,50.4887611],[11.3201605,50.4887724],[11.3202858,50.4887883],[11.3203716,50.4888021],[11.3204396,50.4888134],[11.3205005,50.4888249],[11.3205737,50.4888343],[11.3206292,50.4888476],[11.3207044,50.4888567],[11.3207509,50.4888544],[11.3209047,50.4891349],[11.3210463,50.4893842],[11.3212485,50.4897023],[11.3215507,50.4900321],[11.3218963,50.4903117],[11.3221849,50.4905478],[11.3223562,50.4906441],[11.3226422,50.49075],[11.3229923,50.4908697],[11.3232066,50.4909594],[11.3233514,50.4912956],[11.3233219,50.4914212],[11.3233135,50.4916176],[11.3233825,50.4920221],[11.3233953,50.4922734],[11.3233657,50.4924287],[11.3231925,50.492611],[11.3229867,50.4928527],[11.3229395,50.4929667],[11.3229571,50.4930193],[11.3230572,50.4930493],[11.32354,50.4931488],[11.3238514,50.4932089],[11.3240263,50.4932689],[11.3241263,50.4933286],[11.3242293,50.4934682],[11.3245599,50.4938779],[11.3247513,50.4941663],[11.3247969,50.4943149],[11.324794,50.4943766],[11.3247889,50.4944839],[11.324763,50.4945877],[11.3247336,50.4947054],[11.3247182,50.4948676],[11.3247243,50.4950388],[11.3247785,50.4955416],[11.3247622,50.4957359],[11.3247552,50.4958203],[11.3247911,50.4959546],[11.3247936,50.4959643],[11.3248928,50.4961519],[11.3249885,50.4962961],[11.3250453,50.4964753],[11.3250525,50.4964984],[11.3250623,50.4965292],[11.3250742,50.496601],[11.3250804,50.4966392],[11.325114,50.4968446],[11.3251617,50.4972377],[11.3251489,50.4975735],[11.3250904,50.4977584],[11.3250784,50.4979479],[11.3250876,50.4981993],[11.3250718,50.4984186],[11.3250104,50.4985052],[11.324852,50.4986281],[11.3244748,50.4987916],[11.3244314,50.4988131],[11.3244261,50.4988157],[11.3238998,50.4990757],[11.3234799,50.4992002],[11.323268,50.4992978],[11.3230381,50.4993887],[11.3229373,50.4994683],[11.322883,50.4995594],[11.3227502,50.4996808],[11.3226723,50.4998613],[11.3226912,50.5000736],[11.3228265,50.500704],[11.3228775,50.5009879],[11.3229146,50.5011948],[11.3229166,50.5012014],[11.3229451,50.5012948],[11.3230053,50.5014915],[11.3231088,50.5017643],[11.3231229,50.5018013],[11.3231611,50.5019023],[11.3231803,50.5020143],[11.3232199,50.5022471],[11.3232106,50.502544],[11.3231427,50.5026363],[11.3231375,50.5026434],[11.3230577,50.5027521],[11.3227011,50.5030633],[11.3222878,50.5034775],[11.3219964,50.5039189],[11.3219304,50.5040121],[11.3216762,50.5043717],[11.3213778,50.5048816],[11.3212754,50.5051924],[11.3211731,50.505526],[11.3211637,50.5058252],[11.3211536,50.5063243],[11.3211806,50.506403],[11.3211694,50.5070768],[11.3211723,50.5071174],[11.3211725,50.507121],[11.3211791,50.5072104],[11.3212151,50.5077025],[11.3212819,50.5081889],[11.3213401,50.5084195],[11.3214123,50.5085679],[11.3218358,50.5088046],[11.3230837,50.5092865],[11.3235358,50.5095026],[11.3242783,50.5098233],[11.3249953,50.5100823],[11.3253792,50.5102347],[11.3256262,50.5102571],[11.3260269,50.5101901],[11.3264235,50.5100523],[11.3267273,50.5099238],[11.3271352,50.5098934],[11.3275861,50.5098697],[11.3284238,50.5098338],[11.3289315,50.5097117],[11.329361,50.509695],[11.3298156,50.5096851],[11.3301422,50.5096327],[11.3302197,50.5096203],[11.3307456,50.5095439],[11.3313255,50.5095246],[11.3319126,50.5095394],[11.3319406,50.5095409],[11.3329367,50.5095922],[11.3337136,50.509625],[11.334426,50.5096099],[11.3350165,50.5095745],[11.335247,50.5095839],[11.3357182,50.5096029],[11.336542,50.5096949],[11.3372658,50.5098305],[11.3379396,50.5099731],[11.338506,50.5101799],[11.3387233,50.5102466],[11.3392805,50.5104181],[11.340033,50.5105788],[11.3404631,50.5106761],[11.340925,50.5106821],[11.3414078,50.5105852],[11.3420012,50.5104173],[11.3424123,50.5103091],[11.3426839,50.5101967],[11.3428801,50.510089],[11.3430663,50.5100748],[11.3433065,50.5101361],[11.3434752,50.5102224],[11.3439026,50.5105276],[11.3441544,50.5107784],[11.34432,50.5109424],[11.3445569,50.5110721],[11.3448258,50.5111585],[11.345349,50.5112396],[11.3462986,50.511418],[11.3467356,50.5115063],[11.3469544,50.5116041],[11.3469944,50.5117044],[11.3470003,50.5121658],[11.3470462,50.5127322],[11.3470988,50.5132071],[11.347072,50.5135932],[11.3470265,50.5137942],[11.3468877,50.5139499],[11.3465132,50.5142498],[11.3462673,50.5144628],[11.3461001,50.5146959],[11.3460251,50.5149437],[11.3460302,50.5150182],[11.3461349,50.5152075],[11.3462616,50.5154539],[11.3462983,50.5156456],[11.3461598,50.515863],[11.3458146,50.5162748],[11.3453908,50.5167416],[11.344663,50.5172592],[11.3439927,50.5178292],[11.3436503,50.5180812],[11.3434293,50.5182644],[11.3432799,50.5184885],[11.343199,50.5187742],[11.3432477,50.5192013],[11.3432887,50.5195277],[11.3434014,50.5198496],[11.3435711,50.5201689],[11.3438517,50.5204219],[11.3441858,50.5206473],[11.344609,50.5207789],[11.3453513,50.5210195],[11.346126,50.5212577],[11.3467213,50.5214416],[11.3476121,50.5205741],[11.3480502,50.5201027],[11.3481609,50.5200705],[11.3484515,50.520175],[11.3491226,50.5204522],[11.3496679,50.5206726],[11.3500761,50.5206741],[11.3507132,50.5206316],[11.3513039,50.5206168],[11.3521954,50.5205897],[11.3529579,50.5205539],[11.3536054,50.5204474],[11.3541634,50.5203298],[11.3546497,50.5201987],[11.3550721,50.520184],[11.3554625,50.5202015],[11.3561932,50.520241],[11.3567337,50.5202079],[11.3572416,50.5201109],[11.3576634,50.5199912],[11.357835,50.5199269],[11.3583058,50.5202822],[11.3588055,50.5206351],[11.3592185,50.5208467],[11.3596237,50.5209919],[11.3598998,50.5210599],[11.3601357,50.5209977],[11.3605505,50.5208552],[11.3613444,50.5206867],[11.3621392,50.5206485],[11.3628921,50.5206998],[11.3636082,50.520844],[11.3641104,50.5210006],[11.3645368,50.5210704],[11.3648915,50.5211061],[11.3651959,50.5211032],[11.3656123,50.5212965],[11.3663917,50.5217515],[11.3669664,50.5220746],[11.3674222,50.5222493],[11.3679352,50.5224128],[11.3683905,50.5225282],[11.3687632,50.5225776],[11.3690318,50.522609],[11.3691721,50.5227092],[11.3693632,50.5229325],[11.36955,50.5230738],[11.3698193,50.5231668],[11.3702456,50.5232047],[11.3705996,50.5231354],[11.371111,50.5230018],[11.3715537,50.5229069],[11.3720265,50.5228055],[11.3727205,50.5226738],[11.3732087,50.5226257],[11.3733294,50.522573],[11.3735211,50.5224917],[11.3736066,50.5224567],[11.3737275,50.5224147],[11.3738344,50.5223842],[11.3739419,50.5223833],[11.3740854,50.5224006],[11.3742079,50.522434],[11.3743126,50.5224765],[11.3746695,50.5225945],[11.3747126,50.5226082],[11.3747815,50.5226467],[11.3748603,50.5226484],[11.3749598,50.5226087],[11.3750377,50.5225556],[11.3751423,50.5224701],[11.3751647,50.5224519],[11.3752455,50.5223758],[11.375407,50.5222032],[11.3755474,50.5220514],[11.3757127,50.5218924],[11.375836,50.5217865],[11.3759739,50.5216917],[11.3761369,50.5216038],[11.3763181,50.5215224],[11.3766389,50.5214401],[11.3769562,50.5213622],[11.3772131,50.52131],[11.3774593,50.5212533],[11.377734,50.5211987],[11.3780586,50.5211277],[11.3783832,50.5210613],[11.3786651,50.521002],[11.3789072,50.5209249],[11.3790848,50.5208503],[11.3793329,50.5207113],[11.3795313,50.520598],[11.3798458,50.5204357],[11.3798505,50.5204333],[11.3800344,50.5203086],[11.3801858,50.5201703],[11.3803623,50.5200365],[11.3805424,50.5199003],[11.3806374,50.5198241],[11.3809098,50.5196326],[11.3812566,50.5194197],[11.3816139,50.5191885],[11.3819498,50.5189552],[11.3821441,50.5188212],[11.3824301,50.5186043],[11.3825251,50.5185273],[11.3827087,50.5183783],[11.3829618,50.5181319],[11.3830781,50.5180351],[11.3832127,50.5179541],[11.3833369,50.5178937],[11.3834572,50.5178197],[11.3835275,50.5177505],[11.3835833,50.5176748],[11.3836218,50.5176265],[11.3836708,50.5175691],[11.38372,50.5175116],[11.3837759,50.5174358],[11.3838495,50.5173666],[11.3839412,50.5172837],[11.3840008,50.5172215],[11.384025,50.5171733],[11.384045,50.5171024],[11.3840726,50.5170428],[11.3840998,50.5169694],[11.3841988,50.5168956],[11.3843617,50.5167984],[11.3849255,50.5165063],[11.3853439,50.5162905],[11.3858168,50.5161111],[11.3861299,50.5160036],[11.3862509,50.5159706],[11.3864009,50.5159489],[11.3865867,50.5159201],[11.3867505,50.5158732],[11.3869571,50.5158099],[11.3873102,50.5157409],[11.387699,50.5156535],[11.3878103,50.5156372],[11.3879634,50.5156148],[11.3882136,50.5155993],[11.3884032,50.5155841],[11.3885644,50.5155942],[11.3887119,50.5156205],[11.3888704,50.5156719],[11.3889968,50.5157188],[11.3891268,50.5157773],[11.3891515,50.5157913],[11.3892691,50.5159156],[11.3892956,50.5159907],[11.3892903,50.5160845],[11.3892586,50.5162949],[11.3893081,50.5164453],[11.3893743,50.5165317],[11.3895271,50.5166606],[11.3897661,50.5167936],[11.3900333,50.5169081],[11.390344,50.5170427],[11.3906439,50.5171753],[11.3909294,50.5173101],[11.3912044,50.517452],[11.3916309,50.5176543],[11.3919169,50.5178029],[11.3922241,50.5179468],[11.3924048,50.5180414],[11.3925278,50.5180929],[11.3926834,50.518174],[11.3928432,50.5182893],[11.3930393,50.5184248],[11.3932032,50.5185652],[11.3933591,50.5186713],[11.393452,50.5187659],[11.3935017,50.5188165],[11.3936803,50.5189751],[11.3937932,50.5190678],[11.3939346,50.5191512],[11.3941188,50.5192343],[11.3943242,50.5192991],[11.3946014,50.51937],[11.3948313,50.5194048],[11.3950577,50.5194488],[11.395306,50.5194994],[11.3955252,50.5195366],[11.3957227,50.5195625],[11.3958732,50.5195704],[11.3960238,50.5195761],[11.3961629,50.5195742],[11.3960217,50.51942],[11.3957643,50.5190659],[11.395638,50.5188513],[11.3951514,50.5179895],[11.3951622,50.5179802],[11.3951808,50.5179644],[11.3952858,50.5179172],[11.3953088,50.5179069],[11.3953229,50.5179009],[11.3953971,50.5178688],[11.3954617,50.5177733],[11.395506,50.5177291],[11.3955459,50.5176889],[11.3956372,50.5175974],[11.3957854,50.5174447],[11.3960766,50.5171448],[11.3963442,50.5169143],[11.3966092,50.5167249],[11.3968288,50.5165998],[11.3970424,50.5165098],[11.3970775,50.5164951],[11.3972836,50.516409],[11.3976184,50.516315],[11.3978966,50.5162625],[11.3981933,50.5162329],[11.3983972,50.5162222],[11.3986441,50.5162111],[11.3988373,50.5161959],[11.3991089,50.5161596],[11.3993157,50.5161191],[11.3994939,50.516072],[11.3997185,50.5160223],[11.3999435,50.5159886],[11.4001939,50.515887],[11.4002798,50.515852],[11.4003729,50.5158521],[11.4005162,50.5158543],[11.4005665,50.5158634],[11.4006149,50.5158694],[11.4006431,50.5158726],[11.4009363,50.5158539],[11.401051,50.5158552],[11.4012278,50.5158595],[11.4012624,50.5158602],[11.4014194,50.5158315],[11.4016919,50.5158452],[11.4016944,50.5158453],[11.4018498,50.5158597],[11.4019681,50.5158645],[11.4020505,50.5158535],[11.4021944,50.5158402],[11.4024752,50.515804],[11.4026461,50.5157568],[11.4026596,50.515755],[11.4036886,50.5156175],[11.4038847,50.5155724],[11.4039951,50.5155441],[11.4041337,50.515504],[11.4042969,50.5154272],[11.4044972,50.5153687],[11.4048884,50.5154614],[11.405157,50.5154915],[11.4054365,50.5154369],[11.4056591,50.515307],[11.4059317,50.5152023],[11.4062327,50.5151569],[11.4065803,50.5151574],[11.4068239,50.5151371],[11.4070464,50.5150346],[11.4072292,50.5149708],[11.4074406,50.5149825],[11.4076311,50.5150137],[11.4079397,50.515135],[11.4080321,50.5150998],[11.4080879,50.51504],[11.4082469,50.5149312],[11.4083739,50.5148548],[11.4085127,50.5148124],[11.4087554,50.5147761],[11.4091099,50.5147981],[11.409236,50.5148061],[11.4093944,50.5148412],[11.4095357,50.5149154],[11.4096442,50.5149715],[11.4097949,50.514977],[11.4099532,50.5150099],[11.4101367,50.515054],[11.4102139,50.5150613],[11.4102911,50.5150686],[11.4103204,50.5150791],[11.410385,50.5151276],[11.4104355,50.515197],[11.4108101,50.5152218],[11.410908,50.5152802],[11.4111869,50.5153252],[11.4115506,50.515355],[11.4118008,50.515407],[11.4121151,50.5154259],[11.4123845,50.5154865],[11.4124786,50.5155268],[11.4126189,50.5155599],[11.412712,50.5155568],[11.4129304,50.5155502],[11.413135,50.5155805],[11.4132107,50.515598],[11.41339,50.5156125],[11.4134119,50.5155936],[11.4134464,50.515564],[11.4134768,50.5154906],[11.4135946,50.5154667],[11.4139926,50.5154907],[11.4140744,50.5154671],[11.4141822,50.5154867],[11.4143157,50.5155289],[11.4146167,50.5156998],[11.4147891,50.5157121],[11.4149465,50.5157129],[11.4151471,50.5157157],[11.4152617,50.5157208],[11.4154482,50.5157292],[11.4156057,50.5157254],[11.4158391,50.5157508],[11.4160328,50.5157628],[11.4161866,50.5157546],[11.416369,50.515746],[11.4165513,50.5157308],[11.4167881,50.5157492],[11.417273,50.5158135],[11.4177102,50.5159877],[11.4178357,50.5159913],[11.4179967,50.5159898],[11.4184423,50.5160545],[11.4185534,50.5160373],[11.4188584,50.51606],[11.419138,50.5160283],[11.4194675,50.5160905],[11.4199007,50.5161984],[11.4202194,50.5162148],[11.4207284,50.5161606],[11.4209569,50.5160801],[11.4210458,50.5160441],[11.4210491,50.5160427],[11.4211525,50.516019],[11.421271,50.5160339],[11.4213323,50.5160517],[11.4219466,50.5159753],[11.4220537,50.515963],[11.422208,50.5159753],[11.4223233,50.5160132],[11.4225063,50.516023],[11.422565,50.5160275],[11.4226928,50.5160373],[11.4227884,50.5160387],[11.4227932,50.5160387],[11.422975,50.5161608],[11.4231679,50.5162],[11.4234128,50.5161888],[11.4237804,50.516023],[11.4241824,50.5157822],[11.4245527,50.5156084],[11.4246203,50.5155952],[11.4247985,50.515548],[11.4250406,50.51545],[11.4250588,50.5153479],[11.4252008,50.515276],[11.4253346,50.5152041],[11.4254051,50.5151318],[11.4254942,50.515088],[11.42568,50.5150633],[11.4258242,50.5149815],[11.425841,50.5149288],[11.4260814,50.5147942],[11.4260799,50.5147302],[11.4260859,50.514673],[11.4261606,50.5146518],[11.4262963,50.5146391],[11.4265035,50.5146167],[11.4266536,50.5145995],[11.4267352,50.5145622],[11.4268266,50.5144882],[11.4268865,50.5144443],[11.4269964,50.5143953],[11.4271059,50.5143281],[11.4272128,50.5142641],[11.427265,50.514233],[11.4274053,50.5141085],[11.4276203,50.5139489],[11.4276863,50.5138614],[11.4277309,50.5137743],[11.4277171,50.5136373],[11.4276903,50.5135644],[11.4276746,50.5134985],[11.4277231,50.5134272],[11.4278743,50.5133048],[11.4280397,50.5131707],[11.4281553,50.5130623],[11.4283316,50.5129352],[11.4285494,50.5127482],[11.4286379,50.512704],[11.428704,50.5126189],[11.428777,50.5125131],[11.4289252,50.5124228],[11.4291338,50.5122998],[11.4292202,50.512162],[11.4293293,50.5120742],[11.4294668,50.5119816],[11.4296004,50.5118775],[11.4296946,50.5117671],[11.4297582,50.5117255],[11.4298579,50.5116994],[11.4299547,50.5117053],[11.4300084,50.5117048],[11.430313,50.5115514],[11.4302864,50.5113278],[11.4300912,50.5112519],[11.4300683,50.5111835],[11.4300883,50.5111148],[11.4301193,50.5110619],[11.4301226,50.5108928],[11.4301334,50.5107375],[11.4301676,50.5106687],[11.4301983,50.5105952],[11.4308336,50.5103451],[11.430818,50.5102904],[11.4307585,50.5101882],[11.430699,50.5100929],[11.4307886,50.5097791],[11.4307878,50.5097425],[11.4307941,50.5097059],[11.4308432,50.5096552],[11.4309383,50.5095858],[11.4310303,50.5095393],[11.4312031,50.5094236],[11.4313659,50.5093398],[11.4314906,50.509309],[11.4316798,50.5092822],[11.4318731,50.5092781],[11.4320874,50.509258],[11.4321202,50.5092509],[11.4321979,50.5092341],[11.4322492,50.5091264],[11.4322511,50.509051],[11.4322494,50.5089847],[11.4322579,50.508875],[11.4323717,50.50872],[11.4324419,50.5086243],[11.4325515,50.5085639],[11.4326751,50.5084851],[11.4327991,50.5084247],[11.433141,50.5083416],[11.4332536,50.5082561],[11.4333311,50.5081961],[11.4334613,50.5080967],[11.433567,50.5080225],[11.4335609,50.5079106],[11.4335308,50.507847],[11.4335538,50.5077577],[11.4335873,50.5076546],[11.4336846,50.5075046],[11.4337688,50.5073921],[11.4338159,50.5073182],[11.4338108,50.5072505],[11.4337486,50.5071895],[11.4336902,50.5071351],[11.4336843,50.5070553],[11.4336747,50.5069296],[11.4337239,50.5068812],[11.4337742,50.5067324],[11.433714,50.5066072],[11.4336954,50.5065685],[11.4336871,50.5065252],[11.4336781,50.5064408],[11.433662,50.506361],[11.4336819,50.5062923],[11.4336874,50.5062237],[11.4336712,50.5061393],[11.4336804,50.5060684],[11.4339524,50.5059084],[11.4340657,50.5058457],[11.4341645,50.5057808],[11.4342412,50.5056933],[11.4342929,50.5056015],[11.4343264,50.5055007],[11.4343561,50.505393],[11.434372,50.5053038],[11.4344064,50.505235],[11.4344981,50.5051725],[11.4346327,50.5051141],[11.4346743,50.5050566],[11.4346625,50.5050019],[11.4345924,50.5049135],[11.4345334,50.5048363],[11.4344991,50.504743],[11.4344545,50.5046795],[11.4344105,50.5046272],[11.4343915,50.5045795],[11.4344109,50.5044925],[11.4344071,50.5044353],[11.4344055,50.5044126],[11.4346201,50.5042439],[11.4346414,50.5042157],[11.4346757,50.5041703],[11.4346352,50.5041158],[11.4346035,50.5041019],[11.4345592,50.5040824],[11.4345408,50.5040619],[11.4345468,50.5040092],[11.4346068,50.5039677],[11.434628,50.5039536],[11.4346526,50.5039375],[11.4347695,50.5038885],[11.434862,50.5038512],[11.4350605,50.5037648],[11.4352802,50.5036669],[11.4357103,50.5035059],[11.4358865,50.503365],[11.4359768,50.5032929],[11.4361567,50.503256],[11.4365195,50.5031986],[11.4368424,50.5031635],[11.4371646,50.5031489],[11.4374185,50.5031518],[11.4374846,50.5030955],[11.4375631,50.5029821],[11.4376222,50.5029097],[11.4377535,50.502829],[11.43788,50.5027779],[11.4380104,50.5027222],[11.4380409,50.5026586],[11.4380183,50.5025715],[11.4380838,50.5025334],[11.4381659,50.5025367],[11.4381923,50.5024936],[11.4382437,50.5024485],[11.4383186,50.5024539],[11.4384162,50.5024162],[11.4384289,50.5023456],[11.4384243,50.5022587],[11.4384265,50.5021833],[11.4384491,50.5021448],[11.438536,50.5021069],[11.4386163,50.5020529],[11.438671,50.5020147],[11.4387761,50.5019634],[11.4388623,50.5019552],[11.4389772,50.5019383],[11.439087,50.5018527],[11.4391178,50.5017799],[11.439145,50.5017026],[11.4391745,50.5016687],[11.4391852,50.5015477],[11.4392049,50.501484],[11.43925,50.5014137],[11.4393266,50.5013643],[11.4394091,50.5013515],[11.4394706,50.501327],[11.4394936,50.5012747],[11.439517,50.5012066],[11.4395395,50.5011679],[11.4396229,50.5011278],[11.4397378,50.5011108],[11.4398418,50.5011028],[11.43996,50.5010974],[11.4400736,50.5011261],[11.4401593,50.5011317],[11.4403166,50.5011312],[11.4404168,50.5011278],[11.440536,50.5010858],[11.4405842,50.5010269],[11.4406173,50.5009953],[11.4406969,50.5009688],[11.4408195,50.5009313],[11.4408891,50.5008705],[11.4409484,50.500798],[11.4409595,50.5007298],[11.4408314,50.500638],[11.4407781,50.5005853],[11.4407784,50.5005282],[11.4408108,50.5004987],[11.4408609,50.5004964],[11.4409024,50.5004497],[11.4409116,50.5004395],[11.4409221,50.5003955],[11.4409337,50.5003482],[11.4410236,50.5002936],[11.4410633,50.5002321],[11.4410497,50.5001452],[11.4410358,50.5000789],[11.4410257,50.4999967],[11.4409507,50.4999667],[11.440955,50.4998754],[11.4409169,50.4997138],[11.4409097,50.4996834],[11.4408898,50.4995614],[11.4408796,50.4995485],[11.4407533,50.4993906],[11.4406421,50.4992719],[11.4405311,50.4991621],[11.4404059,50.4990639],[11.4402984,50.4989315],[11.4402792,50.4988393],[11.440275,50.4988183],[11.4402697,50.498751],[11.4402625,50.4985498],[11.4402231,50.4984241],[11.4401766,50.4982962],[11.4402266,50.4981774],[11.4402769,50.4980631],[11.4402517,50.4979739],[11.4402804,50.4978278],[11.4403341,50.497597],[11.4402983,50.4974827],[11.4400978,50.4973571],[11.4398792,50.4971514],[11.4396321,50.4969297],[11.4394924,50.4968132],[11.439274,50.4967447],[11.4392131,50.4966716],[11.4391271,50.4965734],[11.4391215,50.4965514],[11.4390876,50.4964203],[11.4390484,50.4963106],[11.4390125,50.4962878],[11.4389337,50.4962373],[11.4388048,50.4961117],[11.4388036,50.4961107],[11.4386723,50.4959861],[11.4385755,50.495881],[11.4384304,50.4957949],[11.4383632,50.4957441],[11.4383356,50.4956709],[11.43833,50.4955726],[11.4383027,50.495481],[11.4382287,50.4954096],[11.4379971,50.4953213],[11.4378023,50.4951807],[11.4376648,50.495038],[11.4375317,50.494852],[11.4374152,50.4947439],[11.4372623,50.494672],[11.4368272,50.4945436],[11.4368141,50.4942327],[11.4367988,50.4938418],[11.4367517,50.4936449],[11.4367078,50.4934732],[11.4365856,50.4932643],[11.4365713,50.4932295],[11.4364821,50.4930123],[11.4363876,50.4928769],[11.4361968,50.4927088],[11.435711,50.4923856],[11.4354014,50.492149],[11.4347418,50.4922678],[11.434229,50.4923642],[11.4338027,50.4923878],[11.4334088,50.4923979],[11.4330437,50.4923988],[11.432682,50.4924067],[11.4322671,50.4924162],[11.4321628,50.4924185],[11.4318221,50.4924256],[11.4316973,50.4924283],[11.431293,50.4923994],[11.4307027,50.4923539],[11.4303089,50.492341],[11.429958,50.4923396],[11.4293851,50.4923559],[11.4290166,50.4923454],[11.4287838,50.4923377],[11.4285761,50.4923415],[11.4282929,50.4923885],[11.4279019,50.49249],[11.4276043,50.4925414],[11.4272138,50.4925811],[11.4268126,50.4926048],[11.4264184,50.4926468],[11.4261925,50.4926826],[11.4257763,50.4927907],[11.4255468,50.4928448],[11.4253748,50.4928647],[11.4249123,50.4929384],[11.4243922,50.4930668],[11.4237965,50.4932087],[11.423054,50.4933911],[11.4225078,50.4935241],[11.4223329,50.4935667],[11.4220818,50.4936366],[11.4217298,50.4937679],[11.4211225,50.494033],[11.420918,50.4940871],[11.4207132,50.4941641],[11.420401,50.4942682],[11.4201031,50.4943493],[11.4199087,50.4944583],[11.4196316,50.4946424],[11.4192347,50.4941495],[11.4190826,50.4939341],[11.4189305,50.4937232],[11.4187579,50.4933775],[11.4198559,50.4930958],[11.419712,50.4927547],[11.4196666,50.492606],[11.4196572,50.4924345],[11.4196691,50.492286],[11.4197286,50.4920324],[11.4198328,50.4915598],[11.4198449,50.4914204],[11.4198455,50.4913273],[11.4198461,50.4912627],[11.4198076,50.4911551],[11.4196984,50.4909329],[11.4196776,50.4908644],[11.419678,50.4908071],[11.419718,50.4907433],[11.4204497,50.4901449],[11.4203907,50.4897969],[11.4203439,50.4895204],[11.4221169,50.4891063],[11.422367,50.4890479],[11.4222659,50.488707],[11.4221832,50.4883319],[11.4221463,50.4880438],[11.4220942,50.4878492],[11.4220314,50.4876365],[11.421926,50.4874006],[11.4218278,50.4871625],[11.4215503,50.4865239],[11.4214097,50.4862261],[11.4212936,50.4859629],[11.421699,50.4858662],[11.422337,50.4857747],[11.422371,50.4855486],[11.422402,50.4852722],[11.422421,50.4851442],[11.4224786,50.4850965],[11.4225581,50.4850604],[11.4228316,50.4849364],[11.4231937,50.4847722],[11.4232164,50.4847682],[11.4233082,50.484752],[11.4241,50.4846909],[11.4245731,50.4846463],[11.4246633,50.4846377],[11.4247984,50.484625],[11.4258997,50.4845382],[11.4258676,50.484521],[11.4257027,50.4843977],[11.4256059,50.4842995],[11.4255914,50.4842331],[11.4254123,50.4841648],[11.425226,50.4841056],[11.4251329,50.4840072],[11.4250288,50.4839022],[11.4247961,50.4838338],[11.42442,50.4837222],[11.4240905,50.4835715],[11.4239078,50.4835168],[11.4236429,50.4835033],[11.4233672,50.4834739],[11.4232383,50.4834214],[11.4230985,50.4833415],[11.4230625,50.4832272],[11.4230551,50.4831471],[11.4229513,50.4830765],[11.4227794,50.4830262],[11.4225538,50.4829944],[11.4223282,50.4829169],[11.4221276,50.4828233],[11.4219986,50.4827595],[11.421791,50.4827276],[11.4216191,50.4826958],[11.4215081,50.4826456],[11.4213898,50.4825793],[11.4212716,50.4825315],[11.4211142,50.4825202],[11.4209565,50.4824563],[11.4208311,50.4824106],[11.4206592,50.4823765],[11.420559,50.482324],[11.4204265,50.4822715],[11.4203155,50.4821985],[11.4201971,50.4821643],[11.4200397,50.4821644],[11.4198608,50.4821531],[11.4197317,50.4820915],[11.419481,50.4819889],[11.4192196,50.481916],[11.4190585,50.481875],[11.4188545,50.4818613],[11.4186541,50.4818477],[11.4184823,50.4818822],[11.4182889,50.4818983],[11.4181208,50.4819077],[11.4179668,50.4818712],[11.417881,50.4818393],[11.4177449,50.4818485],[11.4176697,50.4818146],[11.417573,50.4817709],[11.4177056,50.4816629],[11.4177131,50.4816567],[11.4178289,50.4815476],[11.4178441,50.4815233],[11.4179455,50.4813607],[11.4180693,50.4811899],[11.4180996,50.4810437],[11.4182159,50.4808866],[11.4183536,50.4807341],[11.4182618,50.4806445],[11.4182591,50.4805668],[11.4183352,50.4804757],[11.4185016,50.4803326],[11.4188322,50.4802107],[11.4189692,50.4801223],[11.4191313,50.4800287],[11.4193617,50.4798956],[11.4197443,50.479614],[11.4199351,50.4795121],[11.41997,50.4794621],[11.4200115,50.4794027],[11.4201234,50.479321],[11.4201891,50.4792093],[11.4201621,50.4790675],[11.4200603,50.4789092],[11.420016,50.4787239],[11.4200325,50.4785365],[11.4200304,50.4784153],[11.4199896,50.4782346],[11.4199363,50.4779029],[11.4199378,50.4777793],[11.4200078,50.4776082],[11.4201714,50.4773897],[11.4203238,50.4772098],[11.4203505,50.4770705],[11.4202956,50.4768782],[11.4202979,50.4766702],[11.4203538,50.4764922],[11.4203205,50.4762954],[11.4202108,50.4761874],[11.4201497,50.4759106],[11.4201764,50.4757781],[11.4202451,50.4757075],[11.4201849,50.4756501],[11.4200997,50.475604],[11.4201401,50.4755104],[11.4202311,50.4753851],[11.4203847,50.4750956],[11.4205098,50.4748128],[11.4204654,50.4746228],[11.4204417,50.4745107],[11.4204716,50.4744102],[11.4205479,50.4743169],[11.4205486,50.4742437],[11.4205428,50.4742317],[11.4204579,50.4740605],[11.4203916,50.4739161],[11.4204257,50.4737608],[11.420499,50.4736034],[11.4204892,50.4735072],[11.420483,50.473448],[11.4203103,50.4732528],[11.420187,50.4730716],[11.4200635,50.4729475],[11.4198122,50.47272],[11.4197346,50.4726585],[11.4195394,50.4725037],[11.4194589,50.4723548],[11.4193076,50.4721483],[11.419272,50.4721253],[11.4191764,50.4720608],[11.4191203,50.4719507],[11.4190602,50.4719001],[11.4189935,50.471797],[11.4190017,50.4717193],[11.4190387,50.4716074],[11.4191124,50.4714689],[11.4189219,50.4711976],[11.4188808,50.4710466],[11.4188817,50.4710316],[11.4188896,50.4709072],[11.4188695,50.4707929],[11.4188057,50.4707468],[11.4186773,50.4707209],[11.4185958,50.4706725],[11.4184965,50.4705898],[11.4183397,50.4705455],[11.4181467,50.4705332],[11.4179142,50.4705342],[11.4177644,50.4705107],[11.417647,50.4704415],[11.4175556,50.4703154],[11.41736,50.4702161],[11.4171685,50.4700825],[11.417041,50.4699905],[11.4170105,50.4698486],[11.4168508,50.4697357],[11.4166755,50.4694538],[11.4165862,50.4691378],[11.4165172,50.4689318],[11.4164143,50.4688673],[11.4162965,50.4688484],[11.4161431,50.468811],[11.4159946,50.4686709],[11.4158743,50.4685719],[11.4157067,50.46853],[11.4155433,50.46844],[11.4154617,50.4683779],[11.4154737,50.4682774],[11.4154744,50.4682179],[11.4154005,50.4681056],[11.4153899,50.4680301],[11.4153809,50.4679659],[11.4154367,50.4677811],[11.4155575,50.4675554],[11.4157235,50.4674191],[11.4160189,50.467256],[11.41622,50.4671655],[11.4162424,50.4671039],[11.4163088,50.4669329],[11.4163271,50.4668914],[11.416419,50.4666842],[11.4164843,50.4665999],[11.4166695,50.46637],[11.4169827,50.4661978],[11.4171552,50.4661369],[11.4171532,50.4659907],[11.4171548,50.4658512],[11.4172351,50.4657282],[11.4173541,50.4656373],[11.4175776,50.4654921],[11.4177911,50.4652898],[11.4179315,50.4652126],[11.4183439,50.465105],[11.4186563,50.4649991],[11.4188784,50.4649706],[11.4189093,50.4649606],[11.4190829,50.4649053],[11.4191689,50.4648646],[11.4193131,50.4647967],[11.4193422,50.4647642],[11.4194145,50.4646829],[11.4196271,50.4645468],[11.4199644,50.4644456],[11.420348,50.4643766],[11.4207708,50.4643056],[11.421022,50.4642268],[11.4214674,50.46427],[11.4216004,50.4642532],[11.4216787,50.4642433],[11.4217792,50.4642095],[11.4219467,50.4641081],[11.4219517,50.464105],[11.4220164,50.4640715],[11.4221884,50.4639823],[11.4221925,50.4639801],[11.4223923,50.4639127],[11.4224514,50.4638508],[11.42248,50.463834],[11.4225951,50.4637667],[11.4226924,50.4636802],[11.4228689,50.4635392],[11.4229741,50.4633681],[11.4229968,50.463231],[11.4229618,50.4631167],[11.4228774,50.4629517],[11.4228782,50.462858],[11.4230079,50.4627397],[11.423141,50.4626716],[11.4236039,50.4624153],[11.4236412,50.4622738],[11.4235846,50.4619284],[11.4236057,50.4616518],[11.4237185,50.4614855],[11.4237518,50.4613942],[11.4236462,50.4612497],[11.423588,50.4610299],[11.4235656,50.4609581],[11.4235226,50.4608194],[11.4234234,50.4607411],[11.4233347,50.4606836],[11.423272,50.4605507],[11.4232674,50.4605272],[11.4232381,50.4603767],[11.4231694,50.4601409],[11.4229724,50.4598725],[11.4229346,50.4597375],[11.4228428,50.4596546],[11.4226908,50.4594985],[11.422413,50.4591085],[11.4222445,50.4588517],[11.4221892,50.4586822],[11.4220622,50.4585421],[11.4219639,50.4583954],[11.4219091,50.4581848],[11.4218499,50.4580565],[11.4217397,50.4579582],[11.4217257,50.4578952],[11.4217348,50.4578141],[11.4217221,50.4577111],[11.4215865,50.4574679],[11.421457,50.4572795],[11.4213025,50.4570934],[11.4211965,50.4570149],[11.421141,50.4569025],[11.4210428,50.4567738],[11.4208415,50.456608],[11.4205288,50.4562516],[11.4203974,50.4559649],[11.4203966,50.4559636],[11.4202897,50.4557517],[11.4201923,50.4555772],[11.4201262,50.4554602],[11.4199688,50.4552735],[11.4197273,50.4550874],[11.4195608,50.4549222],[11.4193919,50.4546358],[11.4193578,50.4544643],[11.4194015,50.4540097],[11.4193519,50.4532029],[11.4192795,50.4525673],[11.4192115,50.4514426],[11.4191297,50.4506585],[11.4191121,50.4504928],[11.4191041,50.450416],[11.4190662,50.4500577],[11.4189544,50.4495494],[11.4191043,50.4492164],[11.419135,50.4489835],[11.4191219,50.4488191],[11.4191159,50.4487412],[11.4190169,50.4482518],[11.4188735,50.447746],[11.4188508,50.4476661],[11.4188652,50.4476401],[11.4189282,50.4475257],[11.4190692,50.4472694],[11.4192981,50.446907],[11.419441,50.4465534],[11.4195497,50.4460419],[11.4196209,50.445688],[11.4196467,50.4452425],[11.4197713,50.4449322],[11.4197676,50.444562],[11.4200202,50.4442455],[11.4202057,50.4440132],[11.420537,50.4434184],[11.4206211,50.4433355],[11.4212873,50.4428442],[11.4220331,50.4424766],[11.422866,50.4421365],[11.423982,50.4418206],[11.424042,50.4418045],[11.4241558,50.441774],[11.4242749,50.4417422],[11.4245678,50.4416784],[11.4254181,50.4414932],[11.4256088,50.4414564],[11.4262062,50.4413411],[11.4266371,50.4411463],[11.4271836,50.4408492],[11.4278427,50.4407194],[11.4285469,50.4403703],[11.4292781,50.4401906],[11.4301088,50.4400912],[11.430909,50.440163],[11.4319426,50.4401534],[11.4325281,50.440245],[11.4328429,50.4400254],[11.4329062,50.4399814],[11.4330699,50.4399608],[11.4336794,50.439884],[11.4344146,50.4397137],[11.4345323,50.4396864],[11.4351912,50.4395953],[11.4357132,50.4395115],[11.436186,50.4395056],[11.4369163,50.4394611],[11.4374366,50.4393357],[11.438004,50.4391421],[11.4386397,50.4389144],[11.4389523,50.4387972],[11.4392716,50.4387233],[11.4399833,50.4387427],[11.4405552,50.4387774],[11.4409934,50.4386401],[11.4414494,50.4381672],[11.4416047,50.4380401],[11.4421009,50.4378233],[11.4427009,50.4375885],[11.4428669,50.4374546],[11.4428743,50.4374471],[11.4431813,50.4371329],[11.443229,50.437084],[11.4435769,50.4366781],[11.4436169,50.4366315],[11.4439575,50.4362425],[11.4444688,50.4356661],[11.4445097,50.4355666],[11.4445319,50.4354638],[11.4447552,50.4352315],[11.4449211,50.4350309],[11.4450617,50.4348896],[11.4453558,50.4347649],[11.4455892,50.4346421],[11.4457765,50.4344645],[11.44596,50.4343005],[11.4460245,50.4342325],[11.4460682,50.4341866],[11.4461263,50.4340497],[11.4461735,50.433947],[11.4463314,50.4338652],[11.4466362,50.4337702],[11.4469802,50.4336867],[11.4473812,50.4336262],[11.4477645,50.4335566],[11.4478932,50.4335592],[11.4480335,50.4334637],[11.4481305,50.4333863],[11.4483935,50.4331174],[11.4485054,50.4329693],[11.4487031,50.4328213],[11.4489438,50.4326758],[11.4491377,50.4325667],[11.4492889,50.4324392],[11.4494649,50.4323346],[11.44963,50.4322299],[11.4496701,50.4321319],[11.4497712,50.4319882],[11.4499506,50.4319133],[11.4502088,50.4318158],[11.4503951,50.4317661],[11.4505959,50.4317005],[11.4507753,50.4316187],[11.4510049,50.4315372],[11.451256,50.4314214],[11.4513711,50.4313212],[11.4514864,50.4312005],[11.4514226,50.431118],[11.4513843,50.4309556],[11.4513064,50.4308296],[11.451221,50.4307699],[11.4512215,50.4307037],[11.4511684,50.4306304],[11.4510972,50.4305662],[11.4511014,50.430484],[11.4509769,50.4303671],[11.450917,50.4302616],[11.4508928,50.4301314],[11.4509579,50.430015],[11.4509157,50.4299234],[11.4507908,50.4298819],[11.450716,50.429836],[11.4507239,50.4297423],[11.4507745,50.4296511],[11.450786,50.429546],[11.4507329,50.4294704],[11.4506616,50.4294153],[11.4505798,50.4293739],[11.4505447,50.4292687],[11.4505451,50.4291933],[11.450503,50.4290789],[11.450422,50.428905],[11.4503669,50.428594],[11.4502612,50.4283789],[11.4501544,50.4282849],[11.4500294,50.4282547],[11.4499078,50.4282544],[11.4497289,50.4282675],[11.4496613,50.4282262],[11.4496834,50.428128],[11.4496592,50.4279999],[11.4495632,50.427922],[11.449381,50.4278894],[11.449217,50.4278294],[11.449103,50.4277308],[11.449011,50.4275934],[11.4489436,50.4275247],[11.4488081,50.4274762],[11.4486941,50.4274028],[11.4486092,50.4272699],[11.4485565,50.4271235],[11.4484495,50.4270775],[11.4483462,50.4270133],[11.4482539,50.4269192],[11.4481291,50.4268617],[11.4480222,50.4268134],[11.4479584,50.4267423],[11.4479124,50.4266782],[11.4478161,50.4266322],[11.4474663,50.4265351],[11.4471807,50.4264291],[11.4468065,50.4262497],[11.4465536,50.4261095],[11.4462616,50.4259144],[11.4460872,50.4257972],[11.4459412,50.4257168],[11.4456841,50.4256635],[11.4454768,50.4256308],[11.4453451,50.4255527],[11.4452457,50.4254473],[11.4452427,50.4253513],[11.4451681,50.4252939],[11.4450937,50.4251839],[11.4450909,50.425072],[11.4449559,50.424939],[11.4447322,50.4247303],[11.4446222,50.4246021],[11.4445697,50.4244305],[11.4445632,50.4243208],[11.4444073,50.424126],[11.4441658,50.4238922],[11.4439457,50.4236676],[11.4438785,50.4235553],[11.4438865,50.4234297],[11.4439052,50.4233109],[11.4437709,50.4230888],[11.4435971,50.4228916],[11.4434624,50.4227039],[11.4433599,50.4225185],[11.4433038,50.4223789],[11.4433049,50.4222418],[11.4432661,50.4221479],[11.443138,50.4220607],[11.4429845,50.4220145],[11.4428741,50.4219365],[11.4428249,50.4218289],[11.4429012,50.4216486],[11.4431432,50.4213066],[11.4434021,50.4211223],[11.4435279,50.4210038],[11.4436005,50.4208555],[11.4435947,50.4206842],[11.4437129,50.4207553],[11.443845,50.42083],[11.4440608,50.4210297],[11.4440956,50.4211961],[11.444132,50.4213703],[11.4443823,50.4223238],[11.4445999,50.4229939],[11.4447882,50.4237439],[11.4456805,50.4242003],[11.4468615,50.4247676],[11.4477054,50.4251483],[11.4482633,50.4253999],[11.4490319,50.4257553],[11.4494801,50.4259766],[11.4498293,50.4260786],[11.4507281,50.4263045],[11.4521267,50.4266147],[11.4531757,50.426825],[11.4537392,50.4269601],[11.4542459,50.427063],[11.4546253,50.4271148],[11.4553173,50.4272095],[11.456342,50.4273627],[11.4579383,50.4275915],[11.458281,50.4276434],[11.4587654,50.4278215],[11.4597766,50.428244],[11.4605169,50.4285602],[11.4608802,50.4287035],[11.4610644,50.4288642],[11.4612295,50.4291322],[11.4614219,50.4298525],[11.4616241,50.4306504],[11.4618418,50.4310191],[11.4621617,50.4315412],[11.4623094,50.431752],[11.4625976,50.4318949],[11.463353,50.4321632],[11.4637022,50.4322858],[11.4646946,50.4324617],[11.4650236,50.4324677],[11.4653622,50.4325834],[11.4658838,50.4326315],[11.4662811,50.4326105],[11.4664726,50.4325554],[11.4665395,50.4325362],[11.4670815,50.4323629],[11.4676554,50.4322215],[11.4681034,50.4321207],[11.4683038,50.4320523],[11.4689797,50.431821],[11.4694964,50.4316544],[11.4703749,50.4314618],[11.470843,50.4315051],[11.4713827,50.4315371],[11.4714425,50.4315441],[11.472215,50.4316348],[11.4722722,50.4316416],[11.4731942,50.4318136],[11.4732003,50.4318148],[11.4741993,50.4317142],[11.4749189,50.4316505],[11.4752304,50.4316229],[11.4752604,50.4321688],[11.4752734,50.432621],[11.4752888,50.432845],[11.4753358,50.4333582],[11.4753562,50.4335806],[11.4756655,50.4335525],[11.4760507,50.4335174],[11.4770289,50.4333688],[11.4776134,50.4332297],[11.4779223,50.4331147],[11.4781397,50.4330061],[11.4782352,50.4329584],[11.4783559,50.4328704],[11.4785737,50.4327293],[11.4788265,50.4325158],[11.4790423,50.4323979],[11.4795226,50.4322928],[11.4804552,50.4320594],[11.4816607,50.4317175],[11.4818616,50.4316567],[11.4820943,50.431306],[11.482411,50.431009],[11.4824554,50.4309673],[11.4826435,50.4307672],[11.4828008,50.4304413],[11.4829068,50.4302316],[11.4829439,50.4301085],[11.4829089,50.4300193],[11.4829709,50.4299123],[11.4830544,50.4298189],[11.4830206,50.4296224],[11.482845,50.4293133],[11.4825187,50.4290447],[11.4822507,50.428701],[11.48195,50.4283731],[11.4817953,50.4281235],[11.4816095,50.4277641],[11.4814218,50.4272631],[11.4813342,50.4270823],[11.4810001,50.4268936],[11.4807659,50.426719],[11.480711,50.4264927],[11.4805944,50.4263575],[11.4805822,50.4261747],[11.4808676,50.4258927],[11.4809065,50.4252626],[11.481024,50.4249708],[11.4812623,50.4247457],[11.4814454,50.4243537],[11.4816085,50.4238109],[11.48191,50.4233669],[11.4821739,50.4230963],[11.4825773,50.4228424],[11.4829106,50.4224213],[11.4834376,50.4219599],[11.4839826,50.421485],[11.4843875,50.4210666],[11.4846199,50.4207382],[11.4846598,50.4206819],[11.4849278,50.4202591],[11.4849365,50.4202453],[11.4849398,50.42024],[11.4849764,50.4201603],[11.4850147,50.4195848],[11.4851416,50.4194233],[11.4851446,50.4194214],[11.4856132,50.4191216],[11.4857737,50.4190693],[11.48632,50.4188918],[11.4864276,50.4188573],[11.4866859,50.4187746],[11.4872797,50.4184186],[11.4873566,50.4183571],[11.4876765,50.4181006],[11.4878138,50.4179527],[11.4879485,50.4177295],[11.4880469,50.4174421],[11.4880548,50.4174189],[11.4880554,50.4174171],[11.4882383,50.4170251],[11.4882519,50.4167488],[11.4883856,50.4166169],[11.4883863,50.4165454],[11.4883876,50.4164297],[11.4884374,50.4162294],[11.4882747,50.41596],[11.4882071,50.4158412],[11.4881568,50.4156916],[11.4881502,50.4156721],[11.4881042,50.415503],[11.4880758,50.4153956],[11.4880009,50.4152881],[11.4879224,50.4151555],[11.4878763,50.4150139],[11.4878873,50.4148837],[11.4879306,50.4147923],[11.4879091,50.414726],[11.4878379,50.4146095],[11.4876773,50.4144745],[11.4875417,50.414351],[11.4874739,50.4142574],[11.4875099,50.4142025],[11.487335,50.4140539],[11.4872851,50.4139647],[11.487284,50.4139545],[11.4872641,50.4137567],[11.4871571,50.4135853],[11.4870789,50.4134299],[11.4869791,50.4133088],[11.4868471,50.4131464],[11.4866471,50.4130023],[11.486551,50.4128949],[11.4864035,50.4127045],[11.4862978,50.4125679],[11.4860945,50.4123712],[11.486059,50.412273],[11.4860483,50.4121724],[11.4860378,50.4121108],[11.4859808,50.412017],[11.485947,50.4119337],[11.485938,50.4119119],[11.485917,50.4118251],[11.4859169,50.4117383],[11.4859457,50.4116538],[11.4860245,50.4116013],[11.4860962,50.4115602],[11.4861035,50.4114963],[11.4861795,50.4113834],[11.4861146,50.4112851],[11.4860842,50.4112391],[11.4860131,50.4112114],[11.4859379,50.4112316],[11.4858671,50.4111353],[11.4857608,50.4110413],[11.4856753,50.4110112],[11.4856583,50.4109221],[11.485606,50.4107779],[11.4855068,50.4106792],[11.485268,50.4105983],[11.4850439,50.4104719],[11.484856,50.4103135],[11.4846175,50.4102234],[11.4844714,50.4101725],[11.4843758,50.4100877],[11.4843016,50.4099846],[11.4841844,50.4099133],[11.4840487,50.4098876],[11.483881,50.4098755],[11.48376,50.4098089],[11.4836508,50.409653],[11.4835408,50.4095543],[11.4833949,50.409499],[11.4832957,50.4094002],[11.483214,50.4093428],[11.4831354,50.4093266],[11.4830504,50.4092509],[11.4829509,50.4092047],[11.4828615,50.4091861],[11.4827232,50.409069],[11.4825064,50.4089449],[11.4822781,50.4089074],[11.4820745,50.4088952],[11.4819539,50.4088216],[11.4817971,50.408757],[11.4815975,50.4087014],[11.4814266,50.4086414],[11.4812598,50.408499],[11.4810652,50.4083085],[11.4809207,50.408068],[11.4808076,50.4079328],[11.4806901,50.4078821],[11.480426,50.4078628],[11.4802475,50.4078439],[11.4801015,50.4077839],[11.4799253,50.4075044],[11.4798262,50.4074172],[11.4797015,50.4073687],[11.4795411,50.4073224],[11.4794418,50.4072444],[11.4793082,50.4070062],[11.4792488,50.4068505],[11.479264,50.4067431],[11.4793759,50.4066156],[11.4794517,50.406545],[11.4793926,50.4063506],[11.4792314,50.4059888],[11.4792006,50.4058539],[11.4791585,50.4057417],[11.4791247,50.4055473],[11.4792009,50.4054082],[11.4792383,50.4052278],[11.4792004,50.4050654],[11.4791837,50.4049397],[11.4792524,50.4048484],[11.4793034,50.4047321],[11.4793828,50.4046296],[11.4795126,50.4044975],[11.4795673,50.404372],[11.4795257,50.4042393],[11.4794841,50.4040792],[11.4794319,50.4039304],[11.479426,50.4037887],[11.4793395,50.4034844],[11.479294,50.4033631],[11.4791962,50.4031273],[11.4791546,50.4029625],[11.4790951,50.4028458],[11.4789744,50.4027608],[11.4788643,50.402685],[11.4787688,50.4025703],[11.4786498,50.4023071],[11.4785939,50.4021628],[11.4785018,50.4020551],[11.4783917,50.4019976],[11.4782888,50.4019127],[11.4782754,50.4018233],[11.4783235,50.4016315],[11.4783459,50.4015265],[11.4782864,50.4013869],[11.4782089,50.4012564],[11.4781387,50.4011327],[11.4781647,50.4010185],[11.4783083,50.4009253],[11.4785738,50.4008075],[11.4789638,50.4007428],[11.4791714,50.4006773],[11.4793223,50.4005863],[11.4793804,50.4004861],[11.4793426,50.400319],[11.4793008,50.4001955],[11.4793589,50.4000952],[11.4795023,50.4000272],[11.4797167,50.4000233],[11.4798884,50.3999989],[11.4800747,50.3999309],[11.4802824,50.3998884],[11.4804432,50.3998729],[11.4805934,50.3998575],[11.4807297,50.3997894],[11.4808374,50.3997281],[11.4809555,50.399708],[11.4810452,50.3996672],[11.4811351,50.3995967],[11.4812995,50.3995768],[11.4815038,50.3995021],[11.4816686,50.3994524],[11.4818519,50.3993206],[11.4819461,50.3991587],[11.4820192,50.3989761],[11.482102,50.3988941],[11.4822311,50.3988512],[11.4822842,50.3988355],[11.4823036,50.3988298],[11.4823069,50.3988288],[11.4824067,50.3987993],[11.482582,50.3987611],[11.4827147,50.3987044],[11.4828333,50.3985998],[11.4829887,50.3984267],[11.483075,50.3983447],[11.4832864,50.3982677],[11.4835016,50.3981772],[11.4836418,50.3980795],[11.4839435,50.3978886],[11.4842087,50.3977754],[11.4845061,50.3976782],[11.4846679,50.3975599],[11.4849155,50.3974328],[11.4850516,50.3973877],[11.4852555,50.3973496],[11.4854523,50.3973023],[11.485537,50.3972568],[11.4856174,50.3972137],[11.4857572,50.397164],[11.4859507,50.3971076],[11.4863949,50.3969516],[11.4867531,50.3968226],[11.487122,50.3967189],[11.4873513,50.3966351],[11.4875812,50.3964966],[11.4878676,50.3964153],[11.4881576,50.396341],[11.4884832,50.3962713],[11.4887915,50.3961491],[11.4890244,50.3960539],[11.4892324,50.3959679],[11.4894868,50.3958961],[11.489564,50.3959551],[11.4902151,50.3964422],[11.4902164,50.396443],[11.490414,50.3965778],[11.4906443,50.3967228],[11.4906769,50.3967432],[11.4909416,50.3969176],[11.491057,50.3969938],[11.4913129,50.3971318],[11.4914694,50.3972124],[11.4915164,50.3972529],[11.4915453,50.3972779],[11.4917991,50.397497],[11.4921077,50.3977563],[11.4921575,50.3977787],[11.492339,50.3978601],[11.4927342,50.3980032],[11.4929688,50.3981321],[11.4930676,50.3982673],[11.4931306,50.3983421],[11.4931526,50.3983682],[11.4931647,50.3983716],[11.4934056,50.3984399],[11.4937188,50.3985576],[11.4939534,50.3987002],[11.494139,50.3988233],[11.4941405,50.3988242],[11.494143,50.3988258],[11.4942376,50.3988887],[11.4943604,50.398949],[11.494547,50.3990406],[11.4949887,50.399177],[11.4954842,50.3992977],[11.495998,50.3993819],[11.4963543,50.3994814],[11.4967463,50.399604],[11.4969318,50.3996069],[11.497336,50.3995741],[11.4979003,50.3995556],[11.4982142,50.3995703],[11.4983081,50.3995522],[11.4983832,50.3995411],[11.4984512,50.3995391],[11.4985263,50.3995395],[11.4985847,50.3995488],[11.4986582,50.3995605],[11.49899,50.3995183],[11.4993725,50.3994351],[11.4996519,50.3993516],[11.4999027,50.3993195],[11.5002431,50.3992927],[11.5003956,50.3993039],[11.5005286,50.3992965],[11.5007185,50.3992533],[11.5009713,50.3992324],[11.5013375,50.3993366],[11.5016927,50.3994005],[11.5019853,50.3993981],[11.5023584,50.3993997],[11.5027375,50.3993757],[11.5030328,50.3993546],[11.5030479,50.3993439],[11.5033135,50.3993457],[11.5034535,50.3993476],[11.5034596,50.3993228],[11.5034627,50.3992819],[11.5034784,50.3990648],[11.5035675,50.3988667],[11.5035966,50.3988264],[11.503598,50.3988245],[11.5037104,50.398669],[11.50382,50.398519],[11.5040119,50.3981753],[11.5041787,50.3980372],[11.5043459,50.3978806],[11.504498,50.3977675],[11.5048689,50.3976078],[11.5050313,50.3975221],[11.5052079,50.3974365],[11.5052362,50.3972471],[11.5053313,50.397113],[11.5054296,50.3970109],[11.5056149,50.3968339],[11.5057651,50.3966317],[11.5059314,50.3964691],[11.5059322,50.3964683],[11.5059424,50.3964686],[11.5064218,50.3964853],[11.5067777,50.396493],[11.5070402,50.3964986],[11.5075266,50.3964951],[11.5081385,50.3964694],[11.5086358,50.39645],[11.5092128,50.3963671],[11.5096136,50.3963163],[11.5096558,50.3963111],[11.5103455,50.3962056],[11.5107394,50.396174],[11.5111408,50.3961128],[11.5115319,50.3960446],[11.5120009,50.3960021],[11.5125826,50.3959674],[11.5127289,50.3959795],[11.5127895,50.3959912],[11.512868,50.396012],[11.5129285,50.3960237],[11.5129964,50.3960332],[11.5130428,50.3960311],[11.5131109,50.3960108],[11.5131647,50.3959973],[11.5132149,50.3959816],[11.5132722,50.3959681],[11.5133222,50.3959637],[11.5133937,50.3959663],[11.513433,50.3959756],[11.5134898,50.3959964],[11.5136002,50.3960426],[11.5136749,50.3960771],[11.5137141,50.3960968],[11.5141513,50.3961284],[11.5143047,50.3961072],[11.5144346,50.3960892],[11.5147148,50.3960065],[11.5149694,50.3959649],[11.5152125,50.3959619],[11.515274,50.3959144],[11.5154573,50.3958676],[11.5156038,50.3958709],[11.5158221,50.3958563],[11.5161883,50.3957742],[11.5162915,50.3957567],[11.5167333,50.3956819],[11.51692,50.3956547],[11.5173927,50.3955859],[11.517412,50.3958167],[11.5174375,50.3961229],[11.5174741,50.3963227],[11.5174965,50.3964454],[11.5176588,50.3963642],[11.5179589,50.39619],[11.5179861,50.3961743],[11.518041,50.3961424],[11.5180597,50.3961316],[11.5184662,50.3959722],[11.5184721,50.3958942],[11.5184847,50.3957188],[11.5185892,50.3954499],[11.5185904,50.3954222],[11.5186015,50.3951461],[11.5186077,50.395052],[11.5186563,50.3950091],[11.5187105,50.3949498],[11.5187287,50.3949295],[11.5187397,50.3948998],[11.5187473,50.3948611],[11.5187511,50.39482],[11.5187695,50.3947789],[11.5187876,50.3947516],[11.5187879,50.3947218],[11.5187844,50.3947104],[11.5187383,50.3946691],[11.5187065,50.394653],[11.518671,50.3946324],[11.5186211,50.3946047],[11.5185786,50.394568],[11.5185574,50.394552],[11.5185397,50.3945313],[11.5185153,50.3944856],[11.5185119,50.3944513],[11.5185372,50.3944308],[11.5185659,50.3944081],[11.5185911,50.3943923],[11.5186163,50.3943764],[11.5186558,50.3943515],[11.5186954,50.3943264],[11.5187278,50.3943038],[11.5187458,50.3942902],[11.5187818,50.3942675],[11.5188106,50.3942448],[11.5188358,50.3942174],[11.5188433,50.3942014],[11.5188469,50.3941901],[11.5188471,50.3941719],[11.5188329,50.3941444],[11.5188082,50.3941374],[11.5187582,50.394128],[11.5187225,50.3941234],[11.5186689,50.3941232],[11.5186296,50.3941185],[11.5185796,50.394109],[11.5185476,50.3940952],[11.5185087,50.3940585],[11.5184984,50.3940334],[11.5184879,50.3940037],[11.5184917,50.3939763],[11.5185026,50.3939489],[11.5184961,50.3939078],[11.5184856,50.3938667],[11.5184752,50.393846],[11.518454,50.3938208],[11.5184399,50.3937979],[11.5184296,50.393766],[11.5184441,50.3937317],[11.5184659,50.3936954],[11.5184913,50.3936703],[11.518513,50.3936407],[11.5185561,50.393618],[11.5185961,50.3935565],[11.5186212,50.3935269],[11.518643,50.3934974],[11.5186576,50.393477],[11.5186687,50.3934381],[11.5186725,50.3934108],[11.5186765,50.3933788],[11.5186696,50.3933514],[11.5186554,50.3933399],[11.518634,50.3933329],[11.5185985,50.3933191],[11.5185736,50.3933054],[11.5185559,50.3932824],[11.5185455,50.393255],[11.5185421,50.3932298],[11.5185494,50.3932162],[11.5186431,50.393132],[11.5186793,50.3931025],[11.5186955,50.3930759],[11.5186975,50.3930729],[11.5187012,50.3930455],[11.518698,50.3930135],[11.5186875,50.3929929],[11.5186663,50.3929655],[11.518631,50.3929265],[11.5186025,50.3929013],[11.5185672,50.3928737],[11.5185281,50.3928507],[11.5184749,50.3928185],[11.5184287,50.3927772],[11.5183652,50.3927062],[11.5183263,50.3926626],[11.5183089,50.3926305],[11.5182842,50.3925917],[11.5182774,50.3925597],[11.5182848,50.39253],[11.5183172,50.3925027],[11.5183711,50.3924687],[11.5184107,50.3924484],[11.5184466,50.3924257],[11.5184718,50.3924075],[11.518515,50.392378],[11.518533,50.3923598],[11.5185656,50.3923257],[11.5185766,50.3923029],[11.5185842,50.392255],[11.5185882,50.3922116],[11.5185997,50.3921249],[11.5185895,50.3920792],[11.5185757,50.3920289],[11.5185727,50.3919672],[11.5185806,50.3919079],[11.5186097,50.3918441],[11.5186317,50.3917847],[11.5186289,50.3917208],[11.5186256,50.3916889],[11.5186227,50.3916227],[11.5186197,50.3915609],[11.5186165,50.3915245],[11.518592,50.3914787],[11.518553,50.3914465],[11.5184713,50.3914074],[11.5184108,50.3913865],[11.5183502,50.3913611],[11.5182863,50.3913198],[11.5182437,50.3912876],[11.5182189,50.3912647],[11.5181981,50.3912145],[11.5181949,50.3911756],[11.5182206,50.3911004],[11.5182282,50.3910501],[11.5182505,50.3909795],[11.5182562,50.3909439],[11.5182619,50.3909087],[11.5182624,50.3908493],[11.5182594,50.3907899],[11.5182527,50.3907556],[11.5182322,50.3906642],[11.518208,50.3905865],[11.5181555,50.3904721],[11.5181207,50.3903739],[11.5181036,50.3903029],[11.5181009,50.3902298],[11.5181264,50.3901706],[11.5181662,50.3901274],[11.5182237,50.3900865],[11.5182706,50.3900479],[11.5183068,50.3899933],[11.5183182,50.389927],[11.5183081,50.3898769],[11.5182871,50.3898219],[11.5182557,50.3897602],[11.518242,50.3896961],[11.5182209,50.3896549],[11.5182071,50.3896139],[11.5181945,50.3895958],[11.5181719,50.3895635],[11.5181366,50.3895176],[11.5181014,50.3894718],[11.5180624,50.3894328],[11.518052,50.3893985],[11.5180599,50.38933],[11.5180929,50.3892457],[11.5181153,50.3891612],[11.5181374,50.3890769],[11.5181491,50.3889925],[11.5181528,50.3889614],[11.5181544,50.3889487],[11.5181568,50.3889286],[11.5181649,50.3888441],[11.5181729,50.388762],[11.5181805,50.388714],[11.5182066,50.3886137],[11.5182357,50.388543],[11.5182578,50.3884837],[11.5182646,50.3884668],[11.5182908,50.3884039],[11.5183165,50.3883355],[11.5183926,50.3882263],[11.5184286,50.3881899],[11.5185041,50.3881491],[11.5185408,50.3880625],[11.5185628,50.3880055],[11.518574,50.3879598],[11.518614,50.3878778],[11.5186433,50.3878255],[11.51883,50.3877303],[11.518891,50.3877123],[11.5189661,50.3876807],[11.5190129,50.3876603],[11.5190595,50.38764],[11.5190919,50.3876127],[11.5191137,50.3875877],[11.5191175,50.3875649],[11.5190892,50.3875191],[11.5191109,50.3875009],[11.5190792,50.3874573],[11.5190651,50.3874322],[11.5190261,50.3874115],[11.5190015,50.3873771],[11.5189946,50.3873474],[11.5190093,50.3873064],[11.5190384,50.3872654],[11.519042,50.3872494],[11.5190175,50.3872082],[11.5190107,50.3871808],[11.5190073,50.387142],[11.5189865,50.3870916],[11.5189652,50.3870618],[11.5189658,50.3870094],[11.5190238,50.3869343],[11.5190002,50.3867903],[11.5190149,50.3867493],[11.5190213,50.3867397],[11.519044,50.386706],[11.5190516,50.3866535],[11.5190666,50.3865827],[11.5190854,50.3864915],[11.5191043,50.3864367],[11.5191075,50.3864276],[11.5191693,50.3863229],[11.5192378,50.3862616],[11.5192918,50.3862161],[11.5193676,50.3861434],[11.5194256,50.3860591],[11.5194622,50.3859771],[11.5194804,50.3859429],[11.5195349,50.3858541],[11.5195531,50.3858153],[11.5195749,50.3857766],[11.519611,50.3857448],[11.519665,50.3857176],[11.5197113,50.3857064],[11.5197615,50.3856952],[11.5198801,50.3856203],[11.5199021,50.3855816],[11.5199348,50.3855064],[11.5199472,50.3854735],[11.519957,50.3854471],[11.5199714,50.3854267],[11.5199896,50.3854039],[11.5200039,50.3853925],[11.5200292,50.3853721],[11.5200578,50.3853585],[11.520083,50.3853403],[11.5200623,50.3852831],[11.5200517,50.3852512],[11.5200521,50.385226],[11.520065,50.3850183],[11.5200509,50.3849862],[11.520026,50.3849701],[11.5199764,50.3849288],[11.5199125,50.3848967],[11.5199043,50.3848925],[11.5198626,50.3848713],[11.5197915,50.3848436],[11.5197276,50.3848159],[11.519671,50.3847541],[11.5196291,50.3846465],[11.5196156,50.3845849],[11.5195848,50.38445],[11.5195861,50.3843129],[11.5195979,50.3842034],[11.519599,50.384087],[11.5196076,50.3839592],[11.519612,50.3838769],[11.5196199,50.3837902],[11.519642,50.3837424],[11.519696,50.3836901],[11.5197284,50.3836559],[11.5197682,50.3836128],[11.5198076,50.3835923],[11.519876,50.383563],[11.5199225,50.3835404],[11.5199552,50.3835016],[11.5199342,50.3834537],[11.5199061,50.3833942],[11.5198959,50.3833553],[11.5198748,50.3833186],[11.5198714,50.3832867],[11.5198755,50.3832593],[11.5199367,50.3832139],[11.5199976,50.3832004],[11.5200619,50.3831847],[11.5201228,50.383169],[11.520191,50.3831396],[11.5202378,50.3831009],[11.5202671,50.3830281],[11.5202785,50.3829664],[11.52029,50.382882],[11.5203014,50.3828227],[11.5203236,50.3827429],[11.5203252,50.3827208],[11.520336,50.3825807],[11.5203113,50.382551],[11.5202758,50.3825212],[11.5201407,50.3824635],[11.5200836,50.3824427],[11.520034,50.3824197],[11.5200054,50.3823991],[11.5200357,50.3822507],[11.5200679,50.3822371],[11.5200928,50.382235],[11.5201286,50.3822351],[11.5201715,50.3822284],[11.5202181,50.3822241],[11.520258,50.382158],[11.5202479,50.3821078],[11.5202338,50.3820734],[11.5202131,50.3820071],[11.5201992,50.3819682],[11.5202006,50.3818199],[11.5202131,50.3816532],[11.5202497,50.3815643],[11.5203112,50.3814801],[11.5203767,50.3813754],[11.5204563,50.381282],[11.5205284,50.3812115],[11.520572,50.3811668],[11.520597,50.3811411],[11.5206478,50.3810476],[11.5206587,50.3810166],[11.5206774,50.3809633],[11.5206715,50.3808285],[11.5206475,50.380728],[11.5205842,50.3806227],[11.5205244,50.3805288],[11.5204469,50.380428],[11.5203768,50.3802953],[11.520349,50.3802221],[11.5203212,50.3801489],[11.5202649,50.3800527],[11.5201979,50.3799634],[11.5200883,50.3798625],[11.5200421,50.3798349],[11.5199213,50.3797591],[11.5198044,50.3796718],[11.5197015,50.3796029],[11.5196161,50.3795613],[11.5195773,50.3795224],[11.5195383,50.3794812],[11.5195104,50.3794148],[11.5195004,50.3793554],[11.5194905,50.3792823],[11.5194555,50.3791931],[11.5194134,50.379113],[11.5193504,50.3789986],[11.5192977,50.378907],[11.519259,50.3788428],[11.519217,50.3787674],[11.5191995,50.3787284],[11.5191856,50.378685],[11.5191823,50.3786508],[11.5192332,50.3785733],[11.5192692,50.3785415],[11.5193052,50.3785143],[11.5193341,50.3784892],[11.5193484,50.3784734],[11.5193629,50.3784621],[11.5193811,50.3784415],[11.5193919,50.378421],[11.5193529,50.3783935],[11.5193173,50.3783842],[11.5192815,50.378384],[11.519228,50.3783724],[11.5191891,50.378354],[11.5191426,50.3783355],[11.5190967,50.3782987],[11.5190577,50.3782665],[11.5190402,50.3782415],[11.5190366,50.3782278],[11.5190405,50.3782004],[11.5190586,50.3781752],[11.5190946,50.3781435],[11.5191272,50.3780979],[11.5191421,50.3780409],[11.519157,50.3779862],[11.5191646,50.3779246],[11.5191581,50.3778834],[11.5191262,50.3778445],[11.5190659,50.3778031],[11.5189948,50.37778],[11.5189199,50.3777614],[11.5188665,50.3777429],[11.518806,50.3777175],[11.5187634,50.3776923],[11.5187456,50.3776785],[11.5187676,50.3776443],[11.5187891,50.3776284],[11.5188249,50.3776149],[11.5188609,50.3775945],[11.5188861,50.3775718],[11.5189007,50.3775422],[11.5188974,50.3774964],[11.5188764,50.377469],[11.5188337,50.3774528],[11.5187839,50.377432],[11.5187272,50.3773975],[11.5186703,50.3773585],[11.5186553,50.377339],[11.5186422,50.3773218],[11.518646,50.3772854],[11.5186678,50.3772512],[11.5187042,50.3771988],[11.5187691,50.377126],[11.5188374,50.3770784],[11.5189096,50.3770193],[11.5189742,50.3769762],[11.5190318,50.3769467],[11.5190784,50.3769195],[11.5191001,50.3769036],[11.5191292,50.3768375],[11.5191407,50.3767668],[11.5191271,50.376705],[11.5191096,50.3766617],[11.5191208,50.3766251],[11.5191603,50.3765956],[11.519368,50.3765462],[11.5194324,50.3765351],[11.5194898,50.3765126],[11.519547,50.3764922],[11.5195975,50.3764559],[11.5196768,50.3763854],[11.5197057,50.3763468],[11.5197459,50.3762647],[11.5197822,50.3761941],[11.5198151,50.3761417],[11.5198369,50.3760824],[11.5198519,50.3760277],[11.519856,50.3759614],[11.5198463,50.3758632],[11.5198113,50.3757924],[11.5197907,50.3757054],[11.5197773,50.3756278],[11.5197709,50.3755501],[11.5197716,50.3754816],[11.5197759,50.3754086],[11.5197912,50.3753173],[11.5198135,50.3752215],[11.5198359,50.3751279],[11.5198547,50.3750344],[11.5198804,50.3749706],[11.5199202,50.3749069],[11.5199638,50.3748431],[11.5199893,50.3747906],[11.5200114,50.3747268],[11.520037,50.3746562],[11.5200734,50.3745947],[11.5200838,50.3745623],[11.5200918,50.3745376],[11.5200673,50.374485],[11.5200427,50.3744507],[11.5200166,50.374415],[11.5200074,50.3744026],[11.519965,50.374359],[11.5199228,50.3743131],[11.5198838,50.3742673],[11.5198474,50.3742291],[11.5198379,50.3742191],[11.5197706,50.3741572],[11.5197139,50.374109],[11.5196645,50.3740677],[11.5194652,50.3739938],[11.5196901,50.3740039],[11.5198256,50.3740091],[11.519944,50.3740006],[11.5199473,50.3740004],[11.5200974,50.3739805],[11.5202188,50.3739879],[11.5203224,50.3739951],[11.5204509,50.3740071],[11.5205684,50.3740305],[11.5206613,50.3740354],[11.5207899,50.3740291],[11.5209045,50.3740091],[11.5210403,50.3739845],[11.5211726,50.3739759],[11.5212939,50.3739877],[11.5214186,50.374018],[11.5215148,50.3740549],[11.5216179,50.3740965],[11.5217278,50.3741654],[11.5218486,50.3742458],[11.5219552,50.3743011],[11.5220831,50.3743611],[11.5222076,50.3744095],[11.522243,50.3744325],[11.5222643,50.3744622],[11.5222779,50.3745308],[11.5223404,50.3745625],[11.522459,50.3746229],[11.5225551,50.3746621],[11.5226905,50.3746993],[11.5228331,50.3747318],[11.5229897,50.3747782],[11.5231886,50.3748908],[11.5232954,50.3749415],[11.523452,50.3749878],[11.5235803,50.3750067],[11.5237162,50.3750163],[11.5238409,50.3750419],[11.5239691,50.3750699],[11.5240082,50.3750757],[11.5240476,50.3750816],[11.5241654,50.3750775],[11.5241902,50.3750753],[11.524262,50.3750689],[11.5244014,50.3750626],[11.52458,50.3750679],[11.524755,50.3750754],[11.5248904,50.375092],[11.5250364,50.3751383],[11.5252752,50.3751987],[11.5253606,50.3752264],[11.5254711,50.3752566],[11.5256134,50.375296],[11.5257882,50.3753309],[11.5259131,50.3753497],[11.5260343,50.3753776],[11.526148,50.375433],[11.5262436,50.3755064],[11.5263323,50.375573],[11.5264494,50.3756511],[11.5265133,50.3756948],[11.5269758,50.3758701],[11.5270758,50.3758843],[11.5271933,50.3759054],[11.5273145,50.3759309],[11.5274037,50.3759519],[11.5274927,50.3759774],[11.527578,50.3760279],[11.5276702,50.3760831],[11.5277909,50.3761681],[11.5279706,50.3762943],[11.5279845,50.3763042],[11.5280853,50.3763748],[11.5281986,50.3764757],[11.5282979,50.3765515],[11.5283723,50.3766204],[11.5284307,50.3768512],[11.5284512,50.3769336],[11.5284571,50.376953],[11.5284685,50.3769907],[11.5284927,50.3770707],[11.5285311,50.3771759],[11.5285908,50.3772721],[11.5286507,50.3773522],[11.5287109,50.3774118],[11.5288066,50.3774967],[11.5289162,50.377593],[11.5289941,50.3776619],[11.5290576,50.3777421],[11.5291175,50.3778314],[11.5291598,50.3778863],[11.529234,50.377962],[11.5293086,50.378008],[11.5293867,50.3780608],[11.5294791,50.378116],[11.5295999,50.3781782],[11.5297775,50.3782771],[11.5298877,50.37833],[11.5300336,50.3783922],[11.5301258,50.3784611],[11.5301826,50.3785094],[11.5302213,50.3785506],[11.5303024,50.3786537],[11.5303359,50.3786767],[11.5304125,50.3787295],[11.5305439,50.3787917],[11.5306721,50.3788471],[11.5307751,50.3789046],[11.5309135,50.3789941],[11.5313255,50.379231],[11.5315283,50.3793324],[11.5316243,50.3793806],[11.5317382,50.3794223],[11.5318378,50.37945],[11.5319412,50.3794711],[11.5320695,50.3795035],[11.5322014,50.3795338],[11.5323008,50.3795402],[11.5323121,50.3795411],[11.5324551,50.3795234],[11.532559,50.3794919],[11.5325819,50.3794802],[11.5326141,50.379464],[11.5326431,50.3794494],[11.5326846,50.3794216],[11.5327423,50.379383],[11.5328177,50.3793308],[11.532891,50.3792984],[11.5329255,50.3792832],[11.533076,50.3792405],[11.5332267,50.3792217],[11.5333768,50.3792087],[11.5334948,50.3792091],[11.5336054,50.3792142],[11.5337088,50.3792283],[11.5337978,50.3792491],[11.5339154,50.3792862],[11.5340327,50.3793438],[11.5341152,50.3793991],[11.5341128,50.3794059],[11.5340173,50.3796797],[11.5339418,50.3799236],[11.5338345,50.3802572],[11.5338289,50.3802747],[11.5337504,50.380482],[11.5337411,50.3806236],[11.5338211,50.3807542],[11.5339056,50.3808302],[11.5341174,50.381003],[11.5343336,50.3811117],[11.5345041,50.3811768],[11.5347161,50.3811073],[11.5352451,50.3808737],[11.5355031,50.380955],[11.5356636,50.3809785],[11.5357993,50.3809927],[11.5358778,50.3809977],[11.5361372,50.3811152],[11.5362295,50.3811863],[11.5363111,50.3812392],[11.5363822,50.3812874],[11.5364855,50.3813198],[11.5365995,50.3813477],[11.5366643,50.3813617],[11.5367386,50.3813778],[11.536874,50.3814036],[11.5370844,50.3814341],[11.537195,50.3814483],[11.5373555,50.3814718],[11.5375195,50.3815112],[11.5376657,50.3815551],[11.5377866,50.3816013],[11.5378654,50.3816317],[11.5379005,50.3816452],[11.5380322,50.3816959],[11.5381568,50.3817399],[11.5383065,50.3817769],[11.5385061,50.3818143],[11.5387738,50.3818382],[11.5388916,50.3818501],[11.5390165,50.3818644],[11.5391806,50.3818924],[11.5393231,50.3819318],[11.5394442,50.3819689],[11.5395225,50.3820011],[11.5396257,50.382038],[11.5397469,50.3820728],[11.5398538,50.382096],[11.5399572,50.3821148],[11.540168,50.3821133],[11.5402894,50.3821138],[11.5403932,50.3821119],[11.5405325,50.3821102],[11.5406395,50.3821175],[11.5409208,50.3822031],[11.5410315,50.3822218],[11.5411133,50.3822519],[11.5411916,50.3822842],[11.541277,50.3823118],[11.5413625,50.3823374],[11.5414694,50.3823606],[11.5415478,50.3823905],[11.5416512,50.3824184],[11.5417795,50.3824577],[11.5418756,50.3824833],[11.5419824,50.382527],[11.5420857,50.3825594],[11.5423139,50.3825946],[11.5423995,50.3826109],[11.542524,50.3826571],[11.542563,50.3826915],[11.5426162,50.382742],[11.5426586,50.3827878],[11.5427575,50.3828932],[11.5428249,50.3829437],[11.5429032,50.3829806],[11.5429347,50.3829883],[11.5429888,50.3830015],[11.5431066,50.383018],[11.5432707,50.3830323],[11.5434136,50.383042],[11.5437101,50.3830454],[11.5439527,50.3830693],[11.544099,50.383079],[11.5442167,50.3831091],[11.5443092,50.3831393],[11.5444481,50.38319],[11.544569,50.3832566],[11.5447005,50.3833166],[11.5447964,50.3833763],[11.5449101,50.383443],[11.5450273,50.3835211],[11.5451479,50.3836015],[11.5452795,50.3836638],[11.5453508,50.3836936],[11.545461,50.3837398],[11.5455785,50.3837723],[11.5456997,50.3838092],[11.5458065,50.3838598],[11.5458773,50.3839218],[11.5459267,50.3839905],[11.5459865,50.384089],[11.546025,50.384153],[11.5460744,50.384224],[11.5461309,50.3842836],[11.5462059,50.3843067],[11.5462661,50.3843095],[11.546313,50.3843117],[11.5464631,50.3842964],[11.5465921,50.3842694],[11.5477291,50.3841552],[11.5479294,50.3841355],[11.5480439,50.3841222],[11.5481516,50.3840587],[11.5482058,50.3840133],[11.548292,50.3839406],[11.5483534,50.3838814],[11.5484613,50.3838133],[11.5487258,50.3837961],[11.5488185,50.383808],[11.5489147,50.3838311],[11.5491466,50.3838732],[11.5491757,50.383881],[11.5492499,50.383901],[11.5493355,50.3839173],[11.54945,50.3839109],[11.54955,50.3838884],[11.5496362,50.3838545],[11.5497402,50.3838093],[11.5499483,50.3837325],[11.55002,50.3837064],[11.55026,50.3836196],[11.5506329,50.3834817],[11.5508983,50.3833731],[11.5511423,50.3832622],[11.5512466,50.3831896],[11.5513616,50.383117],[11.5514407,50.3830579],[11.5515699,50.3829854],[11.551717,50.3829288],[11.5519358,50.3828338],[11.5520792,50.3827841],[11.552201,50.3827343],[11.5523088,50.3826868],[11.5523984,50.3826507],[11.5525275,50.3825941],[11.5526241,50.3825808],[11.5527169,50.3825834],[11.5528668,50.3825954],[11.5530097,50.3826097],[11.5531917,50.3826309],[11.5534593,50.382664],[11.5535984,50.3826919],[11.5537409,50.3827221],[11.5538941,50.3827661],[11.5540078,50.3828397],[11.5540502,50.3828855],[11.5540961,50.3829381],[11.5541491,50.3830114],[11.5541983,50.3830893],[11.5542477,50.3831579],[11.5543327,50.3832359],[11.5544393,50.3832958],[11.5545283,50.3833235],[11.5546177,50.3833307],[11.554746,50.3833494],[11.5548709,50.3833751],[11.5549956,50.3834166],[11.5551167,50.3834513],[11.5552416,50.3834656],[11.5553632,50.3834455],[11.5554957,50.3834163],[11.5556603,50.3833826],[11.5557962,50.3833718],[11.5559391,50.3833746],[11.5560426,50.3833888],[11.5561745,50.3834122],[11.5563384,50.3834492],[11.5565276,50.3834684],[11.5566561,50.383471],[11.5567634,50.3834692],[11.5568671,50.383449],[11.5569568,50.3834265],[11.5570822,50.3833837],[11.5572075,50.3833385],[11.557315,50.3833046],[11.5574584,50.383271],[11.5575869,50.38326],[11.5577084,50.3832605],[11.557844,50.3832793],[11.5579724,50.3833049],[11.5581401,50.383333],[11.5582612,50.3833676],[11.5584038,50.3834048],[11.5586672,50.3834949],[11.5589417,50.3835781],[11.5593119,50.3837029],[11.5594934,50.3837834],[11.55965,50.3838526],[11.5597541,50.3839143],[11.5597779,50.3839285],[11.5598984,50.3840339],[11.5599763,50.3841119],[11.560079,50.3842081],[11.5602314,50.3843275],[11.560402,50.3844355],[11.5605265,50.3844907],[11.5607159,50.3845562],[11.560927,50.3845521],[11.5610128,50.3845816],[11.5611021,50.3846248],[11.5612021,50.3846773],[11.5612879,50.3847206],[11.5613667,50.3847707],[11.5614632,50.3848482],[11.5615349,50.3848916],[11.5616313,50.3849348],[11.5617457,50.3849917],[11.5618887,50.3850874],[11.5621534,50.3852949],[11.5623036,50.3853746],[11.5624322,50.3854497],[11.5624895,50.3854953],[11.5625146,50.3855388],[11.5625183,50.3855912],[11.5625183,50.3856209],[11.5625328,50.3856597],[11.5625436,50.3856848],[11.5625829,50.3857099],[11.5626366,50.3857417],[11.5626902,50.3857668],[11.5627581,50.3857987],[11.562826,50.3858192],[11.5628902,50.3858396],[11.5629689,50.3858761],[11.5630118,50.3859149],[11.5630297,50.3859445],[11.563062,50.3859946],[11.5630907,50.3860311],[11.5631265,50.3860608],[11.563173,50.3860905],[11.5632266,50.3861086],[11.5632731,50.3861314],[11.5633122,50.386161],[11.5633411,50.3862021],[11.5633768,50.3862522],[11.5634093,50.3863093],[11.5634595,50.3863732],[11.563513,50.3864301],[11.5635774,50.3864621],[11.5636704,50.3864917],[11.5637631,50.386512],[11.5638953,50.3865508],[11.5639918,50.3865917],[11.5641168,50.3866373],[11.5642491,50.3867056],[11.5642796,50.3867244],[11.5643708,50.3867808],[11.5644636,50.3868172],[11.5645672,50.3868673],[11.5646435,50.3869281],[11.564653,50.3869358],[11.5646609,50.3869457],[11.5646926,50.3869859],[11.5647391,50.3870178],[11.5648105,50.3870429],[11.5649034,50.3870656],[11.5649961,50.387086],[11.5650892,50.3871294],[11.5651393,50.3871726],[11.5651413,50.3871743],[11.565175,50.3872023],[11.5652145,50.3872684],[11.5652289,50.3873299],[11.5652291,50.3873802],[11.5652114,50.3874168],[11.5651973,50.3874533],[11.5651831,50.3874944],[11.5651797,50.3875332],[11.5651939,50.3875697],[11.5652156,50.3876039],[11.5652229,50.387645],[11.5652142,50.3876727],[11.5652122,50.3876792],[11.5651874,50.3877363],[11.5651777,50.3877621],[11.5651626,50.3878025],[11.5651539,50.3878107],[11.5651057,50.3878551],[11.5650629,50.3879031],[11.5649918,50.3879624],[11.56495,50.388004],[11.5649134,50.3880401],[11.5647961,50.3881498],[11.5647534,50.3881977],[11.5647072,50.3882526],[11.5647059,50.3882551],[11.5646859,50.3882937],[11.5646753,50.3883553],[11.5646755,50.3883714],[11.5646899,50.3884353],[11.5647151,50.3885082],[11.5647367,50.3885652],[11.5647797,50.3886314],[11.5648479,50.3887158],[11.5649012,50.3887657],[11.5649015,50.3887659],[11.5649183,50.3887826],[11.5649486,50.3888125],[11.564966,50.3888297],[11.5650589,50.3889098],[11.5650948,50.3889506],[11.5650963,50.3889548],[11.5651128,50.3890008],[11.5651546,50.3890389],[11.5651629,50.3890464],[11.5651674,50.3890626],[11.5651774,50.3890989],[11.5651848,50.3891628],[11.5651955,50.3892131],[11.565217,50.3892654],[11.5652423,50.3893157],[11.5652888,50.3893566],[11.5653567,50.3893794],[11.5654638,50.3894112],[11.5655602,50.3894249],[11.5655875,50.3894266],[11.5656674,50.3894316],[11.5657744,50.3894497],[11.5658081,50.3894599],[11.5658424,50.3894702],[11.5658923,50.3895043],[11.5659212,50.3895455],[11.5659463,50.3896025],[11.5659714,50.3896572],[11.5660038,50.3897098],[11.5660288,50.3897622],[11.566072,50.3898032],[11.5661756,50.3898716],[11.5663115,50.3899627],[11.5666476,50.3901336],[11.5666957,50.3902756],[11.5667157,50.3903984],[11.5667149,50.3904956],[11.5667058,50.3907217],[11.5666156,50.3908241],[11.5665433,50.3909335],[11.5665748,50.3909907],[11.5666005,50.3910739],[11.5665975,50.3912041],[11.5665868,50.3912405],[11.5665583,50.3912817],[11.5665193,50.3913274],[11.5664728,50.3913639],[11.5664195,50.3914074],[11.5663875,50.3914462],[11.5663805,50.3914805],[11.566384,50.3914965],[11.5663796,50.3915133],[11.566363,50.3915741],[11.5663274,50.3916198],[11.5662919,50.3916768],[11.5662813,50.3917248],[11.5662813,50.3917307],[11.5662814,50.3917749],[11.5663102,50.3918411],[11.5663322,50.3918762],[11.5663461,50.3918982],[11.5664211,50.3919597],[11.5665143,50.3920509],[11.5666002,50.3921103],[11.5666432,50.3921444],[11.5666502,50.3921581],[11.5666432,50.3921764],[11.5666219,50.39219],[11.5665933,50.3922084],[11.5665756,50.3922381],[11.5665829,50.3922586],[11.5666077,50.3922699],[11.5666221,50.3922722],[11.5666542,50.3922699],[11.56669,50.3922812],[11.5667115,50.3923017],[11.5667042,50.3923109],[11.5666829,50.3923201],[11.5666687,50.3923247],[11.5666294,50.3923384],[11.5666048,50.3924023],[11.5666082,50.3924092],[11.566644,50.3924205],[11.5666726,50.3924364],[11.5666905,50.3924547],[11.5666942,50.3924799],[11.5666835,50.3925163],[11.5666801,50.3925415],[11.5666695,50.3925963],[11.566666,50.3926213],[11.5666591,50.3926602],[11.5666628,50.3926876],[11.5667056,50.3927081],[11.5667269,50.3926943],[11.5667447,50.3926806],[11.5667591,50.3926646],[11.5667804,50.3926509],[11.5668126,50.392644],[11.5668374,50.3926532],[11.5668339,50.3926646],[11.5668233,50.3926783],[11.5668056,50.392708],[11.5667593,50.3927834],[11.5667239,50.3928313],[11.5667061,50.3928586],[11.5666918,50.3929044],[11.5666742,50.3929294],[11.5666493,50.3929478],[11.5666207,50.3929524],[11.566585,50.3929593],[11.5665564,50.3929638],[11.566528,50.3929707],[11.5664887,50.3929844],[11.5664674,50.3930005],[11.5664496,50.3930278],[11.566446,50.3930461],[11.5664461,50.3930598],[11.5664532,50.3930826],[11.5664456,50.3931206],[11.5664641,50.3931465],[11.5665106,50.3931738],[11.5665143,50.3931899],[11.5665108,50.3932035],[11.5664965,50.3932218],[11.5664788,50.39324],[11.5664609,50.3932561],[11.5664396,50.3932835],[11.5664361,50.3932995],[11.5664362,50.3933223],[11.5664362,50.3933406],[11.5664435,50.393377],[11.5664579,50.3934432],[11.566459,50.3934652],[11.5664618,50.3935277],[11.5664727,50.3935847],[11.5664941,50.3936075],[11.5665191,50.3936098],[11.5665478,50.3936143],[11.5665692,50.3936189],[11.5666014,50.3936348],[11.5666228,50.3936553],[11.5666336,50.3936712],[11.5666408,50.3936849],[11.566641,50.3937238],[11.5666338,50.3937558],[11.5666126,50.3937877],[11.5665877,50.3938083],[11.5665605,50.3938335],[11.5665557,50.393838],[11.5665593,50.3938745],[11.5665772,50.3938904],[11.5666165,50.3938996],[11.5666914,50.3939177],[11.5667308,50.3939291],[11.5667881,50.3939496],[11.5668345,50.3939724],[11.5668559,50.3939906],[11.5668739,50.3940066],[11.5668881,50.3940271],[11.5669312,50.3940933],[11.5669743,50.3941639],[11.5669709,50.3942255],[11.5669459,50.394237],[11.5669102,50.3942416],[11.5668675,50.3942439],[11.566846,50.3942554],[11.5668426,50.3942805],[11.5668498,50.3943238],[11.5668607,50.394358],[11.5668786,50.3944196],[11.5668967,50.3944812],[11.5669326,50.3945383],[11.5669612,50.3945702],[11.5669541,50.3945839],[11.5669328,50.3945885],[11.5668971,50.3946],[11.5668793,50.3946251],[11.5668795,50.3946547],[11.5668831,50.3946844],[11.5669045,50.3946981],[11.5669403,50.3947072],[11.5669725,50.3947139],[11.5670011,50.3947116],[11.5670331,50.394723],[11.5670546,50.394739],[11.5670689,50.3947618],[11.567069,50.3947869],[11.5670621,50.394812],[11.5670477,50.3948349],[11.5670228,50.3948646],[11.5669944,50.3948874],[11.5669766,50.3949011],[11.5669518,50.3949217],[11.5669304,50.39494],[11.5669054,50.3949675],[11.5669091,50.3950039],[11.5669809,50.3951042],[11.5670057,50.3951157],[11.56702,50.3951202],[11.5670631,50.3951522],[11.5670739,50.3952046],[11.5670599,50.3952503],[11.567035,50.3952846],[11.5670136,50.3953164],[11.566978,50.3953508],[11.5669283,50.3954398],[11.5669497,50.3954489],[11.5669855,50.3954488],[11.5670104,50.3954397],[11.5670353,50.3954261],[11.5670532,50.3954192],[11.5670745,50.39541],[11.5670995,50.3954008],[11.5671388,50.3953962],[11.5671639,50.3954077],[11.5671781,50.3954259],[11.5671817,50.3954327],[11.5671782,50.3954555],[11.5671856,50.3955012],[11.5671942,50.3955306],[11.5671963,50.3955376],[11.5672002,50.3955948],[11.5672323,50.3956244],[11.567261,50.3956334],[11.5673003,50.3956426],[11.5673359,50.3956379],[11.5673751,50.3956471],[11.5673967,50.3956653],[11.5674289,50.395695],[11.567454,50.3957315],[11.5674649,50.3957634],[11.5674614,50.395793],[11.5674542,50.3957998],[11.5674363,50.3958159],[11.5674185,50.3958251],[11.5673865,50.3958388],[11.5673508,50.3958501],[11.5673401,50.3958616],[11.5673259,50.3958845],[11.5673189,50.3958982],[11.5673189,50.3959348],[11.5673297,50.3959712],[11.567337,50.3959917],[11.567355,50.3960123],[11.5673763,50.3960237],[11.5674193,50.3960396],[11.5674694,50.3960555],[11.5675228,50.3960736],[11.5675658,50.3960874],[11.5675765,50.3961056],[11.5675765,50.3961376],[11.5676053,50.3961672],[11.567666,50.3961969],[11.5676946,50.3962128],[11.5677054,50.3962287],[11.5677055,50.3962538],[11.5676949,50.396263],[11.5676806,50.3962904],[11.5676736,50.3963109],[11.5676665,50.3963383],[11.5676702,50.3963657],[11.5676809,50.3963886],[11.5676988,50.3964136],[11.5677381,50.3964455],[11.5677919,50.3964638],[11.5678455,50.3964819],[11.5678811,50.3964864],[11.5679172,50.3965503],[11.5678957,50.3965618],[11.567878,50.3965778],[11.5678638,50.3965938],[11.5678529,50.3966121],[11.5678567,50.3966393],[11.5678603,50.3966554],[11.5678745,50.3966828],[11.5678855,50.3967192],[11.5678962,50.3967466],[11.567925,50.3967945],[11.5679428,50.3968013],[11.5679892,50.3967945],[11.5680429,50.3968035],[11.5680893,50.3968378],[11.5681358,50.3968719],[11.5681896,50.3969197],[11.568211,50.3969654],[11.5682291,50.3970111],[11.5682469,50.3970407],[11.5682722,50.3970795],[11.5683149,50.3971069],[11.5683759,50.3971364],[11.568408,50.397134],[11.5684295,50.3971272],[11.5684687,50.3971158],[11.5685044,50.3971181],[11.5685329,50.3971408],[11.5685508,50.3971568],[11.5685652,50.3971704],[11.5686081,50.3971955],[11.5686545,50.3972114],[11.5687259,50.3972205],[11.5687795,50.3972319],[11.568776,50.3972501],[11.5687726,50.3972821],[11.5687727,50.3973027],[11.5687583,50.3973118],[11.568819,50.3973095],[11.5688439,50.3973025],[11.5688796,50.3972934],[11.5689224,50.3972888],[11.5689583,50.3972933],[11.5690047,50.3973092],[11.5690619,50.3973456],[11.5690906,50.3973936],[11.5690872,50.3974323],[11.5690908,50.3974575],[11.5691016,50.3974712],[11.5691266,50.3974803],[11.5691552,50.3974916],[11.5692266,50.3975305],[11.569284,50.3975897],[11.569309,50.3976056],[11.5693163,50.3976262],[11.569302,50.3976444],[11.5692841,50.397649],[11.5692557,50.3976673],[11.5692486,50.3976788],[11.5692522,50.3977061],[11.5692595,50.3977471],[11.5692738,50.3977654],[11.5693167,50.3977746],[11.5693488,50.3977745],[11.5693987,50.3977721],[11.5694488,50.3977744],[11.5694989,50.3977812],[11.5695167,50.3978017],[11.5695131,50.3978268],[11.5695062,50.3978542],[11.5695062,50.3978701],[11.5695028,50.3978952],[11.5695135,50.3979158],[11.5695565,50.3979432],[11.5696351,50.3979796],[11.5696924,50.3980115],[11.5697354,50.398064],[11.5697389,50.3980982],[11.5697606,50.3981392],[11.5697891,50.3981643],[11.5698357,50.3981962],[11.5698608,50.3982076],[11.5698677,50.3982278],[11.5698824,50.3982715],[11.5698718,50.3982989],[11.5698719,50.3983194],[11.5698968,50.3983513],[11.5699397,50.3983582],[11.5699721,50.3983787],[11.5699863,50.3984083],[11.5699972,50.3984289],[11.5700294,50.3984494],[11.570108,50.398495],[11.5701688,50.3985428],[11.5702118,50.3985724],[11.5702797,50.3986499],[11.5703514,50.398716],[11.570416,50.3987777],[11.570441,50.3988164],[11.5704477,50.3988283],[11.5704594,50.3988542],[11.5704626,50.3988871],[11.5704484,50.3988985],[11.5704198,50.3989191],[11.5704236,50.398942],[11.5704807,50.3989625],[11.570545,50.3989783],[11.5705952,50.398992],[11.5706024,50.3990057],[11.5705879,50.3990216],[11.570563,50.3990422],[11.5705417,50.3990605],[11.5705311,50.3990742],[11.5705347,50.3990788],[11.5705669,50.3990878],[11.5706062,50.3990992],[11.5706775,50.3991174],[11.5707169,50.3991289],[11.5707491,50.3991402],[11.5707742,50.3991744],[11.5707814,50.3992086],[11.5707743,50.3992406],[11.5707745,50.3992703],[11.5707925,50.3993067],[11.5708425,50.3993477],[11.5709034,50.3993956],[11.5710059,50.3994113],[11.5713544,50.3995631],[11.5715284,50.3996619],[11.5718738,50.3997612],[11.5723509,50.3999249],[11.5725711,50.4000421],[11.5731878,50.4001537],[11.5733379,50.4001565],[11.5737918,50.4000825],[11.5742031,50.400004],[11.5746607,50.3999255],[11.5749971,50.3998422],[11.5753868,50.3997749],[11.5757157,50.3997256],[11.5759588,50.3996763],[11.5763772,50.3996114],[11.5766415,50.3995962],[11.5768085,50.3995687],[11.5770635,50.3995268],[11.5774058,50.3995621],[11.5778415,50.399543],[11.5781238,50.3995234],[11.5785162,50.3995497],[11.5789019,50.3995533],[11.579152,50.3995198],[11.579155,50.3995189],[11.5793382,50.3994609],[11.5794172,50.399411],[11.5797003,50.3992908],[11.5799724,50.399205],[11.5804234,50.3990557],[11.5806019,50.3990539],[11.5806073,50.3990552],[11.5808085,50.3991003],[11.5814337,50.3990544],[11.5817479,50.3990691],[11.5819057,50.399112],[11.5820114,50.3991407],[11.5826052,50.3994233],[11.5828329,50.39952],[11.5829506,50.3995319],[11.5832075,50.3995486],[11.5835612,50.3995386],[11.5838574,50.3995302],[11.5840751,50.3995399],[11.584364,50.3995705],[11.5846417,50.3996628],[11.5849085,50.3997801],[11.5850425,50.3999677],[11.5852021,50.4001167],[11.5853835,50.4001766],[11.5856824,50.4002985],[11.585957,50.4003474],[11.5863518,50.4005222],[11.586654,50.4006716],[11.5869458,50.400789],[11.5871449,50.4008901],[11.5873121,50.4009569],[11.5875189,50.4009826],[11.5875723,50.4009923],[11.5877364,50.4010221],[11.5879572,50.4010982],[11.5880637,50.4011556],[11.5882989,50.4012249],[11.5885555,50.401285],[11.5886647,50.4014383],[11.5888674,50.4015348],[11.5890382,50.4016084],[11.5891554,50.4016819],[11.5892579,50.401817],[11.5893502,50.4018835],[11.5894207,50.4019888],[11.5895951,50.4020486],[11.5898841,50.4020747],[11.5899789,50.4020781],[11.5900095,50.4020792],[11.5900945,50.4020821],[11.5903159,50.4020875],[11.5905668,50.4019785],[11.5907272,50.4020178],[11.5908027,50.4020448],[11.5908414,50.4020768],[11.5908879,50.4021455],[11.5909959,50.4021913],[11.591254,50.4022118],[11.5913975,50.402214],[11.5915698,50.4022759],[11.5916056,50.4023033],[11.5916343,50.402324],[11.5917242,50.402411],[11.5917779,50.4024432],[11.5919071,50.4024752],[11.5920758,50.4024888],[11.5922658,50.4025277],[11.5923843,50.4025827],[11.5925064,50.4026858],[11.5926368,50.4027345],[11.5927791,50.4027522],[11.5929441,50.4027635],[11.5930731,50.4027497],[11.5932166,50.4027702],[11.593229,50.4027718],[11.5933387,50.4027863],[11.5934092,50.4027836],[11.5935573,50.4027426],[11.5936864,50.4026715],[11.5937546,50.4026622],[11.5938334,50.4026576],[11.5939913,50.4026575],[11.5942315,50.4026207],[11.5943284,50.4026137],[11.5944073,50.4026206],[11.594447,50.4026257],[11.5945472,50.4025793],[11.5946797,50.4025425],[11.5948633,50.4024844],[11.5950455,50.4024139],[11.5951709,50.4023656],[11.5952678,50.4023358],[11.5953466,50.4023037],[11.5954397,50.4022623],[11.5955365,50.4022095],[11.5956298,50.4021636],[11.5957271,50.4021194],[11.5957543,50.4020159],[11.595756,50.4020097],[11.5957577,50.4020029],[11.5958412,50.4019641],[11.5959307,50.4019158],[11.596053,50.4018873],[11.5960666,50.4018805],[11.5963072,50.4017873],[11.5965085,50.4017504],[11.5966801,50.4017564],[11.5967895,50.4017186],[11.5968628,50.4016934],[11.5969096,50.401654],[11.5970093,50.401499],[11.5970322,50.4014739],[11.5971099,50.4013878],[11.5973574,50.4013166],[11.5975437,50.4012523],[11.5976585,50.4011605],[11.5978306,50.4010986],[11.5980492,50.4010618],[11.5982429,50.4010571],[11.5984223,50.4010708],[11.5987056,50.4010774],[11.5989316,50.4010498],[11.5991717,50.400919],[11.599358,50.4008088],[11.5994118,50.4007078],[11.5994259,50.4005955],[11.5994979,50.4005588],[11.5995297,50.4005427],[11.5996984,50.4005426],[11.5998382,50.4005172],[11.5999816,50.4004439],[11.6002325,50.400352],[11.6004727,50.400299],[11.6006127,50.4002692],[11.6007307,50.4001957],[11.6008276,50.4001453],[11.6009889,50.4000878],[11.6011251,50.4000122],[11.6011679,50.3998814],[11.6011892,50.3997094],[11.6012642,50.3995489],[11.6014542,50.3994043],[11.6016081,50.3992025],[11.6017621,50.3991312],[11.6019773,50.3990326],[11.6022509,50.3988533],[11.6022853,50.3988308],[11.6023583,50.3988011],[11.6024671,50.3987872],[11.602585,50.3987866],[11.6028817,50.3987989],[11.60326,50.3987673],[11.6033682,50.3985522],[11.6035174,50.3984966],[11.6037785,50.3985968],[11.6038958,50.398546],[11.6040534,50.3985772],[11.6042427,50.3985809],[11.6045016,50.3987099],[11.6045454,50.398785],[11.6047411,50.3987224],[11.6050517,50.3987049],[11.6052364,50.3986172],[11.6053425,50.3985298],[11.6055348,50.398481],[11.6055483,50.3984147],[11.6054901,50.3983282],[11.6056596,50.398179],[11.6057775,50.3981716],[11.6060234,50.398127],[11.606065,50.3980263],[11.6063222,50.398025],[11.6063003,50.3979795],[11.6063763,50.3978826],[11.6064443,50.3977961],[11.6065329,50.3977226],[11.6064563,50.3975996],[11.6064479,50.3974945],[11.6066852,50.3973449],[11.6068047,50.3971892],[11.6068495,50.3970473],[11.6066994,50.3970549],[11.6065645,50.3971058],[11.6065203,50.3970055],[11.6065829,50.3968773],[11.6067279,50.3967556],[11.6067445,50.3966527],[11.6068572,50.3965196],[11.606952,50.3963845],[11.6070763,50.3963313],[11.6072944,50.3963395],[11.607512,50.3963224],[11.6077104,50.3961913],[11.6078438,50.3960033],[11.6077202,50.3958395],[11.6076405,50.3957508],[11.6079031,50.3956103],[11.6081279,50.3954913],[11.6081338,50.3954881],[11.6081659,50.3954629],[11.6082824,50.3953709],[11.6084342,50.3952262],[11.6086258,50.3951112],[11.6087673,50.3950031],[11.6088761,50.3948496],[11.608786,50.3947884],[11.6088464,50.3947516],[11.6087111,50.3947865],[11.6088478,50.3945963],[11.6091043,50.3945311],[11.6092669,50.3943978],[11.6094995,50.3941409],[11.6096723,50.3939619],[11.6096719,50.3939266],[11.6096704,50.3938112],[11.6099039,50.3936273],[11.610153,50.3935485],[11.6103207,50.3935361],[11.6104641,50.393588],[11.6105909,50.3934391],[11.610662,50.3934044],[11.6107733,50.3934316],[11.6108267,50.3934446],[11.6110047,50.3934586],[11.6111272,50.3934683],[11.6113552,50.3934284],[11.6115112,50.3933294],[11.6115301,50.3932793],[11.6115561,50.3932104],[11.6117904,50.3930928],[11.611993,50.3930096],[11.6121889,50.3929539],[11.6123955,50.3929209],[11.6125944,50.3928308],[11.612772,50.3927409],[11.6128788,50.3927107],[11.6129512,50.3927857],[11.6133935,50.3924569],[11.6134101,50.3923541],[11.6135718,50.39215],[11.6137561,50.392035],[11.614037,50.3919284],[11.6140918,50.3917477],[11.6141726,50.391682],[11.6143004,50.3915777],[11.6143992,50.3914791],[11.6146136,50.3914779],[11.6148315,50.3914929],[11.6150564,50.3914667],[11.61517,50.3914227],[11.6152112,50.3912969],[11.6154169,50.3911703],[11.6159553,50.3908727],[11.6159051,50.3907895],[11.6158539,50.3907045],[11.6160131,50.3905896],[11.6160157,50.3905051],[11.6163023,50.3902936],[11.6164404,50.3901901],[11.6165115,50.3901647],[11.6165235,50.3901328],[11.6165306,50.3901168],[11.6165343,50.3901031],[11.6165342,50.3900895],[11.6165305,50.3900712],[11.6165268,50.3900576],[11.6165125,50.3900394],[11.6164947,50.3900256],[11.6164874,50.3900165],[11.6164694,50.3899915],[11.6164872,50.3899663],[11.6165156,50.3899251],[11.6165584,50.3899206],[11.6165797,50.3899137],[11.616594,50.3898976],[11.6166046,50.3898657],[11.6166098,50.3898452],[11.6166115,50.3898382],[11.6166222,50.3898224],[11.6166471,50.3897995],[11.6166829,50.3897879],[11.6166898,50.3897857],[11.6167399,50.3897902],[11.616797,50.3897924],[11.6168292,50.3897923],[11.6168506,50.3897877],[11.6168791,50.3897786],[11.6169075,50.3897626],[11.6169217,50.389742],[11.6169609,50.3897305],[11.6170039,50.3897396],[11.6170394,50.3897441],[11.6171145,50.3897394],[11.6171643,50.3897166],[11.6172106,50.389696],[11.617289,50.389657],[11.6173139,50.3896364],[11.6173384,50.3896157],[11.6173814,50.3895793],[11.6174134,50.3895518],[11.617474,50.3895152],[11.6175168,50.3895083],[11.6175525,50.3895083],[11.6176059,50.3894991],[11.6176309,50.3894716],[11.6176486,50.389442],[11.6176627,50.3894168],[11.6176877,50.3893917],[11.6176982,50.3893688],[11.6176945,50.3893505],[11.6176874,50.3893256],[11.6176765,50.3892913],[11.617662,50.3892457],[11.6176477,50.3892068],[11.6176368,50.3891636],[11.617633,50.389127],[11.6176345,50.3891088],[11.6176363,50.3890882],[11.6176506,50.3890563],[11.6176897,50.3890174],[11.6177394,50.3889854],[11.617793,50.3889693],[11.6178393,50.3889624],[11.6178399,50.3889623],[11.6178822,50.3889532],[11.6179249,50.3889508],[11.6179677,50.3889325],[11.6179746,50.3889052],[11.617971,50.3888846],[11.6179742,50.3887933],[11.6179756,50.3887844],[11.617988,50.3887043],[11.6179913,50.3886129],[11.6179926,50.3886103],[11.6180124,50.3885696],[11.6180623,50.3885535],[11.6181266,50.3885489],[11.618173,50.3885351],[11.6182122,50.3885259],[11.6182514,50.3885167],[11.6182621,50.3884847],[11.6182621,50.3884733],[11.6182797,50.3884368],[11.618326,50.3884208],[11.6183547,50.3884253],[11.6183867,50.3884389],[11.6184081,50.3884503],[11.6184304,50.3884662],[11.6184368,50.3884708],[11.6184619,50.3884845],[11.6185298,50.3884981],[11.6185761,50.3884957],[11.618619,50.3884933],[11.6186901,50.388459],[11.6187257,50.3884362],[11.6187721,50.3884064],[11.6188006,50.3883858],[11.6188254,50.3883538],[11.618843,50.3883014],[11.6188536,50.388267],[11.6188641,50.3882305],[11.6188782,50.3881895],[11.6188889,50.388162],[11.6189065,50.3881324],[11.6189273,50.3880991],[11.6189278,50.3880981],[11.6189671,50.3880615],[11.6190381,50.3880134],[11.6191024,50.3879997],[11.6191629,50.3879951],[11.6192129,50.3879927],[11.6192521,50.3879949],[11.6192771,50.3879971],[11.619302,50.3879743],[11.6193127,50.3879583],[11.6193375,50.3879468],[11.6193912,50.3879422],[11.6194412,50.3879513],[11.6194625,50.3879535],[11.6194912,50.3879603],[11.6195304,50.3879511],[11.6195517,50.3879329],[11.6195802,50.3879214],[11.6196053,50.3879213],[11.6196481,50.3879486],[11.6196661,50.38796],[11.6196928,50.3879747],[11.6197161,50.3879873],[11.6197412,50.3880055],[11.6197698,50.388017],[11.6198092,50.3880238],[11.6198591,50.3880259],[11.6199232,50.3880122],[11.6199838,50.3879961],[11.620073,50.3879731],[11.6201477,50.3879479],[11.6201799,50.387932],[11.620244,50.3879125],[11.62045,50.3878111],[11.6206707,50.3877575],[11.6209418,50.3877356],[11.6210483,50.387678],[11.6209099,50.3874799],[11.6208403,50.3873387],[11.6209535,50.3872491],[11.6214693,50.3872209],[11.6219671,50.3871937],[11.6221649,50.3870123],[11.6227161,50.3868223],[11.6229051,50.3868008],[11.6230949,50.3868478],[11.6232142,50.3868972],[11.6233458,50.3868578],[11.6234562,50.3867937],[11.6235204,50.3867662],[11.623599,50.3867547],[11.6236526,50.3867524],[11.6237205,50.3867591],[11.6237919,50.3867636],[11.6238635,50.3867749],[11.6239385,50.3867839],[11.6239993,50.3867884],[11.6240493,50.3867952],[11.6240887,50.3868021],[11.6241495,50.386811],[11.6241922,50.386811],[11.6242351,50.3868041],[11.6242993,50.3867903],[11.6243564,50.3867766],[11.6244064,50.386765],[11.6244743,50.3867535],[11.6245136,50.3867535],[11.6245602,50.3867648],[11.6246137,50.3867762],[11.6246351,50.3867921],[11.6246425,50.3868081],[11.6246424,50.3868195],[11.6246319,50.3868355],[11.6246176,50.386847],[11.6245962,50.3868539],[11.6245926,50.3868676],[11.6246104,50.3868744],[11.6246749,50.3868903],[11.6247571,50.3869084],[11.6247575,50.3869086],[11.6248429,50.3869266],[11.6250573,50.3869469],[11.6252323,50.3869467],[11.6253324,50.3869374],[11.6253739,50.3869314],[11.6253966,50.3869282],[11.6254681,50.3869075],[11.6255465,50.3868937],[11.6256287,50.3868731],[11.6257108,50.3868615],[11.6257823,50.3868751],[11.6258038,50.3869003],[11.6258217,50.3869367],[11.6258255,50.3869688],[11.6258363,50.3870098],[11.6259046,50.3871171],[11.6259619,50.3871673],[11.6260085,50.3872037],[11.6260908,50.38727],[11.6261589,50.3873452],[11.6262199,50.3874113],[11.6262703,50.3874752],[11.6262918,50.3875209],[11.626292,50.3875871],[11.6262709,50.3876488],[11.6262494,50.3876855],[11.6262245,50.3877106],[11.6261854,50.3877335],[11.6261568,50.3877586],[11.626132,50.3877861],[11.6261213,50.3878204],[11.6261333,50.3878371],[11.6261392,50.3878455],[11.6261894,50.3878773],[11.6262539,50.3879115],[11.6263004,50.3879252],[11.6263754,50.387941],[11.6264433,50.3879524],[11.6265256,50.3879774],[11.6265575,50.3879892],[11.6266365,50.3880184],[11.6267259,50.3880663],[11.626794,50.3881325],[11.6268443,50.3881918],[11.626891,50.3882625],[11.6269447,50.3883241],[11.6270129,50.3884017],[11.6270415,50.3884336],[11.6270989,50.3884472],[11.6271302,50.3884394],[11.6271452,50.3884357],[11.6271562,50.3884336],[11.6272059,50.3884242],[11.6272632,50.3884264],[11.6273167,50.3884356],[11.6273668,50.3884583],[11.6273919,50.3884879],[11.6274099,50.3885199],[11.6274457,50.3885678],[11.6274817,50.3886157],[11.6275391,50.3886819],[11.627625,50.3887388],[11.6277359,50.3887776],[11.627836,50.3887957],[11.627936,50.3887978],[11.6280362,50.3887955],[11.6281324,50.3887885],[11.6281479,50.388786],[11.6282182,50.3887746],[11.628286,50.388754],[11.6283682,50.3887333],[11.6284358,50.3887081],[11.6285072,50.3886828],[11.6286108,50.3886507],[11.6287107,50.3886278],[11.6287928,50.3886117],[11.6288785,50.3886024],[11.62905,50.388593],[11.6292679,50.3886087],[11.6294181,50.3886222],[11.6294929,50.3886243],[11.6295789,50.3886266],[11.6298217,50.388608],[11.6300039,50.3885963],[11.6301431,50.3885709],[11.6302467,50.3885616],[11.6302966,50.3885457],[11.6302983,50.3885453],[11.6303126,50.3885422],[11.6303503,50.3885341],[11.6303788,50.3885203],[11.6304073,50.3885021],[11.6304322,50.3884792],[11.6304678,50.3884517],[11.6304891,50.3884198],[11.6305002,50.3884003],[11.6305034,50.3883946],[11.6305318,50.3883649],[11.6305639,50.3883466],[11.6306424,50.3883008],[11.6307244,50.3882595],[11.630785,50.388232],[11.63086,50.3881977],[11.6309171,50.388177],[11.6309884,50.3881495],[11.6310491,50.3881288],[11.6311168,50.388115],[11.6311812,50.3881173],[11.6312669,50.3881171],[11.6313491,50.3881102],[11.6314026,50.3880895],[11.631456,50.3880644],[11.6315243,50.3880324],[11.6315345,50.3880277],[11.631606,50.3879933],[11.6317165,50.3879612],[11.6317985,50.3879406],[11.6318736,50.3879266],[11.6319913,50.387906],[11.6320557,50.3878993],[11.6321021,50.3878944],[11.6321123,50.3878945],[11.6322771,50.3878965],[11.6323416,50.3879124],[11.6324131,50.3879534],[11.6324668,50.3879853],[11.6325385,50.3880331],[11.6326102,50.3880901],[11.6326854,50.3881312],[11.6327282,50.3881608],[11.6327783,50.3881812],[11.6328607,50.3881971],[11.6329097,50.3882062],[11.6329714,50.3882175],[11.6331001,50.3882471],[11.6332252,50.3882789],[11.633329,50.3883039],[11.6334399,50.3883357],[11.6335614,50.3883744],[11.6335937,50.3884085],[11.6336404,50.3884632],[11.6337013,50.3885248],[11.6337587,50.3885842],[11.6338053,50.3886321],[11.6338376,50.3886732],[11.6338343,50.3887326],[11.6338344,50.388776],[11.6338309,50.388808],[11.6338347,50.3888468],[11.6338455,50.388897],[11.6338565,50.3889381],[11.6338779,50.3889746],[11.6339532,50.3890407],[11.6340071,50.3890705],[11.6340605,50.3890932],[11.6341357,50.3891044],[11.634218,50.3891112],[11.6343144,50.3891112],[11.6344144,50.3891109],[11.6345145,50.3891017],[11.6345788,50.3890947],[11.6346465,50.3890878],[11.6347037,50.3890831],[11.6347787,50.3890945],[11.6348289,50.3891081],[11.6348789,50.3891217],[11.6349148,50.3891536],[11.6349327,50.389181],[11.6349471,50.3892152],[11.6349686,50.3892426],[11.6349758,50.3892609],[11.6349902,50.3892929],[11.6350011,50.3893088],[11.6350439,50.3893225],[11.6350726,50.3893271],[11.6351298,50.3893201],[11.6351762,50.3893177],[11.635212,50.3893155],[11.6352174,50.3893152],[11.6352584,50.3893131],[11.635319,50.3893129],[11.635344,50.389322],[11.6353727,50.3893426],[11.635412,50.3893654],[11.6354407,50.3893813],[11.6354872,50.3893949],[11.6355337,50.389404],[11.6355908,50.3894063],[11.6356517,50.389413],[11.6356981,50.3894198],[11.6357483,50.3894312],[11.6357946,50.3894448],[11.6358483,50.3894675],[11.6358664,50.3894881],[11.635895,50.3895222],[11.6359095,50.389568],[11.6359274,50.3896045],[11.6359527,50.3896342],[11.6359704,50.3896547],[11.6360063,50.3896729],[11.6360527,50.3896637],[11.6361098,50.3896408],[11.6361848,50.3896338],[11.6362706,50.38962],[11.6363598,50.3896016],[11.6364704,50.3895786],[11.6366132,50.3895647],[11.6367633,50.389569],[11.6369455,50.389587],[11.6371386,50.389621],[11.6373353,50.3896687],[11.6374639,50.3897014],[11.6375033,50.3896616],[11.6375532,50.3896296],[11.6375923,50.3896021],[11.6376245,50.3895884],[11.6376672,50.3895745],[11.6376993,50.3895677],[11.6377566,50.3895699],[11.6378351,50.3895857],[11.6379139,50.3896039],[11.6381366,50.3896904],[11.6382623,50.3897497],[11.6383553,50.3897976],[11.6384055,50.3898454],[11.6384378,50.3898796],[11.6384593,50.3899184],[11.6384667,50.3899527],[11.638474,50.3899847],[11.6384847,50.3900235],[11.6384957,50.3900508],[11.6385171,50.3900896],[11.6385567,50.3901238],[11.6385817,50.3901557],[11.6386069,50.3901831],[11.6386464,50.3902105],[11.6386964,50.3902402],[11.6387536,50.3902721],[11.6388216,50.3903062],[11.6388717,50.390329],[11.6389326,50.3903472],[11.6389933,50.3903471],[11.639079,50.3903493],[11.639147,50.3903492],[11.6392221,50.3903537],[11.6392863,50.3903558],[11.6393471,50.3903648],[11.6393971,50.3903716],[11.6395867,50.3904102],[11.6396796,50.3904237],[11.6397511,50.3904442],[11.6398083,50.3904693],[11.6398906,50.3904919],[11.6399871,50.3904941],[11.6400692,50.3904826],[11.6402156,50.3904526],[11.6403227,50.3904388],[11.6404514,50.3904272],[11.6405799,50.3904179],[11.6406835,50.3904131],[11.6408014,50.3904084],[11.6408658,50.3903946],[11.6409157,50.3903762],[11.6410227,50.3903647],[11.6411121,50.39036],[11.6412121,50.3903553],[11.641312,50.3903574],[11.6414157,50.390371],[11.6415051,50.3903867],[11.6415767,50.3903958],[11.6416588,50.3904002],[11.6417409,50.3903864],[11.6418052,50.3903863],[11.6418802,50.390384],[11.641959,50.3903861],[11.6420483,50.3903997],[11.6421483,50.3904224],[11.6422342,50.3904359],[11.6423236,50.3904473],[11.6423454,50.3904519],[11.6424308,50.39047],[11.6425024,50.390479],[11.6425594,50.3904743],[11.6426094,50.3904538],[11.6426879,50.3904307],[11.6427736,50.3904146],[11.6428485,50.3904031],[11.6429271,50.390403],[11.6430129,50.3904143],[11.6430845,50.3904393],[11.6431417,50.3904712],[11.6432062,50.3905054],[11.6432634,50.3905259],[11.6433279,50.3905394],[11.6433958,50.3905393],[11.643478,50.3905369],[11.6435637,50.3905414],[11.643646,50.3905618],[11.6437103,50.3905869],[11.6438141,50.390637],[11.6438892,50.3906825],[11.6438987,50.3906892],[11.6439611,50.3907326],[11.6440291,50.3907736],[11.6441114,50.3908238],[11.644215,50.3908533],[11.6443009,50.3908669],[11.6443867,50.3908736],[11.6444616,50.3908804],[11.6445475,50.3908826],[11.6446332,50.3908983],[11.6447299,50.3909302],[11.6447617,50.3909421],[11.6448337,50.3909689],[11.6449088,50.3910122],[11.6449946,50.3910394],[11.6450948,50.3910577],[11.6451913,50.3910689],[11.6452914,50.3910802],[11.6454166,50.3911074],[11.645506,50.3911415],[11.6455705,50.3911757],[11.6456349,50.3912121],[11.6457172,50.3912577],[11.645796,50.3912964],[11.6458819,50.3913373],[11.6460214,50.391376],[11.6460965,50.3913942],[11.6461858,50.3914077],[11.6463218,50.3914212],[11.646411,50.3914188],[11.646486,50.3914164],[11.6465826,50.3914209],[11.6466754,50.3914343],[11.6467719,50.3914616],[11.6468472,50.3915049],[11.6468973,50.3915413],[11.6469546,50.391587],[11.6470013,50.3916212],[11.6470585,50.3916531],[11.647259,50.3917282],[11.6473328,50.3917318],[11.6473483,50.3917326],[11.6474268,50.3917257],[11.647627,50.3917322],[11.6477164,50.3917458],[11.6478201,50.3917708],[11.6478702,50.3917844],[11.6479416,50.391807],[11.6479883,50.3918321],[11.6480241,50.3918595],[11.6480636,50.3919005],[11.6480922,50.3919416],[11.6481317,50.391985],[11.6481607,50.3920786],[11.6482073,50.3921264],[11.648261,50.3921766],[11.6483113,50.3922017],[11.6483863,50.3922153],[11.6484435,50.3922197],[11.648683,50.3922445],[11.6487615,50.3922627],[11.6488298,50.3922923],[11.6489119,50.3923173],[11.6489977,50.3923263],[11.6490907,50.3923261],[11.6491548,50.3923124],[11.6492201,50.3922904],[11.6492299,50.392287],[11.6493369,50.3922503],[11.6494441,50.3922159],[11.6495295,50.3921907],[11.6496223,50.3921677],[11.6497581,50.3921446],[11.6498903,50.3921307],[11.6500294,50.3921283],[11.6502118,50.3921234],[11.6503581,50.3921231],[11.6504604,50.3921282],[11.6505369,50.392132],[11.6507085,50.3921477],[11.6508265,50.3921726],[11.6509695,50.3922113],[11.6510947,50.3922454],[11.6512091,50.392284],[11.651316,50.3923158],[11.6513237,50.3923181],[11.6514739,50.3923544],[11.6515955,50.3923816],[11.6517171,50.392402],[11.6518349,50.3924041],[11.6519599,50.3924016],[11.6520242,50.3923947],[11.6521028,50.3923877],[11.6522065,50.3923807],[11.6522169,50.3923799],[11.6523029,50.3923736],[11.6523778,50.3923667],[11.6524708,50.3923666],[11.6525388,50.3923687],[11.6525995,50.3923846],[11.6526639,50.3924097],[11.6526691,50.3924121],[11.6527355,50.3924438],[11.6528214,50.3924711],[11.6529251,50.3924983],[11.6530396,50.3925278],[11.6532074,50.3925505],[11.6533255,50.3925457],[11.6534397,50.3925317],[11.6535611,50.3925178],[11.6536647,50.392504],[11.653754,50.3924902],[11.6537722,50.3924906],[11.6538433,50.3924923],[11.6539255,50.3924921],[11.6540148,50.3924943],[11.6541328,50.3924851],[11.65464,50.3924636],[11.6547187,50.3924795],[11.6548534,50.3925034],[11.6548974,50.3925112],[11.6549176,50.3925138],[11.655094,50.392536],[11.655115,50.3925391],[11.6551597,50.3925457],[11.6552149,50.3925537],[11.6553549,50.3925745],[11.6555766,50.3926061],[11.6558698,50.3926399],[11.6558913,50.3926407],[11.6559912,50.3926443],[11.6561056,50.392644],[11.6562235,50.3926529],[11.6563164,50.392646],[11.6564127,50.3926162],[11.6565021,50.3925932],[11.6565626,50.3925794],[11.6565668,50.3925783],[11.6566341,50.392561],[11.6566948,50.3925449],[11.6568127,50.3925378],[11.6568805,50.3925446],[11.6569663,50.392549],[11.6570593,50.3925512],[11.6571449,50.3925441],[11.6572413,50.3925325],[11.6574808,50.3925094],[11.6577094,50.3925341],[11.6577809,50.39255],[11.6578739,50.3925659],[11.6579668,50.3925703],[11.6580776,50.3925678],[11.658199,50.3925447],[11.6583563,50.3925628],[11.6584848,50.3925648],[11.6585849,50.392567],[11.6587064,50.3925782],[11.6587744,50.3925826],[11.6588993,50.3925573],[11.6590098,50.392516],[11.6590848,50.3924771],[11.6591668,50.3924312],[11.659434,50.3922709],[11.6595553,50.3922251],[11.6596052,50.3922044],[11.6596695,50.3921792],[11.6600196,50.3921671],[11.6600698,50.3922014],[11.6601236,50.392247],[11.6601557,50.3922812],[11.6602026,50.3923313],[11.6602527,50.3923724],[11.6603207,50.3924202],[11.660396,50.3924589],[11.660464,50.3924863],[11.6605248,50.3924976],[11.6606034,50.3925089],[11.6606891,50.3925064],[11.660757,50.3924972],[11.6608676,50.3924651],[11.6609462,50.3924511],[11.6610354,50.3924465],[11.6611033,50.3924372],[11.6611642,50.3924462],[11.66125,50.3924735],[11.6613109,50.3925009],[11.6613967,50.3925349],[11.6615076,50.3925553],[11.6616076,50.3925735],[11.6616899,50.3925802],[11.6617899,50.39258],[11.661872,50.3925707],[11.6619435,50.3925637],[11.6620399,50.3925567],[11.6621185,50.3925681],[11.6622081,50.3925976],[11.6622975,50.3926386],[11.662387,50.3926887],[11.6624444,50.3927228],[11.6624911,50.3927684],[11.662534,50.3928163],[11.662563,50.3928528],[11.6625951,50.392887],[11.6626418,50.3929144],[11.6626883,50.3929395],[11.6627384,50.3929622],[11.6628062,50.3929781],[11.6628959,50.3930031],[11.6630244,50.3930303],[11.663121,50.3930666],[11.6633217,50.3931577],[11.6634181,50.393178],[11.6635039,50.3931939],[11.6635647,50.3932098],[11.6636505,50.3932371],[11.663801,50.3933076],[11.6638511,50.3933236],[11.6639083,50.3933372],[11.6640477,50.393337],[11.6640977,50.39333],[11.6641584,50.3933231],[11.6642299,50.393316],[11.6642941,50.3933091],[11.6643691,50.3933112],[11.6644478,50.3933202],[11.6645229,50.3933384],[11.6646518,50.3934044],[11.6647269,50.3934523],[11.6648129,50.3935046],[11.6648919,50.3935502],[11.6649778,50.3936026],[11.6650458,50.3936482],[11.665114,50.3937074],[11.6651534,50.3937553],[11.6651787,50.3937918],[11.6652073,50.3938307],[11.6652267,50.3938395],[11.665408,50.3939217],[11.6655105,50.3939372],[11.6655724,50.3939397],[11.6656402,50.393935],[11.6658353,50.3938935],[11.6659007,50.3938797],[11.6659402,50.3938617],[11.6660971,50.3937904],[11.666179,50.3937765],[11.6666148,50.3937392],[11.6667899,50.3937344],[11.666847,50.3937411],[11.6669114,50.3937455],[11.6669578,50.3937455],[11.6670079,50.3937431],[11.6670508,50.3937316],[11.6670899,50.3937201],[11.6671971,50.3937017],[11.6673688,50.3937265],[11.6674187,50.3937379],[11.6674653,50.393756],[11.6675261,50.3937673],[11.6675975,50.393758],[11.6676511,50.3937375],[11.6677224,50.3937123],[11.6678151,50.3936709],[11.6678864,50.393648],[11.6679507,50.3936296],[11.668047,50.3936065],[11.6681435,50.3935904],[11.6682326,50.3935811],[11.6683577,50.3935763],[11.6700805,50.3936945],[11.6701591,50.3937012],[11.6702593,50.3937056],[11.6703058,50.3937147],[11.6703593,50.393726],[11.6704023,50.3937419],[11.6704382,50.3937624],[11.6704811,50.3937988],[11.670517,50.3938421],[11.6705566,50.3938856],[11.6705889,50.3939242],[11.6706176,50.393954],[11.6706462,50.3939881],[11.6706752,50.3940247],[11.6707109,50.3940726],[11.6707718,50.3940976],[11.6708291,50.3941249],[11.6709006,50.3941385],[11.67099,50.3941406],[11.6710865,50.3941497],[11.6712259,50.3941699],[11.6713153,50.3941834],[11.671368,50.3941909],[11.6714118,50.3941971],[11.6715048,50.3942151],[11.6715941,50.3942264],[11.6718372,50.3942419],[11.6719945,50.3942371],[11.672098,50.3942415],[11.6721911,50.3942597],[11.6723449,50.3942959],[11.6724773,50.3943321],[11.6725489,50.394355],[11.6726419,50.3943844],[11.6727884,50.394407],[11.67291,50.3944091],[11.673192,50.3943698],[11.6734242,50.3943351],[11.6735028,50.394319],[11.6735777,50.394312],[11.6736383,50.3942959],[11.6738203,50.3942293],[11.6738987,50.3942155],[11.6739738,50.39422],[11.6740561,50.3942289],[11.6741455,50.3942425],[11.6744851,50.3942739],[11.6747032,50.3942826],[11.6748852,50.3942709],[11.6750245,50.3942569],[11.6751674,50.3942521],[11.6752996,50.3942542],[11.675439,50.3942654],[11.6755607,50.394288],[11.6757216,50.3943197],[11.6759004,50.3943422],[11.6760826,50.3943602],[11.6762292,50.3943827],[11.6762357,50.3943815],[11.6763684,50.3943574],[11.6764434,50.3943275],[11.6765218,50.3943],[11.6766647,50.3942608],[11.6767681,50.3942287],[11.6768573,50.3941989],[11.6769358,50.394176],[11.6770143,50.3941506],[11.6770751,50.3941505],[11.6771466,50.3941755],[11.6772289,50.3942004],[11.6772932,50.3942187],[11.6773576,50.3942277],[11.6774685,50.3942275],[11.6776506,50.3942226],[11.678083,50.3942218],[11.6782115,50.3942101],[11.6782937,50.3942054],[11.6783615,50.394187],[11.678415,50.394171],[11.6784686,50.3941526],[11.6785292,50.3941388],[11.6786256,50.3941273],[11.6787542,50.3941202],[11.6789293,50.3941176],[11.6790437,50.3941334],[11.6791902,50.3941559],[11.6793441,50.3941853],[11.6794978,50.3942056],[11.6796373,50.3942328],[11.6797446,50.3942417],[11.6798767,50.3942369],[11.679991,50.3942093],[11.6801157,50.3941611],[11.680244,50.394106],[11.6806649,50.393918],[11.6810787,50.393755],[11.6812996,50.393661],[11.6814673,50.3935876],[11.6815706,50.3935258],[11.6816454,50.393464],[11.6817131,50.3933998],[11.6817555,50.3933312],[11.6818123,50.3932557],[11.6818763,50.393162],[11.6819296,50.3930842],[11.6819793,50.3930247],[11.6820896,50.3929263],[11.6821893,50.3928645],[11.6822713,50.3928163],[11.6823462,50.3927773],[11.6824425,50.3927384],[11.6825531,50.3927085],[11.6826922,50.392683],[11.6828709,50.3926781],[11.6829816,50.3926848],[11.6831141,50.3927028],[11.6832462,50.3927255],[11.6833821,50.3927549],[11.6835144,50.3927752],[11.6836896,50.3927909],[11.683829,50.3928043],[11.6839756,50.3928132],[11.6841007,50.3928267],[11.6842366,50.3928607],[11.6843153,50.3928993],[11.6843513,50.3929335],[11.6843872,50.3929838],[11.6844376,50.3930545],[11.6845058,50.3931184],[11.6845919,50.393205],[11.6846852,50.3932642],[11.6847962,50.3933165],[11.6850181,50.3934075],[11.6853472,50.3935249],[11.6857153,50.3936561],[11.6858039,50.3936985],[11.6858715,50.393724],[11.6859674,50.3937633],[11.6860453,50.393814],[11.6861089,50.3938714],[11.6861616,50.3939471],[11.6861928,50.3940157],[11.6862596,50.3941076],[11.6863336,50.3941811],[11.686422,50.39425],[11.6864822,50.3942983],[11.6865352,50.3943374],[11.6865885,50.3943629],[11.6866526,50.3943883],[11.6867344,50.394407],[11.6868519,50.3944487],[11.6869657,50.3944906],[11.6870583,50.394523],[11.6871614,50.3945693],[11.6872535,50.3946246],[11.6873241,50.394689],[11.6873698,50.3947417],[11.6874228,50.3947901],[11.6874761,50.3948245],[11.687558,50.3948432],[11.6877148,50.394867],[11.687929,50.3948957],[11.6880794,50.3949258],[11.6881968,50.3949177],[11.6883329,50.3948979],[11.6884803,50.3948416],[11.6884917,50.3948367],[11.6885735,50.3948011],[11.6887067,50.3947379],[11.6887629,50.3947092],[11.6887744,50.3947033],[11.6888219,50.3946792],[11.688883,50.3946475],[11.6889657,50.394616],[11.6890799,50.3946304],[11.6891973,50.394679],[11.6892431,50.3947227],[11.6892961,50.3947733],[11.6893563,50.3948124],[11.6893986,50.3948583],[11.6894588,50.3948974],[11.6895765,50.3949095],[11.6896698,50.3948895],[11.6898057,50.3948811],[11.6898963,50.3948842],[11.6899666,50.3948866],[11.6900175,50.394886],[11.6900987,50.3948851],[11.6902095,50.394888],[11.6902554,50.3948806],[11.6902919,50.3948747],[11.6904284,50.3948343],[11.690511,50.3947946],[11.6907221,50.3946932],[11.6909031,50.3946065],[11.6910328,50.3945294],[11.6915287,50.3948725],[11.6917769,50.3950223],[11.6919329,50.3951237],[11.6920356,50.3951951],[11.6921138,50.3952298],[11.6922063,50.3952645],[11.6922987,50.3953061],[11.6924263,50.3953822],[11.6925645,50.3954653],[11.6927173,50.3955415],[11.6928559,50.3956016],[11.692984,50.3956457],[11.6932014,50.395688],[11.6934619,50.3957168],[11.6935871,50.3957152],[11.6937266,50.3957115],[11.6938699,50.3956939],[11.6939521,50.3956785],[11.6940203,50.3956675],[11.6941171,50.3956452],[11.6941851,50.3956295],[11.6942533,50.3956208],[11.6942891,50.3956096],[11.6943888,50.3956004],[11.6944922,50.3956215],[11.6945703,50.3956539],[11.6946733,50.3957093],[11.6947691,50.39576],[11.6948651,50.3958062],[11.6949539,50.3958479],[11.6950963,50.3958897],[11.6951818,50.395913],[11.6952847,50.3959593],[11.6953771,50.3960146],[11.6955537,50.3961686],[11.6957612,50.396437],[11.6960421,50.3968244],[11.6962106,50.3970446],[11.6963247,50.3973444],[11.6963957,50.3975775],[11.6965099,50.3979528],[11.6965919,50.3982455],[11.6966778,50.3985018],[11.6967225,50.3986344],[11.6967464,50.3987191],[11.6967634,50.3987877],[11.6968095,50.3988317],[11.6968154,50.398843],[11.6968751,50.3989585],[11.6969351,50.3990602],[11.6970547,50.3992684],[11.6972196,50.3995253],[11.6973323,50.3996658],[11.6974977,50.3998259],[11.6977391,50.3999619],[11.6979656,50.4000545],[11.698245,50.4001278],[11.6984567,50.4001572],[11.6987743,50.4002065],[11.6991445,50.4002993],[11.6993028,50.4003965],[11.6994637,50.4005002],[11.6994686,50.4005033],[11.6995199,50.4005254],[11.6995732,50.4005483],[11.6995817,50.400552],[11.6998387,50.4006252],[11.7000197,50.4007079],[11.700314,50.4008392],[11.7006459,50.4010093],[11.7008493,50.401155],[11.70106,50.4013394],[11.7012782,50.4015527],[11.7014886,50.4017709],[11.7016814,50.401911],[11.7017222,50.4019408],[11.7019558,50.4020962],[11.7020902,50.4021808],[11.7021823,50.4021742],[11.7022885,50.4021454],[11.7024402,50.4020781],[11.7026827,50.4020401],[11.702887,50.4020502],[11.7031063,50.4020605],[11.7035002,50.4022026],[11.7038897,50.4024467],[11.7042684,50.4026841],[11.7046053,50.402901],[11.7049319,50.403064],[11.7054485,50.4032341],[11.7060604,50.403418],[11.7065138,50.4035745],[11.7069777,50.4037513],[11.7074845,50.4038336],[11.7079069,50.4038617],[11.7083402,50.4038628],[11.7087421,50.4038165],[11.709043,50.4036912],[11.7091127,50.4036621],[11.7095371,50.4033863],[11.7097813,50.4031977],[11.7100146,50.4030701],[11.7102164,50.4029152],[11.7106307,50.4025583],[11.7109278,50.4023497],[11.7111723,50.4021072],[11.7113742,50.4019185],[11.7115337,50.4017501],[11.7116084,50.4016219],[11.7116518,50.40146],[11.7116424,50.4012776],[11.7115911,50.4010005],[11.7115715,50.4007506],[11.7116052,50.4004332],[11.7116806,50.4001904],[11.7118197,50.3999137],[11.7119264,50.3997249],[11.7121615,50.3993067],[11.7123611,50.3988492],[11.7123686,50.3988323],[11.7124216,50.3986186],[11.7125776,50.398226],[11.7127547,50.3977417],[11.7128697,50.3973556],[11.712974,50.397048],[11.713064,50.3968495],[11.7130986,50.3967733],[11.7131402,50.3966947],[11.7133795,50.3966143],[11.7134525,50.3966028],[11.7136922,50.3965858],[11.7138959,50.3965961],[11.7141413,50.3966819],[11.7142213,50.3967163],[11.7143405,50.3967675],[11.7144828,50.3968253],[11.7146251,50.3968695],[11.7147888,50.3969275],[11.7149735,50.3970176],[11.7151438,50.3971258],[11.7152997,50.3972363],[11.7156212,50.3975279],[11.7157726,50.3977138],[11.7160081,50.3980165],[11.7161051,50.3982682],[11.7162545,50.3986137],[11.7163555,50.3988153],[11.7163675,50.398832],[11.7163803,50.3988504],[11.716496,50.3990148],[11.7167119,50.3991894],[11.716989,50.399321],[11.7172315,50.3993681],[11.7175553,50.3994016],[11.7176027,50.3994066],[11.7176659,50.3994207],[11.7177905,50.3994485],[11.7179272,50.3994791],[11.7183193,50.3995634],[11.7185546,50.3996195],[11.7187718,50.3996869],[11.7189135,50.3997341],[11.7189534,50.3997473],[11.7190885,50.3997936],[11.7192777,50.3998266],[11.7195777,50.3998397],[11.7198746,50.3998368],[11.7200718,50.3998421],[11.7201817,50.3998452],[11.7209184,50.3998286],[11.7215798,50.3998139],[11.7218909,50.399811],[11.7224637,50.3997432],[11.72285,50.3997225],[11.7232009,50.3996856],[11.7237343,50.3996244],[11.7240957,50.3995899],[11.7244317,50.3995871],[11.7246818,50.3995976],[11.7256184,50.3998834],[11.7259891,50.3999791],[11.7263664,50.4000975],[11.7266122,50.4001764],[11.7268793,50.4002487],[11.7270859,50.4003045],[11.7273245,50.4003857],[11.7276442,50.4005519],[11.7280562,50.4007664],[11.7282443,50.400877],[11.7283933,50.4009646],[11.7289078,50.4012778],[11.7291632,50.4014436],[11.7293004,50.4016179],[11.7294791,50.4019203],[11.7296654,50.402161],[11.7298315,50.4023171],[11.7300722,50.402501],[11.7303344,50.4026966],[11.7305363,50.4028484],[11.731043,50.4032232],[11.7313727,50.4034419],[11.7317224,50.4037771],[11.7322366,50.4041179],[11.7323704,50.4041997],[11.7324851,50.4042698],[11.7327263,50.404431],[11.7329953,50.4046357],[11.7333073,50.4048634],[11.7335695,50.405052],[11.7338252,50.4051926],[11.7338848,50.405216],[11.7342023,50.4053407],[11.7344475,50.4054608],[11.7346676,50.4055829],[11.7349482,50.4057396],[11.7351685,50.4058505],[11.7354102,50.4059613],[11.7356766,50.4061089],[11.7357139,50.4061333],[11.7358938,50.4062538],[11.7361097,50.4064239],[11.7363005,50.4066099],[11.7364621,50.4068322],[11.7366526,50.4070615],[11.7369029,50.407346],[11.7371571,50.4076054],[11.7373655,50.4078166],[11.7376166,50.4080485],[11.7378535,50.4082598],[11.7380411,50.4084184],[11.7382466,50.408561],[11.7389071,50.4089367],[11.7390616,50.4090169],[11.739551,50.4092996],[11.7399449,50.4094678],[11.7403964,50.4096374],[11.7406597,50.4097585],[11.7408855,50.4098071],[11.7411366,50.4098558],[11.7415134,50.4098487],[11.741991,50.4098577],[11.7424177,50.4099471],[11.7435093,50.4102787],[11.7440992,50.4104004],[11.744526,50.4104737],[11.7448205,50.4104743],[11.7448592,50.4104743],[11.7448904,50.4104744],[11.7452925,50.4104592],[11.7455913,50.4102563],[11.7456835,50.4101791],[11.7457217,50.4100828],[11.745735,50.4099303],[11.745736,50.4097456],[11.7457155,50.4096918],[11.7456742,50.4095848],[11.7454833,50.409486],[11.7454439,50.4094409],[11.7453623,50.409388],[11.7452558,50.4093281],[11.7454982,50.4091032],[11.7455633,50.4090373],[11.7455825,50.408921],[11.7455765,50.4088228],[11.7455885,50.4087109],[11.7456074,50.4086334],[11.7456621,50.4085492],[11.7457632,50.4084721],[11.7469566,50.4082271],[11.7477414,50.4080735],[11.7482141,50.408],[11.7484825,50.4079385],[11.7485472,50.4079255],[11.7488922,50.4078556],[11.749192,50.4078093],[11.7492258,50.4078041],[11.7495211,50.40772],[11.7498572,50.4075725],[11.7502902,50.4074075],[11.7506365,50.4072783],[11.7509258,50.4071394],[11.7511675,50.4070503],[11.7515995,50.406931],[11.7519358,50.4067743],[11.7519374,50.4067738],[11.7522966,50.406636],[11.7525814,50.4065406],[11.7528275,50.4064172],[11.7531384,50.4062739],[11.7534052,50.4061828],[11.7536642,50.4061144],[11.7541254,50.4059681],[11.7544349,50.4058796],[11.7545754,50.4058376],[11.7549062,50.4057584],[11.7551228,50.4056737],[11.7554394,50.4055899],[11.755838,50.4055159],[11.7561158,50.4054136],[11.7564279,50.4053708],[11.757153,50.4053983],[11.7574251,50.4053826],[11.75779,50.4053724],[11.7581128,50.4053344],[11.7583609,50.4052728],[11.7586848,50.4051868],[11.7589657,50.4051026],[11.7592352,50.4050458],[11.7595437,50.4050008],[11.7600091,50.4049778],[11.7602201,50.404982],[11.7605019,50.4050054],[11.7609298,50.4050597],[11.7611073,50.4051094],[11.7614454,50.4051789],[11.7617359,50.4052891],[11.761923,50.4053892],[11.7623367,50.4055919],[11.7626435,50.4057686],[11.762961,50.4059522],[11.7631855,50.4061371],[11.7632537,50.4062794],[11.7631619,50.4065323],[11.7629824,50.4067157],[11.7628448,50.4067897],[11.7626585,50.4068818],[11.7625409,50.40694],[11.7622417,50.40704],[11.7620105,50.4071429],[11.7617391,50.4072798],[11.7613964,50.4073999],[11.7612866,50.4075108],[11.7611949,50.4075573],[11.7610914,50.4076096],[11.7608682,50.4077538],[11.7607499,50.4078302],[11.760565,50.4079312],[11.7603912,50.4080279],[11.7601948,50.4081755],[11.7600818,50.4082604],[11.7598939,50.4083477],[11.7597478,50.4084404],[11.7596153,50.4085244],[11.759578,50.4085481],[11.7594102,50.4086859],[11.7592245,50.4088304],[11.759068,50.4089455],[11.7584158,50.4094579],[11.7583053,50.4095627],[11.7582584,50.4096073],[11.7581663,50.4097298],[11.7580356,50.4098086],[11.7578513,50.4098937],[11.7574413,50.4101411],[11.7568782,50.410362],[11.7565666,50.4105305],[11.7561764,50.4107003],[11.7559014,50.4108372],[11.7557166,50.4109405],[11.7554389,50.411043],[11.7550378,50.4112151],[11.7549433,50.4112782],[11.7546616,50.4113989],[11.7542995,50.4115828],[11.7541329,50.4116725],[11.7539159,50.4117756],[11.7535912,50.411905],[11.7533416,50.4120147],[11.7530771,50.412163],[11.7527085,50.412324],[11.7525491,50.4124162],[11.7523289,50.4124962],[11.7520656,50.4125921],[11.7519351,50.4126498],[11.7518884,50.4126704],[11.7517147,50.4127646],[11.7515286,50.4129183],[11.7512629,50.4131145],[11.7510821,50.4131951],[11.7508487,50.4133848],[11.7506604,50.4136298],[11.7506099,50.413803],[11.7506873,50.4140094],[11.7508217,50.414221],[11.7509618,50.4144143],[11.7511631,50.4146014],[11.751274,50.4147465],[11.7514646,50.4148534],[11.7515951,50.4149324],[11.7517959,50.41506],[11.7519252,50.4151915],[11.7520369,50.4153046],[11.752187,50.4154569],[11.7523054,50.4155928],[11.7523397,50.41562],[11.7523828,50.4156539],[11.7524537,50.4157103],[11.7524809,50.4157316],[11.752574,50.4158075],[11.7527194,50.415926],[11.7528767,50.4159321],[11.7530784,50.4160209],[11.7534245,50.4160585],[11.7537524,50.416105],[11.7540318,50.4160848],[11.7544517,50.4160226],[11.7544886,50.4160202],[11.7546989,50.4160067],[11.754932,50.415977],[11.7554106,50.4158513],[11.7556871,50.415806],[11.7558891,50.4157325],[11.7561102,50.4156491],[11.7563151,50.415572],[11.7565554,50.4155423],[11.7568109,50.415467],[11.7571334,50.4154404],[11.7575201,50.4154258],[11.7577962,50.415392],[11.7580692,50.415342],[11.7582204,50.4153],[11.7585513,50.4152232],[11.7587636,50.4151659],[11.7589397,50.4151332],[11.7591918,50.4150579],[11.7594116,50.414987],[11.7597001,50.4148845],[11.7599487,50.4148115],[11.760316,50.4147007],[11.7605437,50.4145978],[11.7609321,50.4145078],[11.7611625,50.414446],[11.7614323,50.4143778],[11.7618597,50.4142995],[11.7620969,50.4142515],[11.7623626,50.4142038],[11.7627717,50.4141391],[11.7630447,50.4140915],[11.7632821,50.414032],[11.7636846,50.4139536],[11.7638364,50.4139191],[11.7639649,50.4138899],[11.7642841,50.4138564],[11.7647747,50.4138268],[11.7649726,50.4137806],[11.7650478,50.4137723],[11.7654429,50.4136961],[11.7657626,50.4136351],[11.7660043,50.4135437],[11.7663714,50.4134443],[11.7667643,50.4133156],[11.767107,50.4131931],[11.7671774,50.4131697],[11.7674746,50.4130708],[11.7677052,50.413],[11.7679728,50.4128722],[11.768317,50.4126789],[11.7684978,50.4125915],[11.7686982,50.4124357],[11.7690464,50.4122288],[11.7691982,50.4121617],[11.7693866,50.4120514],[11.7697513,50.4119041],[11.7699541,50.411794],[11.770171,50.4116978],[11.7704839,50.4114653],[11.7707039,50.4113805],[11.7709845,50.4113124],[11.7712042,50.4112767],[11.7712824,50.411264],[11.771304,50.4112605],[11.7713552,50.4112574],[11.7716264,50.4112408],[11.771686,50.4112382],[11.7719413,50.4112323],[11.7721485,50.4112519],[11.7723159,50.4112678],[11.7726187,50.4113142],[11.773002,50.4114389],[11.7732883,50.4115833],[11.7734783,50.4117154],[11.7737211,50.4120353],[11.7738949,50.4122472],[11.7739263,50.4124396],[11.7739903,50.4126092],[11.773977,50.4128743],[11.7739904,50.4130686],[11.7739905,50.4133703],[11.7739954,50.4136218],[11.7739953,50.4139051],[11.7739952,50.413928],[11.7739952,50.4140903],[11.7739984,50.4142594],[11.7739812,50.4145334],[11.7740485,50.4147101],[11.7740846,50.4148568],[11.7740878,50.4150212],[11.7741726,50.4152186],[11.774281,50.4153248],[11.7743986,50.4154973],[11.7745629,50.4156634],[11.7747169,50.4158043],[11.7749706,50.4159644],[11.7751822,50.4161013],[11.7754199,50.4162351],[11.7754472,50.4162611],[11.7756544,50.4164581],[11.7759306,50.4167493],[11.7763776,50.4171393],[11.7766797,50.4173461],[11.7770822,50.4175373],[11.777417,50.4176939],[11.7778337,50.4178646],[11.7783502,50.4181019],[11.7793367,50.4185533],[11.7797429,50.4187081],[11.7798734,50.4187432],[11.7800783,50.4187985],[11.7803678,50.4188269],[11.7806075,50.4188141],[11.7806435,50.4188034],[11.7808448,50.4187426],[11.7808693,50.4187352],[11.7811316,50.4186083],[11.7813695,50.4184174],[11.7816144,50.418215],[11.7819964,50.4178921],[11.782339,50.4175918],[11.7825579,50.4173705],[11.782968,50.4169025],[11.7830856,50.416749],[11.7830933,50.4167389],[11.7831384,50.4166801],[11.7831527,50.4166613],[11.7831545,50.416659],[11.7831882,50.4166149],[11.7832394,50.416548],[11.7832685,50.4165099],[11.7832854,50.416488],[11.7832906,50.416481],[11.7833187,50.4164443],[11.7833197,50.4164432],[11.7833266,50.4164251],[11.7833553,50.4163506],[11.7833987,50.4162375],[11.783451,50.4161311],[11.7835458,50.4160062],[11.7837782,50.4158552],[11.7841473,50.4156713],[11.7844323,50.4155642],[11.7852019,50.4153749],[11.7859275,50.4152422],[11.7862254,50.4151902],[11.7870636,50.415134],[11.7872677,50.4151222],[11.7876041,50.4151162],[11.7878116,50.4151091],[11.7880581,50.4151204],[11.7883039,50.415157],[11.7885034,50.4151932],[11.7887959,50.4152279],[11.7889524,50.4152705],[11.7891537,50.4153798],[11.7893551,50.4154868],[11.7894925,50.4155772],[11.7896188,50.4156812],[11.7897734,50.415806],[11.789881,50.4159395],[11.7899705,50.4160981],[11.7899922,50.416235],[11.7899849,50.4162572],[11.7897884,50.4168595],[11.789766,50.4169279],[11.789818,50.4171063],[11.7900486,50.4173013],[11.7904225,50.41749],[11.7907753,50.4176307],[11.7911207,50.4178033],[11.7914626,50.4179668],[11.7920401,50.4181746],[11.79265,50.4183643],[11.7930965,50.4184185],[11.7935363,50.4184429],[11.7937951,50.4184465],[11.7939904,50.4184492],[11.7944523,50.418387],[11.7948394,50.4183061],[11.7952089,50.4181613],[11.7955859,50.4180074],[11.7960562,50.4178104],[11.7965048,50.4176202],[11.7971114,50.417378],[11.7976101,50.4171972],[11.7979616,50.417075],[11.7981025,50.4169111],[11.7982015,50.4166556],[11.7982074,50.4163816],[11.7982124,50.4162542],[11.7982132,50.4162341],[11.7982146,50.4162272],[11.7982827,50.4159055],[11.7983192,50.4157139],[11.798441,50.4153973],[11.7985435,50.4151354],[11.7986534,50.4148622],[11.7988467,50.4146972],[11.7990541,50.4145368],[11.7993412,50.4143407],[11.7996702,50.4141814],[11.7998684,50.4141169],[11.8002478,50.4140999],[11.8005946,50.4141077],[11.800845,50.4141008],[11.8010459,50.4140507],[11.8011544,50.4140237],[11.8013824,50.4139047],[11.8014423,50.413863],[11.8015022,50.4138212],[11.801687,50.4137178],[11.8019564,50.41351],[11.8027377,50.4129618],[11.8029891,50.4127585],[11.8032224,50.4125618],[11.8034308,50.4123625],[11.8035089,50.4122239],[11.8036102,50.4120191],[11.8037405,50.4117894],[11.8038268,50.4116143],[11.8039744,50.4114191],[11.8042384,50.4111291],[11.8043518,50.411018],[11.8045421,50.4108255],[11.8047183,50.4106215],[11.8048358,50.4104831],[11.8049726,50.4102832],[11.805171,50.4100566],[11.8052997,50.4099024],[11.8055532,50.4096008],[11.8057559,50.4093305],[11.8058807,50.40919],[11.8061171,50.4090162],[11.8063747,50.4088494],[11.8066206,50.4087283],[11.8069672,50.4085829],[11.8071882,50.4084547],[11.8075132,50.4083183],[11.8078113,50.4081038],[11.8080922,50.4080058],[11.8083134,50.4078775],[11.8085994,50.4077135],[11.8087927,50.4075506],[11.809025,50.4072351],[11.8092559,50.4069881],[11.809528,50.4068191],[11.8098106,50.4066504],[11.8100101,50.4065288],[11.8102459,50.4063801],[11.8105606,50.4062161],[11.8105918,50.4061932],[11.8107015,50.4061229],[11.8107142,50.4061119],[11.8108205,50.4060208],[11.8110009,50.4058639],[11.8111779,50.4057026],[11.8113654,50.4055436],[11.8115239,50.4054142],[11.8116683,50.4052824],[11.8117802,50.4051825],[11.8119138,50.4050643],[11.8120117,50.4049323],[11.8121415,50.4048118],[11.8122248,50.404714],[11.8123086,50.4045705],[11.8123962,50.4043928],[11.8124766,50.4042127],[11.812615,50.4039873],[11.8127024,50.4038255],[11.8128011,50.4036205],[11.8128887,50.4034381],[11.813135,50.4031515],[11.8132684,50.4030219],[11.813549,50.4028588],[11.8138078,50.4027207],[11.814142,50.4025601],[11.8145227,50.4023791],[11.8148604,50.4022117],[11.8151371,50.4020828],[11.8154853,50.40192],[11.8158659,50.4017477],[11.8158947,50.4017346],[11.8159654,50.401693],[11.8160051,50.4016693],[11.8161285,50.4015964],[11.816237,50.4014872],[11.8162989,50.4013665],[11.8163863,50.4012162],[11.8164191,50.4011432],[11.8164563,50.4010589],[11.8164705,50.4010269],[11.8166115,50.4008723],[11.8167986,50.4007453],[11.8169499,50.4006524],[11.8171436,50.400571],[11.8173373,50.4005057],[11.8176234,50.400491],[11.8179302,50.400529],[11.8182193,50.400576],[11.8185006,50.4006733],[11.8187811,50.4008528],[11.8189798,50.4009976],[11.8192958,50.4011887],[11.8196688,50.4014119],[11.819964,50.4015686],[11.8202092,50.4017068],[11.8204933,50.4018726],[11.8206753,50.4019692],[11.8207461,50.4020068],[11.8207882,50.4020292],[11.8208152,50.4020423],[11.8210089,50.4021354],[11.8213398,50.4022625],[11.8216853,50.4023874],[11.8220056,50.4025214],[11.8224398,50.4026901],[11.8227206,50.4028491],[11.8230016,50.4029801],[11.8230372,50.4029967],[11.8232325,50.4031141],[11.8233747,50.4032038],[11.8235307,50.4033097],[11.8236155,50.403415],[11.8236379,50.403532],[11.8236426,50.4035567],[11.8236917,50.4036484],[11.8237899,50.4038247],[11.8239201,50.4040241],[11.824051,50.4041639],[11.824193,50.4042605],[11.8243243,50.4043479],[11.8245205,50.4043899],[11.824753,50.4043682],[11.8249716,50.4043144],[11.8251582,50.4042422],[11.8253235,50.4041424],[11.8254353,50.4040608],[11.825637,50.4039063],[11.8258392,50.4037108],[11.8260164,50.4035153],[11.8261215,50.4033718],[11.8261872,50.4032351],[11.8263035,50.4030574],[11.8263983,50.4028797],[11.8264934,50.402645],[11.8265853,50.4024101],[11.8266945,50.4022256],[11.8267825,50.4020021],[11.8269707,50.4017769],[11.8271372,50.4015744],[11.8272857,50.4013741],[11.8274524,50.4011532],[11.8275543,50.4009756],[11.827771,50.4007527],[11.8278725,50.4006162],[11.8279304,50.4005388],[11.8279266,50.4002305],[11.8278456,50.4001021],[11.8277721,50.3999533],[11.8276593,50.3998044],[11.8275108,50.3996484],[11.8272737,50.3994097],[11.8270644,50.3992557],[11.8268335,50.399129],[11.8265632,50.398977],[11.8262497,50.3988308],[11.8262452,50.3988287],[11.8262218,50.3988179],[11.8259336,50.3987001],[11.8256628,50.3986212],[11.8253989,50.3985606],[11.824957,50.3984489],[11.8246073,50.3983878],[11.8242753,50.3983543],[11.8240469,50.3983305],[11.8236438,50.3982533],[11.8233908,50.3981882],[11.8231414,50.3981093],[11.8228174,50.3979891],[11.8224976,50.3978186],[11.8221781,50.3976023],[11.8219478,50.3974094],[11.8217674,50.3972236],[11.8215941,50.3970446],[11.8213959,50.3968564],[11.821329,50.3967738],[11.821166,50.3966224],[11.8209643,50.3964455],[11.8207194,50.396264],[11.8206027,50.396163],[11.8203791,50.3960089],[11.8201306,50.395857],[11.8199349,50.3957692],[11.819764,50.395716],[11.8195432,50.3956418],[11.8193078,50.3955859],[11.8192671,50.3955665],[11.8191876,50.3955278],[11.8190418,50.3954517],[11.8189214,50.3953461],[11.8188331,50.3952544],[11.8187453,50.3951169],[11.8186682,50.3949657],[11.8185343,50.3947664],[11.8184786,50.3946291],[11.8184513,50.3945057],[11.8184177,50.3943068],[11.8184015,50.3941514],[11.8183675,50.3939937],[11.8183337,50.3937902],[11.8183284,50.3936166],[11.8183515,50.3934705],[11.8183896,50.3932286],[11.8184628,50.3930577],[11.8185081,50.3928408],[11.8186175,50.3926221],[11.8186694,50.3924579],[11.8187252,50.3922503],[11.8187558,50.3920586],[11.8188072,50.3919242],[11.8188589,50.3917553],[11.8189252,50.3915546],[11.8189912,50.3913951],[11.8191039,50.3912266],[11.8192913,50.3910721],[11.8194926,50.3909497],[11.8196866,50.3908615],[11.8199271,50.3907416],[11.8200753,50.3906614],[11.820132,50.3906307],[11.820397,50.3905679],[11.8206549,50.3905143],[11.8209669,50.3904016],[11.8213504,50.390296],[11.8215442,50.3902261],[11.8218277,50.3901018],[11.8222183,50.3899962],[11.8225121,50.3899244],[11.8228523,50.3898393],[11.8232246,50.3897862],[11.8236645,50.3897402],[11.823947,50.3897164],[11.8243437,50.3897182],[11.8245222,50.3897329],[11.8247679,50.3898092],[11.8249457,50.3898992],[11.8251377,50.3899891],[11.8252292,50.3901311],[11.8253163,50.3903417],[11.8253219,50.3904834],[11.8253059,50.3906523],[11.8253288,50.3908671],[11.8254303,50.3910732],[11.8255885,50.3913206],[11.8258291,50.3915432],[11.8260236,50.3917473],[11.8262685,50.3919061],[11.8265882,50.3920926],[11.8269366,50.3922792],[11.8273137,50.3924453],[11.8277302,50.3925912],[11.8281785,50.3927737],[11.8285516,50.3929947],[11.8288891,50.3931789],[11.829181,50.393299],[11.8294759,50.3934671],[11.8298313,50.3936583],[11.8300902,50.3938422],[11.8303317,50.3939963],[11.8305694,50.3941687],[11.830807,50.3943457],[11.8310442,50.3945547],[11.8312463,50.3947224],[11.8314449,50.3948625],[11.8316796,50.3949824],[11.8318691,50.3950637],[11.8318896,50.3950725],[11.8320921,50.3951784],[11.8324771,50.3952852],[11.8326985,50.395293],[11.8329237,50.3952919],[11.8331632,50.3952723],[11.8333604,50.3952299],[11.8335217,50.3951689],[11.8336906,50.3950783],[11.8338308,50.3949921],[11.8340913,50.3946918],[11.8341742,50.3946054],[11.834265,50.3944712],[11.8343915,50.3943187],[11.8344679,50.3942002],[11.8345368,50.3940909],[11.8346103,50.3938833],[11.8346723,50.3937603],[11.8346912,50.3936668],[11.8346986,50.3936416],[11.8347883,50.3935918],[11.8348639,50.3935442],[11.8349554,50.3935378],[11.8350017,50.3935448],[11.8350514,50.393577],[11.8350796,50.3936229],[11.8350723,50.3936479],[11.8350183,50.3936843],[11.8350469,50.3937062],[11.8350963,50.393744],[11.8350594,50.3938596],[11.8350446,50.3939059],[11.8350155,50.3939492],[11.835015,50.3939926],[11.8350358,50.3940589],[11.8350495,50.3941366],[11.8350131,50.3941821],[11.8349808,50.3941933],[11.8349519,50.394223],[11.8349372,50.3942754],[11.8349398,50.3943804],[11.8350652,50.3946894],[11.835114,50.3948221],[11.8351489,50.3948859],[11.8351491,50.3948862],[11.8352017,50.3949755],[11.8352576,50.3951013],[11.8353388,50.3952023],[11.8353875,50.395247],[11.8353989,50.3952574],[11.8354847,50.3953429],[11.835491,50.3953491],[11.8355664,50.3953993],[11.8356223,50.3954365],[11.8357563,50.3955149],[11.8357681,50.3955217],[11.836017,50.3956416],[11.836284,50.3957432],[11.83643,50.3957828],[11.8365368,50.3958312],[11.8366757,50.3958821],[11.8367788,50.3959237],[11.8368787,50.3959493],[11.8368996,50.3959474],[11.8369788,50.3959405],[11.8369931,50.3959344],[11.8370255,50.3959202],[11.8370341,50.3959073],[11.8370544,50.3958769],[11.8370551,50.3958244],[11.8369947,50.3957853],[11.8369166,50.3957325],[11.8369064,50.3956731],[11.8369283,50.3956366],[11.8369607,50.3956092],[11.8370289,50.3955776],[11.8372186,50.3955465],[11.8373758,50.3955632],[11.8375362,50.3955982],[11.8376998,50.3956651],[11.8377706,50.39575],[11.8378309,50.3957891],[11.8379271,50.3957987],[11.8380596,50.395781],[11.8382139,50.3957269],[11.8383459,50.3957457],[11.8384418,50.3958055],[11.8385234,50.3958653],[11.8386051,50.395909],[11.8387337,50.3960827],[11.8387885,50.3961566],[11.838792,50.3961771],[11.8388593,50.3962208],[11.8389016,50.3962804],[11.8389055,50.3962934],[11.8389189,50.3963376],[11.8389288,50.3964266],[11.838971,50.3964886],[11.8390629,50.3965781],[11.8392014,50.3966701],[11.8393078,50.3967733],[11.8394636,50.396904],[11.8396946,50.3970331],[11.8399719,50.3971829],[11.8400611,50.3971832],[11.8401049,50.3971814],[11.8401612,50.3971792],[11.8403831,50.397155],[11.8408194,50.3971433],[11.840944,50.3971713],[11.8412012,50.3971898],[11.8413367,50.3972073],[11.8414936,50.3972492],[11.8417846,50.3974537],[11.8419303,50.3975457],[11.8420227,50.3976031],[11.8420359,50.3977014],[11.842103,50.397784],[11.8421952,50.3978644],[11.8422983,50.3979082],[11.8424336,50.3979659],[11.8425096,50.3979885],[11.8426758,50.3980378],[11.8429113,50.3980823],[11.8431105,50.3981676],[11.8432783,50.3981981],[11.8433749,50.398178],[11.8434395,50.3981463],[11.8434482,50.3981437],[11.8435722,50.398108],[11.843733,50.3981087],[11.8438438,50.398107],[11.8439365,50.398121],[11.844072,50.3981559],[11.8441681,50.398202],[11.8442103,50.3982685],[11.8441989,50.3983369],[11.8441909,50.39841],[11.8441978,50.3984511],[11.8442402,50.3985039],[11.8442661,50.3985298],[11.8442861,50.3985498],[11.8443727,50.3985964],[11.8443929,50.3986073],[11.844414,50.3986176],[11.8444781,50.3986488],[11.8447665,50.3987689],[11.844893,50.3988354],[11.8449051,50.3988418],[11.8449549,50.3988679],[11.8451971,50.3989558],[11.8454218,50.3989955],[11.845568,50.3990328],[11.8458491,50.3991597],[11.8460342,50.3992245],[11.8461293,50.3992598],[11.8462337,50.3992984],[11.8462722,50.3993075],[11.8465405,50.3993706],[11.8468715,50.3995022],[11.8468496,50.3995478],[11.8468128,50.3996459],[11.8468226,50.3997487],[11.8468823,50.3998381],[11.8469566,50.3999206],[11.8470415,50.4000055],[11.8471125,50.4000606],[11.8471623,50.4000951],[11.8473082,50.4001483],[11.8473086,50.4001483],[11.8475296,50.4001653],[11.847744,50.4001821],[11.8479298,50.4001876],[11.8480506,50.4002589],[11.8482,50.4003235],[11.8483424,50.4003859],[11.8484775,50.4004572],[11.8486376,50.4005264],[11.8487586,50.4005887],[11.8487718,50.4006026],[11.8488328,50.4006666],[11.8488998,50.4007629],[11.8489387,50.4008041],[11.8490099,50.4008273],[11.8491209,50.4008278],[11.8492208,50.4008283],[11.8493463,50.4008037],[11.8494604,50.400811],[11.8496277,50.4008871],[11.8497166,50.4009401],[11.8498376,50.4009885],[11.8499694,50.4010234],[11.8501188,50.4010364],[11.8501355,50.4010378],[11.8501624,50.4010402],[11.8503409,50.4010365],[11.8504838,50.4010439],[11.8506014,50.4010833],[11.8507687,50.4011593],[11.850897,50.4011942],[11.8510469,50.4012245],[11.8511612,50.4012319],[11.8512825,50.4012461],[11.8513497,50.4012591],[11.8514635,50.4013726],[11.8515165,50.4014504],[11.8515908,50.4015239],[11.8516547,50.4015767],[11.8517008,50.4016043],[11.8517902,50.4016138],[11.8518971,50.4016234],[11.8519757,50.4016398],[11.8520251,50.4016948],[11.8520709,50.4017589],[11.85211,50.4017957],[11.8522524,50.4018442],[11.8524593,50.4018794],[11.8525343,50.4018957],[11.8527055,50.4019308],[11.8528446,50.4019541],[11.8529803,50.4019708],[11.853052,50.4019643],[11.8531164,50.4019462],[11.8533638,50.4019417],[11.8533763,50.4019415],[11.8536204,50.401937],[11.8536957,50.40191],[11.8537139,50.401878],[11.8537037,50.4018323],[11.853669,50.4017157],[11.8536696,50.4016631],[11.8536951,50.4016039],[11.8537206,50.4015537],[11.8537816,50.4015311],[11.8538351,50.4015382],[11.8539135,50.4015637],[11.854003,50.4015527],[11.8540749,50.4015187],[11.8541217,50.4014756],[11.8541618,50.4014049],[11.8542338,50.4013413],[11.8543202,50.4012777],[11.8543565,50.4012116],[11.8544073,50.4011388],[11.8544435,50.4010932],[11.8544875,50.4009747],[11.8545385,50.4008789],[11.8546538,50.4007927],[11.8547221,50.4007404],[11.8548583,50.4007113],[11.8549728,50.4006935],[11.8550655,50.4007122],[11.8551476,50.4007332],[11.8552582,50.4007473],[11.8553905,50.4007455],[11.8554692,50.4007253],[11.8555088,50.4006982],[11.8555593,50.4006595],[11.8555846,50.4006254],[11.8555849,50.400582],[11.8555855,50.4005294],[11.8555967,50.4004747],[11.8556009,50.4004222],[11.8556303,50.4003332],[11.8556703,50.4002603],[11.855703,50.4002103],[11.8556997,50.4001759],[11.8556646,50.4001165],[11.8556046,50.400034],[11.8555551,50.3999652],[11.8555234,50.3999376],[11.855463,50.3998848],[11.8554457,50.3998346],[11.8554388,50.3998048],[11.8554534,50.3997752],[11.855493,50.3997479],[11.8555254,50.399732],[11.8555932,50.3997393],[11.8556646,50.399735],[11.8557364,50.3997102],[11.8563565,50.3995256],[11.8566107,50.3994719],[11.8567429,50.3994724],[11.856868,50.3994729],[11.8569393,50.399464],[11.8569617,50.3994611],[11.8569898,50.3994576],[11.857122,50.3994466],[11.8572652,50.3994108],[11.8573336,50.3993768],[11.8575459,50.3993481],[11.8577389,50.3993752],[11.8580644,50.3994546],[11.8582753,50.3994838],[11.8585005,50.3994881],[11.8587899,50.3995012],[11.8590867,50.3995692],[11.8594585,50.3996552],[11.8596984,50.3997371],[11.8598627,50.3997505],[11.8601557,50.3997614],[11.8613173,50.3998895],[11.8615102,50.3998892],[11.8618212,50.3999639],[11.8620792,50.4000777],[11.8620953,50.400088],[11.8622977,50.4002166],[11.8625309,50.4003966],[11.862771,50.4005696],[11.8629717,50.4006743],[11.8632149,50.4007606],[11.8633763,50.4007508],[11.8635221,50.4007419],[11.8637497,50.4007863],[11.8639928,50.4007827],[11.8641537,50.4007835],[11.864268,50.4007793],[11.8643501,50.4007888],[11.8644074,50.4007914],[11.8644609,50.4007939],[11.8644965,50.4008169],[11.8645247,50.4008468],[11.8645603,50.4008583],[11.8646068,50.4008585],[11.8646746,50.4008542],[11.8647426,50.4008522],[11.8648108,50.4008388],[11.8648753,50.4008162],[11.8648756,50.4007888],[11.8648973,50.4007432],[11.8650428,50.4007583],[11.865118,50.4007217],[11.8651967,50.4007194],[11.8652647,50.4006759],[11.8654007,50.4006576],[11.8654472,50.4006896],[11.8654901,50.4007012],[11.8655832,50.4006919],[11.865644,50.4007057],[11.8656728,50.4007446],[11.8657083,50.4007698],[11.8658051,50.4007972],[11.8659376,50.4008041],[11.8660413,50.400795],[11.8660842,50.4008156],[11.8662883,50.4009232],[11.8664134,50.401033],[11.8665459,50.4011178],[11.8667462,50.4012184],[11.8667962,50.4012825],[11.8668428,50.4013466],[11.8668564,50.4013576],[11.8669252,50.401413],[11.8669916,50.4014622],[11.8670146,50.4014793],[11.8670213,50.4014899],[11.8670376,50.4015154],[11.8670539,50.4015411],[11.8670716,50.4016176],[11.8671323,50.4017531],[11.8671594,50.4017844],[11.867196,50.4018265],[11.8672346,50.4018952],[11.8672306,50.4019431],[11.8672195,50.401982],[11.8671834,50.4020275],[11.8671543,50.4020936],[11.8671046,50.4021797],[11.8670925,50.4022007],[11.8670486,50.4022941],[11.8670406,50.4024014],[11.8670682,50.4025135],[11.8671065,50.4026073],[11.8671735,50.4027035],[11.8671978,50.4027835],[11.8671974,50.4028131],[11.8671934,50.4028589],[11.867161,50.4028861],[11.8671502,50.4029066],[11.8671604,50.4029456],[11.8671746,50.4029753],[11.8672027,50.403012],[11.8671976,50.4031672],[11.8672527,50.4033981],[11.8672775,50.4034166],[11.8672738,50.4034348],[11.8672665,50.4034531],[11.8672307,50.4034666],[11.8672233,50.4034871],[11.8672588,50.4035101],[11.8672837,50.4035193],[11.8672799,50.4035514],[11.8672869,50.403572],[11.867293,50.403614],[11.8673431,50.4036795],[11.8673392,50.4037024],[11.8673447,50.4037586],[11.8673314,50.4037639],[11.8673991,50.4038007],[11.8674272,50.4038535],[11.8674441,50.4039426],[11.8674433,50.4040249],[11.8674073,50.4040521],[11.867361,50.4040542],[11.8673321,50.4040883],[11.8673422,50.4041477],[11.8673845,50.4042072],[11.8673805,50.4042484],[11.8673658,50.4042871],[11.8673795,50.4043512],[11.8674323,50.4044496],[11.867492,50.4045504],[11.8675696,50.4046695],[11.8675979,50.4047038],[11.8676547,50.4047429],[11.8677007,50.4047865],[11.8676968,50.4048184],[11.8676823,50.404848],[11.8676748,50.4048823],[11.8676815,50.4049349],[11.8677527,50.4049718],[11.8678166,50.4050085],[11.8679018,50.4050751],[11.8680084,50.4051441],[11.8680574,50.4052425],[11.8680394,50.4052699],[11.8680533,50.4053087],[11.8681104,50.4053113],[11.8681786,50.4052955],[11.86825,50.4053028],[11.868321,50.4053396],[11.8683422,50.4053763],[11.8683418,50.4054082],[11.8683595,50.4054288],[11.8684275,50.4054223],[11.8685278,50.4054068],[11.8685991,50.4054161],[11.868613,50.4054504],[11.8686269,50.4055053],[11.8687235,50.4055057],[11.8687682,50.4055104],[11.8687912,50.4055129],[11.8688769,50.4055338],[11.8689266,50.4055683],[11.8689476,50.4056072],[11.8689689,50.4056439],[11.8690543,50.4056693],[11.869086,50.4057151],[11.8691609,50.405736],[11.8692323,50.4057386],[11.8693108,50.4057457],[11.8696182,50.4057607],[11.8696753,50.4057724],[11.8697753,50.4057705],[11.869847,50.4057617],[11.8698958,50.4057471],[11.8699222,50.4057392],[11.8700009,50.4057304],[11.8706148,50.4058312],[11.8707,50.4058977],[11.8707958,50.4059668],[11.8709273,50.4060495],[11.8711157,50.4061509],[11.8712012,50.4061923],[11.8712683,50.4062206],[11.8712724,50.4062224],[11.8712757,50.406222],[11.8713225,50.4062179],[11.8713907,50.4061954],[11.8714335,50.4062001],[11.8714411,50.4062171],[11.871451,50.4062391],[11.8714633,50.4062448],[11.8714901,50.4062575],[11.871558,50.4062623],[11.8715866,50.4062761],[11.8715875,50.4062778],[11.8716006,50.406299],[11.8716001,50.4063356],[11.8715852,50.4063886],[11.8715891,50.4063881],[11.8716174,50.4064133],[11.871671,50.4064157],[11.8717494,50.4064299],[11.8717671,50.4064573],[11.8717812,50.4064803],[11.8718312,50.4064873],[11.8718848,50.4064898],[11.871906,50.4065104],[11.8719771,50.4065382],[11.8720451,50.4065385],[11.8720847,50.4065157],[11.8721637,50.4064704],[11.8722247,50.4064455],[11.8723213,50.4064277],[11.8723788,50.4064006],[11.872454,50.4063848],[11.8725611,50.4063967],[11.8726287,50.4064335],[11.872707,50.4064658],[11.8728065,50.4065416],[11.8728597,50.4065738],[11.8729133,50.4065856],[11.8729812,50.4065904],[11.8730418,50.4065928],[11.8730987,50.4066251],[11.8732128,50.4067237],[11.8733249,50.4068398],[11.8734386,50.4069436],[11.8735011,50.4070114],[11.8735385,50.4070704],[11.8735442,50.4071412],[11.8736443,50.4071515],[11.8737728,50.4071409],[11.8739012,50.4071372],[11.874035,50.407202],[11.8741995,50.4073304],[11.8743244,50.4074546],[11.8743861,50.4074905],[11.8744578,50.4075012],[11.8744904,50.4075168],[11.8744774,50.4075626],[11.8745036,50.4076058],[11.8745756,50.4076256],[11.8747277,50.4076969],[11.8748368,50.4077689],[11.8748779,50.4078346],[11.8749468,50.4078704],[11.8750582,50.407899],[11.8751593,50.4079321],[11.8751975,50.4079354],[11.8752738,50.4079422],[11.8753719,50.4080028],[11.8753879,50.4080597],[11.8753497,50.4081036],[11.8753268,50.4081747],[11.8753754,50.4082541],[11.875409,50.4082994],[11.8754213,50.4083611],[11.8755221,50.4083895],[11.875581,50.4084483],[11.8756577,50.4085091],[11.8756846,50.4085729],[11.8756652,50.4086462],[11.8756639,50.4087262],[11.8757396,50.4087504],[11.8758928,50.4087419],[11.8760703,50.4087011],[11.8761769,50.4086816],[11.8762995,50.4087282],[11.8765066,50.4088517],[11.8765168,50.4088612],[11.87658,50.4089216],[11.8766518,50.4090579],[11.8767844,50.4093238],[11.8768707,50.4094759],[11.8769047,50.4095395],[11.8769483,50.4095618],[11.8769871,50.4095477],[11.8770307,50.4095724],[11.8770959,50.4096036],[11.8771846,50.4095866],[11.8772311,50.4095907],[11.8772574,50.409636],[11.8772797,50.4096656],[11.8773439,50.4096626],[11.8773841,50.4096941],[11.877511,50.4097612],[11.8775121,50.4098],[11.8775418,50.4098385],[11.8776173,50.409856],[11.8776851,50.4098576],[11.877686,50.4098895],[11.8776729,50.409933],[11.8777104,50.4099967],[11.8777372,50.4100763],[11.8777379,50.4100786],[11.8777137,50.4101086],[11.8777206,50.4102228],[11.8776944,50.4103076],[11.8776301,50.4104295],[11.8776248,50.4104446],[11.8776446,50.4105091],[11.8777281,50.4106164],[11.8778288,50.4106397],[11.8778292,50.4106398],[11.8780085,50.4106788],[11.8781072,50.4107553],[11.8781953,50.4107995],[11.8782231,50.4108135],[11.8782991,50.4108515],[11.8783048,50.4109246],[11.8783464,50.4110041],[11.8783199,50.4110798],[11.8783363,50.4111482],[11.8784263,50.4111769],[11.8785374,50.4111893],[11.8785642,50.4112576],[11.8785861,50.4113967],[11.8786443,50.4114349],[11.8787333,50.4114225],[11.8787905,50.4114241],[11.8788348,50.4114762],[11.8788116,50.4115427],[11.8787712,50.4116254],[11.8787881,50.4117121],[11.8788373,50.4118121],[11.8789407,50.411932],[11.8789642,50.4120094],[11.8789602,50.4121168],[11.8789497,50.4122449],[11.8789504,50.4123958],[11.8789565,50.4124825],[11.8789605,50.412486],[11.8789931,50.4125138],[11.879004,50.4125232],[11.8791113,50.4125334],[11.8792227,50.4125527],[11.8792681,50.412566],[11.8794242,50.4126122],[11.8795639,50.4126266],[11.8797529,50.4127363],[11.8798507,50.4127856],[11.8799979,50.4128159],[11.8801333,50.4128029],[11.8802659,50.4128198],[11.8803588,50.4128233],[11.8804571,50.4128839],[11.8805923,50.4129943],[11.8805944,50.4130651],[11.8805757,50.4131613],[11.8805538,50.4132713],[11.8805063,50.4133459],[11.8804923,50.413368],[11.8804269,50.4134554],[11.8803433,50.4135249],[11.8802641,50.4135724],[11.8801958,50.4136135],[11.8801043,50.4136601],[11.8800018,50.4137025],[11.879975,50.4137622],[11.8800227,50.4137982],[11.8800699,50.4138337],[11.8800989,50.4138556],[11.8801175,50.413873],[11.8802862,50.4140306],[11.8803276,50.4140735],[11.8803931,50.4141414],[11.880592,50.4142328],[11.8807864,50.4142878],[11.8808503,50.4143431],[11.8809036,50.4143893],[11.8810785,50.4145107],[11.8812726,50.4145565],[11.8814743,50.4146183],[11.8816087,50.4146932],[11.8816632,50.4147235],[11.8818467,50.4147717],[11.8821095,50.4148418],[11.8822898,50.4149084],[11.8824208,50.414987],[11.8825688,50.4150447],[11.882589,50.4150462],[11.8826581,50.4150466],[11.8828147,50.4150473],[11.8829011,50.4150478],[11.8833333,50.4152727],[11.8833606,50.4152869],[11.8834485,50.4153328],[11.8836631,50.4154444],[11.884081,50.4156486],[11.884111,50.4156633],[11.884702,50.4158873],[11.8851574,50.4160628],[11.885357,50.4161047],[11.8855961,50.416133],[11.8858389,50.416166],[11.8861281,50.4161787],[11.8863534,50.4161727],[11.8866323,50.4161624],[11.8868851,50.41615],[11.8869327,50.4161476],[11.8872297,50.4161053],[11.8878309,50.416014],[11.8880917,50.4159656],[11.8882473,50.4159366],[11.889034,50.4157904],[11.8897394,50.4156653],[11.8899181,50.41565],[11.8900683,50.4156552],[11.8902433,50.4156604],[11.8904111,50.4156748],[11.8905822,50.4157143],[11.8908139,50.4157701],[11.8909816,50.4157982],[11.8911208,50.415817],[11.8912528,50.4158266],[11.8913994,50.4158319],[11.8914469,50.4158327],[11.8915636,50.4158348],[11.8917781,50.4158356],[11.8920176,50.4158183],[11.8924718,50.4157949],[11.8927292,50.4157845],[11.8929758,50.4157832],[11.8931938,50.4157773],[11.8934509,50.4157873],[11.8938328,50.4158484],[11.8942607,50.4159232],[11.8948243,50.4160351],[11.8954853,50.4162375],[11.8956966,50.4162959],[11.8958826,50.4163212],[11.8961936,50.4163604],[11.8968514,50.4164274],[11.8972248,50.4164762],[11.8973054,50.4164862],[11.8979919,50.4165109],[11.898514,50.4165595],[11.8991253,50.4165945],[11.8998225,50.4166295],[11.9003661,50.4166324],[11.9008596,50.4166032],[11.9013083,50.4165184],[11.9013649,50.4165077],[11.901322,50.4167697],[11.9013102,50.4168426],[11.901256,50.4170412],[11.9013379,50.4171761],[11.9013433,50.4171778],[11.9015021,50.4172288],[11.9017523,50.4172907],[11.9021527,50.4173825],[11.9024208,50.4174011],[11.9026069,50.4173967],[11.9028501,50.4173536],[11.9030612,50.4173173],[11.9031937,50.4172488],[11.9033192,50.4171394],[11.9037978,50.417325],[11.9042086,50.4174693],[11.9046373,50.4176411],[11.9047887,50.4172483],[11.9048819,50.4171433],[11.9050572,50.4170818],[11.905229,50.417082],[11.9055437,50.417087],[11.9058297,50.4170964],[11.9060013,50.417165],[11.9060795,50.4172702],[11.9061007,50.4173753],[11.9061039,50.4175146],[11.9061032,50.4178185],[11.9060414,50.4181679],[11.9059869,50.4184602],[11.9058826,50.4187205],[11.9058464,50.4188736],[11.9058029,50.4191133],[11.9058201,50.4193874],[11.9058801,50.4196844],[11.9059941,50.419817],[11.9061585,50.419872],[11.9063873,50.4199545],[11.9066766,50.4200667],[11.9070624,50.4202088],[11.9074448,50.4203645],[11.9078197,50.4205841],[11.9084589,50.4209777],[11.9089732,50.4212797],[11.9094086,50.4215566],[11.9096291,50.4216886],[11.9102585,50.4220622],[11.9103907,50.4221469],[11.9104479,50.4221744],[11.9107267,50.4222158],[11.9109664,50.4222434],[11.9111701,50.4222596],[11.9113418,50.4222667],[11.9115492,50.4223194],[11.911717,50.4223903],[11.9119421,50.4225025],[11.9119991,50.4225368],[11.9120921,50.4225895],[11.9122527,50.4226605],[11.9124387,50.4227154],[11.9125483,50.422748],[11.9126316,50.4227728],[11.912814,50.4228187],[11.9129281,50.4228758],[11.9130603,50.4229857],[11.913228,50.4231068],[11.9134567,50.4232213],[11.9136532,50.423306],[11.913914,50.4234456],[11.9140818,50.4235805],[11.9141425,50.4236149],[11.9143426,50.4236814],[11.914607,50.4237524],[11.9148432,50.4237754],[11.9151327,50.4238146],[11.9151868,50.4238239],[11.9154544,50.4238696],[11.9158083,50.4239614],[11.9160085,50.4240278],[11.9162588,50.4240692],[11.9165163,50.4240694],[11.9167702,50.4240696],[11.9169883,50.4240791],[11.9171777,50.4241226],[11.9175745,50.4242121],[11.9178712,50.4242945],[11.9181895,50.4243474],[11.9185039,50.4244597],[11.9186863,50.4245398],[11.9187431,50.4246129],[11.9187917,50.424692],[11.9188598,50.4247331],[11.9189495,50.4247582],[11.9191359,50.4247696],[11.9192327,50.4247467],[11.9193222,50.424669],[11.9193936,50.4245639],[11.9195154,50.4245022],[11.9196264,50.4244753],[11.9196692,50.4244281],[11.9197476,50.4243958],[11.9199769,50.4243686],[11.9200046,50.4243309],[11.9201871,50.4243303],[11.9203372,50.4243137],[11.9209792,50.4245227],[11.9213092,50.4246174],[11.9213669,50.4242379],[11.9214353,50.4238674],[11.9214482,50.4237784],[11.9214758,50.4235862],[11.9217603,50.4235611],[11.9223738,50.423507],[11.922559,50.4234906],[11.922974,50.4234891],[11.9239765,50.4235721],[11.9241076,50.423584],[11.9243883,50.4236093],[11.9247206,50.4235716],[11.9254955,50.4233857],[11.9259022,50.4232516],[11.9261267,50.4231457],[11.9263257,50.4229986],[11.9269609,50.4223861],[11.9273053,50.4220947],[11.9276542,50.4218831],[11.9281246,50.4216596],[11.9289053,50.4213504],[11.9293086,50.4212277],[11.9295861,50.4211362],[11.9297294,50.421089],[11.9302472,50.4209658],[11.9305949,50.4214764],[11.9312754,50.4215514],[11.9320248,50.4221564],[11.9323057,50.4223632],[11.9327865,50.4225121],[11.9334204,50.4225873],[11.9342476,50.4226376],[11.9344872,50.4231329],[11.9348274,50.4236729],[11.9349229,50.4236526],[11.9350354,50.4235705],[11.9350983,50.4233965],[11.9351533,50.4231358],[11.9352953,50.4230119],[11.9354161,50.4229177],[11.9355357,50.422675],[11.9357124,50.4224458],[11.9359362,50.4222598],[11.9370914,50.4213962],[11.9374039,50.4211527],[11.9375919,50.4209624],[11.9377117,50.420763],[11.9379434,50.4202594],[11.9379964,50.4201346],[11.9380941,50.4199046],[11.9381398,50.4198176],[11.9386691,50.4189907],[11.9390819,50.418347],[11.9391951,50.4181933],[11.9392875,50.4181404],[11.9396298,50.4180089],[11.9406432,50.41811],[11.9412341,50.4177923],[11.9415403,50.4176288],[11.9416079,50.4175851],[11.9422324,50.4174159],[11.9426929,50.4172975],[11.9432496,50.4171696],[11.9434924,50.4171092],[11.9442124,50.4168184],[11.9448789,50.416537],[11.945524,50.4162739],[11.9451282,50.4156334],[11.9446932,50.4149839],[11.9445056,50.414811],[11.9441231,50.4144493],[11.9438517,50.4140938],[11.9436123,50.4137291],[11.9434558,50.4134259],[11.9434047,50.4133142],[11.9432578,50.4128943],[11.9433649,50.4128801],[11.9433663,50.412875],[11.9433765,50.4126918],[11.9433837,50.4125624],[11.9433878,50.4122357],[11.9437035,50.4123281],[11.9436972,50.4122496],[11.9436874,50.4121271],[11.9437228,50.412095],[11.9440527,50.4117966],[11.9443377,50.4115778],[11.9446603,50.4113303],[11.9448951,50.41119],[11.9459454,50.4110555],[11.9458578,50.4100665],[11.9460153,50.410091],[11.9462015,50.4101085],[11.9463197,50.4101286],[11.9463915,50.4101625],[11.9464385,50.4102241],[11.9464821,50.4102856],[11.9465185,50.4103518],[11.9466085,50.4104108],[11.9467481,50.4104308],[11.9469088,50.4104027],[11.9469842,50.4103817],[11.9470836,50.410354],[11.947301,50.410264],[11.9475144,50.4101398],[11.9476993,50.4100134],[11.9478235,50.4098963],[11.9478767,50.4098527],[11.9479624,50.4098387],[11.9481413,50.4098471],[11.9483345,50.4098394],[11.9485829,50.4096282],[11.9489447,50.4093091],[11.9491256,50.4091461],[11.949603,50.4089226],[11.9501064,50.4084521],[11.949905,50.4083158],[11.9504849,50.4079821],[11.9506667,50.4079083],[11.9507882,50.4078987],[11.9509853,50.4079299],[11.951215,50.4080249],[11.9513552,50.408102],[11.9514811,50.4081815],[11.9515967,50.4083181],[11.9516979,50.4084252],[11.9524324,50.4081822],[11.9526756,50.4081744],[11.9528493,50.4079908],[11.9531878,50.407866],[11.9540974,50.4076087],[11.953961,50.407559],[11.9538569,50.4075],[11.9537881,50.4074272],[11.9537264,50.4073247],[11.9538891,50.407132],[11.9539638,50.4070906],[11.9540709,50.4070582],[11.9539323,50.4067639],[11.9541145,50.4067357],[11.9541513,50.4064705],[11.9540293,50.4064139],[11.95344,50.4065237],[11.9532355,50.40644],[11.9529494,50.406432],[11.9522589,50.4060372],[11.9534898,50.4049002],[11.9533243,50.4048148],[11.9527869,50.4046658],[11.9526666,50.4046453],[11.9524699,50.4045652],[11.9522735,50.4044964],[11.9523956,50.4043815],[11.9525433,50.4042273],[11.9526077,50.4042026],[11.9528218,50.4041541],[11.9523925,50.4038748],[11.9521554,50.4037229],[11.9519097,50.4034474],[11.9518661,50.4033631],[11.9518287,50.4031941],[11.9506416,50.4020336],[11.9496256,50.401215],[11.9493445,50.4009832],[11.9489259,50.4007846],[11.9488668,50.4007566],[11.9486719,50.4005312],[11.9486011,50.4002344],[11.9484853,50.3995368],[11.9483,50.398853],[11.9482914,50.3988211],[11.9481966,50.3984704],[11.9481141,50.3982993],[11.9480497,50.3981669],[11.9480103,50.3981007],[11.9479743,50.3980573],[11.9479351,50.398014],[11.9478599,50.3979706],[11.9477669,50.3979411],[11.9477159,50.3978979],[11.9477159,50.3978437],[11.9476897,50.3978269],[11.9476417,50.3978042],[11.9475955,50.3977824],[11.9475507,50.3977596],[11.9475337,50.3977418],[11.9475201,50.3977243],[11.9475153,50.3976954],[11.9475122,50.3976609],[11.9475354,50.397651],[11.9475693,50.3976579],[11.9476003,50.397651],[11.9476189,50.3976332],[11.9476236,50.3976184],[11.9476158,50.3975947],[11.947605,50.397574],[11.9475849,50.3975601],[11.9475463,50.3975571],[11.9474845,50.3975503],[11.9474613,50.3975374],[11.9474459,50.3975225],[11.9474567,50.3975028],[11.9474846,50.3974979],[11.9475621,50.3975103],[11.9475746,50.3974795],[11.9475513,50.3974655],[11.9475227,50.3974536],[11.9474983,50.3974406],[11.9474956,50.3974254],[11.9475217,50.397417],[11.947555,50.397419],[11.947585,50.397433],[11.9476137,50.3974463],[11.9476368,50.3974456],[11.9476497,50.3974318],[11.9476412,50.3974126],[11.9476227,50.3973816],[11.9476127,50.3973556],[11.9475998,50.3973359],[11.947587,50.3973191],[11.9475878,50.3973053],[11.9476285,50.3973031],[11.9476607,50.3972825],[11.9476871,50.3972483],[11.9477085,50.3972223],[11.9477107,50.3971903],[11.947725,50.3971707],[11.9477566,50.3971606],[11.9477886,50.3971708],[11.9478315,50.3971676],[11.94786,50.3971492],[11.947873,50.3971219],[11.9479052,50.397115],[11.9479543,50.3971224],[11.9480073,50.3971069],[11.9480358,50.3970786],[11.9480186,50.3970585],[11.947976,50.3970402],[11.9479402,50.3970603],[11.9479145,50.397043],[11.947943,50.3970174],[11.9479959,50.397001],[11.9480674,50.3969718],[11.9481532,50.3969554],[11.9482146,50.3969325],[11.9482289,50.3969007],[11.9481604,50.396855],[11.9482212,50.396799],[11.9482837,50.3968518],[11.948311,50.3967407],[11.9482472,50.3967275],[11.948254,50.3966432],[11.9483044,50.3966449],[11.9483452,50.3966694],[11.9483614,50.3966476],[11.9483519,50.3966128],[11.9483384,50.3965763],[11.9483657,50.3965668],[11.9484173,50.3965885],[11.9484567,50.3965928],[11.948488,50.396578],[11.9485587,50.3965025],[11.9485859,50.396506],[11.9486309,50.3965565],[11.9486539,50.3965712],[11.9486947,50.39652],[11.9486785,50.3965026],[11.9486403,50.3964999],[11.9486405,50.3964347],[11.9486771,50.3964173],[11.9487084,50.3963957],[11.9487112,50.3963609],[11.9486771,50.3963608],[11.9486337,50.3963913],[11.9485765,50.3963566],[11.9485793,50.3963331],[11.9485834,50.3963044],[11.9485549,50.3962852],[11.9485522,50.3962634],[11.9485998,50.3962652],[11.9486339,50.3962939],[11.9487588,50.3962896],[11.9487834,50.3962722],[11.94879,50.3962506],[11.9487657,50.3962349],[11.948763,50.3961957],[11.9487835,50.3961766],[11.9487876,50.3961245],[11.9488066,50.3961071],[11.9488353,50.3961045],[11.9488691,50.3961115],[11.9489018,50.3960942],[11.94891,50.3960636],[11.9489141,50.3960246],[11.9489399,50.3959942],[11.948982,50.3959725],[11.9490214,50.3959812],[11.949046,50.3959594],[11.9490257,50.395916],[11.9490286,50.3957483],[11.9490123,50.3957117],[11.948981,50.395683],[11.9489879,50.3956639],[11.9490246,50.3956379],[11.9490654,50.3956292],[11.9490831,50.3956048],[11.9490872,50.3955788],[11.9491308,50.3955527],[11.9491376,50.395518],[11.9491239,50.3954972],[11.9490805,50.3954918],[11.9490398,50.3954814],[11.9490221,50.3954614],[11.9490153,50.3954318],[11.9489728,50.3953982],[11.9489895,50.3953362],[11.948972,50.3953049],[11.9490019,50.3952901],[11.9490372,50.3952789],[11.9490169,50.3952555],[11.9489692,50.395231],[11.9489761,50.3952014],[11.9490182,50.3951946],[11.9490455,50.3951477],[11.9490782,50.3951685],[11.9490997,50.3952207],[11.9491325,50.3952137],[11.9491869,50.3951964],[11.9492706,50.3951966],[11.9495079,50.3951305],[11.9496398,50.3950981],[11.949835,50.3950501],[11.9499136,50.394995],[11.9498922,50.394979],[11.9498814,50.394963],[11.9498815,50.3949402],[11.9499029,50.3949264],[11.9499315,50.3949242],[11.9499635,50.3949264],[11.9499744,50.394899],[11.9499992,50.3948669],[11.9500134,50.3948418],[11.9500348,50.394819],[11.9500669,50.3948006],[11.9500991,50.3948006],[11.9501242,50.3948006],[11.9501491,50.3947846],[11.9501813,50.394764],[11.950199,50.3947457],[11.950224,50.3947366],[11.950267,50.3947388],[11.9503064,50.3947501],[11.9503384,50.3947433],[11.9503598,50.3947204],[11.9503777,50.3946976],[11.950442,50.3946838],[11.9505028,50.3946814],[11.9505529,50.3946746],[11.9506135,50.3946631],[11.9506564,50.3946425],[11.9506922,50.3946242],[11.9507242,50.3946058],[11.9507456,50.3945853],[11.9507419,50.3945556],[11.9508519,50.3945435],[11.9508602,50.3945087],[11.9507923,50.3944686],[11.9508331,50.39446],[11.9509065,50.3944704],[11.9509744,50.3944687],[11.9510098,50.3945],[11.9509689,50.3945435],[11.9510231,50.3945609],[11.9510559,50.39454],[11.9510559,50.3945],[11.9510913,50.3944827],[11.9510969,50.3944391],[11.9510288,50.3944305],[11.9510506,50.3944078],[11.9510968,50.3944055],[11.9513227,50.3944226],[11.9514039,50.39447],[11.9516171,50.3945905],[11.9516958,50.394594],[11.9517906,50.3946072],[11.951774,50.3948099],[11.9517615,50.3950456],[11.951774,50.3951723],[11.9518121,50.3952764],[11.9518551,50.3953527],[11.9522109,50.3955235],[11.9524407,50.3958006],[11.9525614,50.3959462],[11.9528456,50.3963786],[11.952867,50.3964267],[11.9529413,50.3965938],[11.9533715,50.3965269],[11.9539041,50.3965698],[11.9553231,50.3967692],[11.9571423,50.3969889],[11.9573427,50.3971485],[11.9580425,50.3967961],[11.9593028,50.3961186],[11.9599274,50.3957],[11.9604525,50.3955441],[11.9608175,50.3957902],[11.9614435,50.3962122],[11.9617116,50.3962836],[11.9618618,50.3963237],[11.9621621,50.3964421],[11.9622587,50.3965219],[11.9623197,50.3965766],[11.9623805,50.3966496],[11.9624414,50.3967341],[11.9625097,50.3968177],[11.962531,50.3968436],[11.9626385,50.3970194],[11.9628358,50.3974896],[11.9631447,50.3983047],[11.9630441,50.3983422],[11.9625304,50.3985337],[11.9627726,50.3988314],[11.9627804,50.3988369],[11.9627899,50.3988491],[11.9628125,50.3988777],[11.962913,50.398849],[11.9633885,50.3987129],[11.9635303,50.3988486],[11.9636676,50.3989804],[11.9638129,50.3991706],[11.9638985,50.3992437],[11.9640055,50.399326],[11.9640876,50.3993832],[11.9641662,50.3994448],[11.9642734,50.3995271],[11.9643448,50.3995751],[11.964466,50.3996573],[11.9645778,50.3997868],[11.9647183,50.399665],[11.9650377,50.3993503],[11.9652957,50.3991772],[11.9655393,50.3990473],[11.965969,50.3988788],[11.9660436,50.3988477],[11.9661981,50.3987833],[11.9664308,50.3986785],[11.9666925,50.3985464],[11.9670293,50.3983436],[11.9672155,50.3982365],[11.9674482,50.3981592],[11.967638,50.3980521],[11.9679533,50.3978996],[11.9682003,50.3977765],[11.9684116,50.3976694],[11.9685585,50.397592],[11.9688744,50.3973024],[11.9691594,50.3970242],[11.9692058,50.3969739],[11.9691594,50.396974],[11.9690986,50.3969696],[11.9690485,50.3969514],[11.9690091,50.3969263],[11.9689661,50.3968989],[11.9689375,50.3968716],[11.9689051,50.3968397],[11.9688909,50.3968146],[11.9688764,50.3967872],[11.9688585,50.3967416],[11.968787,50.3967782],[11.9687938,50.3966389],[11.9689888,50.396136],[11.9688631,50.3959283],[11.9690439,50.3954186],[11.9694702,50.3946229],[11.969944,50.3941584],[11.9703465,50.3937123],[11.9717866,50.3929903],[11.9720199,50.3928733],[11.9722976,50.3925164],[11.9725077,50.3923333],[11.9727823,50.3921433],[11.9730394,50.3920286],[11.9732141,50.3919346],[11.9734139,50.3918383],[11.9735423,50.3917467],[11.9738309,50.3914721],[11.9739796,50.3911475],[11.9739942,50.3911154],[11.9743355,50.3905963],[11.9743691,50.3905678],[11.9747383,50.3902552],[11.975177,50.3900145],[11.9758582,50.3895907],[11.9757401,50.3895293],[11.9755529,50.3891276],[11.9752881,50.3889682],[11.9754586,50.3887635],[11.9754731,50.3887462],[11.9796155,50.389942],[11.9798617,50.3900131],[11.9799983,50.3898954],[11.9800351,50.389842],[11.9800718,50.3897885],[11.9800878,50.3897429],[11.9801108,50.3896996],[11.980366,50.3897718],[11.9809371,50.3899334],[11.9814521,50.390081],[11.9817705,50.3901877],[11.9820924,50.39029],[11.9822854,50.3903238],[11.9823151,50.3903193],[11.982467,50.3902954],[11.9827408,50.3902525],[11.9830478,50.3901582],[11.9834084,50.3900434],[11.9835226,50.3900043],[11.9836047,50.3899676],[11.9836724,50.3899173],[11.9837187,50.3898533],[11.9837273,50.3897732],[11.983736,50.3896956],[11.9837388,50.3894717],[11.9837492,50.3893734],[11.9837276,50.3892935],[11.9835873,50.3890807],[11.9834976,50.3889445],[11.9830347,50.3883285],[11.9824908,50.3880897],[11.98219,50.3867995],[11.9823321,50.3865664],[11.9827261,50.3861827],[11.9828406,50.3860711],[11.9827399,50.3859779],[11.9823283,50.3855969],[11.9819596,50.3851931],[11.9818533,50.3851283],[11.9813968,50.3848472],[11.9808457,50.3845512],[11.9805376,50.3843233],[11.9806154,50.3840468],[11.9809817,50.3835459],[11.9813018,50.3830953],[11.9814618,50.3828802],[11.9814897,50.3826541],[11.9814284,50.3824943],[11.9813097,50.3822317],[11.9811733,50.3820356],[11.9809831,50.3818189],[11.9808578,50.381689],[11.9802742,50.3813245],[11.9802014,50.3809112],[11.9797863,50.3806995],[11.9796438,50.3805891],[11.9795291,50.3805072],[11.979389,50.3804024],[11.9793064,50.3803478],[11.9791778,50.3802826],[11.9788967,50.3802443],[11.9786309,50.3802082],[11.978612,50.3798701],[11.9791792,50.3796315],[11.979674,50.3791145],[11.9798538,50.3783535],[11.9799283,50.3782231],[11.9799888,50.3781202],[11.9800564,50.3780173],[11.9801311,50.3779212],[11.9802057,50.3778433],[11.980295,50.3777724],[11.9803839,50.3777106],[11.9804766,50.3776578],[11.98058,50.3776096],[11.9806977,50.3775616],[11.9811332,50.3774511],[11.9815402,50.3773636],[11.9819765,50.3774239],[11.9821119,50.3774424],[11.9822812,50.3774366],[11.9823905,50.3774328],[11.9825496,50.3773882],[11.9829081,50.377288],[11.9833286,50.3770153],[11.983609,50.3764735],[11.9838899,50.3760892],[11.9841603,50.3757894],[11.9843528,50.3756612],[11.9847197,50.3753864],[11.9843868,50.3751152],[11.9839461,50.3747619],[11.9835844,50.3744177],[11.9830934,50.3739868],[11.9828859,50.3738063],[11.9827061,50.3736499],[11.9828976,50.3734949],[11.9825471,50.3733374],[11.9821813,50.3730531],[11.9821482,50.3729918],[11.98191,50.3725497],[11.9820109,50.3724334],[11.981773,50.3723008],[11.9815626,50.3721833],[11.9812072,50.371909],[11.9809268,50.3716926],[11.9805278,50.3715339],[11.9811092,50.3712133],[11.981092,50.3711013],[11.9809969,50.3709297],[11.9804029,50.3705763],[11.9802531,50.3703736],[11.9800882,50.3701505],[11.9796691,50.3702888],[11.9790634,50.3696246],[11.9788376,50.3692943],[11.9787207,50.3691233],[11.9792542,50.3689465],[11.9791141,50.3681145],[11.9798215,50.3681027],[11.979826,50.3681612],[11.9798376,50.368306],[11.9799862,50.3685121],[11.9800543,50.3684936],[11.9810385,50.368227],[11.9813492,50.3680898],[11.9814291,50.3680545],[11.9810546,50.3675073],[11.9810439,50.3672941],[11.9810422,50.3672606],[11.9819202,50.3668677],[11.982112,50.3670121],[11.9824598,50.3668326],[11.9827253,50.3666664],[11.9829764,50.3665232],[11.9832345,50.3664005],[11.9835118,50.36631],[11.9835819,50.3662872],[11.9837285,50.366267],[11.9843826,50.366207],[11.9839688,50.3661283],[11.9833799,50.3660513],[11.9823804,50.3662737],[11.9822029,50.3663133],[11.9821546,50.3660801],[11.9824541,50.3652036],[11.9826608,50.3652567],[11.9825481,50.3655282],[11.9837152,50.3656455],[11.9838195,50.3656645],[11.9839361,50.3656857],[11.9842504,50.3657428],[11.9846866,50.3650853],[11.9847813,50.3649423],[11.9844473,50.3646993],[11.9839062,50.3644603],[11.9827437,50.3642059],[11.9813974,50.3639028],[11.9813358,50.364035],[11.9813137,50.3640989],[11.9812666,50.3642016],[11.9812304,50.3642814],[11.9811723,50.3644092],[11.981143,50.3645096],[11.9811318,50.3645553],[11.9811279,50.3646055],[11.9811273,50.3646923],[11.981116,50.3647745],[11.9810724,50.3648771],[11.9810542,50.3649296],[11.9810356,50.3650324],[11.9797265,50.364844],[11.9796763,50.3648367],[11.9796948,50.3647705],[11.9797261,50.3646747],[11.9797464,50.36454],[11.9797544,50.3644992],[11.9797627,50.3644398],[11.9797827,50.3643443],[11.9798352,50.3642669],[11.9799564,50.3640915],[11.979993,50.3640199],[11.9800048,50.3639881],[11.980017,50.3639262],[11.980048,50.3638533],[11.9800573,50.3638076],[11.9800494,50.3637507],[11.9799957,50.3636636],[11.9799533,50.3636041],[11.9799178,50.363563],[11.9798824,50.3635331],[11.9798329,50.3634667],[11.9795148,50.3632629],[11.9791572,50.3628437],[11.9787066,50.3624565],[11.9783863,50.3622865],[11.9776592,50.3620858],[11.9777104,50.3619375],[11.9772411,50.3618348],[11.9771399,50.3618126],[11.9772061,50.3616252],[11.9772639,50.361461],[11.9778843,50.3615998],[11.977939,50.3615781],[11.9780277,50.3615431],[11.9780932,50.3614193],[11.9781473,50.3613172],[11.9781587,50.3612145],[11.9780888,50.3610666],[11.9780238,50.3609284],[11.9779794,50.3608347],[11.9779167,50.3607811],[11.9777701,50.3606559],[11.9779029,50.3605534],[11.9781742,50.3607943],[11.9782026,50.3608263],[11.9782094,50.3608676],[11.9782373,50.3609406],[11.9782761,50.3610116],[11.9783258,50.3610597],[11.9783862,50.361101],[11.9784713,50.3611674],[11.9785316,50.361227],[11.9785705,50.3612819],[11.9786023,50.3613437],[11.978634,50.3614009],[11.9786799,50.3614718],[11.9787257,50.3615404],[11.9787754,50.3615931],[11.9788427,50.3616596],[11.9788923,50.36171],[11.9789455,50.3617581],[11.9789809,50.3618107],[11.9789982,50.3618656],[11.9790442,50.3619342],[11.9790797,50.3619868],[11.9791256,50.3620418],[11.979193,50.3621013],[11.9792874,50.3622431],[11.9799669,50.3620281],[11.9803378,50.3619501],[11.9805894,50.3618972],[11.9804983,50.3616525],[11.9805644,50.3614059],[11.9807127,50.3611641],[11.9810582,50.3603311],[11.9811109,50.3601883],[11.9811605,50.3600544],[11.9814373,50.359304],[11.9816391,50.3589035],[11.9817062,50.3587704],[11.9817316,50.3587233],[11.9817634,50.3585364],[11.9815749,50.3583899],[11.9812902,50.3581839],[11.9810375,50.3579847],[11.9806142,50.3576711],[11.9804221,50.3574857],[11.9801767,50.3572957],[11.9798852,50.3570509],[11.9796253,50.3568449],[11.9794654,50.3567144],[11.9792521,50.3565313],[11.9790919,50.3564031],[11.9785441,50.3559797],[11.9781921,50.3556798],[11.9778646,50.355428],[11.9775197,50.3551442],[11.9772991,50.3549748],[11.9767943,50.354556],[11.9764848,50.354311],[11.9763068,50.3541851],[11.9760861,50.3540705],[11.9756302,50.353823],[11.9753239,50.3536557],[11.9749607,50.3534633],[11.9744584,50.353202],[11.974177,50.3530508],[11.9738959,50.3528766],[11.9736856,50.3527941],[11.9735752,50.3527413],[11.9734258,50.3526475],[11.9732905,50.352549],[11.973159,50.3524437],[11.9730097,50.3523156],[11.9729791,50.3522922],[11.9728778,50.3522145],[11.9728418,50.3521578],[11.9727551,50.3520918],[11.9727268,50.3520634],[11.9729635,50.3520325],[11.9732001,50.3520017],[11.973843,50.3519905],[11.9741064,50.3519398],[11.9742913,50.3519041],[11.975023,50.3517631],[11.975543,50.3514788],[11.9771951,50.3502176],[11.9773982,50.3501093],[11.9775571,50.3500243],[11.978016,50.349788],[11.9784431,50.3494853],[11.9791909,50.3492287],[11.9792915,50.3492016],[11.9793511,50.3492414],[11.9794649,50.349245],[11.9796627,50.3492537],[11.9799148,50.3492832],[11.980164,50.3493093],[11.9803401,50.3493266],[11.9805028,50.349337],[11.9806193,50.349344],[11.9807218,50.3493396],[11.9808415,50.349318],[11.9809499,50.3492973],[11.9811205,50.3493197],[11.9812646,50.349332],[11.9813965,50.3493438],[11.9814715,50.3493645],[11.9815426,50.3493898],[11.9816744,50.3494313],[11.9817918,50.3494865],[11.9819306,50.3495416],[11.982073,50.349606],[11.9821656,50.3496474],[11.9822508,50.3496933],[11.9823112,50.3497414],[11.9823891,50.349817],[11.9824244,50.3498833],[11.982728,50.3499535],[11.9833281,50.3499118],[11.9838242,50.3499565],[11.9847509,50.3501874],[11.9852401,50.3501796],[11.9858172,50.3503615],[11.9861719,50.3503491],[11.9870487,50.3504219],[11.9873128,50.3504248],[11.9880965,50.3505619],[11.9881402,50.3505664],[11.988671,50.3507482],[11.9890934,50.3510139],[11.9892042,50.3510848],[11.9894458,50.35123],[11.9909036,50.3516085],[11.9922352,50.3526309],[11.9925521,50.3526432],[11.9927744,50.35263],[11.9931174,50.3525988],[11.9944586,50.3523121],[11.994931,50.3522383],[11.9949913,50.3522289],[11.9949384,50.3523098],[11.9947781,50.3525551],[11.9947083,50.3527599],[11.9945958,50.3530893],[11.9946797,50.3531107],[11.9956651,50.3533616],[11.996293,50.3536614],[11.9964587,50.3537405],[11.9969533,50.354016],[11.9975206,50.3535491],[11.9980498,50.3529792],[11.9983043,50.3528221],[11.9983674,50.3524957],[11.998363,50.352423],[11.9983419,50.3520728],[11.9978963,50.3518935],[11.9977365,50.3518293],[11.9978095,50.3516078],[11.998107,50.3514577],[11.9976599,50.351043],[11.997526,50.3507722],[11.9975015,50.3507228],[11.9972527,50.3500687],[11.9972118,50.3497946],[11.9969118,50.3497937],[11.9969032,50.349483],[11.9964171,50.349082],[11.9960378,50.3476865],[11.9960224,50.3475975],[11.9968531,50.3475175],[11.9967641,50.3467097],[11.9982942,50.3468724],[11.99851,50.3462991],[11.9985144,50.3462876],[11.9990474,50.3462179],[11.9995545,50.3462052],[11.9999683,50.3462284],[12.0003245,50.3462786],[12.0006494,50.3462762],[12.0008849,50.3462822],[12.0012964,50.3462277],[12.0018834,50.3461287],[12.0022807,50.3460536],[12.0026132,50.3460191],[12.002718,50.3461728],[12.0030688,50.3461098],[12.0033195,50.3460648],[12.0033613,50.3463598],[12.0033883,50.3464628],[12.0034423,50.3466483],[12.0035213,50.3468498],[12.0036052,50.3469577],[12.0036612,50.3470266],[12.003096,50.3471099],[12.0032227,50.3472157],[12.0036121,50.3472068],[12.0041982,50.3471649],[12.0044982,50.3471554],[12.0047266,50.3471682],[12.0045788,50.3470165],[12.0044891,50.3468263],[12.0042805,50.3467016],[12.0040068,50.3466198],[12.0039086,50.3465118],[12.0039221,50.3463383],[12.0039993,50.3461902],[12.0039947,50.3460325],[12.0039141,50.3459314],[12.0037724,50.3458621],[12.0036772,50.3457906],[12.0037355,50.3457201],[12.0038181,50.3456886],[12.0041281,50.3457203],[12.0043138,50.3457216],[12.0045738,50.3457461],[12.0049055,50.3457801],[12.0053624,50.3457739],[12.0059232,50.3457524],[12.006377,50.3457233],[12.0069306,50.3457177],[12.0072372,50.3457311],[12.0074409,50.3457209],[12.0079767,50.3456969],[12.0082335,50.34571],[12.0083116,50.3457379],[12.0082904,50.3457826],[12.0082599,50.3458472],[12.0080265,50.3459395],[12.0078722,50.3459978],[12.0078496,50.3460662],[12.0079198,50.3461443],[12.0081586,50.3461688],[12.0083748,50.3462707],[12.0086953,50.346323],[12.0089876,50.3463477],[12.00932,50.3463178],[12.0096166,50.3463059],[12.0098633,50.3462903],[12.0100096,50.346281],[12.0106635,50.346244],[12.0112165,50.3462567],[12.0114946,50.3462835],[12.0116581,50.3463281],[12.0117536,50.3463926],[12.0118149,50.3465735],[12.011939,50.3468531],[12.012107,50.3470873],[12.012254,50.3472664],[12.0123416,50.3473744],[12.0125333,50.3474395],[12.0127937,50.3474617],[12.0132,50.3475054],[12.0137202,50.3475635],[12.0141694,50.347603],[12.0145367,50.347635],[12.0147296,50.3476315],[12.0148998,50.3475622],[12.0149321,50.3474616],[12.0149909,50.3473453],[12.0149287,50.3472215],[12.0147911,50.3471156],[12.0147783,50.3470195],[12.0146799,50.3469184],[12.0146735,50.3468612],[12.0146212,50.3467946],[12.0144114,50.3467384],[12.0142197,50.3466664],[12.014118,50.3465493],[12.0140415,50.3464186],[12.0140046,50.3462606],[12.0139921,50.3461485],[12.0138688,50.3460473],[12.0137521,50.3459688],[12.0135993,50.3459244],[12.0135292,50.3458372],[12.013517,50.3457022],[12.01348,50.3455363],[12.0134637,50.3454643],[12.013445,50.3452837],[12.0135283,50.3449895],[12.0136252,50.3447158],[12.0137872,50.344397],[12.0138119,50.3443447],[12.0138563,50.3442288],[12.0139881,50.3441126],[12.0141844,50.3438831],[12.0144163,50.3436606],[12.0146577,50.3435113],[12.0149777,50.3433671],[12.0152451,50.3431563],[12.0154336,50.3429723],[12.0155386,50.3428748],[12.0156834,50.3427431],[12.0157463,50.3426912],[12.0159003,50.342564],[12.0161086,50.3424945],[12.0162087,50.3424745],[12.0162654,50.3425023],[12.0165006,50.3425313],[12.0169736,50.3424176],[12.0175938,50.3422411],[12.0178969,50.3421131],[12.0183625,50.3419373],[12.0184276,50.3418716],[12.0181326,50.3417988],[12.0179405,50.3417452],[12.0179117,50.3416945],[12.017878,50.341635],[12.017861,50.3415688],[12.0178107,50.3413718],[12.0178171,50.3411845],[12.0178869,50.3410569],[12.0179522,50.3409934],[12.0183527,50.3411741],[12.0189339,50.340979],[12.0191314,50.3409071],[12.0190319,50.3406483],[12.0190157,50.3405431],[12.019245,50.3404874],[12.0194768,50.3405003],[12.0198165,50.3406898],[12.0200222,50.3407733],[12.0202003,50.3408041],[12.0203717,50.340796],[12.0205425,50.3406734],[12.0206461,50.3405991],[12.0211624,50.3402092],[12.0212106,50.3401021],[12.0211156,50.339777],[12.0211827,50.3395878],[12.0213136,50.3394401],[12.0215495,50.3394096],[12.0218776,50.3394337],[12.0220237,50.3394446],[12.0224119,50.3395063],[12.0226682,50.3395423],[12.0227789,50.3395429],[12.0228527,50.33955],[12.0232672,50.3395894],[12.0237972,50.339716],[12.0242372,50.3398879],[12.0245172,50.340013],[12.0247295,50.3401377],[12.0247623,50.3403185],[12.0246983,50.3405374],[12.0246818,50.3406858],[12.0250705,50.3407089],[12.0253682,50.3403793],[12.0257353,50.3404182],[12.0261148,50.3405827],[12.0266543,50.3407826],[12.0270554,50.3409268],[12.0273753,50.3410156],[12.0275614,50.3409825],[12.0282456,50.3405891],[12.0280926,50.3405515],[12.0281495,50.3403325],[12.028302,50.3401599],[12.0284539,50.3400283],[12.0287491,50.3398702],[12.0293943,50.339689],[12.0306535,50.3392695],[12.030851,50.3391885],[12.0308925,50.339054],[12.0308241,50.3388478],[12.0304407,50.3384708],[12.0301194,50.3380095],[12.0298512,50.3374931],[12.0297622,50.3373218],[12.0294481,50.3366161],[12.0294111,50.3364743],[12.0294378,50.3364371],[12.0295715,50.3362512],[12.029798,50.3359804],[12.0300332,50.3356989],[12.0304911,50.3351533],[12.0305641,50.3350842],[12.0309294,50.3347379],[12.0311295,50.3344786],[12.0312046,50.3342323],[12.0311997,50.3340951],[12.0311237,50.3339234],[12.031123,50.3337314],[12.0311371,50.3336816],[12.0311738,50.3334438],[12.0312527,50.3331838],[12.0313937,50.333059],[12.0316062,50.332937],[12.0317526,50.3322203],[12.0317248,50.3316992],[12.0318105,50.3312199],[12.0319086,50.3308708],[12.0320346,50.3305746],[12.0321732,50.3302632],[12.0321896,50.330226],[12.0322563,50.3301571],[12.0325797,50.3298254],[12.0327942,50.3298415],[12.0332107,50.3298728],[12.0333737,50.3294739],[12.0337976,50.3295337],[12.0341647,50.3293165],[12.0347118,50.3294776],[12.03525,50.329755],[12.0359524,50.3300495],[12.0362999,50.330191],[12.036688,50.3302551],[12.037025,50.3303828],[12.037445,50.3304838],[12.0375228,50.3305024],[12.0377897,50.3305543],[12.0381288,50.3305518],[12.0384022,50.3306403],[12.0386886,50.3308225],[12.0390016,50.3306508],[12.0394061,50.3305664],[12.0393231,50.331336],[12.0392782,50.3314866],[12.0396241,50.3315023],[12.0400264,50.3315711],[12.0404847,50.3317087],[12.0408612,50.3318321],[12.0411802,50.3319756],[12.0414105,50.3320935],[12.0412982,50.3321935],[12.0406025,50.332893],[12.0400456,50.3333786],[12.0394731,50.3337223],[12.0390286,50.3340968],[12.0385631,50.334672],[12.0380375,50.3354389],[12.0377863,50.3357755],[12.0376881,50.3358914],[12.0378672,50.3360935],[12.038246,50.3355772],[12.0387349,50.3348672],[12.0389268,50.3346993],[12.0392247,50.3345846],[12.0394037,50.3345377],[12.0400166,50.3341324],[12.0404027,50.3338469],[12.0404694,50.3337939],[12.0407965,50.333534],[12.0412628,50.3331346],[12.0416624,50.3328311],[12.0417284,50.332781],[12.0420929,50.3325113],[12.0422633,50.332332],[12.0423473,50.3322433],[12.043409,50.3311254],[12.0436731,50.3308963],[12.0439113,50.3307125],[12.0440732,50.3306245],[12.0455113,50.3299112],[12.045767,50.3297481],[12.0459759,50.3296169],[12.0461224,50.3293664],[12.0461712,50.3292044],[12.0462087,50.3290767],[12.0462039,50.328926],[12.046131,50.3287884],[12.0460397,50.3286941],[12.0459481,50.328609],[12.0460002,50.3284699],[12.0456978,50.3281551],[12.0456091,50.3279768],[12.0456078,50.327974],[12.0455993,50.32783],[12.0455848,50.3277282],[12.0455799,50.3276929],[12.0455681,50.3275214],[12.0455773,50.3274753],[12.0456029,50.3273479],[12.0456764,50.3272067],[12.0457814,50.3271],[12.0459253,50.3270208],[12.046038,50.326889],[12.0460692,50.3266995],[12.0461149,50.3265056],[12.046121,50.3263411],[12.046367,50.3261095],[12.0466202,50.3258802],[12.0468198,50.3256598],[12.047033,50.3254692],[12.0472012,50.3252051],[12.0474161,50.3249116],[12.0475837,50.3246705],[12.0477477,50.3244315],[12.0479175,50.3242954],[12.0480503,50.3242414],[12.0482727,50.324165],[12.0484346,50.32407],[12.0486976,50.3239071],[12.0488489,50.3238075],[12.0489462,50.323751],[12.0492344,50.3240359],[12.0484631,50.3245637],[12.0482344,50.3248251],[12.047744,50.3254186],[12.0491132,50.325733],[12.0491117,50.3260643],[12.0490595,50.3264736],[12.049027,50.3267287],[12.0489166,50.3274433],[12.0488998,50.3278545],[12.0489263,50.3282294],[12.0488892,50.3285651],[12.0487792,50.32877],[12.0487462,50.3288269],[12.0481235,50.3294264],[12.0478054,50.3297057],[12.0473921,50.3299019],[12.0471731,50.3302364],[12.0468827,50.3305547],[12.0464023,50.330947],[12.046056,50.331194],[12.0470317,50.3311016],[12.0476212,50.3310526],[12.0483243,50.3310477],[12.0487061,50.3310523],[12.0488917,50.3310557],[12.049959,50.3312769],[12.0506418,50.3304743],[12.0516541,50.3293471],[12.0518239,50.3292064],[12.0521423,50.3289068],[12.0529684,50.3278126],[12.0533409,50.3272322],[12.0537381,50.3266679],[12.0541124,50.3269741],[12.0541808,50.3270585],[12.0543537,50.3272724],[12.0536827,50.3282579],[12.0533587,50.3287015],[12.0535327,50.3287483],[12.0532973,50.3289844],[12.052763,50.3296531],[12.0522936,50.3302603],[12.0519151,50.3307805],[12.0527402,50.3309508],[12.0533318,50.3302894],[12.0536453,50.3299248],[12.0537638,50.329787],[12.0539064,50.3295629],[12.0540925,50.3292703],[12.0543483,50.3288719],[12.0544325,50.328717],[12.0544562,50.3285549],[12.0544191,50.3284177],[12.054432,50.3282646],[12.0558148,50.3272002],[12.0561464,50.326945],[12.0567445,50.3272845],[12.056909,50.3271575],[12.0575061,50.3266971],[12.0576659,50.326746],[12.0580984,50.3264561],[12.0588398,50.3267484],[12.0581464,50.3275646],[12.0577247,50.3280968],[12.0576215,50.328236],[12.0568072,50.3293344],[12.0562783,50.3301242],[12.0566476,50.330252],[12.0569193,50.3302239],[12.057732,50.3300368],[12.0572745,50.3305756],[12.056992,50.3306151],[12.0561922,50.3311143],[12.0559187,50.331285],[12.0563856,50.3315712],[12.056692,50.3318587],[12.0566794,50.3319819],[12.0568889,50.332054],[12.0574234,50.3316208],[12.0577061,50.3313162],[12.0580109,50.3309753],[12.0585576,50.3309351],[12.0588439,50.330882],[12.0591621,50.3305937],[12.0594893,50.330422],[12.0598444,50.3305475],[12.0604664,50.3302221],[12.0608151,50.3303019],[12.0613863,50.3297911],[12.0611248,50.3293783],[12.0614228,50.3292521],[12.0616078,50.3290475],[12.0617906,50.3289846],[12.0624375,50.3291597],[12.0627818,50.3292897],[12.0630081,50.3294327],[12.0613467,50.3308008],[12.0621471,50.3312192],[12.0624203,50.3313372],[12.0627119,50.3314007],[12.0630249,50.3314848],[12.0628433,50.3321783],[12.0642772,50.3329887],[12.0652375,50.332644],[12.0670756,50.3319973],[12.0691161,50.3311268],[12.0692215,50.3310878],[12.0692777,50.3310695],[12.0692354,50.3309261],[12.0698833,50.330561],[12.0701885,50.3304025],[12.0709903,50.3299821],[12.0709342,50.329911],[12.0706919,50.3298867],[12.0706998,50.3295943],[12.0706074,50.3293127],[12.0722258,50.3291805],[12.0725492,50.3292806],[12.0728209,50.3292364],[12.0735533,50.3294281],[12.0737001,50.3293993],[12.0738292,50.3293588],[12.0740908,50.3292759],[12.0741536,50.3291277],[12.0742959,50.3291628],[12.0742353,50.3294115],[12.0747609,50.3295836],[12.0748586,50.3287388],[12.0751352,50.3283542],[12.0754371,50.3284656],[12.0755221,50.3285049],[12.0756614,50.3284988],[12.0755216,50.3282902],[12.0754845,50.3281322],[12.0755015,50.327945],[12.0756799,50.3279438],[12.0759205,50.3278332],[12.0764422,50.3277951],[12.0769779,50.3280061],[12.0772583,50.3276238],[12.0783198,50.3280138],[12.0786287,50.3278625],[12.078082,50.3276674],[12.0787542,50.3270681],[12.0788416,50.3271034],[12.0794354,50.3273438],[12.0796494,50.327096],[12.0797152,50.3269867],[12.0799737,50.3268785],[12.0800264,50.3269038],[12.0803847,50.3270751],[12.0813203,50.3275375],[12.0818329,50.32789],[12.0829989,50.328661],[12.0828776,50.3287889],[12.0827131,50.3289853],[12.0826774,50.3291109],[12.0827594,50.329296],[12.0830554,50.3294514],[12.0833802,50.3295793],[12.0830552,50.3297209],[12.0823909,50.3300747],[12.083058,50.3303925],[12.0836113,50.3305867],[12.0837468,50.3306439],[12.084107,50.3308335],[12.0841721,50.3308571],[12.0842641,50.3308906],[12.0847243,50.3310209],[12.085199,50.3311672],[12.0856124,50.3307802],[12.0856528,50.3307424],[12.0858348,50.3306191],[12.0860706,50.3305004],[12.0863347,50.3303999],[12.0865704,50.3303497],[12.0867058,50.3303339],[12.0867668,50.3303269],[12.0867964,50.3303243],[12.0875343,50.3302586],[12.0880192,50.330615],[12.087914,50.3306832],[12.0869979,50.3312771],[12.0866943,50.3314987],[12.0863269,50.3312976],[12.0858875,50.3317041],[12.0863157,50.3319349],[12.0866547,50.3321223],[12.0870828,50.3323165],[12.0877494,50.332595],[12.0878214,50.3326251],[12.0880104,50.3326594],[12.0882748,50.3325291],[12.0884785,50.3322208],[12.0886444,50.331857],[12.0892249,50.3316705],[12.0896746,50.3318623],[12.090431,50.3323011],[12.0913088,50.3325205],[12.0914163,50.3319815],[12.0898927,50.3312777],[12.0898505,50.3312593],[12.08965,50.331152],[12.0896038,50.3311086],[12.0895823,50.3310767],[12.0895752,50.3310172],[12.0895829,50.3309929],[12.0896432,50.3308026],[12.0900507,50.3300784],[12.0902509,50.3296034],[12.0902815,50.3295909],[12.0908936,50.3293408],[12.0912327,50.3293592],[12.0914457,50.329319],[12.0914754,50.3293135],[12.0916182,50.3292701],[12.0918824,50.3292336],[12.0920538,50.3291742],[12.0921209,50.3291378],[12.0921966,50.3290967],[12.0923275,50.3290326],[12.0923787,50.3290076],[12.092639,50.3291492],[12.0929355,50.3290664],[12.0928154,50.3288282],[12.0926424,50.3285843],[12.0925346,50.328485],[12.0925016,50.3283869],[12.0924527,50.3283183],[12.092385,50.3282383],[12.0922637,50.328124],[12.0921781,50.3280258],[12.0921567,50.3279824],[12.0921246,50.3278956],[12.0921033,50.3278065],[12.092039,50.3277152],[12.0919357,50.3275918],[12.0918679,50.3274752],[12.0917039,50.3271898],[12.091502,50.3268893],[12.0914481,50.3267917],[12.0913916,50.3267086],[12.091332,50.3266327],[12.0912557,50.3265136],[12.0911705,50.3263617],[12.0911265,50.326324],[12.0911014,50.3262737],[12.091055,50.3262348],[12.0909826,50.3261102],[12.0916027,50.3258872],[12.0914421,50.3257319],[12.0912638,50.3257227],[12.090686,50.324962],[12.0909504,50.3247976],[12.0908863,50.3246399],[12.0906508,50.3245851],[12.0902298,50.3243772],[12.0902548,50.3243133],[12.0908401,50.3244024],[12.0908831,50.3242974],[12.0911934,50.3244321],[12.0915788,50.3244733],[12.091857,50.3246584],[12.0919534,50.3247018],[12.0921103,50.3247429],[12.0941014,50.3251703],[12.0943122,50.3248666],[12.0944339,50.3245833],[12.094516,50.324444],[12.0946161,50.3242155],[12.0946412,50.3240421],[12.0946305,50.3239072],[12.0945522,50.323777],[12.0944738,50.323656],[12.0948162,50.3236583],[12.0950485,50.3233271],[12.0951235,50.3232517],[12.0951805,50.3231947],[12.095359,50.3231626],[12.0956446,50.3231353],[12.0956577,50.3231298],[12.0957695,50.3230828],[12.0958446,50.3230211],[12.0959649,50.3229542],[12.0960364,50.3227897],[12.0961613,50.3226709],[12.0962065,50.3227012],[12.0963931,50.3228264],[12.0964681,50.3227784],[12.0980776,50.3230825],[12.0981562,50.3227558],[12.0987494,50.3216455],[12.098414,50.3215974],[12.0982571,50.3214832],[12.0986469,50.3205398],[12.0990076,50.3199687],[12.0992256,50.3195437],[12.0996435,50.3189727],[12.1003466,50.3188585],[12.1005145,50.318868],[12.1007397,50.3188778],[12.1007449,50.3187946],[12.1005414,50.3186942],[12.1002211,50.3186483],[12.1002277,50.3184702],[12.1003736,50.31848],[12.1005349,50.3184702],[12.1006392,50.3183642],[12.1009095,50.3182722],[12.1009504,50.318218],[12.1010039,50.318193],[12.1009765,50.3181689],[12.1008637,50.3180784],[12.1008054,50.3180317],[12.1008412,50.3180354],[12.100854,50.3180236],[12.1009709,50.3180153],[12.1010376,50.3179902],[12.1010554,50.3179982],[12.1010844,50.3179774],[12.1011392,50.3179014],[12.1011712,50.317816],[12.1012091,50.3177919],[12.1012405,50.3177869],[12.1012534,50.3177918],[12.1013466,50.3177639],[12.1013878,50.3177419],[12.1014649,50.3177183],[12.1015442,50.317659],[12.1016148,50.3176295],[12.1016717,50.3175939],[12.1018264,50.3175519],[12.1018449,50.3175509],[12.1018702,50.317566],[12.1019238,50.3175678],[12.1019523,50.3175767],[12.1019693,50.3175743],[12.1019909,50.3175683],[12.1020116,50.3175547],[12.1020238,50.3174875],[12.1020643,50.3174085],[12.1020762,50.31736],[12.1020925,50.317349],[12.102116,50.3172774],[12.1020907,50.3172367],[12.1020889,50.3172169],[12.1021073,50.317207],[12.10212,50.3171906],[12.1021294,50.3171617],[12.1022172,50.3171079],[12.1022758,50.3171102],[12.1023134,50.3171238],[12.1023875,50.3171876],[12.1024541,50.3172213],[12.1025018,50.3172284],[12.1025709,50.3172487],[12.1025842,50.3172407],[12.1026222,50.3171691],[12.1026222,50.317149],[12.102654,50.3170363],[12.1026783,50.3169652],[12.1026359,50.3168216],[12.102534,50.316756],[12.1025376,50.3167152],[12.102568,50.3166918],[12.1025998,50.3166916],[12.1026768,50.3166489],[12.1027245,50.3166168],[12.1027329,50.3165632],[12.1027578,50.3165459],[12.1027828,50.3165369],[12.1028963,50.3165242],[12.1030106,50.3165136],[12.1030355,50.3165268],[12.1030482,50.3165392],[12.1030633,50.3165397],[12.1031563,50.3164954],[12.1032506,50.3164342],[12.1032825,50.3164226],[12.1032984,50.3164206],[12.1033262,50.3163677],[12.1033208,50.3163141],[12.1033074,50.3162619],[12.1033027,50.3161841],[12.1033114,50.3161209],[12.1033497,50.3160592],[12.1033483,50.3160424],[12.1033584,50.3160017],[12.1032817,50.3158948],[12.1033154,50.3158168],[12.1033103,50.3157895],[12.1033273,50.3157655],[12.1034763,50.3156699],[12.1036565,50.3155837],[12.1036827,50.315551],[12.1036885,50.3155175],[12.1037185,50.315461],[12.1037681,50.3153972],[12.1037793,50.3153862],[12.1038744,50.3153213],[12.1041051,50.3151913],[12.104117,50.315168],[12.104134,50.3151599],[12.104091,50.3151363],[12.1048861,50.3145639],[12.1051533,50.3145011],[12.1053859,50.3144582],[12.1056263,50.3144078],[12.1066801,50.3143069],[12.1067364,50.3143535],[12.1067933,50.3144027],[12.1082332,50.3147183],[12.1086886,50.314355],[12.1089401,50.3141253],[12.1089793,50.3140885],[12.1090108,50.314102],[12.1090563,50.3141281],[12.1091193,50.31413],[12.109137,50.3141223],[12.1091839,50.3140986],[12.1092231,50.314043],[12.1092388,50.3140336],[12.1092469,50.3140075],[12.1091772,50.3139367],[12.1091575,50.3138876],[12.1091548,50.3138542],[12.1092027,50.313787],[12.1092208,50.3137791],[12.1092556,50.3137791],[12.1093617,50.3137913],[12.1093688,50.3138069],[12.1093942,50.3138067],[12.1094588,50.31378],[12.1095171,50.313749],[12.10956,50.3137535],[12.1095734,50.3137663],[12.1096487,50.3138089],[12.1096678,50.3138148],[12.1096889,50.3138516],[12.1096527,50.3139027],[12.1096742,50.3139153],[12.1097224,50.3139111],[12.109782,50.3138754],[12.1098704,50.3138542],[12.1099032,50.3138296],[12.1099042,50.3138078],[12.1098938,50.3137888],[12.1098727,50.3137657],[12.1098369,50.3137509],[12.1098506,50.313725],[12.1098901,50.3137178],[12.1100217,50.3137062],[12.1100519,50.3137049],[12.1101279,50.3136887],[12.1101614,50.3136983],[12.1101544,50.3137655],[12.110157,50.3138243],[12.110144,50.3138405],[12.1101701,50.3138585],[12.1102294,50.31386],[12.1102705,50.3138416],[12.1104494,50.3138437],[12.1105364,50.3138039],[12.1105502,50.3137866],[12.1105515,50.3137558],[12.1105786,50.3137424],[12.110671,50.3137128],[12.1106988,50.3136528],[12.1107102,50.313619],[12.1107615,50.3136149],[12.1108036,50.3136354],[12.1108465,50.3136917],[12.1108843,50.3137967],[12.1108797,50.3138131],[12.1109068,50.3138202],[12.1109905,50.3137928],[12.1110253,50.3137866],[12.111099,50.3137785],[12.1112078,50.3137558],[12.1112587,50.3137776],[12.1113086,50.3138163],[12.1113173,50.3138382],[12.1112688,50.3138846],[12.1112155,50.3138901],[12.1111663,50.3138621],[12.1111348,50.3138758],[12.1111348,50.3139083],[12.1111475,50.313944],[12.1111462,50.3139577],[12.1111613,50.3139919],[12.1111871,50.3140144],[12.111177,50.314028],[12.1112038,50.3140295],[12.111244,50.3140362],[12.1114409,50.3140449],[12.1116123,50.3140682],[12.1116585,50.3140625],[12.1117118,50.3140454],[12.1117623,50.3140167],[12.1117988,50.3139938],[12.1118122,50.3139771],[12.1118183,50.313928],[12.1118434,50.3138816],[12.1118916,50.3138469],[12.1118762,50.3137813],[12.1119057,50.3137173],[12.1118976,50.3136763],[12.1118806,50.3136577],[12.1118883,50.3135925],[12.111916,50.3135687],[12.1119341,50.3135587],[12.1119994,50.3135399],[12.1120634,50.3135069],[12.112128,50.3135091],[12.1121437,50.3135227],[12.1121478,50.3135878],[12.1121622,50.3136031],[12.1122897,50.3136008],[12.1123708,50.3135704],[12.1124103,50.3135713],[12.1124294,50.3135775],[12.1124672,50.3136267],[12.1124656,50.3136845],[12.1124525,50.3137009],[12.112423,50.3137071],[12.1124431,50.3137336],[12.112484,50.3137411],[12.1126534,50.3136923],[12.1126993,50.3136908],[12.1127596,50.3136891],[12.1128151,50.3136739],[12.1128483,50.3136566],[12.1128965,50.3136438],[12.1129725,50.3136523],[12.1130258,50.3136177],[12.1130619,50.3135997],[12.1131088,50.3135811],[12.1131507,50.3135739],[12.1132009,50.3135743],[12.1132213,50.3135779],[12.1132829,50.3135604],[12.1133365,50.3135343],[12.1133646,50.3135161],[12.1133526,50.313486],[12.1132813,50.313455],[12.1132625,50.3134515],[12.1132511,50.3134556],[12.113231,50.3134449],[12.1132317,50.3134321],[12.1132109,50.3134],[12.1132059,50.3133534],[12.113223,50.3133113],[12.1132612,50.3132841],[12.1133218,50.3132781],[12.1133419,50.3132894],[12.1133593,50.3133078],[12.1133811,50.3133185],[12.1134561,50.3133318],[12.1134614,50.3133444],[12.1136188,50.3133406],[12.113669,50.3133487],[12.1136952,50.3133557],[12.1137363,50.3133515],[12.1138201,50.3133068],[12.1138492,50.3133021],[12.1138566,50.3132854],[12.1138403,50.3132215],[12.1138126,50.3131401],[12.1137991,50.3131208],[12.1137549,50.3130892],[12.1137429,50.3130381],[12.1137663,50.3129308],[12.1137933,50.3128863],[12.1138318,50.3128583],[12.1138927,50.3128481],[12.1140205,50.3128687],[12.1140428,50.3128812],[12.1140391,50.3129169],[12.1140467,50.3129381],[12.1140935,50.31295],[12.1141403,50.3129351],[12.1142006,50.3129225],[12.1142411,50.3129387],[12.1142905,50.3129926],[12.1143039,50.3130357],[12.1143448,50.3130508],[12.1143821,50.3130427],[12.1144106,50.3130194],[12.1144914,50.31298],[12.1146089,50.312943],[12.1146468,50.312944],[12.1147863,50.313022],[12.1148088,50.3130671],[12.1148543,50.3130889],[12.1149421,50.3130887],[12.1150234,50.3130707],[12.1150901,50.3130363],[12.1150935,50.3130017],[12.1150157,50.3129501],[12.1150158,50.3128768],[12.1150491,50.3128467],[12.1151145,50.3128432],[12.1151556,50.3128239],[12.1151726,50.3127914],[12.1151756,50.3127549],[12.1151982,50.3127331],[12.1152403,50.312675],[12.1152399,50.3126285],[12.1153139,50.3125887],[12.115288,50.3125449],[12.1152128,50.3125473],[12.1152161,50.3125217],[12.1151756,50.3124594],[12.115199,50.3123573],[12.1153156,50.3123532],[12.1153305,50.3123379],[12.1154054,50.3123589],[12.1154378,50.3123958],[12.115378,50.3124195],[12.1153414,50.3124721],[12.1153724,50.3125041],[12.11546,50.3124906],[12.1154994,50.3125056],[12.1156642,50.3125197],[12.1156988,50.3125132],[12.1157165,50.3124107],[12.1157769,50.3120664],[12.1162106,50.311955],[12.1162805,50.312021],[12.1163141,50.3120032],[12.1163196,50.3119778],[12.116374,50.3119484],[12.1164182,50.3119446],[12.1165109,50.3119539],[12.1165629,50.3119454],[12.1165908,50.3119236],[12.1165786,50.3118803],[12.1165082,50.3118286],[12.1164983,50.311798],[12.1165467,50.311787],[12.116741,50.3118118],[12.1168155,50.3118345],[12.1168231,50.3118647],[12.1168477,50.3118807],[12.1169013,50.3118678],[12.1169167,50.311836],[12.116888,50.3118104],[12.1168409,50.3117849],[12.1168319,50.3117611],[12.1168613,50.311701],[12.1169522,50.3116549],[12.1170013,50.3116644],[12.1170257,50.3116914],[12.1170366,50.3117197],[12.1170813,50.3117449],[12.1171,50.3117836],[12.1171419,50.311793],[12.1171733,50.3117743],[12.1171976,50.3117375],[12.1171766,50.3116705],[12.1171637,50.3115905],[12.1171838,50.3115573],[12.1172242,50.3115428],[12.1172883,50.3115397],[12.1173317,50.3115549],[12.1173801,50.3115942],[12.1174468,50.3116404],[12.1174854,50.3116595],[12.1175375,50.3116037],[12.1175849,50.3115855],[12.1176075,50.3115741],[12.1176412,50.3115572],[12.1177404,50.3115177],[12.1177771,50.3115174],[12.1177974,50.3115326],[12.117803,50.3115776],[12.1178365,50.3115916],[12.117915,50.3115875],[12.1179958,50.3115633],[12.1180171,50.3115344],[12.1180071,50.3115154],[12.1179656,50.311505],[12.1178699,50.3114455],[12.1178504,50.311415],[12.1178626,50.3113703],[12.1178944,50.3113423],[12.1179537,50.3113303],[12.1180889,50.3113629],[12.1181328,50.3113856],[12.1181446,50.3114112],[12.1181407,50.3114356],[12.1182025,50.311448],[12.1182474,50.3114331],[12.1182704,50.3114061],[12.1182555,50.3113483],[12.118223,50.3113103],[12.1181328,50.3112758],[12.1181267,50.3112502],[12.1182147,50.3111994],[12.1182412,50.3112054],[12.1183016,50.3111982],[12.1184138,50.3112624],[12.1184843,50.3112746],[12.1185671,50.3112538],[12.1185835,50.311211],[12.1185563,50.3111668],[12.1184416,50.3111691],[12.1183629,50.3111576],[12.1183182,50.3111082],[12.1183424,50.3110702],[12.1184036,50.311039],[12.1184575,50.3110434],[12.1185593,50.3110055],[12.1185983,50.3110118],[12.1186403,50.31105],[12.1186968,50.3110805],[12.1187634,50.3110955],[12.1188186,50.3110942],[12.1188506,50.3110713],[12.1188505,50.3110422],[12.1188022,50.3109845],[12.1188057,50.3109282],[12.1188531,50.3108716],[12.1188878,50.3108785],[12.1189216,50.3108944],[12.1189395,50.3109236],[12.1189826,50.3109297],[12.1190121,50.3109374],[12.1190235,50.3109678],[12.1190531,50.3109885],[12.1191175,50.3109903],[12.1191998,50.3109791],[12.1192505,50.3109618],[12.1192581,50.3109398],[12.1192479,50.3109213],[12.1192099,50.3109187],[12.1191741,50.3109275],[12.1191311,50.310933],[12.1190869,50.3109106],[12.1190932,50.3108747],[12.1192148,50.3107572],[12.119249,50.3107436],[12.1192803,50.3107388],[12.119376,50.3107239],[12.1194171,50.3107106],[12.1194346,50.3106863],[12.1194594,50.3106702],[12.1195092,50.310666],[12.1195529,50.3106703],[12.1196538,50.3107056],[12.1196812,50.3107272],[12.1197202,50.3107713],[12.1197746,50.3107996],[12.119793,50.3108173],[12.1198236,50.3108238],[12.1198608,50.3108168],[12.1198973,50.310803],[12.11994,50.3108003],[12.1199686,50.310785],[12.1199637,50.3107639],[12.1199398,50.3107479],[12.1198479,50.310731],[12.1198384,50.3106971],[12.1199223,50.3106708],[12.1199754,50.3107028],[12.1200882,50.3107275],[12.1201348,50.3107681],[12.1202322,50.3108184],[12.1202621,50.3108416],[12.1203031,50.310848],[12.1203718,50.3108327],[12.1203946,50.3107946],[12.1203833,50.3107681],[12.1203624,50.3107512],[12.1203724,50.310735],[12.1204019,50.3106423],[12.1204387,50.3106191],[12.1205427,50.3106299],[12.120553,50.3107145],[12.1205604,50.3107438],[12.1205928,50.3107531],[12.1206273,50.3107338],[12.1206409,50.3106517],[12.1206645,50.3106412],[12.1206872,50.3106459],[12.1207206,50.3106465],[12.1207527,50.3106336],[12.1207592,50.310615],[12.1207109,50.3105125],[12.1207674,50.3104442],[12.1208459,50.3104286],[12.1208805,50.310413],[12.1209747,50.3104167],[12.1210255,50.31043],[12.1210794,50.3104924],[12.1211293,50.310515],[12.1211917,50.3105246],[12.1212942,50.3105193],[12.1213607,50.3104876],[12.1214681,50.3104742],[12.1215873,50.3104477],[12.1216618,50.3104114],[12.1216752,50.3103906],[12.1216487,50.3103577],[12.1216589,50.3103232],[12.1216827,50.3103068],[12.1217147,50.3103],[12.1217369,50.3103096],[12.1217574,50.3102763],[12.1217552,50.3102421],[12.1217519,50.3102153],[12.1217238,50.3102093],[12.1216889,50.310227],[12.1216582,50.310224],[12.1216277,50.3101918],[12.1216288,50.3101683],[12.121669,50.3101336],[12.1216759,50.3101185],[12.1217977,50.3100993],[12.121872,50.310084],[12.1219081,50.3100411],[12.1219425,50.3100265],[12.1219407,50.3099974],[12.1218964,50.3100039],[12.1218142,50.3099806],[12.1217921,50.3099496],[12.1217716,50.3099505],[12.1217877,50.3099284],[12.1218204,50.3099162],[12.1218834,50.3098573],[12.1219214,50.3098095],[12.1219298,50.3097596],[12.1219869,50.309757],[12.1221123,50.309788],[12.1221515,50.3097879],[12.1221852,50.3097773],[12.1222043,50.3097528],[12.1222578,50.3095834],[12.1222438,50.3095602],[12.122255,50.3095426],[12.1223004,50.3095246],[12.1223537,50.3095165],[12.1223885,50.3094996],[12.1224036,50.3094704],[12.1223924,50.3094513],[12.1223445,50.3094314],[12.1223104,50.3093878],[12.1222472,50.309354],[12.1222429,50.3093349],[12.1222566,50.3093147],[12.1222998,50.3092923],[12.1223505,50.309266],[12.1223584,50.3092435],[12.1223406,50.3092161],[12.122371,50.3092063],[12.1224294,50.3091802],[12.1224541,50.3091862],[12.1224761,50.3092094],[12.1225245,50.3092211],[12.122572,50.3092277],[12.1226227,50.3092487],[12.122653,50.309255],[12.1226665,50.3092691],[12.1226775,50.3093224],[12.1227127,50.3093316],[12.1227424,50.3093283],[12.122768,50.3093096],[12.1228211,50.3093],[12.1228618,50.3092828],[12.1229098,50.309272],[12.1229301,50.3092527],[12.1229348,50.3091965],[12.1228947,50.3091117],[12.1228996,50.3090662],[12.1228602,50.3090147],[12.1228738,50.3089942],[12.1229204,50.3089792],[12.1230757,50.3089848],[12.1231458,50.3089694],[12.1231746,50.3089485],[12.1231584,50.3089178],[12.1231302,50.3088794],[12.1230265,50.3088512],[12.1230138,50.3088283],[12.1230368,50.3088007],[12.1230784,50.308784],[12.1231245,50.3087533],[12.1231808,50.3087335],[12.1231922,50.3087134],[12.1232091,50.3087004],[12.1232925,50.3086923],[12.1233107,50.3086823],[12.1232977,50.3086396],[12.1233222,50.3086083],[12.1234383,50.3085418],[12.1235471,50.3085661],[12.1235756,50.3086108],[12.1236166,50.3086766],[12.1236927,50.3086568],[12.123727,50.3086141],[12.1237591,50.3085919],[12.1237943,50.3085254],[12.1238635,50.3084251],[12.1238756,50.3083982],[12.1239006,50.3083759],[12.1239751,50.3083604],[12.1240807,50.3083383],[12.1241923,50.3083072],[12.124282,50.3082889],[12.1243171,50.3082778],[12.1243457,50.30825],[12.1243755,50.3082532],[12.1243875,50.3082783],[12.1244142,50.3082906],[12.1244442,50.3082868],[12.1244554,50.3082656],[12.1244804,50.3082442],[12.124484,50.3082268],[12.1244684,50.308205],[12.1244532,50.3081876],[12.1244256,50.308184],[12.1244334,50.3081496],[12.1244763,50.308124],[12.1245213,50.3080907],[12.1245599,50.3080459],[12.1245849,50.308033],[12.1246367,50.3080232],[12.1246959,50.3080337],[12.1247319,50.3080277],[12.1248478,50.3079713],[12.1249624,50.307932],[12.1250996,50.3078717],[12.1251593,50.3078235],[12.1252376,50.3077956],[12.125263,50.3077726],[12.1252986,50.307728],[12.1255189,50.3076993],[12.1255953,50.3076633],[12.1256011,50.3076372],[12.1255717,50.3076131],[12.1255639,50.3075797],[12.1255437,50.3075478],[12.1255442,50.3075185],[12.1255692,50.3074945],[12.1256408,50.3074732],[12.1257564,50.3074731],[12.1257962,50.3074586],[12.1258227,50.3074298],[12.1258211,50.307391],[12.1258105,50.3073507],[12.1258738,50.3073188],[12.1259221,50.3072882],[12.1259522,50.3072719],[12.1260253,50.3072441],[12.1260597,50.3071848],[12.1260661,50.3071443],[12.1260796,50.3071029],[12.1260796,50.3070751],[12.1260585,50.3070484],[12.126054,50.3070275],[12.1260763,50.3070051],[12.1260996,50.3069964],[12.1261323,50.3069899],[12.1261646,50.3069681],[12.1261765,50.3069436],[12.1262035,50.3069116],[12.1262032,50.306888],[12.1261882,50.3068567],[12.1261456,50.3067847],[12.1261385,50.306731],[12.1261506,50.3066877],[12.12613,50.3066756],[12.1261295,50.3066553],[12.1261508,50.3066391],[12.1261984,50.3066268],[12.1262246,50.3066305],[12.1262418,50.3066422],[12.1262591,50.3066318],[12.1262693,50.3066105],[12.1262658,50.3065903],[12.1262484,50.3065701],[12.1262482,50.3065681],[12.1262466,50.3065435],[12.126217,50.3065203],[12.1261958,50.3064717],[12.1261665,50.3064299],[12.1261476,50.3064179],[12.1261501,50.306402],[12.1261786,50.306391],[12.1262298,50.306392],[12.1262548,50.3063792],[12.126253,50.306354],[12.1262203,50.3063176],[12.1261555,50.3061862],[12.1261584,50.3061624],[12.1261212,50.3061285],[12.1260856,50.3060906],[12.1260448,50.3060712],[12.1260088,50.3060539],[12.1259783,50.3060143],[12.1259327,50.3060005],[12.1259138,50.3059846],[12.1258939,50.3059356],[12.1258288,50.3058638],[12.1257973,50.3058136],[12.1257442,50.3057685],[12.125718,50.3057224],[12.125694,50.3057103],[12.1256614,50.3057059],[12.1255576,50.3057236],[12.1255022,50.30572],[12.1254734,50.3056838],[12.1252899,50.3054775],[12.1252467,50.3054206],[12.1251874,50.3053541],[12.1251881,50.3053345],[12.1252159,50.3053055],[12.1252147,50.3052766],[12.1252003,50.3052614],[12.1251691,50.305252],[12.1251155,50.3052532],[12.125095,50.3052474],[12.1250818,50.3052293],[12.1250665,50.3052228],[12.124957,50.3052303],[12.1248695,50.3052632],[12.1248156,50.3052593],[12.1247586,50.3052407],[12.1246903,50.3051913],[12.1246577,50.3051521],[12.1245908,50.3051276],[12.1244834,50.3051037],[12.124437,50.3050686],[12.1244243,50.3050352],[12.1243997,50.3050236],[12.1243031,50.3049433],[12.1242373,50.3048708],[12.124169,50.304831],[12.1241271,50.304847],[12.1240843,50.3048404],[12.1240257,50.3048089],[12.1239535,50.3047821],[12.1238169,50.3047423],[12.1237813,50.3047012],[12.1237408,50.3046831],[12.1236668,50.3046727],[12.1236443,50.3046642],[12.1235709,50.3046069],[12.1235233,50.3045812],[12.1235117,50.3045439],[12.1234699,50.304507],[12.123407,50.3044465],[12.1233558,50.3044249],[12.1233188,50.3044259],[12.1232654,50.3044673],[12.1232393,50.3044687],[12.1232237,50.304455],[12.123224,50.3043813],[12.1232124,50.3043576],[12.123222,50.3043349],[12.123228,50.304305],[12.1232248,50.3042702],[12.1231724,50.3042677],[12.1231527,50.3042526],[12.1231498,50.3042058],[12.1231279,50.3041816],[12.1231004,50.3041743],[12.1230707,50.3041764],[12.1230292,50.3041884],[12.1229927,50.3041838],[12.1229328,50.3041685],[12.1228827,50.3041684],[12.1228087,50.3041332],[12.1228116,50.3041175],[12.1228412,50.304107],[12.1228551,50.3041104],[12.1228608,50.3041276],[12.1228799,50.3041328],[12.1229243,50.3041171],[12.1229548,50.3041157],[12.1229597,50.3040723],[12.1229465,50.3040704],[12.1229184,50.3040769],[12.1228908,50.304074],[12.1228724,50.304063],[12.1228664,50.3040267],[12.1228505,50.3040055],[12.1228639,50.3039758],[12.1228597,50.3039436],[12.1228396,50.3039334],[12.1228158,50.3039328],[12.1228074,50.3039431],[12.1228072,50.303969],[12.1227604,50.3039899],[12.1227031,50.3039697],[12.1226978,50.3039452],[12.1227324,50.303927],[12.1227528,50.3038899],[12.1227739,50.3038615],[12.1227996,50.3038497],[12.1228099,50.3038421],[12.1227953,50.3038063],[12.1227896,50.3037742],[12.1227995,50.3037551],[12.1227952,50.3037365],[12.1227538,50.3037004],[12.1227579,50.3036706],[12.1227429,50.3036415],[12.1226966,50.3035987],[12.1227112,50.3035644],[12.1227034,50.303541],[12.122739,50.3035013],[12.1227284,50.3034838],[12.1227316,50.303432],[12.1227109,50.3034101],[12.1226735,50.3034135],[12.1226072,50.3034043],[12.1225884,50.3033797],[12.1225591,50.3033566],[12.1225188,50.3033402],[12.1225251,50.3033313],[12.1225518,50.3033183],[12.122574,50.3032739],[12.1226035,50.3032416],[12.1225813,50.303218],[12.1225693,50.3032139],[12.1224646,50.3032269],[12.1224466,50.3031964],[12.1224493,50.3031885],[12.1225096,50.3031858],[12.1225532,50.3031768],[12.1225178,50.3031292],[12.1224899,50.3031256],[12.1224698,50.3031191],[12.1224593,50.303072],[12.1224201,50.3030279],[12.1224239,50.3029719],[12.1224498,50.3029334],[12.1224384,50.302893],[12.122437,50.302872],[12.1224557,50.3028584],[12.1224625,50.3028453],[12.1224565,50.3028178],[12.1224271,50.3028059],[12.1224092,50.3028029],[12.1224144,50.3027821],[12.1224368,50.3027658],[12.1224447,50.3027551],[12.1224386,50.302746],[12.1224174,50.3027412],[12.1223745,50.3027488],[12.1223423,50.3027399],[12.1223302,50.3027244],[12.1222822,50.3026479],[12.1222571,50.3025733],[12.1222753,50.3025223],[12.1222514,50.3024825],[12.1222413,50.3024378],[12.122221,50.3024131],[12.1221817,50.302381],[12.1221543,50.3023082],[12.122133,50.3022508],[12.1221076,50.3022278],[12.1220648,50.3022135],[12.1220322,50.3021835],[12.121994,50.3021064],[12.1219527,50.3020841],[12.1219026,50.3020741],[12.1218778,50.3020608],[12.1218356,50.302002],[12.1218111,50.3019776],[12.1218031,50.3019318],[12.1218435,50.3018817],[12.1218235,50.3018624],[12.1218033,50.301871],[12.1217515,50.3018431],[12.1217086,50.3018238],[12.121673,50.3017861],[12.1216412,50.3017812],[12.1215864,50.3017754],[12.1215198,50.3017519],[12.1214607,50.3017031],[12.1214486,50.301654],[12.1214337,50.3016018],[12.1213851,50.3015495],[12.1212802,50.3014686],[12.121252,50.3013927],[12.1211297,50.3013245],[12.1211318,50.3012875],[12.1211234,50.3012682],[12.1211073,50.301248],[12.121094,50.3012214],[12.1210494,50.3012308],[12.1209614,50.3011952],[12.1209492,50.301168],[12.1209177,50.3011533],[12.1208534,50.3011013],[12.1208437,50.3010273],[12.120829,50.3010105],[12.1208596,50.3009441],[12.1208581,50.3009219],[12.1208078,50.3009064],[12.120753,50.3009059],[12.1206788,50.3008811],[12.1206387,50.3008591],[12.1206074,50.3008146],[12.1205943,50.300781],[12.1205459,50.3007423],[12.1204932,50.3006625],[12.1204659,50.3006367],[12.1204603,50.3006049],[12.1204238,50.3005496],[12.1204097,50.3005249],[12.1203281,50.3004936],[12.1202532,50.3004633],[12.1202106,50.3004557],[12.1201482,50.3004333],[12.1200865,50.3004152],[12.120046,50.3003931],[12.1200051,50.3003743],[12.1200079,50.300344],[12.1200383,50.3003275],[12.1200737,50.3002759],[12.1200823,50.3002505],[12.1199863,50.300233],[12.1199462,50.3002312],[12.1199258,50.3002265],[12.1198875,50.3002073],[12.1198523,50.3001893],[12.119765,50.3001624],[12.1197216,50.3001498],[12.1197196,50.3001338],[12.1197032,50.3000959],[12.1197174,50.3000831],[12.1197523,50.3000861],[12.1197658,50.3000966],[12.119794,50.3000973],[12.119854,50.3001081],[12.1198698,50.3001033],[12.1198742,50.3000837],[12.1198832,50.3000026],[12.1198565,50.2999859],[12.1197909,50.2999741],[12.1197461,50.2999789],[12.119724,50.2999933],[12.1197097,50.300011],[12.1196892,50.3000105],[12.11967,50.2999838],[12.119625,50.2999443],[12.1196028,50.2999001],[12.1195993,50.2998638],[12.119618,50.299839],[12.1196498,50.2998243],[12.1196985,50.2998008],[12.119739,50.2998064],[12.1197621,50.299815],[12.1197925,50.2998126],[12.1198112,50.2997968],[12.1198244,50.2997669],[12.1198195,50.2997445],[12.1197843,50.2997279],[12.1197409,50.2997194],[12.1197151,50.2997215],[12.1197078,50.299702],[12.1197308,50.2996759],[12.119723,50.2996513],[12.1196967,50.2996385],[12.1196459,50.2996359],[12.119595,50.2996188],[12.1195686,50.2996022],[12.1195346,50.2995667],[12.1195238,50.2995437],[12.1195348,50.2995296],[12.1195731,50.2995286],[12.1195993,50.2995342],[12.1196281,50.2995212],[12.1196529,50.2994566],[12.1196795,50.2994423],[12.1196923,50.2994248],[12.1196897,50.2994028],[12.1196659,50.2993849],[12.1196564,50.2993651],[12.1196569,50.2993184],[12.1196428,50.2992917],[12.1196321,50.2992634],[12.119615,50.2992379],[12.1196176,50.2992197],[12.1196399,50.2991967],[12.1196795,50.2991549],[12.1196714,50.2991157],[12.1196512,50.2990914],[12.1196605,50.2990568],[12.119657,50.2990235],[12.1196607,50.2989985],[12.1196783,50.2989822],[12.1196784,50.2989696],[12.1196594,50.2989585],[12.1194976,50.2989109],[12.1194169,50.2989009],[12.1193898,50.2989038],[12.1193688,50.2989001],[12.1193595,50.298895],[12.1193439,50.2988938],[12.1193097,50.2988949],[12.1192984,50.2988985],[12.1192766,50.2988895],[12.1192708,50.2988729],[12.1192734,50.2988482],[12.1192504,50.2988126],[12.1192424,50.2988054],[12.1192216,50.298794],[12.1192032,50.2987772],[12.1192,50.2987656],[12.1192167,50.2987534],[12.1192502,50.2987468],[12.119271,50.2987468],[12.1192692,50.2987204],[12.1192504,50.298683],[12.1192734,50.2986533],[12.1193204,50.2986503],[12.1193655,50.2986437],[12.1193946,50.2986451],[12.1194182,50.2986383],[12.1194265,50.2986162],[12.1194237,50.2985976],[12.1194178,50.2985788],[12.1194255,50.2985573],[12.1194327,50.2985378],[12.119429,50.2985149],[12.1194384,50.2984989],[12.1194584,50.2984956],[12.1194829,50.2984995],[12.1195124,50.2985138],[12.119552,50.298521],[12.1195641,50.2985303],[12.1195877,50.2985257],[12.119595,50.2985109],[12.1196278,50.298482],[12.1196694,50.2984641],[12.1197198,50.298405],[12.1197056,50.2983601],[12.1197223,50.2983325],[12.1197617,50.2983206],[12.1197954,50.2983284],[12.1198175,50.2983287],[12.1199201,50.2983046],[12.1199481,50.2982863],[12.1199572,50.2982673],[12.1199824,50.2982442],[12.1200189,50.298241],[12.1200543,50.2982508],[12.1200822,50.298251],[12.1201127,50.2982407],[12.1201071,50.298225],[12.1201005,50.2982045],[12.1201172,50.2981729],[12.1201526,50.2981555],[12.1201742,50.2981429],[12.1202006,50.2981401],[12.1202186,50.2981563],[12.1202413,50.298164],[12.1202698,50.298159],[12.1203157,50.2981331],[12.1203254,50.2981013],[12.1203161,50.298087],[12.120264,50.2980808],[12.120253,50.298067],[12.1202659,50.2980526],[12.1203151,50.2980493],[12.1203701,50.2980205],[12.1204224,50.2979973],[12.120531,50.297963],[12.1205517,50.2979494],[12.1205951,50.2979348],[12.1206246,50.2979303],[12.1206458,50.2979169],[12.1206587,50.297857],[12.1206789,50.2978396],[12.1207058,50.2977875],[12.1207227,50.2977376],[12.1207283,50.2976794],[12.1207233,50.2976528],[12.120732,50.2976276],[12.1207631,50.2976047],[12.1208299,50.2976075],[12.120853,50.2976215],[12.1208776,50.2976229],[12.1209371,50.2976402],[12.1209625,50.2976358],[12.1209685,50.2976146],[12.1209579,50.2975931],[12.1209327,50.2975667],[12.1209338,50.2975459],[12.1209749,50.2975232],[12.1210553,50.2975111],[12.1211123,50.2975202],[12.1211421,50.2975132],[12.1211343,50.2975],[12.1211353,50.2974738],[12.1211221,50.2974531],[12.1211349,50.2974364],[12.1212001,50.2974104],[12.1212624,50.2973708],[12.1212566,50.2973516],[12.1212048,50.2973214],[12.1212041,50.2972894],[12.12122,50.2972863],[12.1212449,50.2972989],[12.1212675,50.297305],[12.1212938,50.2973023],[12.1213096,50.2972861],[12.1213254,50.2972523],[12.1213572,50.2971912],[12.1213808,50.2971377],[12.1213823,50.2970891],[12.1213643,50.297085],[12.1213762,50.2970484],[12.1214063,50.2970015],[12.121395,50.296981],[12.1213937,50.2969613],[12.121416,50.296922],[12.1214203,50.2968933],[12.1214333,50.2968755],[12.121465,50.296854],[12.1214711,50.2968312],[12.1214407,50.2968141],[12.1214258,50.2967998],[12.1214164,50.2967802],[12.1214333,50.2967641],[12.121458,50.296762],[12.1214868,50.2967707],[12.1215376,50.296797],[12.1215521,50.2968158],[12.1215833,50.2968097],[12.1216088,50.2968065],[12.1216234,50.2967638],[12.121651,50.2967242],[12.121648,50.2966989],[12.121646,50.2966835],[12.1216511,50.2966609],[12.1216451,50.2966341],[12.1216349,50.2966277],[12.1216074,50.2965861],[12.1216134,50.2965676],[12.1216468,50.2965422],[12.1216561,50.2965049],[12.1217033,50.2964519],[12.1217681,50.2964222],[12.121816,50.2963914],[12.1218287,50.2963055],[12.121788,50.2962249],[12.1218025,50.2962037],[12.1218276,50.2961926],[12.1218403,50.2962025],[12.1218668,50.2962102],[12.1218962,50.296198],[12.1219634,50.296135],[12.1219608,50.2960995],[12.1219382,50.2960671],[12.1219148,50.2960684],[12.1219037,50.2960763],[12.1218899,50.296076],[12.1218774,50.2960649],[12.1218864,50.296038],[12.1219042,50.2960263],[12.1219403,50.2960261],[12.1219893,50.2960431],[12.1220197,50.2960317],[12.1220273,50.2959717],[12.1220105,50.2959178],[12.1219826,50.2958854],[12.12198,50.2958503],[12.12197,50.295832],[12.1219402,50.2958305],[12.1219253,50.2958165],[12.1219338,50.2957649],[12.1219789,50.2956911],[12.1220257,50.2956652],[12.1220687,50.2956568],[12.1220899,50.2956451],[12.1220879,50.2955567],[12.1221071,50.295522],[12.1221586,50.2954725],[12.1221887,50.2954497],[12.122196,50.2954302],[12.1221808,50.2954043],[12.1221912,50.2953827],[12.1222119,50.2953683],[12.1222547,50.295351],[12.1222964,50.2953127],[12.1223062,50.2952949],[12.1222915,50.2952871],[12.1222517,50.2952816],[12.1222364,50.2952644],[12.1222192,50.2952274],[12.122226,50.295204],[12.1222813,50.2951741],[12.1223201,50.295138],[12.1223501,50.2951221],[12.1223504,50.2951048],[12.1223331,50.2950817],[12.1223179,50.2950676],[12.1222404,50.2950382],[12.1222287,50.2950053],[12.1222415,50.2949803],[12.1223593,50.2949684],[12.1223991,50.2949612],[12.1224349,50.2948683],[12.1224075,50.2948444],[12.122395,50.2948238],[12.1223509,50.2948043],[12.1223524,50.2947887],[12.1223856,50.2947664],[12.1224164,50.2947512],[12.1224266,50.2947329],[12.122404,50.2947138],[12.1223709,50.2947066],[12.1223552,50.2946853],[12.1224434,50.2946193],[12.1225288,50.2945639],[12.1225027,50.2945383],[12.1224722,50.2945041],[12.122492,50.2944888],[12.1224889,50.2944631],[12.1224529,50.2944315],[12.1224548,50.2943921],[12.1224323,50.2943575],[12.1224413,50.2943378],[12.1224566,50.2943203],[12.1224474,50.294285],[12.1224543,50.2942723],[12.1224687,50.2942704],[12.1224799,50.294284],[12.1225035,50.2942925],[12.1225488,50.2942928],[12.1225819,50.2942794],[12.1225865,50.2942523],[12.1225835,50.2942347],[12.1225988,50.2941981],[12.1226458,50.2941743],[12.1226535,50.2941542],[12.1226285,50.2941289],[12.1226072,50.2941176],[12.1225923,50.2941002],[12.1225965,50.2940753],[12.1226236,50.2940474],[12.1226251,50.2939946],[12.1226339,50.2939746],[12.1226737,50.2939522],[12.1226902,50.2939316],[12.1226918,50.2939134],[12.1226856,50.2938915],[12.1226922,50.2938579],[12.1226943,50.2938297],[12.1226874,50.2938097],[12.1226945,50.2937791],[12.1226875,50.2937335],[12.1226642,50.2936677],[12.1226436,50.2936489],[12.1226335,50.2936152],[12.1226451,50.2935819],[12.1226866,50.2935529],[12.1226736,50.2935481],[12.1226327,50.2935318],[12.1225869,50.2934977],[12.1225552,50.2934659],[12.1225382,50.2934363],[12.1224809,50.2933866],[12.1224593,50.2933523],[12.1224611,50.2933076],[12.1224519,50.2932817],[12.1224561,50.2932671],[12.1224294,50.2932324],[12.1224197,50.2931944],[12.1223495,50.2931163],[12.1222892,50.2930472],[12.1222795,50.2930256],[12.1223173,50.2929719],[12.1223095,50.292943],[12.122316,50.2929164],[12.1223291,50.2928801],[12.12235,50.2928667],[12.1224011,50.2928512],[12.1224387,50.2928257],[12.1224628,50.2927922],[12.1224491,50.2927761],[12.1224533,50.2927178],[12.1224341,50.2927061],[12.1224361,50.2926872],[12.1224403,50.2926654],[12.1224281,50.2926439],[12.1224294,50.2926241],[12.1224106,50.292603],[12.1224145,50.2925813],[12.1224035,50.2925578],[12.1224098,50.2924531],[12.1224179,50.2923859],[12.1224025,50.2923549],[12.122399,50.2923121],[12.1223871,50.2922841],[12.1224116,50.2922515],[12.1224594,50.2922216],[12.1224464,50.2921392],[12.1224677,50.2921001],[12.1224979,50.2920054],[12.1225086,50.2919312],[12.1224477,50.2917862],[12.1225161,50.2917371],[12.1225466,50.2917014],[12.1226345,50.291708],[12.1226648,50.2916792],[12.1226642,50.2916465],[12.1226341,50.2916094],[12.1226396,50.2915829],[12.1227182,50.2916087],[12.1228332,50.291495],[12.12285,50.2914581],[12.1228064,50.2914437],[12.1227419,50.2914022],[12.1226916,50.2913725],[12.1227026,50.2913489],[12.122773,50.2913438],[12.122822,50.291269],[12.1228079,50.2912552],[12.1227673,50.2912388],[12.1227632,50.2911535],[12.1227837,50.2911279],[12.1228179,50.2911108],[12.1228609,50.2911654],[12.1229554,50.291136],[12.1229723,50.2911299],[12.122965,50.2911164],[12.1229881,50.2910964],[12.122987,50.2910802],[12.1229609,50.2910603],[12.1228863,50.2910492],[12.1228427,50.2910457],[12.1228218,50.291038],[12.1228112,50.2910134],[12.1228205,50.290967],[12.1228325,50.2909597],[12.1228484,50.2909557],[12.1229411,50.290958],[12.1230114,50.2909571],[12.1230341,50.2909375],[12.1230001,50.2909111],[12.1230058,50.2908804],[12.1230119,50.2908673],[12.1229945,50.2908437],[12.1229478,50.2908235],[12.1229325,50.2907863],[12.1229315,50.2907774],[12.1229375,50.2907674],[12.122937,50.2907441],[12.1229511,50.2907308],[12.1229747,50.2907209],[12.1229863,50.2907232],[12.1230005,50.290732],[12.1230056,50.2907563],[12.1230256,50.2907646],[12.1230652,50.2907669],[12.1230932,50.290765],[12.1231164,50.2907313],[12.1231087,50.2906944],[12.1230855,50.2906606],[12.1230913,50.2906486],[12.1231157,50.2906356],[12.123163,50.2906441],[12.123221,50.2906446],[12.1232362,50.2906379],[12.1232521,50.2906116],[12.1232205,50.2905695],[12.1232417,50.2905477],[12.1232607,50.2905436],[12.1233076,50.290548],[12.1233257,50.2905471],[12.1233702,50.2905334],[12.1234281,50.2904801],[12.1234455,50.2904687],[12.1234696,50.2904317],[12.1234682,50.2904195],[12.1234407,50.2904002],[12.1234368,50.2903874],[12.1234643,50.290356],[12.1234805,50.2903449],[12.1235027,50.2903188],[12.1235394,50.290316],[12.1235517,50.2903176],[12.1235947,50.2903118],[12.1236285,50.2903179],[12.1236422,50.2903143],[12.1236548,50.2902957],[12.1236546,50.2902528],[12.1236451,50.2902477],[12.1236376,50.2902244],[12.1236471,50.2901755],[12.1236601,50.2901592],[12.1236811,50.2901542],[12.123693,50.2901554],[12.1237012,50.2901605],[12.1237033,50.2901911],[12.1237137,50.290199],[12.123761,50.2902056],[12.1237939,50.2902108],[12.1238245,50.2902039],[12.1238429,50.2901797],[12.1238704,50.2901573],[12.1238743,50.290149],[12.1238617,50.2901343],[12.1238186,50.2901177],[12.1238234,50.2900962],[12.1238784,50.2900668],[12.1239915,50.2899813],[12.1240874,50.28995],[12.1240964,50.289952],[12.1241396,50.2899202],[12.124185,50.289913],[12.1242007,50.289908],[12.1242258,50.2898872],[12.1242176,50.2898693],[12.1242195,50.289863],[12.1242516,50.2898513],[12.1242956,50.2898403],[12.1243335,50.2898397],[12.1243974,50.2897769],[12.1244124,50.2897731],[12.1244336,50.2897586],[12.1244679,50.2897324],[12.1244856,50.2897126],[12.1244923,50.2897021],[12.124521,50.2896939],[12.1245599,50.2896978],[12.1246094,50.2896902],[12.1246239,50.2896662],[12.1246188,50.2896565],[12.1245831,50.2896437],[12.1245662,50.2896393],[12.1245587,50.2896318],[12.1245621,50.2896174],[12.1246468,50.2895817],[12.1246903,50.289556],[12.1247081,50.2895527],[12.124762,50.2895175],[12.1248458,50.2894734],[12.1249358,50.2894206],[12.1250355,50.2893874],[12.1250798,50.289348],[12.1251178,50.2893284],[12.1251959,50.2893032],[12.1252299,50.2892736],[12.125253,50.2892461],[12.1252713,50.2892401],[12.1253044,50.2892421],[12.1253222,50.2892327],[12.1253403,50.2892069],[12.1253217,50.2891916],[12.1253123,50.2891672],[12.1253327,50.2891068],[12.1253173,50.289072],[12.1253493,50.28907],[12.1253938,50.2890857],[12.125477,50.28911],[12.1255427,50.2890877],[12.125529,50.2890662],[12.1254872,50.2890474],[12.1254905,50.2890268],[12.1254982,50.2890216],[12.1255527,50.2890116],[12.1255747,50.2889978],[12.1256397,50.288904],[12.1258819,50.2888365],[12.1260923,50.2887588],[12.1261669,50.2887122],[12.1262355,50.2886894],[12.1263278,50.288609],[12.1263627,50.2885784],[12.1264226,50.2885599],[12.1265562,50.2885187],[12.1266146,50.2884793],[12.1266232,50.2884633],[12.1267076,50.2884543],[12.1268021,50.2884204],[12.1268634,50.2884406],[12.126883,50.2884247],[12.1269676,50.2884088],[12.1269799,50.2884],[12.126949,50.2883826],[12.1269053,50.2883866],[12.1268886,50.2883734],[12.1268861,50.2883399],[12.1269153,50.288333],[12.1269545,50.288355],[12.1270329,50.288346],[12.1269966,50.2883231],[12.1270028,50.2883107],[12.127074,50.2882785],[12.1271294,50.2882867],[12.1271995,50.2883208],[12.1272131,50.2883173],[12.1272151,50.2882989],[12.12726,50.2882572],[12.1273015,50.2882415],[12.12732,50.2882447],[12.1273377,50.2882702],[12.1274174,50.2882405],[12.127397,50.2881841],[12.1274457,50.2881612],[12.1275025,50.2881676],[12.127564,50.2881035],[12.1275334,50.2880476],[12.1276262,50.2880124],[12.1277747,50.2880117],[12.1277866,50.2880484],[12.1278482,50.2880557],[12.127858,50.2880448],[12.1278253,50.2880145],[12.1278359,50.2879859],[12.1278799,50.2879734],[12.1279201,50.2879897],[12.1279665,50.288005],[12.1279784,50.2879873],[12.1279546,50.2879684],[12.1279233,50.2879279],[12.1279379,50.2879122],[12.128047,50.2878628],[12.1280066,50.2878352],[12.1279408,50.2878045],[12.1279386,50.2877883],[12.128023,50.2877365],[12.1280465,50.2877336],[12.1280638,50.2877617],[12.1280923,50.28777],[12.1281,50.2877289],[12.1281491,50.287722],[12.1282241,50.287733],[12.1282552,50.2877261],[12.1282204,50.287647],[12.1282477,50.2876329],[12.1283757,50.2876174],[12.1284001,50.2875965],[12.128493,50.2875969],[12.1285114,50.2875836],[12.1285191,50.2875654],[12.1285671,50.287538],[12.1285828,50.2875162],[12.128604,50.2874983],[12.1286161,50.2874717],[12.1286272,50.2874294],[12.1286391,50.2873956],[12.1286554,50.2873939],[12.1286756,50.2874005],[12.1287278,50.2874173],[12.1287625,50.2874323],[12.1287978,50.2874287],[12.1288162,50.2874157],[12.1288223,50.2873873],[12.1288113,50.2873692],[12.1287789,50.2873509],[12.1287901,50.287326],[12.1288104,50.2873211],[12.1288422,50.2873244],[12.1288586,50.287313],[12.1288575,50.2872929],[12.1288679,50.287276],[12.1288893,50.2872607],[12.1289414,50.2872379],[12.1290331,50.2872405],[12.1290572,50.2872285],[12.1290647,50.2872036],[12.1290709,50.2871827],[12.1291021,50.2871636],[12.1291165,50.2871378],[12.1291819,50.287074],[12.1291904,50.2870501],[12.1292149,50.2870272],[12.1292267,50.2869955],[12.1292607,50.2869753],[12.1292788,50.2869741],[12.1293105,50.286978],[12.1293314,50.2869762],[12.1293295,50.2869603],[12.129321,50.2869549],[12.129321,50.286928],[12.1293433,50.2869108],[12.1293534,50.2868935],[12.1293545,50.2868698],[12.1293667,50.2868393],[12.129354,50.2868064],[12.1293636,50.2867698],[12.1293904,50.2867478],[12.1293917,50.2867183],[12.1293931,50.2866982],[12.1293842,50.2866808],[12.1293728,50.2866803],[12.1293288,50.2866617],[12.1293211,50.2866283],[12.1293342,50.2866145],[12.1293736,50.2866094],[12.1294477,50.2866195],[12.1295015,50.2866432],[12.1295362,50.2866643],[12.1295832,50.2866689],[12.129598,50.2866613],[12.1295969,50.2866468],[12.1295961,50.2866171],[12.1295881,50.2865933],[12.1295734,50.2865816],[12.1295455,50.2865713],[12.1295249,50.2865688],[12.1295215,50.2865453],[12.1295423,50.2865175],[12.129573,50.2864998],[12.1296188,50.286484],[12.1296656,50.2864835],[12.1297125,50.2864867],[12.1297378,50.2864788],[12.1298836,50.2864634],[12.1299361,50.2864593],[12.1299758,50.2864465],[12.1300304,50.2863881],[12.1300538,50.2863721],[12.1300834,50.2863589],[12.1301197,50.2863322],[12.130164,50.286317],[12.130216,50.2862983],[12.1302738,50.2862883],[12.1303149,50.2862567],[12.1303335,50.2862312],[12.1303859,50.286211],[12.130471,50.2862061],[12.1305096,50.2861911],[12.130723,50.2861228],[12.1307529,50.2861061],[12.1308121,50.2860857],[12.1308654,50.2860839],[12.1309304,50.2860889],[12.1309568,50.2860696],[12.1309551,50.2860503],[12.1309371,50.2860327],[12.1309282,50.2860105],[12.1309521,50.2859972],[12.1309943,50.2859963],[12.1310298,50.2859919],[12.1310751,50.2859932],[12.1311163,50.2859857],[12.131141,50.286001],[12.1311581,50.2860027],[12.131185,50.2859932],[12.1312184,50.2859654],[12.1312211,50.2859468],[12.1312594,50.2859369],[12.1312853,50.2859347],[12.1313217,50.2859415],[12.1313625,50.2859415],[12.1314023,50.2859322],[12.1314146,50.2858923],[12.1314317,50.2858729],[12.1314604,50.2858653],[12.1315069,50.2858753],[12.1315318,50.2858929],[12.1315578,50.2858969],[12.1316341,50.2858867],[12.1316815,50.2858358],[12.1317168,50.2858195],[12.1317432,50.2857997],[12.13178,50.2857682],[12.1318406,50.28575],[12.1318782,50.285746],[12.1319037,50.2857278],[12.1319221,50.2857227],[12.1319368,50.2857333],[12.1319693,50.2857612],[12.1319844,50.2857653],[12.132009,50.2857578],[12.1320343,50.2857386],[12.1320497,50.2857124],[12.1320767,50.285691],[12.1321091,50.2856894],[12.1321668,50.2856741],[12.1322574,50.2856661],[12.1323469,50.2856412],[12.1323948,50.2856112],[12.1324415,50.2856002],[12.1324759,50.2855877],[12.1325166,50.2855654],[12.1325322,50.2855391],[12.1325232,50.2855027],[12.1325081,50.2854829],[12.1325102,50.2854617],[12.1325309,50.2854469],[12.1325461,50.2854484],[12.132571,50.2854637],[12.1325884,50.2854677],[12.1326192,50.2854585],[12.1326555,50.2854295],[12.132687,50.2854173],[12.1327393,50.2854201],[12.1327875,50.2854096],[12.1328476,50.2854087],[12.1328846,50.2854155],[12.1329106,50.2854153],[12.1329331,50.2854185],[12.1329651,50.2854035],[12.1330002,50.2853945],[12.1330261,50.2853963],[12.133043,50.2854034],[12.1330543,50.2854166],[12.1330734,50.2854188],[12.1330941,50.2854137],[12.1331205,50.2853989],[12.1331524,50.2853752],[12.1331408,50.2853409],[12.1331124,50.2853287],[12.1330937,50.285307],[12.1330717,50.2852848],[12.133056,50.2852801],[12.1330608,50.2852636],[12.133128,50.2852573],[12.1331905,50.2852593],[12.1332215,50.285267],[12.133254,50.2852794],[12.1332841,50.2852838],[12.1333227,50.2852947],[12.1333581,50.2853125],[12.1333858,50.285314],[12.1334099,50.2853059],[12.1334242,50.2852837],[12.1334268,50.2852662],[12.1334226,50.2852588],[12.1334601,50.285249],[12.133488,50.2852559],[12.1335405,50.2852655],[12.1335819,50.2852669],[12.1336043,50.285259],[12.1336224,50.2852396],[12.1336249,50.2852146],[12.1336136,50.2851952],[12.133586,50.2851887],[12.1335579,50.2851984],[12.1335198,50.2852005],[12.1335121,50.2851916],[12.1335319,50.2851428],[12.1335548,50.2851214],[12.1335664,50.2850928],[12.1335811,50.285067],[12.1335987,50.2850507],[12.1336209,50.2850483],[12.1336405,50.2850344],[12.1336612,50.2850313],[12.1336841,50.2850399],[12.1337306,50.2850433],[12.133771,50.2850436],[12.1337881,50.2850287],[12.1337684,50.2850129],[12.1337467,50.2849931],[12.1337343,50.2849705],[12.1337369,50.284923],[12.1337313,50.2849001],[12.1337373,50.2848798],[12.1337226,50.2848593],[12.1337245,50.284838],[12.1337475,50.2848194],[12.1337616,50.2847792],[12.1338,50.2847445],[12.13382,50.2847195],[12.1338415,50.2847068],[12.1338736,50.2847013],[12.1339434,50.2846877],[12.1339859,50.2846757],[12.1340162,50.2846712],[12.1340333,50.2846752],[12.1340385,50.2846899],[12.1341013,50.2846625],[12.1341627,50.2846387],[12.1341881,50.2846178],[12.1341837,50.2845963],[12.1341938,50.2845894],[12.1342173,50.2845315],[12.134273,50.2845129],[12.1342994,50.2844712],[12.1342754,50.2844444],[12.1342722,50.2844202],[12.134287,50.2844016],[12.1344186,50.2843833],[12.1344659,50.2843693],[12.1345094,50.2843631],[12.1345693,50.2843309],[12.1346031,50.2843149],[12.1346465,50.2843123],[12.1347174,50.284292],[12.1347646,50.2842663],[12.1347913,50.2842684],[12.1348095,50.2843153],[12.1347991,50.2843407],[12.1348013,50.2843526],[12.1348133,50.2843636],[12.1348311,50.2843697],[12.1348611,50.2843633],[12.1348882,50.2843372],[12.1349112,50.2843201],[12.134929,50.2842975],[12.1349606,50.2842612],[12.1349948,50.2842411],[12.1350358,50.2842403],[12.1350696,50.2842328],[12.1350877,50.2842149],[12.1350791,50.2842014],[12.1350443,50.2841911],[12.1350351,50.2841654],[12.1350565,50.2841487],[12.135088,50.2841426],[12.1351373,50.2841492],[12.1351847,50.2841682],[12.1352027,50.2841857],[12.135197,50.2842017],[12.1351586,50.2842127],[12.1351571,50.284231],[12.1351815,50.284242],[12.1352104,50.2842415],[12.1352525,50.2842272],[12.1353149,50.2842119],[12.1353211,50.2841907],[12.1352787,50.2841628],[12.1352662,50.2841288],[12.1352846,50.2841209],[12.1353005,50.284132],[12.1353251,50.2841369],[12.1353358,50.2841511],[12.1353623,50.2841528],[12.1353879,50.2841392],[12.1353933,50.2841205],[12.1353823,50.2841047],[12.1353377,50.2840819],[12.1353255,50.2840702],[12.1353266,50.284053],[12.1353359,50.2840394],[12.1353599,50.2840378],[12.1353871,50.2840399],[12.1354085,50.2840488],[12.1354326,50.2840859],[12.1354612,50.2840871],[12.1355058,50.2840749],[12.1355171,50.2840589],[12.1355129,50.2840442],[12.1354889,50.2840419],[12.1354723,50.284028],[12.1354713,50.2840159],[12.1354605,50.2839897],[12.135467,50.2839737],[12.1354857,50.2839652],[12.1355247,50.2839631],[12.1355311,50.2839535],[12.1355231,50.2839235],[12.1355284,50.2839061],[12.1355522,50.2838942],[12.1356335,50.2838855],[12.1356715,50.2838939],[12.1357106,50.283907],[12.1357326,50.2839026],[12.1357452,50.2838883],[12.1357427,50.2838718],[12.1357357,50.2838572],[12.1357194,50.2838484],[12.1356984,50.283846],[12.135675,50.2838377],[12.1356602,50.2838158],[12.1356624,50.2837869],[12.1356864,50.2837692],[12.1357225,50.2837677],[12.135801,50.2837814],[12.1358227,50.2837932],[12.1358324,50.283814],[12.1358317,50.283834],[12.1358209,50.2838479],[12.1358463,50.2838534],[12.135878,50.2838443],[12.1359152,50.2838195],[12.1359329,50.2837824],[12.1359609,50.2837513],[12.135953,50.283739],[12.1359155,50.2837301],[12.1359044,50.2837155],[12.1358909,50.2836681],[12.1358673,50.2836151],[12.1358754,50.2835953],[12.1359174,50.2835611],[12.1358855,50.2835455],[12.135875,50.2835504],[12.1358052,50.2835527],[12.135753,50.2835782],[12.1357094,50.2835947],[12.1356846,50.2835888],[12.1356635,50.2835447],[12.1356591,50.2835238],[12.1356685,50.2835101],[12.1356968,50.283503],[12.1357026,50.2834848],[12.1356812,50.2834619],[12.1356837,50.2833937],[12.1357013,50.2833754],[12.1357751,50.2833654],[12.1358114,50.2833155],[12.1357946,50.2832824],[12.1357861,50.2832581],[12.1357472,50.2832132],[12.1357417,50.2831418],[12.1356991,50.2831038],[12.1356799,50.2831008],[12.1356479,50.2831132],[12.1356165,50.2831139],[12.1356078,50.2830912],[12.1356429,50.2830552],[12.135651,50.2830152],[12.1356336,50.2829901],[12.1356101,50.282979],[12.1355828,50.2829781],[12.1355532,50.2829887],[12.1354991,50.2829781],[12.135477,50.2829661],[12.1354805,50.2829485],[12.1355088,50.2829389],[12.135573,50.2829125],[12.1356186,50.2829076],[12.1357099,50.282899],[12.1357258,50.2828831],[12.1357191,50.2828436],[12.1358052,50.2827874],[12.1358407,50.2827877],[12.1358697,50.2828044],[12.1358872,50.2828029],[12.1358924,50.2827926],[12.1358922,50.2827786],[12.1358687,50.28277],[12.1358544,50.2827562],[12.135848,50.2827442],[12.1358571,50.2827215],[12.1358504,50.2827135],[12.1358319,50.2827156],[12.1358103,50.2827252],[12.1357827,50.282731],[12.1357579,50.2827247],[12.1357406,50.28271],[12.1357413,50.282673],[12.1357592,50.2826373],[12.1358368,50.2825914],[12.135819,50.2825327],[12.1357728,50.2825122],[12.1357624,50.2824994],[12.1357677,50.2824867],[12.1358252,50.2824646],[12.1358252,50.2824489],[12.1357942,50.2824222],[12.1357722,50.2824159],[12.135734,50.2824186],[12.1356966,50.2824295],[12.1356831,50.2824235],[12.1356347,50.2824202],[12.1356179,50.2824115],[12.1356226,50.2823899],[12.135642,50.2823662],[12.1356888,50.2823327],[12.1356895,50.282294],[12.1356682,50.28228],[12.1356522,50.2822829],[12.1356135,50.2822826],[12.1355965,50.2822704],[12.1356101,50.2822456],[12.1356398,50.2822169],[12.1356447,50.2821976],[12.1356339,50.2821812],[12.135595,50.2821531],[12.1355978,50.2821336],[12.1356249,50.2821155],[12.1356486,50.2821189],[12.1356596,50.2821128],[12.1356753,50.2820823],[12.1356604,50.2820634],[12.1356559,50.282037],[12.1356596,50.282027],[12.1356478,50.2820193],[12.1356172,50.2820188],[12.1355971,50.282031],[12.1355844,50.2820454],[12.1355727,50.2820469],[12.1355483,50.2820306],[12.1355108,50.2819939],[12.1355107,50.2819608],[12.1355359,50.2819299],[12.1355376,50.281901],[12.1355514,50.2818748],[12.1355854,50.2818372],[12.1356145,50.2818343],[12.1356196,50.2818182],[12.1356025,50.2818035],[12.1355731,50.2818015],[12.1355431,50.2818053],[12.1355193,50.2818157],[12.1355037,50.2818317],[12.1354894,50.281828],[12.135467,50.281804],[12.1354708,50.281787],[12.1355228,50.2817662],[12.1355545,50.281745],[12.1355766,50.2817047],[12.1355444,50.2816615],[12.1355053,50.2816602],[12.135485,50.2816648],[12.1354855,50.2816554],[12.1354858,50.2816411],[12.1355096,50.2816332],[12.1355384,50.281626],[12.1355644,50.2816001],[12.135564,50.2815556],[12.1355208,50.2815246],[12.135524,50.2815068],[12.1355472,50.2814882],[12.1355518,50.2814713],[12.1355408,50.2814632],[12.1355162,50.281459],[12.1354911,50.2814375],[12.1355109,50.2813844],[12.1355081,50.2813502],[12.1355357,50.2813213],[12.1355521,50.2812767],[12.1355516,50.281222],[12.1355444,50.2812126],[12.1356097,50.2811718],[12.1356267,50.2811476],[12.1356293,50.2811266],[12.1356316,50.2811023],[12.1356506,50.2810729],[12.1356412,50.2810495],[12.1356093,50.281039],[12.1356016,50.2810277],[12.1356109,50.281018],[12.1356645,50.2810069],[12.1356933,50.2809966],[12.1357364,50.280971],[12.1358223,50.2809515],[12.1358659,50.2809145],[12.1358995,50.2808982],[12.1359136,50.2808723],[12.1359056,50.2808424],[12.1358811,50.2808117],[12.1358601,50.280807],[12.1358849,50.2807911],[12.1359108,50.2807655],[12.1359561,50.2807585],[12.135967,50.2807429],[12.1359554,50.2807297],[12.1359339,50.2807166],[12.1359322,50.2807016],[12.1359534,50.2806858],[12.1359909,50.2806763],[12.1360385,50.2806265],[12.1360554,50.2805997],[12.1360939,50.2805872],[12.1361354,50.2805346],[12.1361254,50.2805073],[12.1361143,50.2805074],[12.1361257,50.280494],[12.1361645,50.2804592],[12.1361923,50.280453],[12.1362728,50.2804636],[12.1362949,50.280469],[12.1363284,50.2804681],[12.1363521,50.2804594],[12.1363662,50.2804438],[12.1363652,50.2804025],[12.1363793,50.2803888],[12.1363946,50.2803858],[12.1364302,50.2803962],[12.1364565,50.2803909],[12.1364688,50.28037],[12.1364567,50.2803483],[12.1364336,50.2803324],[12.1364353,50.2803181],[12.1364677,50.2803],[12.1365276,50.2802851],[12.1365464,50.2802717],[12.136555,50.2802275],[12.1366196,50.28019],[12.1366242,50.2801669],[12.1365948,50.2801424],[12.1365992,50.2801077],[12.136614,50.2800954],[12.1366544,50.2800887],[12.1367186,50.2800957],[12.1367403,50.280087],[12.1367652,50.2800536],[12.1367467,50.2799983],[12.1367222,50.2799734],[12.136694,50.2799497],[12.136699,50.2799209],[12.1367,50.2798706],[12.1367102,50.2798585],[12.13673,50.279861],[12.1367517,50.2798757],[12.1367537,50.2798861],[12.1367646,50.2798883],[12.1368038,50.279882],[12.1368402,50.2798756],[12.1368572,50.2798808],[12.1368594,50.2798977],[12.1368686,50.2799073],[12.1368949,50.2799048],[12.1369438,50.2799037],[12.136976,50.2798894],[12.1369721,50.2798795],[12.1369738,50.2798497],[12.1369918,50.2798304],[12.1369945,50.2798151],[12.1370068,50.2797945],[12.1370033,50.2797772],[12.1370148,50.2797604],[12.1370733,50.2797252],[12.1370933,50.2797144],[12.1371202,50.2797143],[12.1371441,50.2797346],[12.1371654,50.2797622],[12.1371933,50.2797639],[12.1372175,50.2797406],[12.1372747,50.2796963],[12.1373093,50.279661],[12.1373333,50.2796507],[12.1373562,50.2796386],[12.1373828,50.279614],[12.1373924,50.2795903],[12.137386,50.2795764],[12.1373871,50.2795589],[12.1374004,50.2795483],[12.1374397,50.2795227],[12.137493,50.2794851],[12.1375256,50.2794683],[12.13755,50.2794638],[12.1375917,50.279462],[12.1376324,50.2794447],[12.1376602,50.2794467],[12.1376894,50.2794507],[12.1377003,50.2794461],[12.1376951,50.2794296],[12.1376857,50.2794122],[12.1376916,50.2793956],[12.1377124,50.279379],[12.1377827,50.2793517],[12.1378104,50.2793461],[12.1378343,50.2793342],[12.1378702,50.2792891],[12.1378904,50.2792758],[12.1379006,50.2792603],[12.1379204,50.2792476],[12.1379493,50.2792345],[12.1379725,50.2792331],[12.1379976,50.2792202],[12.1379997,50.2791898],[12.1380137,50.2791706],[12.1380533,50.2791589],[12.1380741,50.2791473],[12.1381143,50.279077],[12.1381672,50.2790507],[12.1381848,50.2790536],[12.1382025,50.2790501],[12.1382371,50.27901],[12.1382676,50.2789829],[12.1383459,50.2789693],[12.1383626,50.2789742],[12.1383912,50.2789743],[12.1384034,50.2789685],[12.138441,50.2789538],[12.1384981,50.2789489],[12.1385261,50.27895],[12.1385505,50.2789446],[12.1385414,50.2789139],[12.1385587,50.2789027],[12.1385943,50.2789006],[12.1386357,50.2788985],[12.1386714,50.278901],[12.1386772,50.2788955],[12.1386586,50.2788766],[12.1386204,50.278866],[12.1386148,50.2788529],[12.1386323,50.2788424],[12.138659,50.2788355],[12.1386916,50.2788221],[12.1386954,50.2788066],[12.138705,50.2787912],[12.1387574,50.2787723],[12.1387596,50.2787656],[12.1388218,50.2787337],[12.1388519,50.278711],[12.138878,50.2786843],[12.1388998,50.2786729],[12.1389225,50.2786532],[12.1389945,50.278635],[12.1390269,50.2786095],[12.1390402,50.2785847],[12.1390673,50.2785553],[12.1390857,50.278536],[12.1391399,50.2785102],[12.1392018,50.2785004],[12.139232,50.278483],[12.1392624,50.2784526],[12.1392514,50.2784327],[12.139258,50.2784141],[12.1392941,50.2783986],[12.1393084,50.2783854],[12.139313,50.2783719],[12.1393283,50.2783504],[12.1393262,50.2783219],[12.1393313,50.2782983],[12.1393525,50.2782767],[12.1393707,50.278253],[12.1393985,50.2782375],[12.139395,50.2782184],[12.1394016,50.2781992],[12.1394259,50.2781923],[12.1394557,50.2781967],[12.1394806,50.2781995],[12.1395019,50.278182],[12.1395123,50.2781163],[12.1395322,50.2780897],[12.1395469,50.2780592],[12.139569,50.2780434],[12.1395977,50.2780393],[12.1396172,50.2780509],[12.1396202,50.2780641],[12.1396315,50.2780886],[12.1396403,50.2780963],[12.1396643,50.2781002],[12.1396867,50.2780796],[12.1397103,50.278017],[12.1397293,50.2780128],[12.1397568,50.2780151],[12.1397988,50.2780173],[12.1398169,50.2780215],[12.1398249,50.2780111],[12.1398454,50.2779888],[12.1398996,50.277983],[12.1399259,50.2779706],[12.1399256,50.2779324],[12.1399357,50.277907],[12.1399346,50.2778796],[12.1399024,50.2778587],[12.1399181,50.2778227],[12.1399427,50.2778109],[12.1399663,50.2778131],[12.1399864,50.2778254],[12.1399924,50.2778444],[12.1399911,50.2778677],[12.1400066,50.2778767],[12.1400349,50.2778747],[12.1400487,50.2778639],[12.1400541,50.2778501],[12.1400597,50.2778342],[12.1399923,50.2777235],[12.1399544,50.2776807],[12.139924,50.2776351],[12.1398724,50.2775602],[12.1398255,50.2774831],[12.1397412,50.2773688],[12.1396371,50.277262],[12.1395683,50.2771986],[12.1394733,50.2770973],[12.1394296,50.2770624],[12.1393879,50.2770336],[12.1393867,50.2770131],[12.1393756,50.2769383],[12.1393615,50.276864],[12.139367,50.2768207],[12.1393639,50.276763],[12.1393748,50.2767269],[12.1393763,50.2767113],[12.13937,50.2766974],[12.1393506,50.2766503],[12.1393489,50.2766286],[12.1393363,50.2765856],[12.1393315,50.2765562],[12.1393125,50.2765099],[12.1392981,50.2764711],[12.1392686,50.2764273],[12.1391984,50.2763116],[12.1391707,50.2762444],[12.13914,50.2762009],[12.1391065,50.2761236],[12.1390886,50.2761021],[12.1390683,50.2760902],[12.1390669,50.2760893],[12.1390165,50.2760709],[12.1389926,50.2760708],[12.1389391,50.2760505],[12.1388889,50.276034],[12.1388396,50.2760151],[12.1387772,50.275961],[12.1387423,50.2759363],[12.1387097,50.2759067],[12.1386402,50.2758367],[12.1386033,50.2758075],[12.1385791,50.2757729],[12.1385692,50.2757437],[12.1385677,50.2756903],[12.1385738,50.2756535],[12.1385807,50.2756237],[12.1385692,50.2756021],[12.1385668,50.2755784],[12.1385627,50.2755544],[12.1385684,50.2754791],[12.1385603,50.2753738],[12.1385438,50.2753382],[12.138499,50.2752714],[12.1384234,50.2751577],[12.1383666,50.2751028],[12.1383008,50.2750334],[12.138288,50.2750232],[12.1382866,50.275022],[12.1381765,50.2749873],[12.1381099,50.2749683],[12.1380313,50.274937],[12.1379976,50.2749203],[12.1377704,50.2748179],[12.1376766,50.2747798],[12.1375955,50.2747478],[12.1375586,50.2747342],[12.1375211,50.2747264],[12.1374884,50.2747207],[12.1374174,50.2747109],[12.1373301,50.2746958],[12.1372744,50.2746879],[12.1371828,50.2746795],[12.1371015,50.2746621],[12.1370785,50.2746561],[12.1370482,50.2746481],[12.1370163,50.2746436],[12.1368458,50.2746377],[12.1367479,50.2746412],[12.1366868,50.2746397],[12.1365847,50.2746334],[12.1365055,50.2746292],[12.1364325,50.2746179],[12.1363485,50.2745929],[12.1362233,50.2745466],[12.1361724,50.2745196],[12.1360256,50.2744645],[12.1359371,50.2744298],[12.1358501,50.2743958],[12.1357865,50.274364],[12.1351855,50.2740231],[12.1347945,50.2737825],[12.1344033,50.273542],[12.1335913,50.2732094],[12.1335223,50.2732077],[12.1326533,50.2728427],[12.1323203,50.2726126],[12.1319451,50.2721919],[12.1316951,50.2719496],[12.1316506,50.2719056],[12.131475,50.2717708],[12.1313813,50.2717023],[12.1310734,50.2714789],[12.1310564,50.2714663],[12.1308024,50.2713117],[12.1303206,50.2710726],[12.130064,50.2709657],[12.1279072,50.270162],[12.1278249,50.2701318],[12.1276608,50.2700603],[12.1272255,50.2698689],[12.1267899,50.2696775],[12.1267609,50.2696647],[12.1265126,50.269611],[12.1255244,50.2693977],[12.1243031,50.2691699],[12.1235532,50.2690206],[12.1231868,50.2689703],[12.1227337,50.2689081],[12.1223141,50.2688995],[12.1218943,50.2688907],[12.1214615,50.2689008],[12.1211952,50.2688634],[12.1204743,50.2685459],[12.1204696,50.268532],[12.1204318,50.268421],[12.12032,50.268088],[12.1204156,50.267863],[12.1204828,50.2677509],[12.1204403,50.2675881],[12.1200485,50.2674941],[12.1198608,50.2672508],[12.1198962,50.2670945],[12.1199759,50.2669192],[12.1194049,50.2667251],[12.1188338,50.266531],[12.118429,50.266879],[12.118088,50.2671305],[12.1180672,50.267143],[12.1180383,50.2671558],[12.117968,50.2671824],[12.1178953,50.2672075],[12.1177246,50.2672293],[12.1176896,50.2672386],[12.1176589,50.2672543],[12.1173844,50.267439],[12.1172721,50.2675225],[12.1172378,50.267554],[12.117112,50.2676683],[12.1169601,50.2678096],[12.1169334,50.2678322],[12.1168064,50.2678961],[12.116642,50.267978],[12.1165699,50.2680112],[12.1165266,50.2680265],[12.1163262,50.2680807],[12.1163107,50.2680859],[12.1162871,50.2681029],[12.1162775,50.2681253],[12.1161899,50.2681468],[12.1160986,50.2681569],[12.1160194,50.2681622],[12.1155129,50.2681788],[12.1153833,50.2681707],[12.1149797,50.2681167],[12.1149118,50.2681062],[12.1148274,50.2681021],[12.114773,50.2680955],[12.1147196,50.2680861],[12.1146113,50.2680734],[12.1144491,50.2680524],[12.1143551,50.2680378],[12.1143199,50.268025],[12.1141866,50.2679589],[12.1141194,50.2679213],[12.1138428,50.2678465],[12.1137036,50.2678238],[12.1135889,50.2677965],[12.1134693,50.2677865],[12.1133324,50.2677659],[12.1131413,50.267696],[12.1130851,50.267693],[12.1130276,50.2677102],[12.112867,50.2676631],[12.1127728,50.2676685],[12.1126068,50.2676353],[12.1125648,50.2676322],[12.1125116,50.2676444],[12.112482,50.2676327],[12.1124246,50.2676342],[12.112404,50.2676464],[12.1123653,50.2676575],[12.1123082,50.2676827],[12.1122487,50.2676511],[12.1122284,50.2676278],[12.1121622,50.2676292],[12.1121324,50.2676238],[12.1119731,50.2675257],[12.1119027,50.2674959],[12.1118733,50.2674645],[12.111871,50.2674441],[12.1117388,50.2673772],[12.1117001,50.2673357],[12.1116782,50.2672875],[12.1116296,50.2672661],[12.1115914,50.2672508],[12.1115162,50.2671687],[12.1114195,50.2671609],[12.1113588,50.2671674],[12.1112711,50.2671448],[12.1111909,50.2671113],[12.111113,50.2670923],[12.1110726,50.267067],[12.1108671,50.2670172],[12.1108363,50.2669942],[12.1108147,50.2669576],[12.1107796,50.2669529],[12.110587,50.2668813],[12.110534,50.2668545],[12.110527,50.2668345],[12.1105014,50.2668194],[12.1104556,50.2668052],[12.1104364,50.2667799],[12.1104425,50.2667689],[12.1104386,50.2667606],[12.1104242,50.2667521],[12.1103775,50.2667502],[12.1103194,50.2667553],[12.1102904,50.2667452],[12.1102741,50.2667281],[12.1102271,50.2667085],[12.1102244,50.2667074],[12.1101895,50.2666952],[12.1101739,50.2666863],[12.1101653,50.2666727],[12.1100705,50.2666144],[12.1100238,50.2666078],[12.1099974,50.2665915],[12.1099556,50.2665766],[12.1099367,50.2665741],[12.1099047,50.2665375],[12.1098318,50.2665007],[12.1098073,50.2664765],[12.1097837,50.2664697],[12.1097683,50.2664616],[12.1097399,50.2664315],[12.1097361,50.2664078],[12.1097252,50.2663837],[12.1096863,50.2663524],[12.1096521,50.2663313],[12.1096334,50.2663208],[12.1096244,50.2663036],[12.1096374,50.2662349],[12.1095805,50.2662321],[12.1095463,50.2662547],[12.1094905,50.2662378],[12.1094324,50.2661852],[12.1094335,50.2661579],[12.1093985,50.2661385],[12.1093521,50.2661417],[12.1092952,50.266035],[12.1092541,50.2660046],[12.1092305,50.2659872],[12.1091416,50.265975],[12.1090953,50.2659687],[12.1091117,50.2659332],[12.1090645,50.2659103],[12.1089955,50.2658587],[12.1089408,50.2658571],[12.1089173,50.2657945],[12.1089851,50.2657941],[12.1090011,50.2657791],[12.1089791,50.2657514],[12.1089379,50.2657466],[12.1089095,50.2657503],[12.1088752,50.2657471],[12.1088581,50.2657328],[12.1088172,50.2656886],[12.1087979,50.265689],[12.1087566,50.2656968],[12.1087314,50.2656914],[12.1087223,50.2656669],[12.1087024,50.2656381],[12.1086704,50.2656133],[12.1085841,50.2655677],[12.1085572,50.2655598],[12.108538,50.2655517],[12.1085344,50.2655433],[12.1085393,50.2655357],[12.1085341,50.2655224],[12.1085349,50.2655018],[12.1085528,50.2654842],[12.1085422,50.2654698],[12.1085169,50.2654521],[12.1084839,50.2654534],[12.1084525,50.2654568],[12.1084163,50.2654527],[12.1083982,50.2654312],[12.108383,50.2654174],[12.1083826,50.2654004],[12.1083912,50.2653779],[12.1083883,50.2653652],[12.1083529,50.2653663],[12.1083332,50.2653616],[12.1083174,50.2653237],[12.1082377,50.2652917],[12.1082175,50.2652815],[12.1081985,50.2652608],[12.1081718,50.2652532],[12.1081402,50.2652345],[12.1081133,50.2652223],[12.1081044,50.2652129],[12.1081118,50.2651918],[12.1081105,50.265166],[12.1080853,50.2651218],[12.108058,50.2651078],[12.1080266,50.265044],[12.1080052,50.2650256],[12.1079835,50.2650213],[12.1079333,50.2650206],[12.107913,50.2650045],[12.1079066,50.2649685],[12.1078621,50.2649361],[12.107835,50.2649152],[12.1078618,50.2648809],[12.1078587,50.2648653],[12.1078264,50.2648392],[12.1078285,50.2647987],[12.1077936,50.2647981],[12.1077568,50.2647898],[12.1077184,50.2647961],[12.107686,50.2647939],[12.1076591,50.2647766],[12.107623,50.2647398],[12.107603,50.2647319],[12.107538,50.2647212],[12.1075156,50.2647154],[12.1074904,50.2646924],[12.1074859,50.2646687],[12.1074661,50.2646238],[12.1074656,50.2646078],[12.1074545,50.2645904],[12.1074429,50.2645785],[12.1074103,50.2645662],[12.1073796,50.2645473],[12.1073395,50.2645185],[12.1073113,50.2644985],[12.1072465,50.2644749],[12.1072365,50.264452],[12.1071807,50.2644373],[12.1071367,50.2644254],[12.1070628,50.2644226],[12.1070206,50.2644197],[12.1069756,50.2644018],[12.106936,50.2643942],[12.1069167,50.2643729],[12.1069104,50.2643613],[12.106871,50.2643364],[12.106837,50.2643384],[12.1068085,50.2642998],[12.106778,50.2642869],[12.1067503,50.264267],[12.1067333,50.2642361],[12.106742,50.2641873],[12.1067307,50.2641748],[12.1067636,50.2641488],[12.1067891,50.2641302],[12.1067899,50.2641193],[12.1067498,50.264093],[12.1066472,50.264052],[12.1066196,50.2640359],[12.1065606,50.2640228],[12.1065062,50.2639924],[12.106458,50.2639487],[12.1063911,50.2639241],[12.1063585,50.2639135],[12.1063291,50.2638964],[12.1062967,50.2638769],[12.1062708,50.2638775],[12.1062474,50.2638872],[12.1062067,50.2638941],[12.106112,50.2638963],[12.106048,50.263861],[12.1060183,50.263824],[12.1059943,50.2637973],[12.1059846,50.263771],[12.1059585,50.2637458],[12.1059653,50.2637319],[12.1059644,50.263711],[12.1059524,50.263695],[12.1059226,50.2636927],[12.1059032,50.2636958],[12.105875,50.2636895],[12.105848,50.2636953],[12.1058174,50.2637125],[12.1057222,50.2637359],[12.1056692,50.2637563],[12.1055331,50.2637925],[12.1054794,50.263809],[12.1054435,50.2638257],[12.1053976,50.263841],[12.1053614,50.2638505],[12.1053561,50.263852],[12.1053465,50.263851],[12.1053196,50.26381],[12.1052818,50.2637855],[12.1052361,50.263766],[12.1051801,50.26374],[12.1051005,50.2636899],[12.1050611,50.2636719],[12.1050452,50.26366],[12.1050173,50.2636514],[12.1050019,50.2636495],[12.1049912,50.263641],[12.1049599,50.2636427],[12.1049365,50.2636476],[12.1049077,50.263647],[12.1047991,50.2636263],[12.1047168,50.2636231],[12.1046871,50.2636174],[12.1046498,50.2636092],[12.104602,50.2636039],[12.104562,50.2636015],[12.1044859,50.2635919],[12.1044374,50.2635911],[12.1043532,50.2635806],[12.1043132,50.2635734],[12.1042771,50.2635713],[12.1042284,50.2635674],[12.1041596,50.2635647],[12.1041453,50.2635561],[12.1041062,50.2635504],[12.104084,50.263545],[12.1040518,50.2635439],[12.1039984,50.2635366],[12.1039643,50.2635284],[12.1038739,50.2635214],[12.1038161,50.2635175],[12.1037757,50.2635106],[12.103705,50.2635052],[12.1036324,50.2635041],[12.1035975,50.263494],[12.1035404,50.2634889],[12.103425,50.2634753],[12.1034064,50.2634716],[12.103361,50.2634688],[12.1033196,50.2634685],[12.103312,50.2634632],[12.1032876,50.263464],[12.103259,50.2634578],[12.103165,50.2634426],[12.1031294,50.2634438],[12.1031027,50.2634431],[12.1030589,50.2634326],[12.1029819,50.2634239],[12.1029479,50.2634148],[12.1029186,50.2634106],[12.1028885,50.2634059],[12.102818,50.2633884],[12.1027645,50.2633794],[12.1027324,50.2633752],[12.1027085,50.2633682],[12.1026726,50.2633471],[12.1026457,50.2633349],[12.102609,50.2633209],[12.1025541,50.2633129],[12.1025062,50.2633133],[12.102472,50.2633114],[12.1023805,50.2632913],[12.1023654,50.263291],[12.1023501,50.2632782],[12.1023046,50.2632616],[12.1022794,50.2632481],[12.1022639,50.2632357],[12.1022449,50.2632246],[12.1022063,50.2632134],[12.1021676,50.2632113],[12.1021179,50.2632161],[12.1020784,50.2632126],[12.1020432,50.2632117],[12.1020223,50.2632138],[12.1019955,50.2632086],[12.1019469,50.2632176],[12.1019361,50.2632109],[12.1019469,50.2631984],[12.1019593,50.2631862],[12.1019561,50.263165],[12.1019321,50.2631317],[12.1019197,50.2631332],[12.1018926,50.2631359],[12.1018885,50.2631308],[12.1018727,50.2631289],[12.1018506,50.2631306],[12.1018277,50.2631296],[12.1017966,50.2631237],[12.1017675,50.26312],[12.1017226,50.2631083],[12.1017073,50.2631057],[12.1016697,50.2630934],[12.1016165,50.2630914],[12.1015992,50.2630865],[12.1015521,50.2630742],[12.1015444,50.2630688],[12.1015299,50.2630659],[12.1014979,50.2630677],[12.1014734,50.2630601],[12.1014278,50.2630462],[12.1014032,50.26304],[12.1013881,50.2630358],[12.1013534,50.2630296],[12.1013264,50.263029],[12.1013087,50.2630256],[12.1012749,50.2630175],[12.1012223,50.2630065],[12.1012008,50.2630019],[12.1011726,50.262989],[12.101157,50.2629871],[12.1011229,50.262976],[12.1010996,50.2629677],[12.1010815,50.2629656],[12.1010587,50.262956],[12.101029,50.2629393],[12.1009927,50.2629384],[12.1009086,50.2629097],[12.1008354,50.2628908],[12.1007724,50.2628732],[12.1007397,50.262859],[12.1007253,50.2628511],[12.1006837,50.262846],[12.1006438,50.2628363],[12.1006251,50.2628276],[12.1005993,50.2628206],[12.1005704,50.2628076],[12.1005238,50.2627998],[12.1005058,50.2627907],[12.100491,50.2627887],[12.1004554,50.2627744],[12.1004268,50.2627753],[12.1003898,50.2627635],[12.100353,50.2627558],[12.1002562,50.2627236],[12.1001286,50.2626647],[12.1000282,50.2626127],[12.0999663,50.2625842],[12.099931,50.2625744],[12.099883,50.2625511],[12.099875,50.2625433],[12.0998569,50.2625374],[12.0998466,50.2625396],[12.0998232,50.2625497],[12.0997468,50.2625747],[12.0997283,50.2625958],[12.0996415,50.2625704],[12.0996467,50.2625573],[12.0996781,50.2625291],[12.0996861,50.2625091],[12.0996216,50.2624753],[12.0996005,50.2625136],[12.099588,50.2625227],[12.0995697,50.2625216],[12.099536,50.2624863],[12.0995305,50.262453],[12.0994965,50.2624548],[12.0994576,50.2624652],[12.0994297,50.2624625],[12.0994054,50.2624547],[12.0993682,50.2624608],[12.0993417,50.2624509],[12.0993328,50.2624262],[12.0992983,50.2624326],[12.0992129,50.26244],[12.0991984,50.262433],[12.0992025,50.2624226],[12.0992234,50.2623953],[12.0992154,50.2623903],[12.099182,50.2624015],[12.0991544,50.2624016],[12.09913,50.2623976],[12.0991168,50.2623723],[12.0991006,50.2623622],[12.0990871,50.2623814],[12.0990525,50.2623924],[12.0990311,50.2623731],[12.0990113,50.2623467],[12.0989473,50.2623547],[12.0989017,50.2623565],[12.0988565,50.2623463],[12.0988311,50.2623088],[12.0987851,50.2623115],[12.0987422,50.2623211],[12.0986314,50.2623123],[12.0986199,50.2623336],[12.0985636,50.2623587],[12.0985296,50.2623495],[12.0985065,50.2623383],[12.0984642,50.262347],[12.0984378,50.2623298],[12.0984317,50.2623157],[12.0984519,50.262294],[12.0984442,50.2622844],[12.09835,50.2622773],[12.098335,50.262286],[12.0982925,50.2623124],[12.098263,50.2623216],[12.0982176,50.2623411],[12.0981812,50.2623378],[12.0981561,50.2623393],[12.0981296,50.2623582],[12.098095,50.2623543],[12.0980667,50.2623164],[12.0980243,50.2623065],[12.0979942,50.2622914],[12.0979826,50.2622988],[12.0979844,50.2623344],[12.0979636,50.2623356],[12.0979334,50.2623205],[12.0979081,50.2623182],[12.0978837,50.262329],[12.0978457,50.2623228],[12.0978299,50.2623008],[12.0978053,50.2623003],[12.0976999,50.2622998],[12.0976953,50.2623112],[12.0976797,50.2623141],[12.0976553,50.2623102],[12.0976138,50.2623053],[12.0976167,50.2622584],[12.0976074,50.2622428],[12.0976129,50.2622179],[12.097624,50.2621717],[12.0979422,50.2619959],[12.0980307,50.2619349],[12.0983627,50.2617053],[12.0986944,50.2614756],[12.0994749,50.2608547],[12.0997661,50.2607005],[12.100122,50.2605136],[12.1007277,50.260056],[12.1007472,50.260037],[12.1010566,50.2597329],[12.1013657,50.2594289],[12.1013741,50.2594189],[12.1017197,50.2589727],[12.1017219,50.2589588],[12.1017913,50.2586233],[12.1020094,50.2581891],[12.102179,50.2579913],[12.102343,50.257542],[12.1023434,50.2575315],[12.1023435,50.2572913],[12.1023436,50.2570512],[12.1025041,50.2565623],[12.1025569,50.2564038],[12.1025772,50.2560448],[12.1025743,50.2560338],[12.1025019,50.2557863],[12.1023238,50.2555298],[12.1023144,50.2555226],[12.1019299,50.2554269],[12.101551,50.2552291],[12.1005268,50.2547385],[12.0998652,50.254516],[12.0998258,50.2545027],[12.0993505,50.2543424],[12.0989123,50.2540537],[12.0986639,50.2538897],[12.0984157,50.2537257],[12.0981795,50.2536251],[12.0979754,50.2535517],[12.0972337,50.2534444],[12.0967241,50.2534029],[12.0966188,50.2533944],[12.0962145,50.2533615],[12.0962593,50.2532915],[12.0951215,50.2529526],[12.0924164,50.2527095],[12.0920762,50.2526203],[12.0911871,50.2523871],[12.0911174,50.2523788],[12.0905901,50.2523986],[12.090593,50.2523755],[12.0906266,50.2523505],[12.0906693,50.2522992],[12.0906822,50.2522734],[12.0907217,50.2522263],[12.0907673,50.252185],[12.090769,50.2521682],[12.0908347,50.2521111],[12.090864,50.2520433],[12.0909041,50.2519882],[12.0910128,50.2518897],[12.0910411,50.2518772],[12.0910937,50.2518241],[12.0910965,50.251783],[12.0911194,50.2517539],[12.0911618,50.2517446],[12.0911832,50.251724],[12.0911652,50.2516462],[12.0911815,50.251626],[12.0912184,50.2516204],[12.0912798,50.2515844],[12.0913024,50.2515632],[12.0913266,50.2515302],[12.091375,50.2515009],[12.091418,50.2514527],[12.0914302,50.2514141],[12.091442,50.2513924],[12.0914715,50.2513519],[12.0915088,50.2513292],[12.091535,50.2512767],[12.0915696,50.2512448],[12.0916099,50.2511795],[12.091651,50.251146],[12.0916954,50.2510731],[12.0917092,50.2510505],[12.0917516,50.2509881],[12.0917562,50.2509685],[12.0917845,50.2509458],[12.0918108,50.2509246],[12.0918261,50.2508906],[12.0919023,50.2507954],[12.0919453,50.2506751],[12.0920042,50.2506222],[12.0920312,50.2505465],[12.0920888,50.2504727],[12.0920772,50.2504357],[12.0921108,50.2503952],[12.0921594,50.2503042],[12.0921569,50.2502787],[12.0921723,50.2502442],[12.0922284,50.2501739],[12.0922081,50.250119],[12.0922176,50.2500725],[12.0922368,50.2500574],[12.0922377,50.2500314],[12.0922504,50.2499921],[12.0922487,50.2498689],[12.0922811,50.2498374],[12.0923292,50.2498291],[12.0923702,50.2497466],[12.0923987,50.2497104],[12.0924303,50.2496677],[12.0924289,50.2496074],[12.0924581,50.2495916],[12.0924836,50.2495677],[12.0925038,50.2495377],[12.0925469,50.2495187],[12.0925594,50.249468],[12.0925921,50.2494257],[12.092662,50.249394],[12.0927228,50.2493484],[12.0927621,50.2493298],[12.0927887,50.2493009],[12.0928386,50.2492826],[12.0928686,50.2492718],[12.0928953,50.2492505],[12.0929574,50.2492153],[12.0930406,50.2491723],[12.093086,50.2491369],[12.0931414,50.249107],[12.0931951,50.2490744],[12.0932385,50.24906],[12.0932718,50.2490314],[12.0933162,50.2489928],[12.0934653,50.2489298],[12.0935074,50.2489095],[12.0935703,50.2488937],[12.0936302,50.2488584],[12.0936746,50.24884],[12.0937078,50.2488272],[12.0937771,50.2487936],[12.0938167,50.2487727],[12.0938702,50.2487523],[12.0939042,50.2487304],[12.0939832,50.2486878],[12.0940843,50.2486508],[12.094134,50.2486208],[12.094175,50.2486043],[12.0942208,50.2485813],[12.0942533,50.248559],[12.0942964,50.2485433],[12.0943244,50.2485387],[12.0943917,50.2485039],[12.0944262,50.2484829],[12.094481,50.2484563],[12.0945138,50.2484431],[12.094563,50.2484139],[12.0946344,50.2483905],[12.0946783,50.2483561],[12.0947112,50.248341],[12.0947902,50.2483028],[12.0949149,50.2482793],[12.0949442,50.2482672],[12.0949806,50.2482409],[12.0950295,50.2482217],[12.0950879,50.2482136],[12.0951277,50.2482062],[12.0951853,50.2481886],[12.0952238,50.2481685],[12.095252,50.2481548],[12.0953202,50.248143],[12.0953601,50.2481237],[12.0954019,50.2480915],[12.095437,50.2480717],[12.0954836,50.248057],[12.095575,50.2480394],[12.095641,50.2480328],[12.0957195,50.2480059],[12.0958132,50.2479664],[12.0958341,50.2479345],[12.0958957,50.2479083],[12.0959317,50.2479],[12.0960098,50.2478724],[12.096059,50.2478412],[12.096131,50.2477968],[12.0961885,50.2477711],[12.0962441,50.2477597],[12.0962904,50.2477337],[12.096364,50.2476235],[12.0964385,50.247573],[12.0965569,50.2475279],[12.0965951,50.2475052],[12.0966686,50.2474356],[12.0967153,50.2473784],[12.096759,50.2473537],[12.0968218,50.2472912],[12.0968661,50.2472378],[12.0969034,50.2472031],[12.0969558,50.2471616],[12.096991,50.2471191],[12.0970663,50.2470583],[12.0970928,50.2470146],[12.0971026,50.2469635],[12.0971032,50.2469367],[12.0971139,50.2469143],[12.0971178,50.2468863],[12.0971271,50.2468691],[12.0971832,50.2468356],[12.0972797,50.246803],[12.097298,50.2467856],[12.097282,50.2467352],[12.0973533,50.2466541],[12.0974017,50.2466182],[12.0974466,50.2465946],[12.0974721,50.2465411],[12.0974624,50.246489],[12.0974744,50.2464795],[12.0975115,50.2464758],[12.0975492,50.2464644],[12.0975578,50.2464198],[12.0975711,50.2463966],[12.0975973,50.2463835],[12.0976697,50.2463708],[12.0978224,50.2463575],[12.0979839,50.2463487],[12.0980125,50.2463401],[12.0980719,50.2463382],[12.0981478,50.2463298],[12.0982332,50.2463272],[12.0982739,50.2463191],[12.0983552,50.2463108],[12.0983975,50.2462994],[12.0984768,50.246294],[12.0985226,50.2462863],[12.0986012,50.2462921],[12.0986956,50.2463019],[12.0988312,50.2462944],[12.0988845,50.246304],[12.0990457,50.2463039],[12.0991136,50.2463074],[12.0991798,50.246308],[12.0992567,50.2463031],[12.0992909,50.2463049],[12.0993323,50.246311],[12.0993775,50.2463044],[12.0994832,50.2462772],[12.0995103,50.2462724],[12.0995751,50.2462517],[12.0996037,50.2462467],[12.0997234,50.2462068],[12.0998109,50.2461885],[12.0999065,50.2461805],[12.0999689,50.2461848],[12.100022,50.2461781],[12.1000749,50.2461717],[12.1001455,50.2461648],[12.1002508,50.2461599],[12.1003197,50.2461499],[12.1003694,50.2461486],[12.1008188,50.2461071],[12.1009933,50.2461077],[12.1010802,50.2460999],[12.1011867,50.2461086],[12.1012183,50.2460985],[12.1012395,50.2460959],[12.1012521,50.2461078],[12.1012892,50.2461687],[12.1012928,50.2462028],[12.1013341,50.2462901],[12.1013264,50.2463121],[12.1013351,50.2463311],[12.1013599,50.2463484],[12.1014126,50.2463788],[12.101452,50.2464042],[12.1015781,50.2464733],[12.1016299,50.2465135],[12.1016654,50.2465278],[12.1017489,50.2465741],[12.1017983,50.2465912],[12.1018338,50.2466119],[12.1018544,50.2466307],[12.1018717,50.2466464],[12.101923,50.2466689],[12.1019813,50.2467071],[12.1020089,50.2467134],[12.1020413,50.2467498],[12.1021114,50.2467664],[12.1021406,50.2467881],[12.1021557,50.2468146],[12.1021614,50.2468301],[12.1021932,50.2468397],[12.1022157,50.246866],[12.1022427,50.2468739],[12.1023102,50.2468684],[12.1023491,50.2468753],[12.1024117,50.2468734],[12.1025343,50.2468557],[12.1026059,50.2468581],[12.1026747,50.2468463],[12.1027865,50.2468457],[12.1028314,50.246853],[12.1028685,50.2468686],[12.1029323,50.2468837],[12.1029969,50.2469148],[12.1030056,50.2469276],[12.1030425,50.2469362],[12.1030754,50.2469393],[12.1030929,50.2469524],[12.1031188,50.2469516],[12.1031635,50.2469729],[12.1032189,50.2469943],[12.1032352,50.2470134],[12.1032697,50.2470267],[12.1033569,50.2470376],[12.1033938,50.247038],[12.1034385,50.2470356],[12.1034775,50.2470443],[12.1035239,50.2470414],[12.1035765,50.247056],[12.1036223,50.247065],[12.1036592,50.2470612],[12.103717,50.2470857],[12.103756,50.2470891],[12.1038293,50.2470855],[12.1038675,50.2470932],[12.1039215,50.247091],[12.1039771,50.2470786],[12.1040367,50.2470889],[12.1041322,50.2471107],[12.1041752,50.2471134],[12.1042653,50.247112],[12.1043019,50.2471229],[12.1043349,50.2471252],[12.1043575,50.2471149],[12.1043836,50.2471077],[12.1044078,50.2471075],[12.1044373,50.2471142],[12.1044592,50.2471163],[12.1044833,50.2471141],[12.1045195,50.2471143],[12.1045441,50.2471187],[12.1045545,50.2471283],[12.1045838,50.2471378],[12.1046069,50.2471353],[12.1046369,50.2471198],[12.1046741,50.2471097],[12.1047345,50.2471107],[12.1048178,50.2470977],[12.104847,50.2470955],[12.1049067,50.2470809],[12.1049328,50.2470662],[12.1049552,50.2470576],[12.1050266,50.2470498],[12.1050769,50.2470228],[12.1051028,50.2470248],[12.1051255,50.2470155],[12.1051736,50.24697],[12.105223,50.2469689],[12.1052697,50.2469805],[12.1053274,50.2469769],[12.105355,50.2469656],[12.105361,50.2469474],[12.1053764,50.2469521],[12.1054249,50.2469514],[12.1054535,50.2469398],[12.105469,50.2469266],[12.1056135,50.2469025],[12.1056399,50.2469036],[12.1057032,50.2468737],[12.1057257,50.2468525],[12.1057527,50.2468474],[12.1057831,50.2468533],[12.1057937,50.2468475],[12.1058186,50.2468205],[12.1058659,50.2468032],[12.1058931,50.246807],[12.1059111,50.246806],[12.1059466,50.2467893],[12.106002,50.2467737],[12.106039,50.2467574],[12.1060788,50.2467321],[12.1061443,50.2467006],[12.1062056,50.2466945],[12.1063017,50.2466662],[12.1063398,50.2466693],[12.1064397,50.2466319],[12.1064749,50.2466121],[12.1064925,50.2466061],[12.1065329,50.2466101],[12.1065679,50.2466065],[12.1066006,50.2465946],[12.106625,50.2465657],[12.1067815,50.2463825],[12.1067919,50.2462686],[12.1068025,50.2461545],[12.1068235,50.2460423],[12.1068276,50.2460208],[12.1068315,50.2460178],[12.1068492,50.2460043],[12.1069652,50.2458807],[12.1071026,50.245631],[12.1072427,50.2453676],[12.1073818,50.2448959],[12.10761,50.244387],[12.1078476,50.243918],[12.1081948,50.2434267],[12.1084517,50.2431269],[12.1084767,50.2430065],[12.1084736,50.2428487],[12.1083835,50.2424906],[12.1083846,50.242011],[12.1083954,50.2415801],[12.10853,50.2409418],[12.1085825,50.240437],[12.1085615,50.2398989],[12.1085286,50.2396527],[12.1085514,50.2395528],[12.1086899,50.23935],[12.1086893,50.2391171],[12.108752,50.2387742],[12.1088513,50.2386066],[12.1088913,50.238445],[12.1088386,50.2382113],[12.1089017,50.2380065],[12.1089429,50.2379831],[12.1090095,50.2379664],[12.1091054,50.2379436],[12.1091094,50.2379441],[12.1093668,50.2379776],[12.1096901,50.2380007],[12.1101696,50.2380327],[12.1102979,50.2380302],[12.1105903,50.238023],[12.1109154,50.2379936],[12.1109636,50.2379965],[12.1112243,50.2379517],[12.111525,50.2379147],[12.1118284,50.2378494],[12.1120165,50.2377933],[12.1120959,50.2377486],[12.1123781,50.2376606],[12.1128024,50.2375392],[12.1132265,50.2374179],[12.1135397,50.2373059],[12.1136049,50.2372893],[12.1136641,50.2372709],[12.1138987,50.2371978],[12.1143385,50.2370253],[12.1143596,50.2370182],[12.1149714,50.2368086],[12.116961,50.2361615],[12.1173959,50.2360335],[12.1176363,50.2359598],[12.1180802,50.2358407],[12.1191429,50.2355774],[12.1194233,50.2355079],[12.1195521,50.2354689],[12.1198582,50.2353697],[12.1205034,50.2351607],[12.1215548,50.2350386],[12.1216713,50.234958],[12.1217901,50.2348757],[12.1220275,50.2345355],[12.1220434,50.2344707],[12.1221044,50.234234],[12.1229413,50.233895],[12.1235619,50.233726],[12.1242197,50.2335408],[12.1246351,50.2334118],[12.1248439,50.2333356],[12.1252083,50.233183],[12.12585,50.2328919],[12.1264351,50.2326232],[12.1267073,50.2325105],[12.1269327,50.2324302],[12.1271921,50.2323598],[12.1274421,50.2323059],[12.1275951,50.2322881],[12.1278086,50.2322681],[12.1282405,50.2322398],[12.1288116,50.2322065],[12.1292104,50.2321946],[12.1296744,50.2321684],[12.1301263,50.2321397],[12.1312778,50.232074],[12.13223,50.2320054],[12.1329467,50.2319642],[12.1335748,50.2319476],[12.1341538,50.2319195],[12.1348654,50.2318977],[12.1355122,50.2318707],[12.135894,50.2318483],[12.1362525,50.2318109],[12.1364358,50.2317808],[12.1366109,50.2317515],[12.1369794,50.2316344],[12.137316,50.2315126],[12.1375845,50.2314149],[12.1384181,50.2309854],[12.1387658,50.2308181],[12.1390752,50.2306909],[12.1393715,50.230595],[12.1396516,50.2305349],[12.1399783,50.2304861],[12.1404696,50.230431],[12.1409152,50.2304379],[12.1412527,50.2304686],[12.1413821,50.2305011],[12.1419256,50.2307254],[12.1423381,50.2308751],[12.14235,50.2308793],[12.1423207,50.2309113],[12.1422949,50.2309329],[12.1422952,50.2309618],[12.1422662,50.2309808],[12.1422435,50.231001],[12.1422015,50.2310199],[12.1421825,50.2310395],[12.1421567,50.2310563],[12.1422572,50.2310934],[12.1422725,50.2311037],[12.1422844,50.2311348],[12.1422824,50.2311499],[12.142264,50.231166],[12.1422566,50.2311804],[12.1422421,50.2311962],[12.1421956,50.2312119],[12.1421729,50.2312237],[12.1421536,50.2312274],[12.1421399,50.2312403],[12.1421612,50.2312924],[12.1421432,50.2312995],[12.1421411,50.2313131],[12.142151,50.2313212],[12.1421928,50.2313292],[12.1422251,50.231337],[12.1422319,50.2313588],[12.1422154,50.2313806],[12.1421944,50.2314607],[12.1421811,50.2314729],[12.1421893,50.2314852],[12.1421568,50.2315171],[12.1421442,50.2315375],[12.1421397,50.2315618],[12.1421238,50.2315769],[12.1420954,50.23157],[12.1420727,50.2315564],[12.1420548,50.2315617],[12.1420442,50.2315835],[12.1420154,50.2316195],[12.1419663,50.231676],[12.1419032,50.2317328],[12.1418984,50.2317421],[12.1418306,50.2317969],[12.1417643,50.2318216],[12.141737,50.2318385],[12.1417065,50.2318511],[12.1416799,50.2318559],[12.1416132,50.2318541],[12.1416071,50.231908],[12.1416137,50.2320131],[12.1416235,50.232026],[12.1416254,50.2320679],[12.1416197,50.2321005],[12.1415936,50.2321412],[12.1415513,50.2321866],[12.1415493,50.232202],[12.1415377,50.2322216],[12.1415008,50.2322383],[12.1414565,50.2322712],[12.1414113,50.232297],[12.141358,50.2323669],[12.141274,50.2324351],[12.1412155,50.2325207],[12.1411778,50.2325517],[12.1411338,50.2325602],[12.1411358,50.2325682],[12.1411497,50.2325809],[12.1411806,50.2325938],[12.1411973,50.2326063],[12.1411973,50.2326147],[12.1411817,50.2326472],[12.1411647,50.2326568],[12.1411738,50.2326626],[12.1412053,50.2326762],[12.1412164,50.2327149],[12.1412178,50.2327748],[12.1412235,50.2328525],[12.1412504,50.2329008],[12.1412674,50.2329161],[12.1412788,50.2329524],[12.1412896,50.2329778],[12.1412916,50.2329923],[12.1412799,50.2330097],[12.1412859,50.2330372],[12.1412987,50.2330519],[12.1412964,50.2330865],[12.1413024,50.2331125],[12.1413481,50.2331688],[12.1413534,50.2331806],[12.1413498,50.2332224],[12.1413722,50.2332429],[12.1413796,50.233257],[12.1414017,50.2332657],[12.1414207,50.2332782],[12.1414559,50.2333168],[12.1414522,50.2333344],[12.141463,50.2333467],[12.1415019,50.2333576],[12.1415428,50.2333919],[12.1415413,50.2334097],[12.1415504,50.2334163],[12.1415808,50.2334166],[12.1416001,50.2334244],[12.1416095,50.2334331],[12.1416421,50.2334466],[12.1416713,50.2334758],[12.1417082,50.2335009],[12.1417284,50.2335403],[12.1417485,50.2335519],[12.1417687,50.2335742],[12.1417832,50.23358],[12.1417894,50.2335936],[12.1418686,50.2336216],[12.1419049,50.2336474],[12.1419401,50.2336715],[12.1419992,50.2337055],[12.1421001,50.2337381],[12.1421382,50.2337565],[12.142151,50.2337599],[12.1422353,50.2337705],[12.1423097,50.2337861],[12.1423329,50.2337834],[12.1423551,50.2337861],[12.1423772,50.2337931],[12.1423954,50.2338124],[12.1424581,50.2338306],[12.1425592,50.2338571],[12.1425961,50.2338582],[12.1426508,50.2338422],[12.1426997,50.2338681],[12.1427329,50.2338696],[12.1427638,50.2338631],[12.1428044,50.2338705],[12.1428399,50.2338818],[12.1428898,50.2338894],[12.1429508,50.2338934],[12.1430036,50.2339139],[12.1430448,50.2339266],[12.1431575,50.233954],[12.1432176,50.2340168],[12.143265,50.2340268],[12.1433621,50.2340708],[12.1433848,50.2340956],[12.1434135,50.2341151],[12.1434663,50.2341269],[12.1435085,50.2341473],[12.1435341,50.2341751],[12.1435436,50.2341943],[12.143611,50.2342428],[12.1436508,50.2342581],[12.1437004,50.2342583],[12.1437231,50.2342637],[12.1437901,50.2343531],[12.1438384,50.2343634],[12.1439113,50.2343667],[12.1439675,50.2343663],[12.1440275,50.2343765],[12.1441415,50.2344055],[12.1443222,50.2344275],[12.1444159,50.2344459],[12.1444915,50.234463],[12.144549,50.2344817],[12.1445845,50.2344962],[12.1446609,50.2345303],[12.1446677,50.2345498],[12.1446794,50.2346045],[12.1446757,50.2346425],[12.144657,50.234682],[12.1446718,50.2347077],[12.1446868,50.2347204],[12.1447605,50.2347387],[12.1447828,50.234737],[12.1448056,50.2347408],[12.1448298,50.2347499],[12.1448348,50.234766],[12.1449225,50.234814],[12.1449278,50.234835],[12.14494,50.2348478],[12.1449788,50.2348752],[12.1450097,50.234888],[12.1450711,50.2349028],[12.1451233,50.23491],[12.1451682,50.23493],[12.1452035,50.2349348],[12.1452393,50.2349513],[12.1452496,50.2349592],[12.1452767,50.234963],[12.145297,50.2349609],[12.1453092,50.2349476],[12.1453949,50.2349458],[12.1454227,50.2349502],[12.1455184,50.2349391],[12.1455553,50.2349429],[12.1456645,50.2349376],[12.1456821,50.2349431],[12.1456935,50.2349514],[12.1457057,50.2349548],[12.1457193,50.2349645],[12.1457349,50.234972],[12.1457743,50.23498],[12.145809,50.2349963],[12.1458303,50.2350113],[12.1458556,50.2350148],[12.145881,50.2350153],[12.1459025,50.2350206],[12.1459224,50.2350311],[12.1459543,50.235058],[12.145996,50.2351344],[12.1460361,50.2351649],[12.1460659,50.2352],[12.1461351,50.2351942],[12.1461561,50.235204],[12.14618,50.2352359],[12.1461936,50.2352401],[12.1462081,50.2352597],[12.1462024,50.2352757],[12.1462058,50.2352837],[12.1462288,50.2352893],[12.1462558,50.2352902],[12.1462761,50.2352978],[12.1462974,50.2353339],[12.1462887,50.2353452],[12.1462958,50.2353553],[12.1462868,50.235366],[12.1463001,50.2353749],[12.1463174,50.2353766],[12.1463472,50.2353864],[12.146406,50.2354149],[12.1464633,50.2354885],[12.1464937,50.2355109],[12.1465729,50.2355476],[12.1466177,50.2355647],[12.1466728,50.2355806],[12.1467198,50.2356155],[12.1467667,50.235623],[12.1467823,50.2356381],[12.1467926,50.2356657],[12.1468122,50.2356771],[12.1469002,50.235703],[12.1469397,50.2357279],[12.1469784,50.235734],[12.1470215,50.2357472],[12.1470531,50.2357522],[12.147106,50.2357466],[12.147151,50.2357524],[12.1472182,50.2357527],[12.1472673,50.2357548],[12.1473141,50.2357603],[12.1473606,50.2357616],[12.1474421,50.2357592],[12.1474709,50.2357664],[12.147495,50.2357869],[12.1475766,50.2357982],[12.1475947,50.2358132],[12.1476259,50.235826],[12.1476885,50.2358397],[12.1477648,50.2358378],[12.1478622,50.2358409],[12.1479247,50.2358527],[12.148002,50.2358471],[12.1480665,50.2358269],[12.1481321,50.2358249],[12.1482269,50.2358586],[12.1482753,50.2358841],[12.1483482,50.235896],[12.1483851,50.2358935],[12.1484727,50.2358801],[12.1486589,50.2358965],[12.1487073,50.2359042],[12.1487665,50.2359181],[12.1488726,50.2359245],[12.1489125,50.2359222],[12.1489554,50.2359264],[12.1490915,50.2359669],[12.1491076,50.2359813],[12.1491218,50.2360029],[12.1491509,50.2360263],[12.1495132,50.2362232],[12.149703,50.2361148],[12.1498421,50.2360357],[12.1499563,50.2359967],[12.1502091,50.235939],[12.1504618,50.2358813],[12.1507278,50.2358291],[12.1510777,50.2357163],[12.1512347,50.2354502],[12.1513913,50.2351841],[12.1515724,50.2349657],[12.1516203,50.2347457],[12.1516734,50.2346177],[12.1518011,50.2343313],[12.1518096,50.2343097],[12.1516423,50.2342261],[12.151422,50.2341014],[12.1512217,50.2339498],[12.1509972,50.2337221],[12.1506609,50.2333302],[12.1505324,50.2331962],[12.1503259,50.2330438],[12.1502057,50.2329675],[12.1499301,50.2328234],[12.1498766,50.2328158],[12.1496535,50.232784],[12.1494335,50.2327326],[12.1492122,50.2326726],[12.1489986,50.2326025],[12.1487849,50.2325324],[12.1485889,50.2324612],[12.1484173,50.2323712],[12.1481488,50.2321213],[12.1480184,50.2319998],[12.1478828,50.2318735],[12.1477545,50.2317541],[12.1475145,50.2315307],[12.1472717,50.2313822],[12.146982,50.2312052],[12.1467078,50.2310375],[12.1464966,50.2309084],[12.1460673,50.2306459],[12.1457784,50.2305335],[12.1454895,50.2304211],[12.1453831,50.2303941],[12.1454664,50.2302581],[12.1455113,50.2301896],[12.1455171,50.2301579],[12.1455227,50.2301261],[12.1455285,50.2300944],[12.1455342,50.2300626],[12.1455399,50.230031],[12.1455458,50.2299992],[12.1455514,50.2299675],[12.1455572,50.2299358],[12.1457581,50.2298367],[12.1460063,50.2297818],[12.1462201,50.2297064],[12.1464954,50.2295471],[12.1466564,50.2294339],[12.146784,50.2293434],[12.1469973,50.229241],[12.1470763,50.2292296],[12.1474208,50.2293269],[12.1476473,50.229392],[12.1477636,50.2294253],[12.1480847,50.2295052],[12.1483238,50.2295582],[12.1485325,50.2296013],[12.1488766,50.22962],[12.1492606,50.2296323],[12.149711,50.2296164],[12.150097,50.2295851],[12.1503577,50.2295628],[12.1506184,50.2295405],[12.1507736,50.2295166],[12.1509288,50.2294927],[12.1510703,50.2294654],[12.1512914,50.2294065],[12.1515614,50.2293282],[12.151961,50.2291982],[12.1524498,50.2290606],[12.1528958,50.2289653],[12.1530571,50.2289267],[12.1532868,50.2288891],[12.1539648,50.2287736],[12.15461,50.2286574],[12.1547055,50.2285141],[12.1547696,50.2284398],[12.1548389,50.2283682],[12.1550112,50.2282178],[12.1551575,50.2280821],[12.1553037,50.2279464],[12.1554958,50.227758],[12.1559548,50.2279262],[12.1563054,50.2278048],[12.1565475,50.2276952],[12.1567183,50.2276073],[12.1574894,50.2271835],[12.1579854,50.2268735],[12.1582752,50.226631],[12.1584733,50.2264652],[12.1580675,50.2263025],[12.1583244,50.22606],[12.1586735,50.2257308],[12.1586495,50.225725],[12.1584984,50.2256698],[12.158309,50.2255854],[12.1580842,50.2253885],[12.1580549,50.2253591],[12.1578934,50.2252674],[12.1577542,50.2251707],[12.157601,50.2250333],[12.1574475,50.224889],[12.1573464,50.2247831],[12.1573412,50.2247773],[12.1572813,50.2247082],[12.1569167,50.2241247],[12.1567359,50.2238356],[12.1565564,50.2235494],[12.1569946,50.2233779],[12.1572588,50.2232412],[12.1581451,50.2231793],[12.1587316,50.2231679],[12.1587341,50.2231528],[12.1600722,50.2232532],[12.1607377,50.2233064],[12.1613163,50.223365],[12.1620233,50.2234556],[12.1620233,50.2234354],[12.1620129,50.2232161],[12.1620062,50.2230218],[12.1617169,50.2229314],[12.1614235,50.2228198],[12.1611279,50.2227002],[12.160878,50.2225937],[12.1604693,50.2224234],[12.1604053,50.2223365],[12.160353,50.2221787],[12.1602605,50.2219928],[12.1602281,50.2218349],[12.1602511,50.2216461],[12.1604335,50.2210835],[12.1604363,50.2207917],[12.1604387,50.2207679],[12.1604182,50.2205639],[12.1603252,50.2198115],[12.1603224,50.219785],[12.1605007,50.2198015],[12.1608037,50.2197977],[12.1616592,50.2198772],[12.1621537,50.219914],[12.1624756,50.219924],[12.1627791,50.2199326],[12.1629637,50.2199473],[12.1628063,50.2195661],[12.1627101,50.2193147],[12.1627709,50.2191561],[12.1628226,50.2190634],[12.1629017,50.2189288],[12.1629858,50.2188125],[12.1630758,50.21871],[12.1632063,50.2185719],[12.1633499,50.2184308],[12.1634776,50.2183075],[12.1636105,50.2181831],[12.1637541,50.2180768],[12.163887,50.2179902],[12.1639704,50.2179587],[12.1637691,50.2176916],[12.1635293,50.217557],[12.1628168,50.2172998],[12.162747,50.2172636],[12.162766,50.2172192],[12.1628502,50.2170511],[12.1628632,50.2169854],[12.1628533,50.2169261],[12.1627733,50.2168789],[12.1624777,50.2167609],[12.1624024,50.216701],[12.1621357,50.2166581],[12.1619754,50.2165951],[12.1618877,50.2165192],[12.1618535,50.2165049],[12.1614772,50.2162423],[12.1608647,50.2158413],[12.1606963,50.215768],[12.1605337,50.2156952],[12.1602591,50.2155421],[12.1600575,50.2154162],[12.1599641,50.215347],[12.1598446,50.2153163],[12.1596443,50.2152659],[12.1596079,50.2152703],[12.1593716,50.2151972],[12.1593472,50.2151831],[12.1593351,50.2151838],[12.1592915,50.215173],[12.1591614,50.2151285],[12.1591416,50.2151182],[12.1589921,50.2150685],[12.1589517,50.2150507],[12.1588727,50.2150268],[12.1583005,50.2148051],[12.1581042,50.2147123],[12.1580443,50.2146801],[12.1579874,50.2146436],[12.1578833,50.2145487],[12.1578659,50.2145319],[12.1578543,50.214507],[12.1578296,50.2143434],[12.1578237,50.2142071],[12.1578745,50.2141025],[12.1579558,50.2139868],[12.1579854,50.213932],[12.1580231,50.2138445],[12.1580176,50.2138023],[12.1580319,50.2137237],[12.1580675,50.2136298],[12.1581047,50.2135738],[12.1581506,50.2135361],[12.1585024,50.2132018],[12.1586049,50.2131167],[12.1590718,50.2128106],[12.1591183,50.2127612],[12.159205,50.2126918],[12.1592792,50.2126463],[12.1592966,50.2126293],[12.1592942,50.2125951],[12.1593307,50.212553],[12.1593695,50.2124788],[12.159406,50.2124493],[12.1594403,50.2123902],[12.1594545,50.2123456],[12.1594542,50.2122995],[12.1594624,50.2122803],[12.1595197,50.2122462],[12.1595319,50.2122202],[12.1595723,50.2122252],[12.1595984,50.212219],[12.1596075,50.212185],[12.1596428,50.2121633],[12.1596648,50.2121591],[12.1597016,50.2121314],[12.1597113,50.2121096],[12.1597175,50.2120296],[12.1597078,50.2120129],[12.1596806,50.2119826],[12.1597148,50.211813],[12.1597466,50.21172],[12.159742,50.2116661],[12.1597129,50.2115749],[12.1597279,50.2115234],[12.1597218,50.2114951],[12.1596789,50.211438],[12.159672,50.2113854],[12.1596632,50.2113572],[12.1596841,50.2113211],[12.1596949,50.2112319],[12.1597237,50.2112389],[12.1602731,50.211371],[12.1609828,50.2115503],[12.1616135,50.2116941],[12.1619033,50.2118322],[12.1622486,50.2120045],[12.1626572,50.2122314],[12.1629907,50.2124197],[12.1631526,50.2125114],[12.16345,50.212679],[12.1637903,50.212873],[12.1643315,50.2132002],[12.1645954,50.2133576],[12.1648592,50.2134946],[12.165156,50.2131034],[12.1652678,50.2129558],[12.1657349,50.2124473],[12.1660957,50.2121612],[12.1664154,50.2120224],[12.1670419,50.2121927],[12.1673745,50.2123502],[12.1673043,50.2124993],[12.1682565,50.212648],[12.1686322,50.2127341],[12.1691804,50.2128679],[12.1693676,50.2129042],[12.1696061,50.2129498],[12.1698359,50.2129863],[12.170097,50.2128142],[12.1703124,50.2126983],[12.1703477,50.2125361],[12.1703498,50.2125282],[12.1703482,50.2124085],[12.1703766,50.2122563],[12.1704322,50.2122519],[12.1708928,50.2122715],[12.1715267,50.2123088],[12.1721215,50.2123738],[12.1725805,50.2124076],[12.1729882,50.2124235],[12.173269,50.2124546],[12.1733251,50.2124608],[12.1734485,50.212479],[12.1735553,50.2124947],[12.1737683,50.212526],[12.1738934,50.2125445],[12.174056,50.2125677],[12.1744882,50.2126193],[12.1746644,50.212664],[12.1751206,50.2127964],[12.1753852,50.2128427],[12.1755419,50.2126738],[12.1756782,50.2127064],[12.1756952,50.2127105],[12.1756983,50.212703],[12.1757167,50.212682],[12.1757102,50.2126586],[12.1757525,50.2125884],[12.1757664,50.2125479],[12.1757518,50.2125271],[12.1757504,50.2124924],[12.1757657,50.2124503],[12.1757518,50.2124397],[12.1757457,50.2124107],[12.1757588,50.212373],[12.1757558,50.2123607],[12.1758031,50.2123257],[12.175811,50.2123094],[12.1758494,50.2122962],[12.1758527,50.2122813],[12.1758421,50.2122636],[12.1758416,50.2122519],[12.1758626,50.2122316],[12.1758855,50.2122181],[12.1758874,50.2122039],[12.1759002,50.2121946],[12.1759122,50.2121783],[12.1759328,50.2121695],[12.1759527,50.2121429],[12.1759705,50.2121301],[12.1759823,50.2121282],[12.175987,50.2121138],[12.1759852,50.2121016],[12.1759724,50.2120975],[12.175966,50.2120837],[12.1759828,50.2120748],[12.1760128,50.2120726],[12.1760381,50.2120649],[12.1760458,50.2120523],[12.1760427,50.2120364],[12.1760597,50.2120144],[12.1761081,50.2119729],[12.1761168,50.2119557],[12.1761105,50.2119269],[12.1761252,50.2118988],[12.1761303,50.2118352],[12.1761278,50.2117837],[12.1761112,50.2117591],[12.1761186,50.2117293],[12.1761265,50.2117034],[12.1761166,50.211698],[12.1761213,50.2116858],[12.1761113,50.2116624],[12.1761112,50.2116528],[12.1761327,50.2116304],[12.1761589,50.2116144],[12.1761455,50.2115986],[12.1761235,50.2115928],[12.1761167,50.2115795],[12.1761229,50.2115578],[12.1761162,50.2115183],[12.1761261,50.2114946],[12.1762152,50.2114345],[12.17622,50.2114245],[12.1762636,50.2113888],[12.1762805,50.2113731],[12.1762891,50.2113492],[12.176324,50.2113079],[12.1763552,50.2112693],[12.1763987,50.2112258],[12.176431,50.2111926],[12.1764456,50.2111659],[12.1764794,50.211166],[12.1765095,50.211144],[12.1765168,50.2111112],[12.1765188,50.2111021],[12.1765454,50.2110785],[12.1765797,50.2110675],[12.1766036,50.2110534],[12.1766007,50.2110333],[12.1765985,50.2110092],[12.1766028,50.2109869],[12.1765992,50.2109439],[12.1766007,50.2109021],[12.1765965,50.2108626],[12.176613,50.2108543],[12.1766134,50.2108305],[12.1766049,50.2108185],[12.1766037,50.2107998],[12.176628,50.2107581],[12.1766537,50.2107237],[12.1766847,50.2106835],[12.1767583,50.210622],[12.1767652,50.210611],[12.17676,50.2105907],[12.176743,50.2105761],[12.1767441,50.2105624],[12.1767563,50.2105457],[12.1767795,50.2104859],[12.1767809,50.2104484],[12.1767763,50.2104247],[12.1768017,50.2103982],[12.1768184,50.2103688],[12.1768226,50.2103513],[12.1767957,50.210324],[12.1767956,50.2102914],[12.1768268,50.2102658],[12.1768374,50.2102498],[12.1768342,50.2102372],[12.1768059,50.2102058],[12.1768118,50.2101719],[12.1768222,50.2101557],[12.1768502,50.2101339],[12.176856,50.2101073],[12.1768794,50.2100679],[12.176894,50.210056],[12.1768988,50.2100436],[12.1769127,50.2100281],[12.1769301,50.2099977],[12.1769415,50.2099944],[12.1769435,50.209983],[12.1769965,50.2099502],[12.1770112,50.2099416],[12.1770193,50.2099185],[12.1770192,50.209904],[12.177037,50.2098741],[12.1770875,50.209859],[12.1771051,50.2098426],[12.1771082,50.2098293],[12.1771403,50.2097972],[12.1771586,50.2097888],[12.1771791,50.2097726],[12.1771835,50.2097474],[12.1771837,50.2097338],[12.177199,50.2097106],[12.1772303,50.2096889],[12.1772688,50.2096741],[12.1772749,50.2096611],[12.1773236,50.2096142],[12.1774084,50.2095167],[12.1774262,50.2094971],[12.1773959,50.2094233],[12.1773914,50.2094023],[12.1773578,50.2093778],[12.177364,50.2093559],[12.1773646,50.2093295],[12.177355,50.2092689],[12.1773746,50.2092126],[12.1773758,50.2091961],[12.177395,50.2091781],[12.1774056,50.2091498],[12.1773836,50.2091373],[12.1773342,50.2090598],[12.1773084,50.209018],[12.1773143,50.208992],[12.1773283,50.2089814],[12.1773219,50.2089524],[12.1773293,50.2088898],[12.1773053,50.2088829],[12.1772882,50.2088821],[12.1772528,50.2088668],[12.1772384,50.208853],[12.1772271,50.2088259],[12.1772362,50.2088168],[12.1772582,50.2088111],[12.1772958,50.2088129],[12.1773008,50.2087985],[12.1773323,50.2087715],[12.1773565,50.2087668],[12.1773794,50.2087545],[12.1773915,50.2087325],[12.1773811,50.2087191],[12.1773527,50.2087098],[12.1773363,50.2086968],[12.177321,50.2086753],[12.1772643,50.2086396],[12.1772349,50.2086095],[12.1772506,50.2085911],[12.1772613,50.2085771],[12.1772608,50.2085638],[12.177248,50.2085504],[12.1772459,50.2085419],[12.177326,50.2085064],[12.1773491,50.2084895],[12.1773374,50.2084487],[12.1773201,50.2084322],[12.1773117,50.2084164],[12.1773238,50.2083717],[12.1773063,50.2083465],[12.177322,50.2083351],[12.1773295,50.2083169],[12.1773143,50.2083044],[12.1773134,50.2082889],[12.1773011,50.2082696],[12.1773077,50.2082502],[12.1773045,50.2082279],[12.1773102,50.208212],[12.1773259,50.2082057],[12.1773375,50.2081922],[12.1773262,50.2081761],[12.1773043,50.2081659],[12.17729,50.2081465],[12.1772858,50.208109],[12.1772748,50.2080844],[12.1772792,50.2080676],[12.1773133,50.2080301],[12.1773567,50.2080508],[12.1773804,50.2080507],[12.1774186,50.2080219],[12.1774458,50.2080143],[12.1774564,50.2080053],[12.1774502,50.2079946],[12.1774255,50.2079811],[12.1773798,50.2079285],[12.1773448,50.207921],[12.1773464,50.2078918],[12.1773625,50.2078806],[12.1773808,50.2078733],[12.1774001,50.2078472],[12.177438,50.20784],[12.1774965,50.2078371],[12.1774994,50.2078287],[12.1774854,50.2078195],[12.1774688,50.2078144],[12.1774633,50.2078054],[12.1774724,50.2077629],[12.1774746,50.2077371],[12.1775179,50.2077351],[12.1775451,50.2077388],[12.1775577,50.2077453],[12.1775621,50.2077568],[12.1775823,50.2077648],[12.1775883,50.2077459],[12.1776058,50.2077343],[12.1776467,50.2077323],[12.1776727,50.207723],[12.1776608,50.2077075],[12.1776534,50.2076867],[12.1776945,50.2076514],[12.1777387,50.2076253],[12.1777802,50.2075853],[12.1777807,50.2075566],[12.1777751,50.2075309],[12.1777295,50.2075093],[12.177683,50.2074709],[12.1776729,50.2074562],[12.177655,50.2074525],[12.1776478,50.2074002],[12.1776408,50.207371],[12.1776616,50.2073545],[12.1777016,50.2073396],[12.1777216,50.2073186],[12.1777041,50.2073069],[12.1776851,50.2072662],[12.1777327,50.2072313],[12.1777747,50.2072234],[12.1777741,50.2072107],[12.1777878,50.2071937],[12.1778305,50.2071904],[12.1779121,50.2072145],[12.1779878,50.2071575],[12.1779899,50.2071358],[12.1780035,50.2071249],[12.1780464,50.2071152],[12.1780319,50.2070757],[12.1780203,50.2070538],[12.1780227,50.2070325],[12.1780458,50.2070094],[12.1780474,50.2069968],[12.1780648,50.206981],[12.1781008,50.2069618],[12.1781305,50.2069562],[12.1781653,50.2069569],[12.1781954,50.2069498],[12.1781676,50.2069246],[12.1781973,50.2069033],[12.1782061,50.2068812],[12.1782293,50.2068633],[12.1782152,50.2068476],[12.1782177,50.2068361],[12.1782426,50.2068261],[12.1782714,50.206824],[12.1782921,50.2068145],[12.1782774,50.2068022],[12.1782501,50.2067902],[12.178251,50.2067792],[12.1782761,50.2067637],[12.1782975,50.2067649],[12.1783298,50.2067744],[12.1783933,50.2067596],[12.1784035,50.2067476],[12.1784,50.206734],[12.1783552,50.2067223],[12.1783375,50.2067116],[12.1783333,50.2067017],[12.1783524,50.2066683],[12.1784021,50.206623],[12.1784076,50.2065972],[12.1784024,50.2065619],[12.1783966,50.2065541],[12.1783744,50.2065495],[12.1783379,50.2065343],[12.1783298,50.2065195],[12.1783384,50.2065059],[12.1783757,50.2064779],[12.1783813,50.2064367],[12.178396,50.2064189],[12.1784084,50.2064137],[12.1784444,50.2064141],[12.1784502,50.2064042],[12.1784185,50.2063845],[12.1783995,50.2063368],[12.1784036,50.2063075],[12.1784458,50.2062834],[12.1784457,50.2062496],[12.1784607,50.2062325],[12.1784643,50.2062192],[12.1784446,50.2061991],[12.1784188,50.2061992],[12.1783828,50.2062031],[12.1783489,50.2061804],[12.178336,50.206158],[12.1783523,50.2061478],[12.1784142,50.2061537],[12.1784335,50.2061502],[12.1784603,50.2061149],[12.1784889,50.2060987],[12.1785049,50.2060856],[12.1785087,50.2060758],[12.1784941,50.2060331],[12.1784977,50.2060201],[12.17855,50.2059842],[12.17856,50.2059756],[12.1785461,50.2059617],[12.1785275,50.2059494],[12.1785406,50.2059021],[12.17851,50.2058835],[12.1785075,50.2058718],[12.1785234,50.2058629],[12.1785522,50.205855],[12.1785699,50.2058348],[12.1785585,50.2058182],[12.1785353,50.2058098],[12.1785233,50.2057973],[12.1785078,50.2057713],[12.178505,50.2057527],[12.1785087,50.2057255],[12.1784982,50.2057125],[12.178462,50.2056845],[12.1784562,50.2056658],[12.178471,50.2056264],[12.1784687,50.2056149],[12.1784122,50.2055349],[12.1783781,50.2054964],[12.1783304,50.2054601],[12.1783119,50.2053859],[12.1782766,50.2053564],[12.1782693,50.2053377],[12.178283,50.2053266],[12.1782845,50.2053075],[12.178273,50.205262],[12.1782784,50.2052357],[12.1782601,50.2051852],[12.1782574,50.2051762],[12.1782721,50.2051729],[12.1782678,50.2051612],[12.1782702,50.2051383],[12.1782663,50.2051003],[12.1782761,50.2050745],[12.1782737,50.2050501],[12.1782805,50.2050021],[12.1782801,50.2049671],[12.1782717,50.2049086],[12.1782678,50.2048855],[12.1782827,50.2048327],[12.1782918,50.204816],[12.178309,50.2048062],[12.1784912,50.2048389],[12.1787226,50.2049735],[12.1789168,50.2050853],[12.1791395,50.2052118],[12.1793405,50.2053126],[12.1794064,50.2053946],[12.1795152,50.2055302],[12.1795479,50.2056559],[12.1803465,50.2056729],[12.1805956,50.2057011],[12.1809188,50.2057379],[12.1812179,50.2053389],[12.1813534,50.2051576],[12.1827867,50.2052812],[12.1832435,50.2052681],[12.1835815,50.2052405],[12.1840636,50.2051278],[12.1842245,50.2050903],[12.1840817,50.2049437],[12.1839557,50.2047314],[12.1839298,50.204559],[12.1839104,50.2043688],[12.1843384,50.2043566],[12.1845976,50.2043492],[12.1849937,50.2043185],[12.1850922,50.2043001],[12.185147,50.2042696],[12.185437,50.2039476],[12.1855387,50.2037467],[12.1857215,50.2034421],[12.1861699,50.203081],[12.1861295,50.2030491],[12.1860748,50.2030339],[12.1860219,50.2030145],[12.1860089,50.2030035],[12.1860026,50.2029893],[12.1859381,50.2029726],[12.1859179,50.202967],[12.1858193,50.2029135],[12.1857782,50.2028941],[12.1857605,50.2028758],[12.1857359,50.2028591],[12.1856976,50.202849],[12.1856854,50.2028342],[12.1856479,50.2028157],[12.1856198,50.2027997],[12.185602,50.2027949],[12.1855927,50.2027806],[12.1855758,50.2027289],[12.1855244,50.2027082],[12.1854954,50.2026635],[12.1854718,50.2026499],[12.1854264,50.2026164],[12.1854015,50.2025773],[12.1853764,50.2025605],[12.1853623,50.2025511],[12.1853488,50.2025313],[12.1853393,50.2025093],[12.1853271,50.2024673],[12.1853255,50.2024472],[12.1852841,50.2024165],[12.1852786,50.202399],[12.1852906,50.2023691],[12.1852885,50.2023572],[12.1852562,50.2023465],[12.1852294,50.2023483],[12.1852153,50.202328],[12.1852076,50.2023062],[12.1851863,50.2022656],[12.1851287,50.2022085],[12.1851107,50.2022011],[12.1850888,50.2021974],[12.1850542,50.2021678],[12.1850435,50.2021506],[12.1850267,50.2021438],[12.1850018,50.2021134],[12.1849751,50.2021012],[12.1849502,50.2021063],[12.1849331,50.2020947],[12.1849294,50.2020836],[12.1849419,50.2020704],[12.1849016,50.2020382],[12.18488,50.2020056],[12.1848654,50.2019888],[12.1848688,50.2019556],[12.1848821,50.2019469],[12.1848996,50.2019104],[12.1848898,50.2018986],[12.1848531,50.2018841],[12.184839,50.2018879],[12.1848426,50.2018985],[12.1848543,50.2019154],[12.1848413,50.2019316],[12.1848129,50.2019349],[12.1847841,50.2019315],[12.1847574,50.2019205],[12.1846956,50.2018763],[12.1846775,50.2018608],[12.1846762,50.201851],[12.1846687,50.2018434],[12.1846508,50.2018436],[12.1846395,50.2018546],[12.1846198,50.2018535],[12.1846008,50.2018548],[12.184583,50.2018465],[12.1845894,50.201831],[12.1845889,50.2018188],[12.1845671,50.2018132],[12.1845249,50.2018242],[12.1844242,50.2017818],[12.1843159,50.2017587],[12.1842767,50.201746],[12.1842612,50.20173],[12.184252,50.2017026],[12.1842293,50.20171],[12.1842048,50.2017291],[12.1841723,50.2017422],[12.1841394,50.2017469],[12.1840478,50.2017483],[12.1840284,50.2017481],[12.1839996,50.2017592],[12.1839717,50.2017672],[12.1838739,50.2017763],[12.1838116,50.201775],[12.1836788,50.2017411],[12.1835946,50.2017141],[12.1835658,50.2017003],[12.1835134,50.2016876],[12.1834547,50.2016836],[12.1834231,50.2016761],[12.1834088,50.2016642],[12.1834012,50.2016111],[12.183385,50.2015997],[12.1832898,50.2015864],[12.1832717,50.2015735],[12.1832656,50.2015446],[12.1832746,50.2015259],[12.1832504,50.2015213],[12.1831999,50.201499],[12.1832155,50.201462],[12.1831977,50.2014617],[12.1831659,50.2014933],[12.1831406,50.2015001],[12.1830931,50.2014863],[12.1830362,50.2014589],[12.1830084,50.2014417],[12.1829925,50.2014244],[12.1829812,50.2014009],[12.1829523,50.2013604],[12.1829342,50.2013458],[12.1828942,50.2013283],[12.1828705,50.2013105],[12.1828621,50.2012902],[12.1828811,50.2012726],[12.1828952,50.2012521],[12.1828829,50.2012469],[12.1828464,50.2012586],[12.1827831,50.2012832],[12.1827715,50.2013027],[12.1827395,50.2013051],[12.1827155,50.2012991],[12.182645,50.2012508],[12.1826413,50.2012218],[12.1826262,50.2012019],[12.1825791,50.2011848],[12.1825543,50.2011467],[12.1825485,50.2011203],[12.182566,50.2011085],[12.1825724,50.201096],[12.1825456,50.2010774],[12.1824896,50.2010573],[12.1824532,50.2010705],[12.1824315,50.2010682],[12.1823968,50.2010488],[12.1823698,50.2010528],[12.1823262,50.2010561],[12.1822973,50.2010547],[12.1822621,50.2010375],[12.1822068,50.2009817],[12.1821553,50.2009581],[12.1821133,50.2009316],[12.1820757,50.2008996],[12.1820331,50.2008472],[12.1819775,50.200814],[12.1819439,50.2008016],[12.1819246,50.2007876],[12.181909,50.200765],[12.1819002,50.200742],[12.1818516,50.2007034],[12.1818347,50.2006829],[12.1818117,50.2006405],[12.1817897,50.2006],[12.181771,50.2005816],[12.181743,50.2005687],[12.1817095,50.200567],[12.1816841,50.2005727],[12.1816494,50.2005698],[12.1816495,50.2005518],[12.1816695,50.2005158],[12.1817014,50.2004995],[12.1817066,50.2004719],[12.1816913,50.2004442],[12.181717,50.2003787],[12.1817529,50.2003107],[12.1818346,50.2002983],[12.1818523,50.2002953],[12.1818932,50.2002771],[12.1819103,50.2002502],[12.1820342,50.2002287],[12.1820505,50.200221],[12.182049,50.2002047],[12.1820626,50.2001905],[12.1820961,50.2001855],[12.1821459,50.2001727],[12.1821618,50.200162],[12.1821585,50.2001465],[12.182144,50.2001349],[12.182176,50.2000898],[12.1821983,50.2000562],[12.1822463,50.2000184],[12.1822524,50.1999841],[12.182279,50.1999716],[12.1823072,50.1999634],[12.1823292,50.1999337],[12.1823425,50.1999037],[12.1823391,50.199889],[12.1823056,50.1998787],[12.1822887,50.1998533],[12.1823136,50.199824],[12.1823535,50.199794],[12.182355,50.199759],[12.1823968,50.1997326],[12.1824367,50.1997257],[12.1824677,50.1997271],[12.182495,50.1997398],[12.1825348,50.1997501],[12.1826129,50.1997487],[12.1825796,50.1997009],[12.1825958,50.1996505],[12.182575,50.1996255],[12.1825044,50.1996005],[12.1824718,50.1996101],[12.182434,50.1995977],[12.1824101,50.1995862],[12.1824019,50.1995629],[12.1824043,50.1995314],[12.1824327,50.1994855],[12.1824634,50.1994737],[12.1825478,50.1994018],[12.1826018,50.1993728],[12.1826165,50.1993692],[12.1826656,50.1993822],[12.1826944,50.1993924],[12.1827139,50.1993875],[12.1827068,50.1993702],[12.1826869,50.1993556],[12.1826818,50.1993409],[12.1826565,50.1993324],[12.1826502,50.1993213],[12.1826932,50.1992922],[12.1827076,50.1992717],[12.1826884,50.1992109],[12.1826877,50.1991887],[12.1827047,50.1991697],[12.1827286,50.1991941],[12.182931,50.1992086],[12.1833603,50.1991487],[12.1837173,50.1991479],[12.1840714,50.1991621],[12.1850417,50.1992173],[12.1856625,50.1995135],[12.185688,50.1995313],[12.1858147,50.1996559],[12.1864078,50.2002147],[12.18658,50.2003702],[12.1876057,50.2003243],[12.1879692,50.2003518],[12.1886315,50.2004444],[12.1892378,50.2005586],[12.1898751,50.2006974],[12.1901462,50.2007636],[12.190403,50.2004841],[12.190647,50.2002339],[12.1907516,50.2001116],[12.1909166,50.199752],[12.1910979,50.1993028],[12.1913869,50.1989409],[12.1914441,50.1988693],[12.1916072,50.1986651],[12.1922989,50.1988697],[12.1926812,50.1989828],[12.193488,50.1992228],[12.1940506,50.1993963],[12.1943774,50.1994881],[12.1948922,50.1995595],[12.1952385,50.1996075],[12.1954087,50.1996104],[12.1957227,50.1995923],[12.1959686,50.1995631],[12.196208,50.1995193],[12.1962857,50.1994723],[12.1965078,50.1993377],[12.1967794,50.199228],[12.1969782,50.1991304],[12.1970857,50.1990661],[12.1971702,50.1989946],[12.1972492,50.1988828],[12.197255,50.198872],[12.1973214,50.1987463],[12.1973929,50.1986184],[12.1976583,50.1983477],[12.1977026,50.1982668],[12.1976981,50.1982495],[12.1976777,50.198252],[12.197667,50.1982405],[12.1976676,50.1982078],[12.1976813,50.1981575],[12.1976509,50.1981421],[12.1976178,50.1981468],[12.1975805,50.1981596],[12.1975424,50.1981448],[12.1975105,50.198114],[12.1975322,50.1980985],[12.1975969,50.1980684],[12.1976023,50.1980371],[12.1975487,50.1980022],[12.1975007,50.1980016],[12.197491,50.1979928],[12.1975117,50.1979662],[12.197563,50.1979377],[12.1975329,50.1979454],[12.1974836,50.1979418],[12.1974685,50.1979371],[12.1974197,50.1979216],[12.1973368,50.1978778],[12.1972878,50.1978614],[12.1972399,50.1978517],[12.1972251,50.1978607],[12.1972178,50.1978782],[12.1972095,50.197886],[12.1971861,50.1978904],[12.1971656,50.1978826],[12.1971455,50.1978525],[12.1970865,50.1977942],[12.1970482,50.1977908],[12.1970336,50.1978013],[12.1970342,50.1978421],[12.1970232,50.1978578],[12.1969904,50.1978605],[12.1969586,50.197851],[12.1969324,50.1978322],[12.1969022,50.1978193],[12.1968806,50.1978192],[12.1968563,50.1978216],[12.1967926,50.197803],[12.1967451,50.1977838],[12.1966903,50.1977758],[12.196643,50.1977406],[12.1966068,50.1977215],[12.1965733,50.1977311],[12.1964733,50.1977124],[12.1963509,50.1976964],[12.1963137,50.1976933],[12.1962793,50.1976972],[12.1962767,50.1977075],[12.1962811,50.1977258],[12.196276,50.1977464],[12.1962494,50.1977581],[12.196189,50.1977651],[12.1961461,50.1977633],[12.1960637,50.1977528],[12.1960549,50.1977403],[12.1960389,50.1977293],[12.1959448,50.197707],[12.1959135,50.1977054],[12.1958933,50.1977061],[12.1958684,50.197714],[12.1958501,50.1977369],[12.195844,50.1977574],[12.1958204,50.1977752],[12.1957657,50.197808],[12.1957398,50.1978052],[12.1956813,50.197782],[12.1956519,50.1977664],[12.1956125,50.1977622],[12.1955236,50.1977735],[12.1954939,50.197778],[12.1954581,50.1977773],[12.1954414,50.1977742],[12.1953815,50.1977464],[12.1953572,50.1977334],[12.1953435,50.1977185],[12.1953236,50.1977167],[12.1952938,50.1977302],[12.1952724,50.1977475],[12.1952559,50.1977582],[12.1952147,50.1977713],[12.1951834,50.1977837],[12.1951627,50.1977804],[12.1951174,50.1977458],[12.195063,50.1977103],[12.1950364,50.1977123],[12.1950177,50.1977215],[12.1950106,50.1977295],[12.1949686,50.1977314],[12.1949111,50.1977225],[12.1948517,50.1977001],[12.1947785,50.1976746],[12.1947524,50.1976654],[12.1947208,50.1976618],[12.1946841,50.1976709],[12.1946718,50.1976905],[12.1946661,50.1977035],[12.1946406,50.1977222],[12.194611,50.197741],[12.1946079,50.1977539],[12.194627,50.19776],[12.1946492,50.1977635],[12.1946553,50.1977826],[12.1946264,50.1977813],[12.1945914,50.197785],[12.1945798,50.1977792],[12.1945247,50.1977727],[12.1944521,50.1977722],[12.1943728,50.1977562],[12.1943441,50.197728],[12.1943123,50.1976915],[12.1942781,50.1977146],[12.1942614,50.1977339],[12.19425,50.1977399],[12.1942275,50.1977442],[12.1942023,50.1977557],[12.1941854,50.1977663],[12.1941341,50.1977702],[12.1941047,50.197778],[12.19408,50.1977771],[12.1940444,50.19777],[12.1940213,50.197757],[12.1939999,50.1977333],[12.1939957,50.1977199],[12.1939639,50.1976945],[12.1939462,50.1976868],[12.193921,50.1976893],[12.1938773,50.197698],[12.1938431,50.1977008],[12.1937877,50.1977239],[12.1937122,50.1977358],[12.1936037,50.1977589],[12.193557,50.1977678],[12.1935284,50.1977508],[12.1935249,50.1977355],[12.1935333,50.1977231],[12.1935206,50.1977093],[12.1934745,50.1977149],[12.1934426,50.197741],[12.1934233,50.1977479],[12.193397,50.1977469],[12.1933734,50.19774],[12.1933362,50.1977177],[12.193329,50.1976774],[12.1933223,50.1976634],[12.1933033,50.1976516],[12.1932762,50.1976507],[12.1932545,50.1976754],[12.1932254,50.1976788],[12.1931653,50.1976597],[12.1931362,50.1976638],[12.1931133,50.1976753],[12.1930943,50.1976919],[12.1930336,50.1977339],[12.1930027,50.1977403],[12.1929777,50.1977393],[12.1929453,50.1977022],[12.1929277,50.1976639],[12.1929174,50.197655],[12.1928932,50.1976494],[12.1928361,50.1976441],[12.1928152,50.1976415],[12.1928022,50.1976464],[12.1927971,50.1976561],[12.1927984,50.197677],[12.1927832,50.1976909],[12.192769,50.197694],[12.1927557,50.1976836],[12.1927565,50.1976549],[12.1927635,50.197638],[12.1927791,50.1976205],[12.1927783,50.1976115],[12.1927583,50.1976],[12.1927428,50.1975833],[12.1927205,50.1975816],[12.1926914,50.197596],[12.1926729,50.197598],[12.1926594,50.1975922],[12.1926413,50.1975898],[12.1926279,50.1975983],[12.1925997,50.1976352],[12.1926015,50.1976496],[12.1925923,50.1976574],[12.1925797,50.197657],[12.1925734,50.1976487],[12.192566,50.1976197],[12.1925516,50.1976057],[12.1925283,50.1976004],[12.192497,50.1976047],[12.1924652,50.1975991],[12.1924315,50.1975998],[12.1924139,50.197592],[12.1924006,50.1975835],[12.1923747,50.1975907],[12.1923636,50.1976084],[12.1923762,50.1976421],[12.1923743,50.1976662],[12.1923538,50.1976746],[12.1923337,50.1976812],[12.1923157,50.1976787],[12.1923001,50.1976638],[12.1922959,50.1976466],[12.1922784,50.1976388],[12.1922541,50.1976424],[12.1921854,50.1976591],[12.1921633,50.1976547],[12.192149,50.1976426],[12.1921496,50.1976344],[12.1921661,50.1976207],[12.1921993,50.1976108],[12.1922064,50.1975923],[12.1921915,50.1975717],[12.192189,50.1975378],[12.1921675,50.197519],[12.1921474,50.197528],[12.1921413,50.1975478],[12.1921244,50.1975578],[12.1920584,50.1975531],[12.1920064,50.1975464],[12.1919897,50.1975374],[12.1919577,50.1975283],[12.191929,50.1975448],[12.1919231,50.197556],[12.1919321,50.1975674],[12.1919346,50.197582],[12.1919335,50.1975928],[12.1919027,50.1976033],[12.1918825,50.1975966],[12.1918592,50.1975795],[12.1918331,50.1975729],[12.1917888,50.1975793],[12.1917469,50.1975943],[12.1917401,50.1976047],[12.1917195,50.197616],[12.1917043,50.1976276],[12.191705,50.197644],[12.1917006,50.1976575],[12.1916771,50.1976736],[12.1916344,50.1976819],[12.1915995,50.1976868],[12.1915863,50.1976967],[12.1916069,50.1977244],[12.1915981,50.1977334],[12.1915673,50.1977403],[12.191546,50.1977415],[12.1915094,50.1977371],[12.1914891,50.197729],[12.1914608,50.1976912],[12.191438,50.1976643],[12.1914201,50.1976576],[12.1913954,50.1976543],[12.1913627,50.1976642],[12.1913401,50.1976696],[12.1913276,50.1976823],[12.1913261,50.1977003],[12.191296,50.1977067],[12.1912506,50.197692],[12.1912312,50.1976872],[12.1912141,50.1976756],[12.1912052,50.1976609],[12.1912204,50.1976399],[12.1912325,50.1976007],[12.1912741,50.1975752],[12.1912695,50.1975411],[12.1912557,50.1975184],[12.1912108,50.1974964],[12.1911609,50.197482],[12.1911414,50.1974899],[12.1911247,50.1974916],[12.1911022,50.1974862],[12.1910828,50.1974774],[12.191046,50.1974672],[12.1910211,50.1974644],[12.1909815,50.1974377],[12.1909661,50.1974249],[12.1909461,50.1974201],[12.1909351,50.1974038],[12.1909325,50.1973815],[12.1909375,50.1973707],[12.1909165,50.1973499],[12.190838,50.1973246],[12.1908193,50.1973377],[12.1908059,50.197356],[12.1907749,50.197364],[12.1907522,50.1973742],[12.1907556,50.1973912],[12.1907513,50.1974044],[12.1907306,50.1974162],[12.1907115,50.1974174],[12.190651,50.1973926],[12.1906101,50.1973662],[12.1906107,50.1973302],[12.1906233,50.197312],[12.1906586,50.1972905],[12.1906595,50.1972743],[12.1906444,50.1972597],[12.1905889,50.1972378],[12.1905359,50.1972097],[12.1905115,50.1972117],[12.1904983,50.1972293],[12.1904624,50.1972418],[12.1904423,50.1972429],[12.1903324,50.1972245],[12.1902776,50.1972039],[12.1902367,50.197199],[12.1902065,50.1971998],[12.1901982,50.197217],[12.1902082,50.1972337],[12.1902611,50.1972568],[12.1902616,50.1972723],[12.1902412,50.1972864],[12.1902156,50.1972951],[12.1901891,50.1972946],[12.1901639,50.1972886],[12.1900977,50.1972331],[12.1900458,50.1972036],[12.19001,50.1971429],[12.1899827,50.197133],[12.1899528,50.1971309],[12.1899081,50.197108],[12.1898903,50.1970943],[12.1898249,50.1970663],[12.1897997,50.1970628],[12.189765,50.1970281],[12.1897357,50.1970049],[12.1897412,50.1969906],[12.1897903,50.1969684],[12.1897806,50.1969309],[12.1897334,50.1968879],[12.1897073,50.1968683],[12.1896828,50.1968814],[12.1896965,50.1969012],[12.1896985,50.1969301],[12.1896902,50.1969479],[12.1896732,50.1969581],[12.1896141,50.1969539],[12.1896007,50.1969596],[12.1895859,50.1969583],[12.1895649,50.1969461],[12.1895205,50.1969058],[12.1895118,50.1968973],[12.1895411,50.1968598],[12.1895639,50.1968307],[12.1895726,50.1967773],[12.189617,50.1967351],[12.1896737,50.1967025],[12.1896791,50.1966791],[12.189706,50.1966595],[12.1897058,50.1966442],[12.1896879,50.196641],[12.1896551,50.196639],[12.1896304,50.196642],[12.189601,50.1966299],[12.1895788,50.196606],[12.189552,50.196593],[12.1895284,50.1965885],[12.1895086,50.1965767],[12.1894862,50.1965479],[12.1894982,50.1965009],[12.1895073,50.1964773],[12.1895078,50.1964497],[12.1895712,50.1963741],[12.1896039,50.196358],[12.1896354,50.1963619],[12.1897057,50.1963845],[12.1897431,50.1963836],[12.1897791,50.1963791],[12.1897899,50.1963571],[12.1897665,50.196329],[12.1896736,50.1962812],[12.1896491,50.1962759],[12.1896219,50.1962626],[12.1895897,50.1962204],[12.189573,50.1962043],[12.1895477,50.1961944],[12.1895275,50.1961598],[12.1895364,50.1961429],[12.1895696,50.1961408],[12.1895973,50.1960876],[12.1895495,50.1960662],[12.1894967,50.1960639],[12.1894658,50.1960657],[12.189435,50.1960727],[12.1893977,50.196067],[12.1893708,50.1960484],[12.1893667,50.1960356],[12.1893832,50.1960119],[12.1893875,50.1959987],[12.1893649,50.1959839],[12.1893228,50.1959949],[12.1888998,50.1955843],[12.1888555,50.195541],[12.1889258,50.1954348],[12.1892517,50.1950028],[12.1893945,50.1948026],[12.1894933,50.1946807],[12.1895093,50.1946582],[12.1898879,50.1943929],[12.1903207,50.1940805],[12.1907026,50.1937893],[12.1909825,50.1935649],[12.1911822,50.1933969],[12.1914269,50.1932035],[12.1915674,50.1930804],[12.1919751,50.1928337],[12.1921552,50.1927256],[12.1924344,50.192549],[12.1929354,50.1922546],[12.1934578,50.1919384],[12.193538,50.1918849],[12.1939186,50.1917354],[12.1951705,50.1912237],[12.1951715,50.1912072],[12.1953268,50.1911842],[12.195491,50.1911255],[12.1956287,50.1910425],[12.195936,50.190884],[12.1962322,50.1908075],[12.1963919,50.1907851],[12.1966537,50.1907763],[12.196815,50.1907487],[12.1969473,50.1906779],[12.1971186,50.1905465],[12.197373,50.1904181],[12.1974678,50.1903411],[12.1975487,50.1902499],[12.1976166,50.1902146],[12.1978537,50.1901678],[12.1980643,50.1901149],[12.1982754,50.1900863],[12.1986172,50.1900872],[12.1989145,50.1900737],[12.1991315,50.190071],[12.1991676,50.1900621],[12.1991963,50.1900407],[12.1996887,50.1896748],[12.2001301,50.1893464],[12.2000411,50.1891311],[12.1999099,50.1886747],[12.2000723,50.1884382],[12.2004648,50.1885102],[12.201186,50.1886426],[12.2015567,50.1879289],[12.2017074,50.1876413],[12.2018085,50.1873917],[12.2018936,50.1871823],[12.2019513,50.1866171],[12.2020474,50.1862174],[12.2020659,50.1859931],[12.2021942,50.1858038],[12.2022255,50.1857378],[12.2022574,50.18567],[12.2022628,50.1855645],[12.2022353,50.185476],[12.2021615,50.1853657],[12.2021124,50.1852742],[12.2020993,50.1851414],[12.2020227,50.1850012],[12.2020802,50.1849254],[12.2020493,50.184847],[12.2021004,50.1847492],[12.2020464,50.1846539],[12.2021175,50.1845442],[12.2020996,50.1845219],[12.2021022,50.1845146],[12.202098,50.184507],[12.2021061,50.1844957],[12.2020901,50.1844697],[12.2020976,50.1844593],[12.2021127,50.1844499],[12.202129,50.184422],[12.2021429,50.1844159],[12.2021499,50.1844065],[12.2021531,50.1843873],[12.202163,50.1843788],[12.2021602,50.1843668],[12.2021711,50.1843596],[12.2021733,50.1843464],[12.2021671,50.1843208],[12.2021845,50.1843079],[12.2021879,50.1842987],[12.202242,50.1842448],[12.2022487,50.1842194],[12.2022824,50.1841977],[12.2023212,50.1841952],[12.2023383,50.1841691],[12.2023531,50.1841362],[12.2023791,50.1841163],[12.2023954,50.1840975],[12.202398,50.1840695],[12.202401,50.1840605],[12.2023909,50.1840406],[12.2024199,50.1840215],[12.2024282,50.1840241],[12.2024612,50.1839991],[12.202483,50.1839894],[12.2024836,50.1839769],[12.2024948,50.1839715],[12.2024944,50.1839612],[12.2025089,50.1839449],[12.2025206,50.1839265],[12.2025405,50.1839168],[12.2025462,50.1839104],[12.2025676,50.1839046],[12.2026058,50.1838724],[12.2026016,50.1838043],[12.2025829,50.1837928],[12.2025958,50.1837776],[12.2026113,50.1837599],[12.2026191,50.1837259],[12.2026341,50.1836998],[12.2026489,50.183694],[12.2026579,50.1836754],[12.2026876,50.183643],[12.2027105,50.1836142],[12.2027073,50.1835999],[12.2027094,50.183591],[12.2027021,50.1835674],[12.2026752,50.1835538],[12.202653,50.1835359],[12.2026441,50.183513],[12.2026209,50.1834919],[12.2026125,50.1834642],[12.2026188,50.183454],[12.2026384,50.1834501],[12.2026555,50.1834515],[12.2026733,50.1834393],[12.2027005,50.1834353],[12.2027358,50.1834374],[12.2027647,50.1834336],[12.2027704,50.1834204],[12.202817,50.1833041],[12.2030094,50.1828509],[12.2032016,50.1823907],[12.2033686,50.1819885],[12.2034043,50.1819152],[12.2036002,50.1814507],[12.2037674,50.1810522],[12.203795,50.1809864],[12.2038996,50.180728],[12.2041835,50.1801731],[12.2044171,50.1797576],[12.2047029,50.1792361],[12.2047923,50.1790797],[12.2053758,50.1779941],[12.205531,50.1777055],[12.2056834,50.1774213],[12.2057602,50.1772797],[12.2060552,50.1767352],[12.2063201,50.1762419],[12.2065444,50.1758381],[12.2068285,50.1753266],[12.2077961,50.1746785],[12.2080272,50.1745236],[12.2082792,50.1743613],[12.208322,50.1740604],[12.2083413,50.173931],[12.2083886,50.1736204],[12.2084065,50.1734842],[12.2084618,50.1730602],[12.2084749,50.1729462],[12.2085321,50.1724483],[12.2085546,50.1722611],[12.208581,50.171969],[12.2086229,50.1714972],[12.2083298,50.1709929],[12.2079612,50.1704888],[12.20763,50.1699889],[12.2074673,50.1697411],[12.2073062,50.169492],[12.2072957,50.1694766],[12.2074869,50.1693362],[12.2079148,50.1690412],[12.2080158,50.1689793],[12.2087422,50.1686786],[12.2090975,50.168653],[12.2095043,50.1686506],[12.2097842,50.1686538],[12.2099769,50.1686626],[12.2102896,50.1686944],[12.2105232,50.1687273],[12.2107689,50.1687531],[12.2113719,50.1687886],[12.2116375,50.1687917],[12.21164,50.1687732],[12.212673,50.1688402],[12.2138305,50.1689156],[12.214261,50.1687723],[12.2150078,50.1685239],[12.2159697,50.1682034],[12.2155598,50.1671433],[12.215172,50.1661402],[12.2150653,50.1657325],[12.2149666,50.1653554],[12.214799,50.1648612],[12.2147004,50.1645793],[12.2144353,50.1641324],[12.2139219,50.1632698],[12.2128894,50.1614927],[12.2119419,50.159861],[12.2113924,50.1589116],[12.209242,50.157647],[12.2076487,50.1567095],[12.2065047,50.156035],[12.205857,50.1556532],[12.2042012,50.1546775],[12.2037039,50.1543851],[12.2018631,50.1533011],[12.2009831,50.1527825],[12.2007935,50.15267],[12.2000503,50.151499],[12.2028598,50.1507207],[12.2034778,50.1505497],[12.2033768,50.1504431],[12.203226,50.1502837],[12.2023258,50.1493331],[12.2015552,50.1485191],[12.20131,50.14826],[12.2020569,50.147432],[12.2033208,50.1460181],[12.2034104,50.1459208],[12.2036196,50.1456913],[12.2019707,50.145735],[12.2008902,50.1457643],[12.2003565,50.1457784],[12.1994436,50.1447586],[12.1989464,50.1442026],[12.1985246,50.1437308],[12.1968283,50.143446],[12.1951612,50.1431663],[12.1950014,50.1416089],[12.1948453,50.1400972],[12.1947824,50.1394714],[12.1946914,50.1385942],[12.1946526,50.1382275],[12.1946498,50.1381993],[12.1946434,50.1381374],[12.1946365,50.1380698],[12.194596,50.1376673],[12.1951391,50.1372629],[12.1962098,50.1364643],[12.1974156,50.1355648],[12.1966942,50.1340378],[12.1962091,50.133018],[12.1961936,50.1330176],[12.1961971,50.1330054],[12.1961966,50.1329889],[12.1961792,50.1329554],[12.1961711,50.1329299],[12.1961477,50.1328927],[12.1961311,50.1328503],[12.1961186,50.1328286],[12.1960971,50.1327763],[12.1960751,50.1327141],[12.196091,50.1326568],[12.1961058,50.1326095],[12.1961272,50.1325341],[12.1961416,50.1324831],[12.1961566,50.1324333],[12.1961772,50.132369],[12.1961839,50.1323537],[12.1962295,50.1323124],[12.196273,50.1322697],[12.1963306,50.1322201],[12.1964116,50.1321505],[12.1964395,50.1321276],[12.1964544,50.1321095],[12.1965252,50.132046],[12.1965855,50.1319968],[12.1966053,50.1319703],[12.1966541,50.1319332],[12.1966938,50.1318703],[12.1966963,50.1318544],[12.1967299,50.1318074],[12.1967708,50.1317313],[12.1968175,50.1316724],[12.1968462,50.1316172],[12.1968782,50.1315589],[12.1968983,50.1315239],[12.1969092,50.1314751],[12.1969351,50.1314038],[12.1969548,50.1313467],[12.1969737,50.1312889],[12.1970048,50.131209],[12.1970252,50.1311599],[12.1970593,50.1310919],[12.1970626,50.1310747],[12.1970317,50.1310505],[12.1969989,50.1310318],[12.1969657,50.1309989],[12.1969842,50.1309763],[12.1969906,50.1309624],[12.1970163,50.1309346],[12.1970424,50.1308852],[12.1970502,50.1308735],[12.1970665,50.1308704],[12.1970765,50.1308553],[12.1970985,50.1308261],[12.1971014,50.1308107],[12.1971107,50.1307955],[12.1971204,50.1307785],[12.1971445,50.1307632],[12.1970647,50.1303573],[12.1967176,50.1285795],[12.1964806,50.1273215],[12.196679,50.1270697],[12.1972045,50.1263997],[12.197356,50.1262063],[12.1973187,50.12614],[12.1971884,50.125909],[12.1969211,50.1254342],[12.1966973,50.1250367],[12.1964913,50.1237938],[12.1964385,50.1234754],[12.1963422,50.1228925],[12.1966113,50.1228843],[12.1966441,50.1228833],[12.1966436,50.1228615],[12.1966432,50.1228504],[12.196634,50.1228311],[12.1966539,50.1227618],[12.1966611,50.1226977],[12.196669,50.1226672],[12.1966615,50.1226368],[12.1966788,50.1225664],[12.1966811,50.122527],[12.1967457,50.1225043],[12.1967569,50.1224844],[12.1967794,50.1224737],[12.1968222,50.1224255],[12.1968257,50.1223936],[12.1968321,50.1223806],[12.1968316,50.1223544],[12.1968649,50.1223138],[12.1969562,50.1222524],[12.1969662,50.1222306],[12.1969796,50.1222201],[12.1969848,50.1222003],[12.1970404,50.1221237],[12.1971055,50.1220826],[12.1972337,50.1219399],[12.1972238,50.1219255],[12.1972381,50.1219079],[12.1972645,50.1219052],[12.1973205,50.1218541],[12.1973196,50.1218368],[12.1974024,50.1217567],[12.1974486,50.1216982],[12.1974726,50.1216829],[12.1975728,50.1215609],[12.1976766,50.1214175],[12.1977592,50.1212934],[12.1978473,50.1211774],[12.1978772,50.121153],[12.1978888,50.1211322],[12.1979404,50.1210705],[12.1980036,50.1209423],[12.1980846,50.1207655],[12.1980885,50.1207438],[12.1981662,50.1207363],[12.1983026,50.1206831],[12.1983796,50.1206273],[12.1984093,50.1205944],[12.1985048,50.1205323],[12.1985405,50.1204992],[12.198658,50.1204233],[12.1987053,50.1203871],[12.1987595,50.1203241],[12.1988339,50.1202646],[12.1988997,50.1201992],[12.1989913,50.1201249],[12.1990651,50.1200484],[12.1991114,50.1199737],[12.1991425,50.1199511],[12.1991499,50.1199132],[12.1991846,50.1198769],[12.1991835,50.1198583],[12.1992263,50.1197829],[12.199229,50.1197595],[12.199243,50.1197414],[12.1992407,50.1197219],[12.1992835,50.1196547],[12.1992752,50.1196425],[12.1992969,50.1196311],[12.1993169,50.1195839],[12.1993302,50.1195776],[12.1993352,50.1195628],[12.1993539,50.1195418],[12.19936,50.1195013],[12.1994312,50.1194377],[12.1994875,50.1193567],[12.199484,50.1193397],[12.1995216,50.1193223],[12.199537,50.1193057],[12.1995395,50.1192786],[12.1995606,50.1192695],[12.1995716,50.1192285],[12.1995966,50.1191818],[12.1995785,50.1191679],[12.1995993,50.119138],[12.1996008,50.1190895],[12.199614,50.1190737],[12.1996065,50.119036],[12.1996104,50.1189769],[12.1996196,50.1189646],[12.1996142,50.1189459],[12.1996223,50.1189151],[12.199625,50.1188818],[12.199618,50.1188715],[12.1996225,50.1188479],[12.19961,50.1188378],[12.1996132,50.1188079],[12.1996066,50.1187909],[12.1996081,50.1187737],[12.1995959,50.1187621],[12.1995881,50.1187231],[12.1995464,50.1186322],[12.1995411,50.1186095],[12.1995276,50.1185984],[12.1995156,50.1185799],[12.199482,50.1185709],[12.199438,50.1185409],[12.199416,50.1185188],[12.1993755,50.118504],[12.1993202,50.1184697],[12.1992962,50.1184452],[12.1992895,50.1184329],[12.1992334,50.1183901],[12.1992159,50.1183593],[12.1992181,50.1183279],[12.1991845,50.1182771],[12.1991617,50.1182292],[12.1991462,50.1182125],[12.1991322,50.1181768],[12.1991343,50.1181557],[12.1991523,50.1181252],[12.1991418,50.1181189],[12.1991244,50.1180921],[12.199118,50.1180712],[12.1990879,50.1180526],[12.1990996,50.1180303],[12.1991283,50.1180217],[12.1991544,50.1179987],[12.1991606,50.1179613],[12.1991842,50.1179408],[12.199189,50.1179164],[12.1991714,50.117877],[12.1992007,50.1178147],[12.1992373,50.1177451],[12.1992722,50.1176878],[12.1993011,50.1176725],[12.1993532,50.1176796],[12.1993654,50.117671],[12.1993391,50.1176396],[12.199359,50.1176132],[12.199375,50.1175423],[12.1994144,50.1174971],[12.1994604,50.1174772],[12.1995388,50.1174551],[12.1995589,50.1174385],[12.1995768,50.1174003],[12.199563,50.1173784],[12.1995678,50.1173422],[12.1995558,50.1173196],[12.1995667,50.1173013],[12.1996114,50.1172815],[12.1996741,50.1172748],[12.1996931,50.1172648],[12.1997127,50.1172098],[12.1997506,50.1171822],[12.1997455,50.1171548],[12.1997789,50.1171448],[12.199797,50.1171496],[12.1998626,50.1171165],[12.199955,50.1171219],[12.2000125,50.1170829],[12.2002194,50.116918],[12.2002304,50.116894],[12.2002771,50.1168614],[12.20032,50.1168218],[12.2003935,50.1167647],[12.2004399,50.1167644],[12.2004654,50.1167506],[12.2005061,50.1167369],[12.2005569,50.1167312],[12.2007012,50.1166928],[12.2007009,50.1166757],[12.200739,50.1166661],[12.2007677,50.1166789],[12.2009615,50.1166533],[12.2010412,50.1166396],[12.2010895,50.1166281],[12.2012203,50.1166146],[12.2012415,50.1166231],[12.2013275,50.1166365],[12.2013892,50.1166526],[12.2014495,50.1166601],[12.2015167,50.1166579],[12.2015368,50.1166232],[12.2015953,50.1165841],[12.2016221,50.1165724],[12.2016558,50.1165365],[12.2016971,50.1164552],[12.2017463,50.1164198],[12.2017802,50.11638],[12.2017976,50.1163704],[12.2018027,50.1163552],[12.2018221,50.1163415],[12.2019756,50.1162749],[12.2021571,50.1161791],[12.2022078,50.1161361],[12.2022824,50.1160269],[12.2023173,50.1160053],[12.2023619,50.1159396],[12.2023933,50.1158643],[12.2023951,50.1158345],[12.2024598,50.1157379],[12.2024826,50.115697],[12.2025432,50.1155601],[12.2025237,50.1155113],[12.2025381,50.1154751],[12.2025464,50.1154314],[12.2025864,50.1153559],[12.202586,50.1153359],[12.2025533,50.1152836],[12.2025251,50.1152608],[12.2025122,50.1152271],[12.2024863,50.1152169],[12.202453,50.1151893],[12.2024495,50.1151705],[12.2024291,50.1151209],[12.2024028,50.1151077],[12.2024064,50.1150908],[12.2023719,50.1150415],[12.2023633,50.1150146],[12.2023232,50.114989],[12.2022823,50.1149278],[12.2022476,50.1149079],[12.2021849,50.1148183],[12.2021364,50.114785],[12.2021029,50.1147555],[12.2020808,50.1147444],[12.202068,50.1147056],[12.202065,50.1146762],[12.2020491,50.1146728],[12.2020568,50.1146216],[12.2020168,50.1145775],[12.2019787,50.1145693],[12.201956,50.1145681],[12.2019222,50.1145527],[12.2018733,50.1145133],[12.2018355,50.114497],[12.2018099,50.1144949],[12.2017845,50.1144908],[12.2017261,50.1144821],[12.2017047,50.1144628],[12.2016816,50.1144209],[12.2016565,50.1144195],[12.2016401,50.1144087],[12.2016248,50.1143869],[12.2015598,50.1143421],[12.2015644,50.1143194],[12.2015035,50.1142697],[12.2014784,50.114248],[12.2014321,50.1142359],[12.2013992,50.1142088],[12.2013773,50.1141796],[12.2013191,50.1141458],[12.2012669,50.1141412],[12.2011861,50.1141024],[12.201155,50.1141031],[12.2011151,50.1140775],[12.2010823,50.114066],[12.2010175,50.114028],[12.2009932,50.114009],[12.2009561,50.1140018],[12.2009004,50.1139763],[12.2008245,50.1139593],[12.200785,50.1139235],[12.2007839,50.1138794],[12.2007697,50.1138511],[12.2007895,50.1138208],[12.2008053,50.1137701],[12.2007509,50.1137663],[12.2007286,50.1137422],[12.2007633,50.1136747],[12.2007865,50.1136457],[12.200799,50.1136151],[12.2007807,50.1136103],[12.2007445,50.1136066],[12.2007054,50.1135964],[12.2007071,50.1135709],[12.2007305,50.1135487],[12.2007506,50.1135367],[12.2007309,50.1134939],[12.2007734,50.1134414],[12.2007461,50.1134129],[12.2007051,50.1133315],[12.2007342,50.1133232],[12.200779,50.1132875],[12.2007355,50.1132797],[12.2006203,50.1132227],[12.2006329,50.113203],[12.2005532,50.1131914],[12.2005227,50.1131913],[12.2005041,50.1131585],[12.2004604,50.1131314],[12.200486,50.1131192],[12.2004667,50.1131127],[12.2004665,50.113081],[12.2004346,50.1130682],[12.2004376,50.113031],[12.2004219,50.1129914],[12.2004372,50.1129791],[12.2004013,50.1129339],[12.2004104,50.112875],[12.2004192,50.1127536],[12.2004017,50.112737],[12.2003876,50.1127124],[12.2003987,50.11267],[12.2003843,50.1126534],[12.200383,50.1126241],[12.2004083,50.1125894],[12.2004142,50.112572],[12.2004235,50.1125648],[12.2004232,50.1125422],[12.2004638,50.1125072],[12.2004696,50.1124894],[12.2004837,50.112471],[12.2005042,50.1124274],[12.2005225,50.1124013],[12.200532,50.1123745],[12.2005646,50.1123362],[12.200564,50.1122989],[12.2005328,50.112272],[12.2005139,50.1122204],[12.2004813,50.1121582],[12.2003984,50.1121063],[12.2003513,50.1120819],[12.2003327,50.1120654],[12.2002349,50.1120139],[12.2001127,50.1119733],[12.2000648,50.1119708],[12.200029,50.1119927],[12.2000056,50.1119978],[12.1999394,50.1119868],[12.1998712,50.1119557],[12.199848,50.1119511],[12.1998345,50.1119431],[12.1998166,50.1119551],[12.1997153,50.1119196],[12.1996998,50.1118989],[12.199686,50.1118352],[12.1996212,50.1118292],[12.1996272,50.111814],[12.199605,50.1117897],[12.1996202,50.1117782],[12.1995934,50.1117554],[12.199597,50.1116896],[12.1995756,50.111667],[12.1995804,50.1116348],[12.1995923,50.1116114],[12.1996244,50.1115929],[12.1996498,50.1115343],[12.199624,50.1115201],[12.1995796,50.1114747],[12.1996065,50.1114463],[12.1996128,50.1114258],[12.1996377,50.1114074],[12.1996503,50.1113794],[12.1996758,50.1113507],[12.1996818,50.111311],[12.1997206,50.1112532],[12.1997049,50.1112315],[12.199684,50.1112162],[12.1996651,50.1111714],[12.1996696,50.1111511],[12.1996596,50.111106],[12.1996394,50.1110953],[12.1996026,50.1110168],[12.1995766,50.1109774],[12.1995456,50.1109551],[12.1995388,50.1109181],[12.1995458,50.1108912],[12.1995653,50.1108755],[12.1995662,50.1108252],[12.1995928,50.1108107],[12.1996009,50.110783],[12.199647,50.1107527],[12.1996652,50.1107348],[12.1996923,50.1107257],[12.199737,50.1106765],[12.1997074,50.1106421],[12.1997203,50.1106018],[12.1998103,50.1105527],[12.1998305,50.1105101],[12.199865,50.1104926],[12.1999116,50.1104958],[12.1999469,50.1104781],[12.1999751,50.110441],[12.2000316,50.1104526],[12.2000685,50.1104476],[12.2001044,50.1104198],[12.2001539,50.1103966],[12.2001676,50.110376],[12.2002333,50.1103607],[12.2002517,50.1103462],[12.2002498,50.110279],[12.2003113,50.1102289],[12.2003317,50.1101949],[12.200333,50.1101773],[12.2003528,50.1101426],[12.2003895,50.1101162],[12.2003862,50.1100921],[12.2003725,50.1100564],[12.2004025,50.1099982],[12.2004018,50.1099649],[12.200487,50.1099003],[12.2006063,50.1098176],[12.2006343,50.1098033],[12.2006654,50.1097771],[12.2007689,50.1097323],[12.2008133,50.1097242],[12.2008712,50.1096909],[12.2008879,50.109669],[12.2009,50.1095961],[12.200899,50.1095634],[12.200904,50.1095408],[12.2008817,50.1094962],[12.2008918,50.1094798],[12.2008655,50.1094272],[12.2008564,50.1093472],[12.2008256,50.1092516],[12.2008133,50.1092358],[12.2008144,50.1092091],[12.2007593,50.1090809],[12.2007436,50.1090718],[12.2006666,50.108952],[12.2006344,50.1088693],[12.2006832,50.1088226],[12.2008034,50.1086958],[12.2009156,50.1086306],[12.200964,50.1085699],[12.201048,50.1085523],[12.2011635,50.1085307],[12.2013843,50.1085145],[12.2017194,50.1085121],[12.2024906,50.1085289],[12.2028896,50.1085144],[12.2030949,50.1084953],[12.2033952,50.108425],[12.2036594,50.1082962],[12.203818,50.1081664],[12.2041416,50.1079003],[12.2041907,50.1078546],[12.2043572,50.1077004],[12.2044683,50.1076087],[12.2046366,50.1075103],[12.2048573,50.1074117],[12.2050994,50.1073318],[12.2053772,50.1072725],[12.2056936,50.1072068],[12.2059363,50.1071344],[12.2061291,50.1070599],[12.2063298,50.1069267],[12.2067067,50.1066131],[12.2069382,50.1064099],[12.2071055,50.1062283],[12.2072713,50.1060427],[12.2072945,50.1060129],[12.2074645,50.1058076],[12.207668,50.1055121],[12.2077852,50.1053379],[12.2078624,50.1051928],[12.2079503,50.1050052],[12.2079715,50.1048896],[12.2079742,50.104681],[12.2080025,50.1043932],[12.2080351,50.1041213],[12.2080694,50.1039043],[12.2081272,50.1037461],[12.2082237,50.1035776],[12.2083849,50.1032865],[12.2084018,50.1032499],[12.2084853,50.10307],[12.2085726,50.1028422],[12.2086526,50.1026497],[12.2087259,50.1025626],[12.2088458,50.1024625],[12.2090602,50.1023609],[12.2093728,50.1021996],[12.2097287,50.1020158],[12.2100697,50.1018335],[12.2101881,50.1017732],[12.2104722,50.1016806],[12.2106135,50.1016575],[12.2107892,50.1016407],[12.211021,50.1016339],[12.2111594,50.1016361],[12.2113177,50.1016515],[12.211444,50.1016758],[12.2115804,50.1017206],[12.2120729,50.1019478],[12.2122192,50.1020097],[12.2123157,50.1020646],[12.2125359,50.1021895],[12.2125745,50.1022114],[12.21318,50.1022353],[12.2131309,50.1022807],[12.2133601,50.1023268],[12.2135241,50.1023631],[12.2136465,50.1023902],[12.2138231,50.1024597],[12.2139739,50.1025623],[12.2141377,50.1026463],[12.2143142,50.1026761],[12.2146827,50.1026741],[12.2148839,50.1027178],[12.2152192,50.1027841],[12.215665,50.1028452],[12.2158855,50.1028569],[12.2161455,50.1028667],[12.2163532,50.1028363],[12.2165108,50.1027724],[12.2166774,50.1026769],[12.2179137,50.1023507],[12.2184299,50.102586],[12.2191692,50.1028744],[12.2193408,50.1028801],[12.2196033,50.1030151],[12.219693,50.1030972],[12.2199589,50.1033408],[12.220537,50.1035547],[12.2211281,50.1037727],[12.2212561,50.1039119],[12.22128,50.1039126],[12.221339,50.1039141],[12.221485,50.1037756],[12.2216094,50.1037182],[12.2218762,50.1036469],[12.2220414,50.103557],[12.2222084,50.1034818],[12.2223887,50.103549],[12.2224386,50.1034898],[12.2225079,50.1034078],[12.2224183,50.1033016],[12.222534,50.1032313],[12.2227143,50.1031566],[12.2229809,50.1030583],[12.2231469,50.1029696],[12.2232771,50.1029358],[12.2234751,50.1028319],[12.2238393,50.1027076],[12.2239281,50.1026774],[12.2240974,50.1026424],[12.2241837,50.102645],[12.224585,50.1025832],[12.224849,50.1025612],[12.2252125,50.1025003],[12.2258587,50.1023497],[12.2262129,50.1023204],[12.2268951,50.1023691],[12.2272812,50.1024114],[12.2276264,50.102449],[12.2280417,50.1024884],[12.2280883,50.1024622],[12.228215,50.1024471],[12.2285315,50.1024335],[12.2286674,50.1023851],[12.2287685,50.1023293],[12.2289345,50.1022069],[12.2289889,50.1022017],[12.2291193,50.1021165],[12.2292136,50.1020333],[12.2293803,50.1018634],[12.2294119,50.1017652],[12.2294152,50.1016673],[12.2293598,50.1016092],[12.2292848,50.1015557],[12.2292202,50.101546],[12.2291135,50.1015238],[12.2290741,50.1014934],[12.2290582,50.1014616],[12.2291157,50.1012774],[12.2291761,50.1010835],[12.2292096,50.1008233],[12.2291932,50.1005348],[12.2289638,50.1003491],[12.228478,50.1001752],[12.2280808,50.09985],[12.2280523,50.0997629],[12.2280253,50.0995073],[12.2279828,50.0993831],[12.228017,50.0992698],[12.2279954,50.0991708],[12.2279911,50.0990511],[12.2279728,50.098969],[12.227972,50.0988926],[12.2279712,50.0988205],[12.2279721,50.098724],[12.2279531,50.0986231],[12.2279209,50.0985542],[12.2279171,50.098508],[12.22788,50.0984401],[12.227778,50.0983109],[12.2277462,50.0982228],[12.2276462,50.0981026],[12.2275626,50.0979213],[12.2274786,50.0977687],[12.2274124,50.0976455],[12.2273747,50.097573],[12.2273633,50.0974917],[12.2273354,50.0974184],[12.2273345,50.097297],[12.2273639,50.0970867],[12.227524,50.0967862],[12.227602,50.0966815],[12.2276511,50.0966057],[12.2277757,50.0964819],[12.2279387,50.0964],[12.2280865,50.0963611],[12.2281896,50.09631],[12.2282369,50.0962991],[12.2283306,50.0962554],[12.228369,50.096243],[12.2284775,50.0962164],[12.2286052,50.096208],[12.2286579,50.0962028],[12.228833,50.096237],[12.2289863,50.0962626],[12.2290887,50.0962968],[12.2292534,50.096373],[12.229307,50.0964083],[12.2293635,50.0964269],[12.2294232,50.096455],[12.2295258,50.0964765],[12.2296627,50.096486],[12.2297917,50.096477],[12.2299748,50.0964545],[12.2301153,50.096435],[12.2302629,50.0963944],[12.2303706,50.0962971],[12.2305406,50.0960359],[12.2305744,50.0959479],[12.2306362,50.0958692],[12.2307603,50.0956577],[12.2308582,50.0954173],[12.2309193,50.095149],[12.2309248,50.0950579],[12.2308997,50.094971],[12.23092,50.094905],[12.2308985,50.0947981],[12.2308896,50.0947142],[12.2309012,50.0946448],[12.2309142,50.0945983],[12.2309627,50.094532],[12.2311844,50.0944016],[12.231419,50.0943319],[12.2318305,50.0942576],[12.232209,50.0941564],[12.2323961,50.0941558],[12.2325747,50.0941902],[12.2326676,50.0942053],[12.2328524,50.0942024],[12.2330942,50.0942375],[12.2335338,50.0942859],[12.2335663,50.0941337],[12.2336534,50.0941576],[12.2337945,50.0941759],[12.234013,50.094226],[12.2342371,50.0942818],[12.2343369,50.0943132],[12.2344656,50.0943536],[12.2345933,50.0943792],[12.2348246,50.0944745],[12.2349348,50.0945051],[12.234995,50.0945153],[12.2350501,50.0945247],[12.2351412,50.0945287],[12.2352349,50.094514],[12.2353299,50.0944991],[12.2355121,50.0944707],[12.2356167,50.0944781],[12.2357787,50.0944832],[12.2358678,50.0945083],[12.2359037,50.0945184],[12.2359278,50.0945328],[12.2360422,50.094563],[12.2361672,50.0946072],[12.2363251,50.0946743],[12.2364177,50.0947245],[12.236491,50.0947505],[12.2367046,50.0949562],[12.2367337,50.0951073],[12.2367416,50.0952099],[12.2367974,50.0952394],[12.2368164,50.0952493],[12.2368425,50.0952631],[12.2369033,50.0953391],[12.2369359,50.0953739],[12.2369529,50.0954233],[12.2369645,50.0954569],[12.2370316,50.095529],[12.2371088,50.095602],[12.2371165,50.0956081],[12.2372052,50.0956784],[12.2372869,50.0956952],[12.237483,50.0957019],[12.2376846,50.0957017],[12.2377449,50.0956828],[12.2378828,50.0956525],[12.2379603,50.095651],[12.2380206,50.0956701],[12.2380799,50.0956764],[12.2381533,50.0956737],[12.2383136,50.0956818],[12.2386283,50.0957322],[12.2387923,50.0957872],[12.2388595,50.0958336],[12.2389768,50.0959666],[12.2390092,50.0960695],[12.2390451,50.0961047],[12.2391261,50.0961338],[12.2391753,50.0961455],[12.2395622,50.0960785],[12.2397857,50.096081],[12.2400096,50.0960989],[12.2401707,50.0961333],[12.2402826,50.09614],[12.240448,50.0962403],[12.2406219,50.0963128],[12.2407001,50.0963454],[12.2408857,50.0962119],[12.2411889,50.09621],[12.2412322,50.0962043],[12.2412966,50.0961583],[12.2413083,50.0961307],[12.2413144,50.0961168],[12.2413229,50.0960819],[12.2413671,50.0960833],[12.2416193,50.09606],[12.2417727,50.0960978],[12.2418706,50.0961145],[12.2421512,50.0962276],[12.2422293,50.0962508],[12.2423639,50.0962769],[12.2424761,50.0963208],[12.2426997,50.0964781],[12.2427881,50.0965751],[12.2429715,50.0967558],[12.2430024,50.0968067],[12.2430334,50.0968262],[12.243173,50.0968892],[12.2432434,50.0968891],[12.2435134,50.09686],[12.2436218,50.0968332],[12.2436898,50.0968077],[12.2439357,50.0967819],[12.2439392,50.0967815],[12.2441079,50.0967779],[12.2442196,50.0967677],[12.2442973,50.0967606],[12.2444432,50.0967271],[12.2444726,50.0966845],[12.2445681,50.0966059],[12.2446215,50.0965437],[12.2446806,50.0964978],[12.2447487,50.096476],[12.2448312,50.0964597],[12.2448576,50.0964694],[12.2449489,50.0964503],[12.2450383,50.0964489],[12.2451918,50.0964794],[12.2452684,50.0965325],[12.2453942,50.0966404],[12.245394,50.0966682],[12.2453953,50.0966701],[12.2454792,50.0967832],[12.2454969,50.0968505],[12.2454836,50.0968815],[12.2454478,50.0969306],[12.2452976,50.0970036],[12.2452086,50.0970607],[12.2451215,50.0971039],[12.2450364,50.0971216],[12.2449743,50.0971157],[12.2448954,50.0970902],[12.2448433,50.0971022],[12.2447935,50.0971136],[12.2447587,50.0971358],[12.2447319,50.0971694],[12.2447814,50.0972076],[12.2449383,50.0972759],[12.2449936,50.0973064],[12.2450754,50.0973228],[12.2451319,50.0973321],[12.245203,50.0973245],[12.2453018,50.0972928],[12.2454254,50.0972453],[12.2455462,50.097187],[12.2458628,50.0970201],[12.2458956,50.0970078],[12.2459716,50.0969792],[12.2460503,50.0969496],[12.246073,50.0969644],[12.2460886,50.0969702],[12.2461534,50.0969938],[12.2462904,50.0970941],[12.2463217,50.0971411],[12.24632,50.0971923],[12.2462981,50.0972386],[12.246301,50.0972978],[12.2462715,50.0973286],[12.2462408,50.0973302],[12.2462177,50.0973817],[12.2462018,50.0973734],[12.2461981,50.0973715],[12.246176,50.0974005],[12.2461554,50.0974861],[12.2461275,50.0975423],[12.2461513,50.0975339],[12.246238,50.0975205],[12.246472,50.0975371],[12.2466126,50.0975308],[12.2466682,50.097503],[12.246849,50.0972907],[12.2470187,50.0969908],[12.2471232,50.0969273],[12.2471614,50.096925],[12.247416,50.0969466],[12.2475034,50.0969358],[12.2475842,50.0968943],[12.2476241,50.0968671],[12.2476944,50.0967132],[12.2478039,50.0964579],[12.2478098,50.0963854],[12.2477115,50.0962809],[12.2475888,50.0961676],[12.247565,50.0960778],[12.2475751,50.0960336],[12.2476269,50.0959535],[12.2476573,50.0959277],[12.2478004,50.0958461],[12.2479938,50.095741],[12.2479301,50.0956776],[12.2478371,50.0956084],[12.2477542,50.0955589],[12.2475685,50.0955355],[12.2475293,50.0955299],[12.2474615,50.0955147],[12.2474282,50.095525],[12.2469386,50.0957673],[12.2468469,50.0957886],[12.2467952,50.0957918],[12.2467578,50.095787],[12.2467214,50.0957449],[12.2468872,50.0954904],[12.2469578,50.0954126],[12.2470306,50.0952394],[12.2470362,50.095183],[12.2469529,50.0951211],[12.2468267,50.0950899],[12.2467039,50.095113],[12.2463478,50.0952865],[12.2462901,50.0952988],[12.2462048,50.0952741],[12.2461807,50.0952582],[12.2461142,50.0951577],[12.2459897,50.0949995],[12.2458981,50.0949625],[12.2457225,50.0949398],[12.245649,50.094969],[12.2456071,50.0951112],[12.2455997,50.0951745],[12.245585,50.0955804],[12.2455445,50.0956618],[12.2454794,50.0957117],[12.2454126,50.0957267],[12.2453864,50.0957307],[12.245264,50.0957031],[12.2452118,50.0956486],[12.2451618,50.0955871],[12.2450772,50.0955378],[12.2448397,50.0954976],[12.244618,50.0954563],[12.2445372,50.0954043],[12.2444844,50.0953078],[12.2444424,50.0950841],[12.2443731,50.0949032],[12.2443385,50.0947132],[12.2443791,50.0945474],[12.2443987,50.09433],[12.2444462,50.0940156],[12.2445526,50.0938781],[12.2448939,50.0936764],[12.2451951,50.0935767],[12.2453811,50.0935034],[12.2455189,50.0934327],[12.2459306,50.0930306],[12.2459572,50.0929305],[12.2459383,50.0927717],[12.2459176,50.0926648],[12.2459568,50.0925325],[12.2460394,50.0924158],[12.2461953,50.0923153],[12.2463094,50.0922643],[12.246404,50.0922347],[12.2469244,50.0920972],[12.2470814,50.0920828],[12.2472675,50.0921755],[12.2474885,50.0922565],[12.2475259,50.0922933],[12.2475795,50.0924634],[12.247648,50.0925908],[12.247676,50.0926211],[12.247847,50.0927127],[12.2479908,50.09278],[12.2481209,50.0928217],[12.2482534,50.0928087],[12.2483758,50.0927576],[12.2483996,50.0927131],[12.248407,50.0926122],[12.2483297,50.0925],[12.2481996,50.0924012],[12.2481135,50.0923611],[12.2480964,50.0922659],[12.2481296,50.0922388],[12.2483031,50.0920714],[12.248422,50.0919015],[12.2484486,50.0917961],[12.2484713,50.0915784],[12.2485039,50.0913868],[12.2484787,50.0911395],[12.2484619,50.091039],[12.2484028,50.0909113],[12.248428,50.0908554],[12.2485039,50.0907957],[12.2485797,50.0907764],[12.2486738,50.0907737],[12.248741,50.0908045],[12.2488417,50.0909091],[12.248912,50.0909717],[12.2490061,50.0910262],[12.2493128,50.0910769],[12.2494377,50.0910679],[12.2495013,50.0910387],[12.2495979,50.0909847],[12.249949,50.090839],[12.2504495,50.0907212],[12.2508944,50.0906629],[12.2511396,50.0906606],[12.251262,50.0906633],[12.2515897,50.0907428],[12.2516457,50.0907639],[12.2517667,50.0908698],[12.251766,50.090953],[12.2515236,50.0910367],[12.2514684,50.0910971],[12.2514883,50.0911725],[12.2514995,50.0911949],[12.2517877,50.0912528],[12.2518223,50.0913073],[12.2517936,50.0913834],[12.2517219,50.0914393],[12.2514278,50.0915829],[12.2513383,50.0916866],[12.2513274,50.0917756],[12.2514107,50.0918876],[12.2515163,50.0919509],[12.2516779,50.0919632],[12.2517545,50.0919558],[12.2518377,50.0919233],[12.2522081,50.0916814],[12.2523987,50.0915804],[12.2524826,50.0914191],[12.2524743,50.0913881],[12.2524424,50.0913087],[12.2523868,50.0912084],[12.252349,50.091113],[12.2523543,50.0909822],[12.2523872,50.0908987],[12.2524652,50.0907971],[12.2526761,50.0906544],[12.2529898,50.0904607],[12.2532196,50.0902994],[12.2533567,50.0901614],[12.2534651,50.0900339],[12.2534644,50.0899845],[12.2534301,50.0899603],[12.2533381,50.0898376],[12.2533231,50.0897792],[12.2532185,50.0897016],[12.2531951,50.0896987],[12.2531577,50.0896859],[12.2531895,50.0896309],[12.253272,50.0894884],[12.253194,50.0893807],[12.2530031,50.0891505],[12.2527201,50.0888888],[12.2527474,50.0888893],[12.2527523,50.0888545],[12.253059,50.088074],[12.253107,50.0878595],[12.2531063,50.0876757],[12.2530996,50.0876034],[12.253094,50.0875785],[12.2530727,50.0875314],[12.2530569,50.0874712],[12.2529912,50.0874268],[12.2529699,50.0873981],[12.2530232,50.087369],[12.2536924,50.0870029],[12.2537271,50.0869805],[12.2537589,50.0869571],[12.2542702,50.0866068],[12.2543234,50.086403],[12.2543895,50.0863667],[12.2544064,50.0863579],[12.2558938,50.0856682],[12.2559848,50.0856134],[12.2560422,50.0855652],[12.2561779,50.0855179],[12.2562122,50.0854997],[12.2562221,50.0854871],[12.2563974,50.0854706],[12.2565406,50.0854316],[12.2567016,50.0854011],[12.2568414,50.0853591],[12.2570114,50.085323],[12.2570794,50.0853038],[12.2571871,50.0852418],[12.2572627,50.0852478],[12.2572929,50.0852355],[12.2573477,50.0851033],[12.2573712,50.0850803],[12.2574108,50.085072],[12.2574267,50.0850471],[12.257401,50.0850071],[12.2574067,50.084954],[12.2574845,50.0849023],[12.2574902,50.0848325],[12.2575624,50.0847445],[12.2576455,50.0847025],[12.2576999,50.0846616],[12.2577921,50.0846514],[12.2579859,50.0845832],[12.2580483,50.0845835],[12.258108,50.0845959],[12.2582002,50.0845469],[12.2582905,50.0845297],[12.2583487,50.0845202],[12.2584152,50.0844674],[12.2584352,50.0844298],[12.2584756,50.0843917],[12.2585331,50.0843665],[12.2585429,50.0843432],[12.2585973,50.0843197],[12.2587103,50.084318],[12.2588002,50.0843245],[12.2588339,50.0843241],[12.258968,50.0842957],[12.2590489,50.0843192],[12.2591188,50.084287],[12.2591388,50.0842545],[12.2591199,50.0842208],[12.2591244,50.0841948],[12.2591766,50.0841272],[12.2592042,50.0840413],[12.2592401,50.0838719],[12.259254,50.0837497],[12.2593054,50.083514],[12.2593077,50.0834497],[12.2592854,50.0834059],[12.2592238,50.0833508],[12.259177,50.083297],[12.2590878,50.0832492],[12.25903,50.0832308],[12.2589729,50.0832262],[12.2589397,50.0832044],[12.2589249,50.0831799],[12.258945,50.083159],[12.2589941,50.0831469],[12.2590296,50.0831219],[12.2590504,50.0830923],[12.2590666,50.0830109],[12.2590727,50.0829393],[12.2591286,50.0829357],[12.2591951,50.0829149],[12.2591932,50.0829103],[12.2592195,50.0829014],[12.2611483,50.0823351],[12.2625604,50.081923],[12.263363,50.0815525],[12.2634475,50.0814662],[12.2641373,50.0807412],[12.2641837,50.0806883],[12.2642,50.0806541],[12.2645238,50.0799757],[12.2645487,50.0799502],[12.2654564,50.0790123],[12.2668144,50.0784394],[12.267832,50.0781874],[12.2684166,50.0780705],[12.2699979,50.0777529],[12.2703075,50.0776945],[12.2723108,50.0773031],[12.273155,50.0769372],[12.2738951,50.0768659],[12.2747444,50.076783],[12.27485,50.0767341],[12.2753861,50.0764845],[12.2754108,50.076473],[12.2753554,50.0764656],[12.275338,50.0764809],[12.2753199,50.0764901],[12.2752889,50.0764695],[12.2753127,50.0764326],[12.2752821,50.0764256],[12.2752689,50.0764018],[12.2752568,50.0763698],[12.2752443,50.0763698],[12.27521,50.0763773],[12.2751922,50.0763756],[12.2751733,50.076381],[12.2751612,50.0763987],[12.2751317,50.076412],[12.2750871,50.0764006],[12.2750516,50.0764035],[12.275029,50.0763916],[12.2750067,50.0763943],[12.2749821,50.076379],[12.2749296,50.0763839],[12.2749126,50.0763698],[12.2749201,50.0763538],[12.2749334,50.0763402],[12.2749141,50.0763325],[12.2748876,50.0763502],[12.2748718,50.0763356],[12.2748703,50.0763172],[12.2748631,50.0763068],[12.2748174,50.0762993],[12.2747879,50.0763216],[12.2747603,50.0763359],[12.2747255,50.0762951],[12.274724,50.0762675],[12.2746701,50.0761945],[12.2746753,50.0761666],[12.2746534,50.0761426],[12.2746141,50.0761203],[12.2745736,50.0761072],[12.2745738,50.0760781],[12.2746114,50.0760599],[12.2745971,50.0760342],[12.2745279,50.0760095],[12.2745298,50.0759816],[12.2745491,50.0759678],[12.2745067,50.0759408],[12.2744727,50.0759083],[12.2744138,50.0758918],[12.2743579,50.0759117],[12.2743004,50.0758933],[12.2742411,50.0758792],[12.274209,50.075864],[12.2741897,50.0758412],[12.2742045,50.0758036],[12.2741243,50.0757616],[12.2740575,50.0757856],[12.2740322,50.0757643],[12.273977,50.0757638],[12.2739543,50.0757677],[12.2739509,50.0757374],[12.2739732,50.0756586],[12.2740087,50.0756319],[12.2739781,50.0756062],[12.2739369,50.0756127],[12.2738969,50.0755761],[12.2739109,50.075554],[12.2739059,50.0755155],[12.2738459,50.0754357],[12.2738349,50.0753986],[12.2739075,50.0753945],[12.2739596,50.0753547],[12.2739672,50.0753217],[12.2739483,50.0752989],[12.2739596,50.075287],[12.2739732,50.0752853],[12.2738863,50.0752431],[12.2739207,50.0751689],[12.2738837,50.075112],[12.2738901,50.0750911],[12.2738345,50.0750753],[12.2737956,50.0750571],[12.2737113,50.0750479],[12.273663,50.0750457],[12.2736581,50.0750346],[12.2735987,50.0750293],[12.2735848,50.0749798],[12.2734876,50.0749655],[12.2734627,50.0749718],[12.2734261,50.0749216],[12.2734057,50.074883],[12.2733818,50.0748561],[12.2734128,50.0748408],[12.2733622,50.074834],[12.2733339,50.0748175],[12.2733679,50.0747824],[12.2733652,50.0747601],[12.2733361,50.0747448],[12.2733172,50.0747186],[12.2732349,50.0747227],[12.2732043,50.0747101],[12.2731891,50.0746631],[12.2731604,50.0746359],[12.2731797,50.0746206],[12.2731578,50.0745949],[12.2731298,50.0745416],[12.2731559,50.0745348],[12.2731801,50.0745413],[12.2732367,50.0745212],[12.2732991,50.0744868],[12.2733135,50.0744606],[12.2732152,50.0744759],[12.2731861,50.0744535],[12.2731423,50.0744441],[12.273069,50.074424],[12.2730225,50.074366],[12.2729794,50.0743575],[12.2729673,50.0743126],[12.2729602,50.0742971],[12.272942,50.0742979],[12.2729348,50.0743165],[12.2729099,50.0743015],[12.2728884,50.0742799],[12.2728887,50.0742537],[12.2728619,50.0742154],[12.2727928,50.074165],[12.272781,50.0741259],[12.2726922,50.074108],[12.2727032,50.0740939],[12.2727036,50.0740687],[12.2726979,50.0740308],[12.272574,50.073987],[12.2725607,50.0739637],[12.2725256,50.0739579],[12.2724942,50.0739639],[12.2724833,50.0739843],[12.2724455,50.0740005],[12.2724364,50.0739867],[12.272444,50.0739511],[12.2724194,50.0739309],[12.2724349,50.0739152],[12.2724682,50.0739057],[12.2724682,50.0738621],[12.2724417,50.0738485],[12.2724383,50.0738014],[12.2723998,50.0738043],[12.2723658,50.073848],[12.2723235,50.0738422],[12.272297,50.073806],[12.272334,50.0737801],[12.2723427,50.0737578],[12.2723382,50.0737401],[12.272382,50.0737185],[12.2723711,50.0737013],[12.2722826,50.0737085],[12.2722505,50.0737204],[12.2722313,50.073702],[12.2722139,50.0736693],[12.2722222,50.0736537],[12.2721923,50.0736331],[12.2722309,50.0736033],[12.2722256,50.0735885],[12.2722078,50.0735788],[12.2721579,50.0735912],[12.2721122,50.0735659],[12.2720778,50.0735596],[12.2720344,50.0735366],[12.2720374,50.0735136],[12.2720132,50.0734939],[12.2719769,50.0734833],[12.2719943,50.0734474],[12.2719875,50.0734411],[12.2719822,50.0734166],[12.2719547,50.0734049],[12.2719033,50.0734231],[12.2718848,50.0734457],[12.2718594,50.0734411],[12.2718515,50.0734253],[12.2718126,50.073417],[12.2717899,50.0734064],[12.2718198,50.0733926],[12.2718182,50.0733416],[12.2718069,50.0732987],[12.2717665,50.0732761],[12.2717657,50.073266],[12.2717499,50.0732504],[12.2717389,50.0732259],[12.2717397,50.0732002],[12.2716369,50.0731704],[12.2716236,50.0731568],[12.2716199,50.0731335],[12.271624,50.0731195],[12.2716667,50.073101],[12.2716936,50.0730989],[12.2717019,50.073086],[12.2716811,50.0730598],[12.2716599,50.073046],[12.2716373,50.073045],[12.2715621,50.0730135],[12.2715352,50.073012],[12.2714517,50.0730239],[12.2714317,50.0730174],[12.2713962,50.0730268],[12.2713743,50.0730247],[12.2713399,50.072998],[12.271327,50.072981],[12.2713066,50.0729681],[12.2713089,50.0729534],[12.2712957,50.0729286],[12.2712443,50.0728954],[12.2712454,50.072884],[12.2712787,50.0728704],[12.2712787,50.0728515],[12.2711808,50.0728212],[12.2711642,50.0727967],[12.2711555,50.0727693],[12.27112,50.0727559],[12.2710833,50.0727564],[12.2710398,50.0727441],[12.2710281,50.0727188],[12.2709994,50.0726929],[12.271007,50.0726662],[12.2709737,50.072648],[12.2709643,50.0726204],[12.270965,50.0726041],[12.2709854,50.0725954],[12.2710247,50.0725954],[12.2710538,50.0725714],[12.271044,50.072553],[12.2710448,50.0725275],[12.2710104,50.0725122],[12.2709934,50.0724841],[12.2709673,50.0724596],[12.2708936,50.0724152],[12.2708437,50.0723931],[12.2707806,50.0724009],[12.2707621,50.0723975],[12.2707648,50.07239],[12.2707534,50.0723796],[12.2707296,50.0723466],[12.270724,50.0723209],[12.2707542,50.0723116],[12.2707897,50.0722884],[12.2707893,50.0722721],[12.2707534,50.0722585],[12.2707206,50.0722554],[12.2707047,50.0722401],[12.2707266,50.0722197],[12.2707062,50.0722088],[12.2706892,50.0722062],[12.2706227,50.0722532],[12.2705437,50.0722437],[12.2705229,50.0722568],[12.270487,50.0722411],[12.2704213,50.0722462],[12.2703914,50.0722367],[12.2704099,50.0721955],[12.2703933,50.0721834],[12.2703442,50.0721834],[12.270317,50.0721892],[12.2703,50.0721787],[12.2702985,50.0721661],[12.2702875,50.0721569],[12.2702894,50.0721356],[12.27032,50.0721205],[12.2702902,50.0720851],[12.2703117,50.0720694],[12.2703272,50.0720415],[12.2703121,50.0720272],[12.2702856,50.0720352],[12.2702633,50.0720364],[12.2702112,50.0720131],[12.2701624,50.0719956],[12.2701269,50.0720005],[12.270105,50.071983],[12.2701409,50.0719487],[12.2701066,50.0719231],[12.2700869,50.0719319],[12.2700506,50.0719222],[12.2700328,50.0719088],[12.2700298,50.0718943],[12.2699796,50.0718686],[12.2699357,50.0718955],[12.2699025,50.0719088],[12.2698979,50.0719263],[12.2698707,50.0719379],[12.2698586,50.0719294],[12.269833,50.0719229],[12.2698107,50.0719125],[12.2698057,50.0718829],[12.2698284,50.0718598],[12.2698235,50.0718392],[12.2697986,50.0718268],[12.2697706,50.0717866],[12.2697064,50.0717652],[12.2696924,50.0717813],[12.2696656,50.0718261],[12.2696368,50.0718322],[12.2696134,50.0718261],[12.2695957,50.0717815],[12.2696047,50.0717759],[12.2695873,50.0717415],[12.2695359,50.0717403],[12.2695356,50.0717187],[12.2695019,50.0717046],[12.2695031,50.071676],[12.26948,50.0716648],[12.2694615,50.0716721],[12.269446,50.0716588],[12.2694271,50.07161],[12.2693961,50.0716066],[12.2693776,50.0716399],[12.2693587,50.0716292],[12.2693727,50.0716115],[12.2693383,50.0715484],[12.2692918,50.0715225],[12.269285,50.0714902],[12.2692612,50.0714737],[12.2692994,50.0714349],[12.2692631,50.0714337],[12.2692318,50.0714053],[12.2691842,50.0713707],[12.2691702,50.0713981],[12.269132,50.0713932],[12.2690648,50.07136],[12.2690111,50.0713573],[12.2689816,50.0713433],[12.2689522,50.0713416],[12.2689212,50.0713239],[12.268917,50.0713088],[12.2689344,50.0712964],[12.2689253,50.0712744],[12.2689045,50.0712637],[12.2688554,50.0712501],[12.2688622,50.0712353],[12.2689057,50.0712111],[12.2689038,50.0711968],[12.268869,50.0711948],[12.2688324,50.0711846],[12.2687791,50.0711575],[12.268733,50.0711456],[12.2687205,50.0711284],[12.2687349,50.0710927],[12.2687118,50.0710833],[12.2686483,50.0710777],[12.2686287,50.0710554],[12.2685924,50.0710476],[12.2685543,50.0710653],[12.2685153,50.0710534],[12.2684851,50.0710139],[12.26849,50.0709821],[12.2684662,50.0709727],[12.2684182,50.0709717],[12.268388,50.070947],[12.2683578,50.0709387],[12.2682916,50.0709472],[12.2682607,50.0709387],[12.2682421,50.0709462],[12.2682085,50.070938],[12.2681719,50.070915],[12.2681824,50.0708941],[12.2681945,50.0708475],[12.2681745,50.0708308],[12.2681454,50.0708172],[12.2681405,50.0707784],[12.2681862,50.0707811],[12.2682289,50.0707782],[12.2682482,50.070769],[12.2683117,50.0707668],[12.2682905,50.0707428],[12.2682644,50.0707003],[12.2682535,50.0706901],[12.2682584,50.07067],[12.2682735,50.0706533],[12.268227,50.0706057],[12.2681806,50.0705696],[12.2681345,50.0705466],[12.2680608,50.0704752],[12.2680256,50.0704622],[12.2680184,50.0704309],[12.2679723,50.0704115],[12.267924,50.0704119],[12.2678915,50.0704347],[12.2678956,50.0704779],[12.2678643,50.0704789],[12.2678318,50.0704347],[12.2677589,50.0704352],[12.2677196,50.0704134],[12.2677199,50.070393],[12.2676818,50.070369],[12.2675896,50.0703634],[12.2675873,50.0703465],[12.2676187,50.0703312],[12.267607,50.070304],[12.267585,50.0702737],[12.2675903,50.0702538],[12.2675771,50.0702393],[12.2675847,50.0702051],[12.2676081,50.0701864],[12.2676051,50.070167],[12.2675386,50.070157],[12.2675374,50.0701204],[12.2674875,50.070101],[12.2674494,50.0700535],[12.2674184,50.0700334],[12.2674131,50.0700016],[12.2673459,50.0699887],[12.2672998,50.0700047],[12.2673107,50.0699458],[12.2672971,50.0699203],[12.2672945,50.0698823],[12.2673561,50.069873],[12.2673356,50.0698422],[12.2672703,50.0698085],[12.2672057,50.0697925],[12.267163,50.0697348],[12.2671169,50.0697355],[12.2670931,50.0697171],[12.2670855,50.0696933],[12.2670402,50.0696989],[12.2670062,50.06968],[12.2670107,50.0696521],[12.2669918,50.0696366],[12.2669869,50.0696099],[12.2670016,50.0695961],[12.2670262,50.0695837],[12.267013,50.0695459],[12.2669676,50.0695473],[12.2669158,50.06954],[12.2669185,50.0695282],[12.2669181,50.0695056],[12.2669003,50.0694969],[12.2668883,50.0694721],[12.2668648,50.0694724],[12.2668395,50.0694569],[12.2668184,50.0694464],[12.2667983,50.0694469],[12.2667964,50.0694253],[12.2667594,50.0694299],[12.2667333,50.0694394],[12.2666827,50.0694062],[12.2666925,50.0693829],[12.2667311,50.0693545],[12.2667692,50.0693511],[12.2667904,50.0693349],[12.2667726,50.0693242],[12.266745,50.0693218],[12.2667326,50.0693014],[12.2667314,50.0692813],[12.2666736,50.0692063],[12.2666846,50.0691459],[12.2666665,50.0691142],[12.2666309,50.0691265],[12.2665591,50.0691139],[12.2665436,50.0691061],[12.2665406,50.0690622],[12.2665047,50.0690455],[12.2664828,50.0690559],[12.2664405,50.0690307],[12.2663884,50.0690356],[12.2663796,50.0690207],[12.2663669,50.0690159],[12.2663656,50.0689823],[12.2663438,50.0689556],[12.2663463,50.0689434],[12.2663225,50.068912],[12.2662973,50.0688991],[12.2662944,50.0688557],[12.2663063,50.0688268],[12.2662807,50.0688178],[12.2662564,50.0688278],[12.2662342,50.0688186],[12.2661824,50.068818],[12.2661574,50.0688086],[12.2661122,50.068827],[12.2660903,50.0688278],[12.2660676,50.0688152],[12.2660716,50.0688026],[12.2660086,50.0687503],[12.2659833,50.0687006],[12.2660176,50.0686746],[12.2659976,50.0686576],[12.2659711,50.0686662],[12.2659243,50.0686495],[12.2658734,50.0685979],[12.2658678,50.0685728],[12.265845,50.0685704],[12.2658132,50.0685478],[12.2658394,50.0685362],[12.2658878,50.0685328],[12.2658472,50.0684628],[12.2658391,50.068424],[12.2657935,50.0683979],[12.2657914,50.0683651],[12.2657676,50.0683619],[12.2657155,50.0683262],[12.2657008,50.0683112],[12.265669,50.0683128],[12.2656403,50.0682878],[12.2656263,50.0682437],[12.2655598,50.068191],[12.2655635,50.0681708],[12.2655461,50.0681656],[12.2654961,50.0681327],[12.2654552,50.0681267],[12.2654206,50.0681295],[12.2653981,50.0681061],[12.2654172,50.0680898],[12.2654156,50.0680592],[12.2653797,50.068037],[12.2653432,50.0679831],[12.2653229,50.0679652],[12.2652961,50.0679017],[12.2652661,50.0679041],[12.2652268,50.0678969],[12.265239,50.0678519],[12.265233,50.0678412],[12.2651616,50.0678266],[12.2650988,50.0678304],[12.2650554,50.067839],[12.2650202,50.0678178],[12.2650118,50.067806],[12.2649877,50.0678066],[12.2649481,50.0678172],[12.2649119,50.0678186],[12.2648963,50.0677976],[12.2648885,50.0677775],[12.2648236,50.0677751],[12.2647824,50.0677365],[12.2647515,50.067725],[12.2646831,50.0676714],[12.2646772,50.0676591],[12.2646326,50.0676379],[12.2646154,50.0676091],[12.2646176,50.0675301],[12.2646035,50.0675195],[12.2645736,50.0675167],[12.2645218,50.0675203],[12.2645243,50.0675241],[12.2644815,50.0675273],[12.2644562,50.0675129],[12.264435,50.0674688],[12.2643963,50.0674418],[12.2643511,50.0674402],[12.2643392,50.0674502],[12.2642805,50.0674452],[12.2642552,50.06746],[12.2642256,50.0674879],[12.2642106,50.0674863],[12.2641878,50.0674634],[12.2641626,50.0674472],[12.2641547,50.0674272],[12.2641254,50.0674145],[12.2640646,50.0674099],[12.2639931,50.0673773],[12.2639656,50.0673615],[12.2639432,50.067342],[12.2639151,50.0673234],[12.2638807,50.0673348],[12.2638514,50.0673258],[12.2638411,50.0673142],[12.2638842,50.0672751],[12.2638642,50.0672439],[12.2638249,50.0672551],[12.2637787,50.0672509],[12.2636966,50.0672366],[12.2636669,50.0672657],[12.2636526,50.0672831],[12.2636055,50.0672819],[12.2635724,50.0672631],[12.2635864,50.0672529],[12.2635933,50.0672122],[12.2635714,50.0672014],[12.2635406,50.0672158],[12.2635137,50.0672236],[12.2634956,50.0672058],[12.2634619,50.0671918],[12.2634198,50.0672],[12.2633879,50.0671886],[12.2633645,50.0671623],[12.2634232,50.0671655],[12.2634363,50.0671571],[12.2634348,50.0671377],[12.2634357,50.0671183],[12.2634326,50.0670994],[12.2634226,50.0670932],[12.2634004,50.0670856],[12.2633851,50.0670916],[12.2633758,50.0670996],[12.2633433,50.0671018],[12.2633024,50.0670802],[12.2633009,50.0670676],[12.2633258,50.0670556],[12.263352,50.0670321],[12.2633502,50.0670237],[12.2632762,50.0669842],[12.2632859,50.0669742],[12.2633402,50.0669492],[12.2633471,50.066936],[12.263373,50.0669277],[12.2633932,50.0669151],[12.2634026,50.0669041],[12.2633976,50.0668947],[12.2634204,50.066861],[12.263441,50.0668468],[12.2635287,50.0668518],[12.2635484,50.066851],[12.2635646,50.0668085],[12.2635724,50.0667913],[12.263597,50.0667885],[12.2635924,50.0667809],[12.2635802,50.0667773],[12.2635824,50.0667641],[12.2635683,50.0667523],[12.2635374,50.0667525],[12.2635175,50.0667553],[12.2634869,50.066748],[12.2634638,50.066724],[12.2634828,50.0667118],[12.2634922,50.0666785],[12.2634716,50.0666373],[12.2634557,50.0666206],[12.263421,50.0666088],[12.2634126,50.0666118],[12.2633511,50.066592],[12.263318,50.066573],[12.2633012,50.0665623],[12.2633065,50.0665483],[12.2632937,50.0664994],[12.2632578,50.0664283],[12.2632697,50.0664169],[12.2632837,50.0663288],[12.2632781,50.0662903],[12.2632597,50.0662775],[12.2632541,50.0662566],[12.263264,50.0662454],[12.2632625,50.0662188],[12.2632453,50.0661899],[12.2632257,50.0661777],[12.263216,50.0661643],[12.2631873,50.0661563],[12.263167,50.066144],[12.2631576,50.0661258],[12.2631448,50.0661102],[12.2631302,50.0660747],[12.2631149,50.0660627],[12.2630612,50.0660685],[12.2630443,50.0660537],[12.2630434,50.0660371],[12.26303,50.0660036],[12.2630034,50.0659888],[12.2630016,50.06598],[12.2629797,50.0659712],[12.2629398,50.0659399],[12.2629376,50.0659311],[12.2629195,50.0659169],[12.2628808,50.0659041],[12.2628611,50.0658926],[12.2628596,50.0658808],[12.2628383,50.0658654],[12.2628128,50.0658576],[12.2627756,50.0658291],[12.2627594,50.0658055],[12.2627425,50.0657995],[12.2627307,50.0657867],[12.2627382,50.0657506],[12.2627878,50.065735],[12.2628449,50.0657105],[12.2628437,50.0656945],[12.2628315,50.0656709],[12.2628128,50.0656899],[12.2627669,50.0656735],[12.2627503,50.0656536],[12.2626882,50.0656074],[12.2626539,50.0656264],[12.262588,50.0655721],[12.2625238,50.0655575],[12.2624766,50.065524],[12.2623555,50.0655128],[12.2623159,50.0655146],[12.2622884,50.065508],[12.2623228,50.0654541],[12.2622813,50.0654307],[12.2622329,50.0653874],[12.2622413,50.0653633],[12.2622307,50.0653375],[12.2621599,50.0653008],[12.262148,50.0652834],[12.2621246,50.065269],[12.2621012,50.0652445],[12.2621081,50.0652297],[12.262128,50.0652137],[12.2621311,50.0651913],[12.2621102,50.0651686],[12.2620023,50.065141],[12.2619829,50.0651412],[12.2619417,50.0651656],[12.2619245,50.0651696],[12.2618428,50.0651556],[12.2617878,50.0651638],[12.261751,50.0651903],[12.2616727,50.0652227],[12.2616477,50.0652267],[12.2616384,50.0652031],[12.2616415,50.0651854],[12.2615947,50.0651778],[12.2615869,50.0651887],[12.2615616,50.0651899],[12.2614773,50.065149],[12.261468,50.0651027],[12.2614489,50.0650582],[12.2614567,50.065026],[12.261477,50.0650063],[12.2614754,50.0649899],[12.2614811,50.0649731],[12.2614723,50.0649635],[12.2614258,50.0649625],[12.2614058,50.0649511],[12.2614183,50.0649116],[12.2614155,50.0648916],[12.26136,50.0648785],[12.2612432,50.0648128],[12.261218,50.0648102],[12.2611911,50.0647844],[12.2611793,50.0647794],[12.2611715,50.0647403],[12.2611453,50.0647002],[12.2611281,50.064689],[12.2611162,50.0646704],[12.2611144,50.0646574],[12.2610919,50.0646393],[12.2610897,50.0646175],[12.2611156,50.0646065],[12.261134,50.0645878],[12.2611421,50.064566],[12.2611428,50.0645454],[12.261149,50.0645269],[12.261124,50.0645213],[12.2611256,50.0645021],[12.2611087,50.0644843],[12.2610866,50.0644779],[12.2610441,50.0644863],[12.2610185,50.0645009],[12.2609864,50.0645115],[12.2609742,50.0645023],[12.2609683,50.0644771],[12.2609221,50.0644272],[12.2608915,50.064417],[12.2608962,50.0643859],[12.2608859,50.0643721],[12.2608472,50.0643797],[12.2608378,50.0643593],[12.2608553,50.0643126],[12.2608818,50.0642845],[12.2608765,50.0642619],[12.2608235,50.0642198],[12.260781,50.0641976],[12.2607651,50.0641539],[12.2607492,50.0641375],[12.2607558,50.0641166],[12.2607355,50.0640954],[12.2607448,50.0640553],[12.2607851,50.0640247],[12.2608201,50.0639914],[12.2608038,50.0639752],[12.2607957,50.0639401],[12.2607948,50.0638955],[12.2608038,50.063865],[12.2608369,50.0638478],[12.2608594,50.0638606],[12.26088,50.0638626],[12.2609037,50.0638588],[12.2609199,50.0638626],[12.2609558,50.063854],[12.2609539,50.0638241],[12.2609777,50.0638043],[12.2609802,50.0637763],[12.2610229,50.0637628],[12.2610288,50.0637444],[12.2610376,50.063734],[12.2610201,50.0637188],[12.2609823,50.063733],[12.2609368,50.0637336],[12.2609514,50.0637204],[12.2609452,50.0636963],[12.2609621,50.0636635],[12.2609215,50.0636617],[12.2608915,50.0636492],[12.2608987,50.0636374],[12.2608959,50.063596],[12.2608787,50.0635962],[12.2608815,50.0635579],[12.2608775,50.063534],[12.2608847,50.0635192],[12.2608616,50.0634964],[12.2608494,50.0634697],[12.2608431,50.0634403],[12.2609024,50.0633612],[12.2608978,50.0633295],[12.2609193,50.0633143],[12.2609468,50.0633183],[12.2609536,50.0633083],[12.2609714,50.0633037],[12.2609727,50.0632934],[12.2609864,50.0632542],[12.2609767,50.0632145],[12.2609511,50.0631995],[12.2609262,50.0632025],[12.2609018,50.0631812],[12.2609053,50.0631438],[12.2608728,50.0631259],[12.2608534,50.0631051],[12.2608382,50.0630957],[12.2608559,50.0630707],[12.2608641,50.0630668],[12.2608984,50.063044],[12.2608787,50.0630063],[12.2609177,50.0630109],[12.2609976,50.0629729],[12.2609973,50.0629543],[12.2609218,50.0629162],[12.2608981,50.0629208],[12.2608566,50.062905],[12.260841,50.0628805],[12.2608353,50.0628583],[12.2607998,50.0628645],[12.2607867,50.0628745],[12.2607517,50.0628761],[12.2607448,50.0628509],[12.2607523,50.062824],[12.2606815,50.0628146],[12.2606578,50.0627769],[12.2606468,50.0627429],[12.2606706,50.0627321],[12.2606862,50.0627032],[12.2607196,50.0626926],[12.2606659,50.0626585],[12.2606153,50.0626507],[12.2605342,50.0625932],[12.2605133,50.0625622],[12.2604739,50.0625443],[12.2604624,50.0625213],[12.2604792,50.0624941],[12.2604714,50.0624786],[12.2604596,50.0624766],[12.2604518,50.0624468],[12.2604493,50.0624119],[12.2604243,50.0623793],[12.2604661,50.0623316],[12.2604487,50.0622873],[12.2602929,50.0622695],[12.2602985,50.0622264],[12.2603407,50.0622124],[12.260258,50.0621146],[12.2602655,50.0620571],[12.26016,50.0620327],[12.2601587,50.0619954],[12.2601409,50.0619637],[12.2600932,50.0619363],[12.2600832,50.061912],[12.2600301,50.0618734],[12.2599737,50.0618169],[12.2599983,50.0617948],[12.2599662,50.0617564],[12.2599368,50.0617421],[12.2599765,50.0617011],[12.2599384,50.0616542],[12.2599812,50.0616388],[12.2599824,50.0616113],[12.2599528,50.0615821],[12.2599543,50.0615456],[12.2599212,50.061527],[12.2599119,50.0615005],[12.2598669,50.0614605],[12.25987,50.0614372],[12.2598401,50.0613619],[12.2597955,50.0613252],[12.2597808,50.0612821],[12.2598288,50.0612597],[12.259846,50.0612312],[12.2598385,50.0612064],[12.2598098,50.0611557],[12.2597833,50.0611331],[12.2597745,50.0611042],[12.2597405,50.0610902],[12.2597402,50.0610758],[12.2597249,50.0610754],[12.2597202,50.0610577],[12.2598083,50.0609796],[12.2598142,50.0609057],[12.2598317,50.060891],[12.2598513,50.060871],[12.2598778,50.0608237],[12.259871,50.0607604],[12.2598988,50.060734],[12.2599003,50.0607127],[12.2599418,50.0606775],[12.2599581,50.0606608],[12.2599546,50.060646],[12.2599849,50.0606095],[12.2600096,50.0605559],[12.2600507,50.0605516],[12.2600876,50.0605008],[12.2601188,50.0604901],[12.2601516,50.0604667],[12.2601731,50.0604298],[12.2601603,50.0604104],[12.2601378,50.0603986],[12.2601672,50.0603741],[12.2601921,50.0603503],[12.2601893,50.060304],[12.260252,50.0602705],[12.2602689,50.0602507],[12.2602951,50.0602449],[12.2602723,50.0602112],[12.2602892,50.0601912],[12.2603241,50.0601838],[12.2603725,50.0601926],[12.2603975,50.0601938],[12.2604146,50.0601898],[12.2603994,50.0601511],[12.2604521,50.0600668],[12.2604983,50.0600516],[12.260522,50.0600341],[12.2605479,50.0600293],[12.2606069,50.0599808],[12.2606022,50.0599522],[12.2606269,50.0599245],[12.2606437,50.0598857],[12.2607233,50.0598328],[12.2607361,50.0597953],[12.2607146,50.05976],[12.2607074,50.059721],[12.2607427,50.0596941],[12.2607682,50.0596871],[12.2608135,50.0596945],[12.2608419,50.0596827],[12.2608347,50.0596562],[12.2608678,50.0595697],[12.2608809,50.0595547],[12.2608884,50.0595232],[12.2608684,50.0594922],[12.2608653,50.0594635],[12.2609168,50.0594505],[12.2609212,50.0594228],[12.2609374,50.0593832],[12.2609377,50.0593675],[12.2609736,50.0593463],[12.2609777,50.0593224],[12.2610126,50.0593074],[12.2610276,50.0592786],[12.2610123,50.0592621],[12.2610029,50.0592377],[12.2610129,50.0592068],[12.2610023,50.059183],[12.2610519,50.0591319],[12.2610744,50.0590884],[12.2611022,50.059081],[12.2611147,50.0590638],[12.2610788,50.0590063],[12.2610785,50.0589896],[12.2610473,50.0589668],[12.2610341,50.0589518],[12.2610529,50.0589193],[12.2610753,50.0588714],[12.2610669,50.0588338],[12.2610214,50.0587638],[12.2610214,50.0587278],[12.2610438,50.0587145],[12.2610242,50.0586572],[12.2610079,50.0586218],[12.2609627,50.0585963],[12.2609655,50.0585675],[12.2609518,50.0585102],[12.2609832,50.0584418],[12.2610574,50.0583986],[12.2610831,50.0583833],[12.2611816,50.0583608],[12.261203,50.0583491],[12.2616239,50.0581202],[12.2624966,50.0584266],[12.2629704,50.0587964],[12.2632635,50.0592336],[12.263927,50.0594264],[12.2649726,50.0597705],[12.2666631,50.0604732],[12.2674031,50.0607468],[12.2679955,50.0608685],[12.269172,50.0610648],[12.2696186,50.0612367],[12.2701705,50.0613475],[12.2706034,50.0613618],[12.2713081,50.0613533],[12.2716332,50.0612935],[12.2719938,50.0612271],[12.2724598,50.0612457],[12.2728049,50.0610514],[12.273063,50.0608353],[12.2733332,50.0605745],[12.2738878,50.059945],[12.2743295,50.0596037],[12.2747536,50.0593031],[12.2747387,50.0592923],[12.2755898,50.0587315],[12.2756734,50.0586556],[12.2758503,50.0585672],[12.2764308,50.0583117],[12.276779,50.0581589],[12.2771679,50.0580162],[12.2773232,50.0579678],[12.2778376,50.0578308],[12.2780071,50.0577642],[12.2781348,50.0576918],[12.278607,50.0573133],[12.2788883,50.0570501],[12.2789541,50.0569693],[12.2790395,50.056801],[12.279193,50.0563984],[12.2792265,50.0562984],[12.2792672,50.0560632],[12.2792513,50.0559352],[12.2792613,50.0558987],[12.2792966,50.0557666],[12.279254,50.055171],[12.2803259,50.0552311],[12.281493,50.0555137],[12.2824739,50.0560015],[12.2829035,50.0561959],[12.283233,50.0563105],[12.2835886,50.0564343],[12.2848266,50.056597],[12.2855635,50.0566485],[12.2858338,50.0566673],[12.2865649,50.0567614],[12.2876727,50.0569284],[12.2894094,50.0570105],[12.2901189,50.0570846],[12.2907056,50.0571136],[12.2918244,50.0571243],[12.2927347,50.0572505],[12.2939521,50.05762],[12.2943476,50.0577416],[12.2946944,50.0579243],[12.2951029,50.0580449],[12.2953998,50.0581113],[12.2968852,50.0583544],[12.2971499,50.058378],[12.2975951,50.0584177],[12.2979483,50.058449],[12.2982537,50.058508],[12.2986703,50.0585899],[12.2990179,50.0586106],[12.2992217,50.0585666],[12.299805,50.0583914],[12.3002682,50.0581647],[12.3008825,50.0580218],[12.3011775,50.0578815],[12.3013462,50.0580201],[12.3014451,50.0581014],[12.3018891,50.0579311],[12.3019482,50.0579084],[12.3019397,50.0578973],[12.3022343,50.0577935],[12.303542,50.0572946],[12.3039117,50.0571466],[12.3042608,50.0569956],[12.3045079,50.05692],[12.3045762,50.0568991],[12.3048199,50.0568299],[12.3049911,50.0567528],[12.3056041,50.0565425],[12.3060853,50.0564417],[12.3061212,50.0564341],[12.3065296,50.0563268],[12.3072592,50.0561163],[12.3075796,50.0560171],[12.3085876,50.055841],[12.308969,50.0557715],[12.3095834,50.0557086],[12.309937,50.0556885],[12.3102674,50.0556455],[12.3106343,50.0555827],[12.310947,50.055512],[12.311165,50.0554369],[12.3115523,50.0551944],[12.3120869,50.0547965],[12.3120693,50.0547872],[12.3124437,50.0544862],[12.3127301,50.0543839],[12.3127402,50.0543956],[12.3129215,50.0542862],[12.3134251,50.0537319],[12.3136179,50.0535329],[12.3136871,50.053432],[12.313664,50.053425],[12.3143054,50.0525468],[12.3143603,50.0524715],[12.3156381,50.0528709],[12.316627,50.0531367],[12.3172796,50.0533696],[12.3177018,50.0530092],[12.317859,50.0529662],[12.3181097,50.0529829],[12.318059,50.0528679],[12.3180901,50.0527242],[12.3182425,50.0524411],[12.3183198,50.0523006],[12.3183806,50.0520619],[12.3184643,50.0516605],[12.3184954,50.0513936],[12.3189901,50.0514197],[12.3192201,50.050156],[12.3192716,50.0498641],[12.3192859,50.0494754],[12.3192522,50.0490562],[12.3191853,50.0487061],[12.3188627,50.048433],[12.3185888,50.048118],[12.3183209,50.0478104],[12.3178178,50.0473419],[12.3172349,50.0469089],[12.3164595,50.0464542],[12.3159654,50.0461709],[12.3157336,50.0460396],[12.3157172,50.0460289],[12.3157396,50.0460122],[12.3157968,50.0459842],[12.3158118,50.0459737],[12.3158245,50.0459571],[12.3158386,50.0459606],[12.3158434,50.0459647],[12.3158521,50.0459886],[12.3158747,50.0459994],[12.3159003,50.0459933],[12.3159186,50.0459797],[12.3159346,50.045956],[12.3159358,50.0459498],[12.3159255,50.0459374],[12.3159225,50.0459212],[12.3159255,50.0459115],[12.3159547,50.0458909],[12.3159562,50.045882],[12.3158876,50.0458099],[12.3158786,50.0457879],[12.3158885,50.0457738],[12.3159186,50.0457786],[12.3159734,50.0457916],[12.3159881,50.0458034],[12.3160242,50.0458173],[12.3160657,50.0458188],[12.316072,50.0458126],[12.3160708,50.0457999],[12.3160642,50.0457728],[12.3160742,50.0457468],[12.3161,50.0457419],[12.3161376,50.0457433],[12.3161602,50.045735],[12.3161695,50.0457278],[12.3161683,50.0457091],[12.3161415,50.0456847],[12.316184,50.0456606],[12.3162282,50.0456401],[12.3162757,50.0456401],[12.3162841,50.045642],[12.3162929,50.0456276],[12.3162886,50.0456218],[12.3162721,50.0456179],[12.3162444,50.045597],[12.3162387,50.0455748],[12.3162706,50.045564],[12.3163434,50.0455468],[12.3163669,50.0455339],[12.3163954,50.0454902],[12.3164373,50.0454657],[12.3164544,50.0454104],[12.3164845,50.0453787],[12.3165239,50.0453633],[12.3165392,50.0453469],[12.3165456,50.0453177],[12.3166024,50.0452588],[12.3166352,50.0451923],[12.316714,50.0451123],[12.3167143,50.0451046],[12.3167038,50.0450924],[12.3167077,50.0450688],[12.3167122,50.0450586],[12.3167462,50.0450424],[12.3167904,50.0450341],[12.3168208,50.0450095],[12.3168148,50.0450016],[12.3167925,50.0449949],[12.3167291,50.0449952],[12.3167113,50.044992],[12.316696,50.0449792],[12.3167065,50.0449638],[12.3167901,50.0449216],[12.316801,50.0449048],[12.3168025,50.0448946],[12.3167775,50.0448797],[12.316727,50.044838],[12.3167155,50.044805],[12.3167191,50.0447829],[12.3167179,50.0447775],[12.316714,50.0447744],[12.316705,50.0447767],[12.3166427,50.0447735],[12.3165988,50.0447725],[12.3165886,50.0447706],[12.3165862,50.0447675],[12.3165817,50.0447663],[12.3165793,50.0447568],[12.3165985,50.0447232],[12.3166084,50.0447147],[12.3166304,50.0447103],[12.3166397,50.0447055],[12.3166737,50.0446475],[12.3167131,50.0446152],[12.3167607,50.0445944],[12.3167745,50.0445949],[12.3167898,50.0446187],[12.3168169,50.0446318],[12.316856,50.0446251],[12.3169011,50.0446253],[12.3169517,50.0446322],[12.3169664,50.0446243],[12.3169965,50.0445876],[12.3170464,50.0445637],[12.3170756,50.0445565],[12.3171063,50.0445617],[12.3171508,50.0445789],[12.3171593,50.0445959],[12.3171556,50.0446205],[12.3171764,50.044623],[12.3171881,50.044616],[12.3172122,50.0445863],[12.3172357,50.0445828],[12.3172537,50.0445872],[12.3172817,50.0446006],[12.3172883,50.0445971],[12.3172943,50.0445783],[12.3173352,50.0445397],[12.3173392,50.0445217],[12.3173097,50.0444852],[12.3173154,50.0444504],[12.3173301,50.0444329],[12.3173355,50.0444302],[12.3173632,50.0444331],[12.3174291,50.0444721],[12.3174781,50.0444833],[12.3175058,50.0444984],[12.3175148,50.044491],[12.3175515,50.0444788],[12.3175588,50.0444572],[12.3175518,50.0444429],[12.3175744,50.0444191],[12.3175979,50.044423],[12.3176189,50.0444431],[12.31764,50.0444742],[12.3176502,50.0444727],[12.3176647,50.0444528],[12.3176436,50.0444416],[12.3176436,50.0444259],[12.3176517,50.0444047],[12.317631,50.0443911],[12.3176141,50.0443842],[12.3176126,50.0443751],[12.3176204,50.0443622],[12.3176442,50.0443338],[12.3176427,50.0443088],[12.3176535,50.0442959],[12.317705,50.0442657],[12.3177059,50.0442524],[12.3177272,50.044241],[12.317751,50.0442408],[12.3177892,50.0442522],[12.3178151,50.0442758],[12.3178364,50.0442766],[12.3178361,50.0442561],[12.317865,50.0442227],[12.3179246,50.0442107],[12.317942,50.044203],[12.3179444,50.0441757],[12.3179324,50.0441406],[12.3178575,50.0441369],[12.3177802,50.0441914],[12.3177633,50.0441966],[12.3177531,50.0441904],[12.3177543,50.0441406],[12.3177507,50.0441309],[12.317708,50.0441143],[12.317711,50.0440868],[12.3177194,50.0440733],[12.3177399,50.0440604],[12.3177552,50.0440538],[12.3177799,50.0440496],[12.3178446,50.0440753],[12.3178614,50.0440756],[12.317881,50.0440635],[12.3178945,50.0440486],[12.3179249,50.044037],[12.3179486,50.0440049],[12.3179393,50.0439897],[12.3179459,50.0439636],[12.3179595,50.0439537],[12.3180109,50.0439547],[12.318016,50.0439512],[12.3180422,50.0439319],[12.3180897,50.0439251],[12.3181099,50.0439321],[12.3181144,50.0439412],[12.3181126,50.0439522],[12.3181237,50.0439561],[12.3181686,50.0439333],[12.3181725,50.0439095],[12.318202,50.0438931],[12.3182344,50.043896],[12.3182657,50.0439049],[12.3182742,50.0438755],[12.318263,50.0438699],[12.3182525,50.0438699],[12.3182065,50.043855],[12.3181634,50.0438573],[12.3181655,50.043838],[12.3182041,50.0438258],[12.3182723,50.0438343],[12.3183078,50.0438052],[12.3182952,50.0437835],[12.318294,50.0437337],[12.3183226,50.043718],[12.3183632,50.0437231],[12.3183876,50.0437204],[12.3184264,50.0436933],[12.318411,50.0436753],[12.318411,50.0436547],[12.3184161,50.0436483],[12.3184465,50.0436267],[12.3185076,50.0436118],[12.3185377,50.0435981],[12.3185726,50.0435449],[12.3186237,50.0435152],[12.3186625,50.0435017],[12.3186688,50.0434957],[12.3186676,50.0434854],[12.3186523,50.0434576],[12.3186565,50.0434439],[12.3187209,50.0434101],[12.3187269,50.0434039],[12.3187278,50.0433844],[12.3187477,50.043373],[12.3187895,50.0433656],[12.3188406,50.0433181],[12.3188358,50.0433121],[12.3187967,50.0433048],[12.3187447,50.0433081],[12.3187128,50.0433002],[12.3187188,50.043288],[12.3187422,50.0432706],[12.3187844,50.0432553],[12.3188108,50.0432358],[12.3188469,50.0432291],[12.3188542,50.0432219],[12.3188635,50.0432032],[12.3188873,50.0431842],[12.3189188,50.0431537],[12.3189438,50.0431502],[12.3189983,50.043161],[12.3190289,50.0431912],[12.3190301,50.0432157],[12.3190082,50.0432238],[12.318951,50.0432302],[12.3189354,50.0432414],[12.318951,50.0432654],[12.3189847,50.0432774],[12.3190332,50.0432832],[12.3190515,50.043265],[12.3190539,50.0432513],[12.3190653,50.0432414],[12.319075,50.0432391],[12.3191255,50.0432449],[12.3191309,50.0432488],[12.3191339,50.0432735],[12.3191387,50.0432777],[12.3191478,50.0432787],[12.3191556,50.043277],[12.3191905,50.0432289],[12.3191794,50.0432165],[12.319152,50.0432093],[12.31914,50.0432039],[12.319133,50.0431943],[12.3190984,50.0431599],[12.3191063,50.0431547],[12.31913,50.043156],[12.3191742,50.0431614],[12.319183,50.0431618],[12.3191739,50.0431286],[12.3191878,50.043111],[12.3192152,50.0431037],[12.3192314,50.0430961],[12.3192422,50.0430849],[12.3192681,50.0430447],[12.3192687,50.0430384],[12.3192525,50.0430084],[12.3192651,50.0429991],[12.3192783,50.0430009],[12.3193,50.0430214],[12.3193508,50.0430515],[12.3193674,50.0430542],[12.3193809,50.0430413],[12.3193902,50.0430266],[12.3194101,50.0430038],[12.3194008,50.0429995],[12.3193905,50.042992],[12.3193695,50.0429599],[12.3193412,50.0429702],[12.3193075,50.0429725],[12.3192862,50.0429611],[12.3192437,50.0429449],[12.3192452,50.0429308],[12.3192759,50.0429049],[12.3193244,50.042851],[12.3193168,50.0428347],[12.3192895,50.0427973],[12.3193054,50.0427828],[12.3193451,50.0427837],[12.3194011,50.0428282],[12.3194212,50.042826],[12.3194309,50.0428235],[12.3194417,50.042809],[12.3194348,50.0427889],[12.3194603,50.0427785],[12.3194835,50.0427905],[12.3195064,50.0428187],[12.3195268,50.042816],[12.3195247,50.0428032],[12.319485,50.0427519],[12.3194345,50.0427219],[12.3194227,50.0427092],[12.3194288,50.0427049],[12.3194507,50.0426962],[12.319519,50.0427167],[12.3195521,50.0427157],[12.319565,50.0426918],[12.3195984,50.0426757],[12.3196288,50.0426777],[12.3196724,50.0426867],[12.3197266,50.0426643],[12.3197127,50.042633],[12.3196974,50.0426162],[12.3196893,50.0425965],[12.3197007,50.0425807],[12.3197377,50.0425606],[12.3197576,50.0425349],[12.3197681,50.0425326],[12.3198036,50.0425432],[12.3198565,50.0425623],[12.3198965,50.0425675],[12.3199507,50.0425148],[12.3199516,50.0425113],[12.3198987,50.0424848],[12.319858,50.0424673],[12.3198418,50.0424452],[12.3198641,50.0424197],[12.3198653,50.0423807],[12.3198773,50.0423591],[12.3199113,50.0423361],[12.3199263,50.0423345],[12.3199585,50.0423436],[12.319979,50.0423434],[12.3199886,50.0423399],[12.3199787,50.0423349],[12.3199847,50.0423297],[12.3199967,50.0423071],[12.3200055,50.0422998],[12.3200256,50.0422947],[12.3200349,50.0422996],[12.3200443,50.0423009],[12.3201351,50.0422922],[12.3201441,50.0422942],[12.3201637,50.0423025],[12.3201694,50.0423069],[12.3202163,50.0422843],[12.3202419,50.0422752],[12.3202687,50.0422762],[12.3202816,50.0422692],[12.3202918,50.0422544],[12.3202825,50.0422252],[12.3202943,50.0421981],[12.3203072,50.0421848],[12.3203388,50.0421686],[12.3203956,50.0421187],[12.3204239,50.0421102],[12.3204871,50.0421348],[12.3205062,50.0421299],[12.3204925,50.042117],[12.3205921,50.0420735],[12.3207228,50.0419831],[12.3208393,50.0419659],[12.321361,50.041719],[12.3214365,50.0416078],[12.3214902,50.0415649],[12.3214906,50.0415458],[12.3215215,50.0415408],[12.3215486,50.0415213],[12.3216127,50.0414651],[12.3217556,50.0414206],[12.3218991,50.0413038],[12.3219024,50.0412852],[12.3219608,50.0412869],[12.3219725,50.0412729],[12.3220637,50.0412118],[12.3221333,50.0411511],[12.3223346,50.0410763],[12.3224143,50.041027],[12.3225115,50.0406725],[12.3225049,50.0405916],[12.3225322,50.0405132],[12.3226107,50.0403698],[12.3226366,50.0403131],[12.3227281,50.04021],[12.3228538,50.0400945],[12.3229426,50.0399737],[12.3230064,50.0397849],[12.32307,50.0394886],[12.3231775,50.0393087],[12.3232875,50.0391245],[12.323458,50.0390481],[12.3236047,50.0390225],[12.3238656,50.039002],[12.3240941,50.0389584],[12.3243271,50.0389042],[12.3243728,50.0388705],[12.3244557,50.0387744],[12.3244421,50.0387213],[12.3243784,50.0386589],[12.3243211,50.0385108],[12.3243093,50.0383843],[12.3243667,50.0383207],[12.3248968,50.0377336],[12.3255253,50.037027],[12.3254024,50.0366398],[12.325101,50.0364735],[12.3250951,50.0364187],[12.3250914,50.0363835],[12.3250568,50.0363399],[12.325046,50.0362381],[12.3250208,50.0361808],[12.3249446,50.0361111],[12.3249026,50.0360474],[12.3248377,50.0358413],[12.3248246,50.0356962],[12.3247231,50.0355843],[12.3246793,50.0354091],[12.3246359,50.035254],[12.3246323,50.0351773],[12.3245503,50.0347726],[12.3245493,50.0346502],[12.3244822,50.034434],[12.3244488,50.0343832],[12.3244357,50.0342992],[12.3244619,50.0340979],[12.3245219,50.0338149],[12.3245755,50.033701],[12.3247598,50.0334931],[12.3250178,50.033318],[12.325115,50.0332332],[12.3252083,50.0331611],[12.325335,50.0330905],[12.3255606,50.0330009],[12.3258725,50.0328314],[12.3260233,50.0327883],[12.3265029,50.0326851],[12.326734,50.0326123],[12.3269078,50.0325479],[12.3276617,50.0323229],[12.3282614,50.0322581],[12.3288464,50.0321885],[12.3297074,50.0327827],[12.3302672,50.0330961],[12.3305473,50.0332462],[12.3308489,50.0334085],[12.3313748,50.033695],[12.3317507,50.0338899],[12.3318002,50.0339167],[12.3321286,50.0340943],[12.3326239,50.0343565],[12.3333702,50.0347555],[12.333453,50.0347999],[12.3334654,50.0348683],[12.333486,50.0349825],[12.3335526,50.0352877],[12.3335854,50.0354385],[12.3336281,50.0358274],[12.3336773,50.0361203],[12.3336966,50.0362351],[12.3340855,50.0366531],[12.3342729,50.0368681],[12.3343526,50.03696],[12.3345336,50.0371687],[12.3347547,50.0374522],[12.3350684,50.0378307],[12.3353728,50.0380831],[12.3354006,50.0381273],[12.3355046,50.0382939],[12.3356746,50.0385196],[12.3360747,50.0387352],[12.3365991,50.0390225],[12.3371653,50.0392597],[12.3375477,50.0392324],[12.3378655,50.0396563],[12.3379127,50.0396423],[12.3379696,50.0396236],[12.337986,50.039619],[12.3380141,50.03961],[12.3381503,50.0395538],[12.3383051,50.0394899],[12.3383852,50.0394847],[12.3386008,50.0395288],[12.3387498,50.0394567],[12.3391381,50.0394081],[12.3392006,50.0393956],[12.3395811,50.039338],[12.3396548,50.0393276],[12.3397762,50.0392801],[12.3398921,50.0392498],[12.3399335,50.0392312],[12.3400541,50.0391609],[12.3401859,50.0390908],[12.3403143,50.0389806],[12.3404583,50.0388867],[12.34058,50.0388159],[12.3406787,50.0387484],[12.3407087,50.0387162],[12.3407612,50.0386811],[12.3408098,50.0385542],[12.3408268,50.0385358],[12.3408779,50.0385156],[12.3409319,50.0385101],[12.3409962,50.0384968],[12.3410541,50.0385105],[12.341125,50.0385401],[12.3411595,50.0385399],[12.3412234,50.0385215],[12.3412996,50.0385008],[12.3413196,50.0384999],[12.3415366,50.0385797],[12.3415642,50.0385797],[12.3416439,50.038549],[12.3417181,50.0385111],[12.3417762,50.0384917],[12.3418379,50.038479],[12.3419836,50.0384556],[12.3420266,50.0384421],[12.3420872,50.0383739],[12.3421356,50.038346],[12.3421578,50.0383292],[12.3421873,50.0382759],[12.3422101,50.0382594],[12.3422612,50.0382419],[12.3422929,50.0382221],[12.3423527,50.038198],[12.3424616,50.0380999],[12.3425105,50.0380716],[12.3425497,50.0380597],[12.3426,50.038027],[12.3426389,50.0380172],[12.3427507,50.0379988],[12.3429477,50.0379799],[12.3430228,50.0379551],[12.3430408,50.0379447],[12.3430811,50.0379351],[12.3431184,50.0378917],[12.3431453,50.037871],[12.3431486,50.0378637],[12.3431784,50.0378587],[12.3432379,50.0378399],[12.3432401,50.0378364],[12.3432373,50.0378342],[12.3432598,50.0378203],[12.3432646,50.0378249],[12.3432918,50.0378085],[12.3432965,50.0378],[12.3433677,50.0378008],[12.3433768,50.0378003],[12.3433916,50.037795],[12.3434016,50.0377857],[12.3434213,50.0377821],[12.3434263,50.0377653],[12.3434702,50.0377573],[12.3434741,50.0377516],[12.3435089,50.0377444],[12.3435239,50.0377359],[12.3435467,50.0377328],[12.3435639,50.0377219],[12.3435817,50.0377193],[12.3436059,50.0377178],[12.3436439,50.0377],[12.3436664,50.0377059],[12.3436901,50.0376989],[12.3437023,50.0377025],[12.3437646,50.037703],[12.3437773,50.0377002],[12.343801,50.0377053],[12.3438721,50.0376893],[12.3439841,50.037647],[12.3440066,50.037647],[12.3440133,50.0376413],[12.344038,50.0376441],[12.3440742,50.0376432],[12.344077,50.0376507],[12.3440922,50.0376504],[12.3441558,50.0376187],[12.3441906,50.0376272],[12.3441945,50.0376359],[12.3442234,50.0376459],[12.3442384,50.037645],[12.3442443,50.0376491],[12.3443085,50.0376097],[12.3443224,50.0376111],[12.3443357,50.0376056],[12.3443607,50.0376054],[12.3444185,50.0375895],[12.3444455,50.0376013],[12.3444777,50.0376],[12.3444866,50.037592],[12.3445564,50.0375691],[12.34459,50.0375649],[12.3446512,50.0375254],[12.3447015,50.0375172],[12.3447899,50.0375142],[12.3448149,50.0375027],[12.3448332,50.0374749],[12.3448894,50.0374633],[12.3449399,50.0374845],[12.3449538,50.0374808],[12.3449697,50.037482],[12.3449925,50.0374702],[12.3450728,50.0373892],[12.3451142,50.0374029],[12.3451314,50.0374028],[12.3451517,50.0374101],[12.3451916,50.0373781],[12.3451957,50.0373458],[12.3452283,50.0373104],[12.3452696,50.0372987],[12.3453349,50.0373003],[12.3453771,50.0372769],[12.3454266,50.0372601],[12.345572,50.0371587],[12.3456284,50.0371264],[12.3456768,50.0370883],[12.3456937,50.0370603],[12.3457268,50.0370437],[12.3459105,50.0370135],[12.3459933,50.0369809],[12.3459869,50.0369489],[12.3460147,50.0369239],[12.3460489,50.0369396],[12.3460803,50.0369496],[12.3461298,50.0369245],[12.3461429,50.0369104],[12.346142,50.0368991],[12.3461601,50.0368627],[12.3461515,50.0368509],[12.3461665,50.0368227],[12.3462293,50.0368388],[12.346259,50.0368329],[12.346256,50.0368159],[12.3462788,50.0367818],[12.346318,50.0367563],[12.3463424,50.0367518],[12.346368,50.03676],[12.3463955,50.0367577],[12.34642,50.0367402],[12.346455,50.0367436],[12.3464603,50.0367527],[12.3465103,50.0367479],[12.3465742,50.0367245],[12.346597,50.0366769],[12.3467249,50.0366492],[12.3467771,50.0366558],[12.3469086,50.0366353],[12.3469436,50.0366371],[12.346985,50.0366219],[12.3470181,50.0366478],[12.3470434,50.0366776],[12.3471609,50.0367222],[12.347189,50.0367258],[12.3471896,50.0367127],[12.3472243,50.036681],[12.3472871,50.0366803],[12.3473135,50.0366947],[12.3473333,50.0366826],[12.3473574,50.0366788],[12.3473649,50.0366676],[12.3473566,50.0366404],[12.3473574,50.0365914],[12.3474039,50.0365617],[12.3474102,50.0365224],[12.3474202,50.0365164],[12.3474586,50.0365199],[12.3474783,50.036531],[12.3475131,50.0365171],[12.3474856,50.0364732],[12.3475025,50.0364555],[12.3475462,50.0364426],[12.3475648,50.036426],[12.3475642,50.0364169],[12.3475826,50.0363994],[12.3476748,50.0363887],[12.3476879,50.0363707],[12.3477051,50.03636],[12.3477124,50.0363355],[12.347729,50.0363263],[12.347793,50.0363148],[12.347821,50.0362898],[12.3478219,50.036262],[12.3478274,50.0362409],[12.3478569,50.0362215],[12.3478716,50.0362179],[12.3478652,50.0361742],[12.3478817,50.0361659],[12.3479147,50.0361681],[12.3479558,50.0361406],[12.3480784,50.0361079],[12.3481434,50.0360424],[12.348154,50.0360126],[12.3482529,50.0359499],[12.348261,50.0358958],[12.3483132,50.0358214],[12.3483077,50.0357723],[12.3483183,50.0357373],[12.3483183,50.0357146],[12.3483399,50.0356791],[12.3483608,50.0356184],[12.3483936,50.0354911],[12.3484214,50.0354321],[12.3484355,50.035409],[12.3484505,50.0353664],[12.348453,50.0353405],[12.3484748,50.0352769],[12.3484875,50.0352401],[12.3484903,50.0352125],[12.3485398,50.0350618],[12.3485876,50.035035],[12.3485959,50.0350202],[12.3485956,50.0349759],[12.3486165,50.034957],[12.3486109,50.0349102],[12.3486126,50.0348951],[12.3486543,50.0348704],[12.3486443,50.0347706],[12.3486596,50.0347069],[12.3486571,50.0346739],[12.3486648,50.0346194],[12.3487004,50.0345169],[12.3487304,50.0344812],[12.3487988,50.0344359],[12.3488335,50.034344],[12.3487496,50.0343061],[12.348773,50.0342558],[12.3487571,50.0342061],[12.3487685,50.0341842],[12.3487885,50.0341745],[12.3487952,50.034161],[12.3487371,50.0341247],[12.3487427,50.034086],[12.3487846,50.0340667],[12.3488424,50.034051],[12.348863,50.0340381],[12.3488082,50.0340164],[12.3487463,50.0340146],[12.3487182,50.0340053],[12.3487079,50.0339801],[12.3487307,50.033933],[12.3487657,50.033921],[12.3488127,50.0339246],[12.3488413,50.0339401],[12.3488624,50.0339412],[12.3488902,50.033935],[12.3489286,50.0339176],[12.3489622,50.0339109],[12.3490136,50.0339169],[12.349067,50.0338985],[12.3490848,50.0338678],[12.3490412,50.0338196],[12.3490167,50.0338066],[12.3490045,50.033785],[12.3490659,50.0337248],[12.3491031,50.0337098],[12.349134,50.0336891],[12.3491996,50.0336834],[12.3492276,50.0336909],[12.3493069,50.0336672],[12.3493549,50.0336697],[12.3493836,50.0336518],[12.3493813,50.0335388],[12.3494483,50.0334824],[12.3495314,50.0334635],[12.3495639,50.0334488],[12.3495715,50.0333265],[12.349649,50.0332748],[12.3496723,50.0332517],[12.3496304,50.0332087],[12.3495815,50.0331107],[12.3495856,50.0330766],[12.3496637,50.033023],[12.349634,50.0329929],[12.3494708,50.0329286],[12.3493752,50.0328981],[12.3493355,50.0328633],[12.3493327,50.0328374],[12.3494044,50.0327536],[12.3493683,50.0327331],[12.3493355,50.0326849],[12.3493624,50.0326085],[12.3492957,50.0325528],[12.3492874,50.0325271],[12.3493005,50.0324682],[12.3492932,50.0323903],[12.3492935,50.032298],[12.3490245,50.0321631],[12.3490117,50.0321247],[12.3490359,50.0320759],[12.3491846,50.0319827],[12.3492157,50.0319172],[12.3492379,50.0319069],[12.3492894,50.0318692],[12.3493352,50.0318504],[12.3493702,50.0318303],[12.3494116,50.0317844],[12.3494164,50.0317631],[12.3494681,50.0317469],[12.3495434,50.0317464],[12.3496559,50.0317112],[12.3496509,50.0316524],[12.349629,50.0316426],[12.349614,50.0316157],[12.3497015,50.0315382],[12.3497249,50.0315319],[12.3497805,50.0315548],[12.349828,50.031551],[12.3498374,50.0315109],[12.3497977,50.0314587],[12.3499055,50.0313791],[12.3499228,50.0313502],[12.3498955,50.0313393],[12.3498563,50.0313279],[12.3498624,50.0313109],[12.349933,50.0312765],[12.3499692,50.0312186],[12.3499972,50.0312118],[12.350022,50.031234],[12.3500484,50.0312381],[12.3500659,50.0312365],[12.3501198,50.0312041],[12.3501104,50.03119],[12.3501282,50.0311636],[12.350181,50.031132],[12.3501829,50.0311163],[12.3501676,50.031097],[12.350102,50.031059],[12.3501123,50.0310431],[12.3502029,50.0309813],[12.3502363,50.0309496],[12.3502749,50.0309492],[12.3503085,50.0309619],[12.3503533,50.0309581],[12.3503844,50.0309472],[12.3504489,50.0309172],[12.3504756,50.0308981],[12.3504683,50.0308449],[12.3505256,50.0308362],[12.3505684,50.0307942],[12.3506204,50.0307676],[12.3507043,50.0307155],[12.3507324,50.0307087],[12.3507591,50.0307505],[12.3508652,50.030701],[12.350923,50.0305957],[12.3509664,50.0305543],[12.3510189,50.0305266],[12.3511309,50.0304891],[12.3511287,50.0304746],[12.3511448,50.0304696],[12.3511632,50.0304718],[12.351169,50.0304782],[12.3511938,50.0304768],[12.3512104,50.0304804],[12.3512574,50.0304598],[12.351263,50.0304484],[12.3512857,50.0304438],[12.3513124,50.0304311],[12.3513227,50.030417],[12.3513461,50.0304073],[12.3513605,50.0303786],[12.3514225,50.0303532],[12.3514695,50.0302802],[12.3514981,50.0302652],[12.3515339,50.0302586],[12.3515628,50.0302441],[12.3515904,50.0302465],[12.3516924,50.0302975],[12.3517185,50.0303218],[12.3518013,50.0303093],[12.3518197,50.0302088],[12.351808,50.0301811],[12.3518352,50.0301629],[12.3519508,50.0301458],[12.3519959,50.0301326],[12.3519911,50.0301158],[12.3520075,50.0301011],[12.352012,50.0300858],[12.3520295,50.0300627],[12.3520314,50.0300388],[12.352059,50.0300245],[12.3520698,50.0300112],[12.3521006,50.0300169],[12.3521515,50.0299953],[12.3521671,50.0299599],[12.3521621,50.0299388],[12.3521471,50.0299263],[12.3521293,50.029904],[12.3521479,50.0298894],[12.3521774,50.0298928],[12.3522204,50.0298906],[12.3522755,50.0298464],[12.352276,50.0298101],[12.3523094,50.0298156],[12.3523508,50.0298051],[12.3524055,50.0298126],[12.3524439,50.0297939],[12.3524353,50.0296948],[12.3524781,50.0296137],[12.3525226,50.0295951],[12.3525412,50.0296051],[12.3526018,50.0296123],[12.352684,50.0296032],[12.352905,50.0295484],[12.3529236,50.0295246],[12.3529522,50.0295196],[12.3529761,50.0295211],[12.352997,50.0295139],[12.3530017,50.0295032],[12.3530417,50.0294886],[12.3530815,50.0294657],[12.3531512,50.0294366],[12.3531751,50.0294398],[12.3532043,50.0294334],[12.3532374,50.0294166],[12.3532763,50.0294082],[12.3533839,50.0294123],[12.3534397,50.029407],[12.3534667,50.0293989],[12.3535303,50.0293925],[12.353564,50.029397],[12.3536704,50.0294318],[12.3537193,50.0294368],[12.3537357,50.0294193],[12.3537749,50.0294025],[12.3538291,50.0293979],[12.3538544,50.029388],[12.3539086,50.0293339],[12.3539297,50.0292956],[12.3539839,50.0292848],[12.3540087,50.0292847],[12.3540615,50.0292577],[12.354077,50.0292368],[12.3540743,50.0292057],[12.3540743,50.0291706],[12.3540795,50.0291215],[12.3540937,50.0290763],[12.3540704,50.0290536],[12.3540134,50.0290451],[12.3539873,50.0290551],[12.3539378,50.0290461],[12.3539097,50.0290226],[12.3539186,50.0289936],[12.3539667,50.0289336],[12.3539767,50.0288913],[12.3539948,50.0288724],[12.3540315,50.0288606],[12.3540718,50.0288587],[12.3541026,50.0288687],[12.3541176,50.0288953],[12.354151,50.0289078],[12.3541788,50.0288994],[12.354278,50.0288528],[12.3543024,50.0288538],[12.3543525,50.0288529],[12.3544292,50.0288251],[12.3544642,50.0288271],[12.3544995,50.0288196],[12.3545512,50.0288337],[12.3545879,50.0288206],[12.3546093,50.0288217],[12.3546354,50.0288035],[12.354758,50.0288019],[12.3548319,50.028798],[12.3549122,50.0288165],[12.3549773,50.0288092],[12.3550026,50.0287971],[12.3550223,50.0286894],[12.3550287,50.0286598],[12.3550392,50.0286119],[12.3550688,50.0284204],[12.3550743,50.0283846],[12.3550212,50.0283086],[12.3550526,50.0282775],[12.3551499,50.0282496],[12.3551954,50.0281957],[12.355194,50.0281368],[12.3551179,50.0281022],[12.3551435,50.0280257],[12.3552655,50.028007],[12.3554036,50.0279332],[12.3554314,50.0278772],[12.3553703,50.0278101],[12.3553152,50.0277231],[12.3552733,50.0277065],[12.3552338,50.0276992],[12.3552538,50.0276151],[12.3552777,50.0275806],[12.355325,50.0275313],[12.355457,50.0274415],[12.3554934,50.027393],[12.355447,50.0273446],[12.3554489,50.0273187],[12.3554945,50.0272942],[12.3555426,50.0272174],[12.3556365,50.0271955],[12.355674,50.0271419],[12.3557146,50.0271155],[12.3557772,50.0271039],[12.3558211,50.0270639],[12.3558308,50.0270453],[12.3558825,50.0269228],[12.3560037,50.0269223],[12.3560365,50.0268427],[12.3560656,50.0267945],[12.356201,50.0266857],[12.3563416,50.0265993],[12.3563603,50.0265538],[12.3565087,50.0264265],[12.3566626,50.0263036],[12.3567344,50.0262342],[12.3567558,50.0262197],[12.3567969,50.0261674],[12.3568394,50.0261304],[12.3568914,50.0261188],[12.3569286,50.026077],[12.3569361,50.0260474],[12.3569842,50.0259977],[12.3570504,50.0259472],[12.3570518,50.0258906],[12.3571043,50.0258799],[12.3570946,50.0258437],[12.3571176,50.0258192],[12.3571518,50.0258022],[12.3571882,50.0257928],[12.3571941,50.0257731],[12.3572571,50.0257501],[12.3572633,50.0256949],[12.3572791,50.0256542],[12.3573478,50.025596],[12.3573775,50.0255703],[12.3576554,50.0256231],[12.3579076,50.0256606],[12.3580537,50.025668],[12.3581829,50.0256348],[12.3582952,50.0255968],[12.3583907,50.0255215],[12.3584411,50.0254216],[12.3583268,50.025367],[12.3582117,50.0253288],[12.3581774,50.0252826],[12.3581956,50.0251348],[12.3582378,50.0250642],[12.3583031,50.0249901],[12.3583956,50.0249314],[12.3584984,50.0248858],[12.3586423,50.0247876],[12.358697,50.0247598],[12.3587258,50.0247399],[12.3588169,50.0246691],[12.3590062,50.0245448],[12.3591221,50.0245178],[12.3591798,50.0245186],[12.3592309,50.0245048],[12.3593468,50.0245197],[12.3593593,50.024527],[12.3595165,50.0245408],[12.3596275,50.0245031],[12.3596656,50.024479],[12.35972,50.0244509],[12.359782,50.0244412],[12.3598592,50.024444],[12.359943,50.024469],[12.3599673,50.0245327],[12.3599546,50.0245945],[12.3599112,50.0246506],[12.3598829,50.0247206],[12.3599007,50.0247656],[12.3599205,50.0248374],[12.3598767,50.0248929],[12.3597971,50.0249334],[12.3597042,50.0249432],[12.3595663,50.0249506],[12.3595443,50.0249566],[12.3595035,50.0249754],[12.3594463,50.0250034],[12.3593946,50.0250371],[12.3593799,50.0250817],[12.3594078,50.0251324],[12.3595258,50.0252104],[12.3595569,50.025243],[12.3595725,50.0253027],[12.3595951,50.0253959],[12.3596036,50.025419],[12.3596819,50.0254709],[12.3596996,50.0254761],[12.3597687,50.0254868],[12.3598367,50.0254939],[12.3599689,50.0254871],[12.3600817,50.0254397],[12.3601522,50.025399],[12.3601486,50.0253702],[12.3601726,50.0253426],[12.3602248,50.0253157],[12.3602928,50.0252636],[12.3603722,50.0252491],[12.3604748,50.0252117],[12.3605042,50.025208],[12.3605643,50.0252117],[12.3606187,50.0251927],[12.3606967,50.0251413],[12.3607767,50.0250584],[12.3607879,50.0250513],[12.3608833,50.0249616],[12.360901,50.0249428],[12.3609377,50.0249178],[12.3610117,50.0248926],[12.3610561,50.0248896],[12.3611831,50.0248938],[12.361201,50.0248837],[12.3612168,50.0248847],[12.3612334,50.0248931],[12.3612995,50.0248746],[12.3613583,50.024875],[12.3614238,50.024869],[12.3614565,50.0248701],[12.3614986,50.0248526],[12.361562,50.024843],[12.361599,50.0248423],[12.3616683,50.0248281],[12.3617421,50.0248173],[12.3617782,50.0248016],[12.3617954,50.024801],[12.3617994,50.0248089],[12.3619159,50.024814],[12.3619403,50.0248049],[12.3619605,50.0248052],[12.3620103,50.0247909],[12.3621046,50.0247759],[12.3621212,50.0247573],[12.3621696,50.024736],[12.362192,50.024743],[12.3622235,50.0247259],[12.3622787,50.0247144],[12.3622978,50.0246841],[12.3623157,50.0246883],[12.3623059,50.0245807],[12.3630945,50.0240199],[12.3635516,50.0236948],[12.3638009,50.0235175],[12.3639929,50.0233811],[12.3645113,50.0230128],[12.3653744,50.022831],[12.3654231,50.0228221],[12.3656978,50.0227632],[12.3655509,50.0220659],[12.3656505,50.0216346],[12.3657745,50.021467],[12.3660854,50.0211921],[12.36633,50.0209163],[12.3670881,50.0202222],[12.3672341,50.0199506],[12.3674539,50.0194214],[12.3674751,50.0190594],[12.3674822,50.018446],[12.3674931,50.0174234],[12.3682746,50.0175405],[12.3691602,50.0176538],[12.3697422,50.0177453],[12.3707877,50.0180128],[12.3711388,50.018057],[12.3714464,50.0181022],[12.3717529,50.0181625],[12.3726303,50.0184071],[12.3729564,50.018514],[12.374601,50.0189867],[12.3752094,50.019158],[12.3757578,50.0192169],[12.3760315,50.0192261],[12.3763533,50.019207],[12.3764037,50.0192786],[12.3775115,50.0191895],[12.3783814,50.0190598],[12.378656,50.0190975],[12.3786096,50.0190132],[12.3786642,50.0188499],[12.3784259,50.018705],[12.3780801,50.0184835],[12.3780004,50.0183625],[12.3779344,50.0182306],[12.3779025,50.0180872],[12.3779307,50.0175285],[12.3779293,50.0171937],[12.3779019,50.0169648],[12.3778568,50.0167682],[12.3777769,50.0164829],[12.3779658,50.0163264],[12.3782197,50.0160824],[12.3784347,50.0158482],[12.3787438,50.0152161],[12.3789013,50.0149535],[12.3790496,50.0147247],[12.3793017,50.0143591],[12.3795942,50.0139946],[12.3796049,50.0139839],[12.379702,50.0138853],[12.3802194,50.0137355],[12.3807383,50.0136321],[12.3812714,50.0135349],[12.3816119,50.0133479],[12.3818688,50.0132157],[12.3820479,50.0131487],[12.382602,50.0130079],[12.382883,50.0129891],[12.3833915,50.0129096],[12.3852001,50.012688],[12.3855803,50.0126417],[12.3862014,50.0125411],[12.3865968,50.0124741],[12.3870192,50.0125093],[12.3877638,50.0125195],[12.3882235,50.0125301],[12.3883364,50.0125326],[12.3885713,50.0125624],[12.3887435,50.0125842],[12.388891,50.0125966],[12.3890853,50.0125937],[12.3895373,50.0126328],[12.3897441,50.0126685],[12.3898628,50.0127004],[12.3900319,50.0127334],[12.3900744,50.0127364],[12.39017,50.0127322],[12.3902675,50.012751],[12.3903506,50.0127643],[12.3904951,50.0127983],[12.3905708,50.0128212],[12.3907203,50.0128565],[12.3909172,50.0128948],[12.3910482,50.0129044],[12.3911331,50.0129262],[12.3912262,50.0129599],[12.3914296,50.0130175],[12.3915731,50.0130138],[12.3916159,50.0130179],[12.3918985,50.0131163],[12.3921176,50.0131562],[12.3922193,50.0131677],[12.3925675,50.0132415],[12.3927513,50.0132706],[12.3928433,50.0132787],[12.3929318,50.0132963],[12.3931142,50.0133234],[12.3933565,50.0133734],[12.3935452,50.0134178],[12.3936177,50.0134291],[12.3938746,50.0134412],[12.3940548,50.0134596],[12.3941061,50.0134745],[12.3941807,50.0134894],[12.3942589,50.0135057],[12.3943556,50.0135112],[12.394454,50.013507],[12.3944808,50.0135178],[12.3945675,50.0135157],[12.3946282,50.0135226],[12.3947263,50.0135517],[12.3948026,50.0135876],[12.3948473,50.0135969],[12.3948812,50.0136182],[12.3950096,50.0136345],[12.3950474,50.0136311],[12.3950999,50.013643],[12.3951434,50.0136274],[12.3953379,50.0136265],[12.3953425,50.0136501],[12.3953736,50.013651],[12.39539,50.013638],[12.3954171,50.0136524],[12.3954303,50.0136873],[12.3954621,50.013698],[12.3954403,50.0137336],[12.3955085,50.0137391],[12.3955356,50.0137322],[12.3956034,50.0137533],[12.3956662,50.0137494],[12.3957468,50.013765],[12.3959217,50.0137207],[12.3959398,50.0137239],[12.395978,50.0137058],[12.3960034,50.0136992],[12.3960283,50.0136802],[12.3960311,50.0136698],[12.3968205,50.0138819],[12.3972419,50.0139723],[12.3972387,50.0139789],[12.3973928,50.0140138],[12.3974414,50.0140234],[12.3975074,50.0140335],[12.3976183,50.0140571],[12.3977229,50.0140757],[12.3978299,50.0140748],[12.3979149,50.0140631],[12.3979373,50.0140722],[12.397952,50.0140871],[12.3979798,50.0140892],[12.3980009,50.014078],[12.3981325,50.0141027],[12.3982524,50.0141546],[12.3983338,50.0142169],[12.3983748,50.0142536],[12.3983887,50.0142839],[12.398469,50.0142999],[12.3985329,50.0143272],[12.3985639,50.014427],[12.3986135,50.0144276],[12.3986506,50.0144448],[12.3986556,50.0144852],[12.3987002,50.0145276],[12.3987049,50.0145758],[12.3986881,50.0146113],[12.3987206,50.0146503],[12.3987983,50.0146833],[12.3988205,50.0147163],[12.3989008,50.0147482],[12.3989332,50.0147881],[12.3989696,50.0147861],[12.3990092,50.0147938],[12.399036,50.0147879],[12.3990529,50.0148307],[12.3990827,50.0148546],[12.3991256,50.0148665],[12.3991612,50.0148828],[12.3991923,50.0148906],[12.399198,50.0149121],[12.3992215,50.0149209],[12.3992694,50.0149298],[12.3992879,50.0149486],[12.3993065,50.0149701],[12.3993154,50.0150022],[12.3993261,50.0150231],[12.3993318,50.015035],[12.3993882,50.0150059],[12.3994032,50.0149912],[12.3994421,50.0149149],[12.3995227,50.0148514],[12.3995901,50.0148484],[12.3996308,50.0148661],[12.3996512,50.0149296],[12.3997129,50.0149674],[12.3997325,50.0149834],[12.3998217,50.0150066],[12.3998556,50.0150249],[12.3999013,50.0150708],[12.3999248,50.015082],[12.3999734,50.0150853],[12.4000197,50.0150683],[12.4000258,50.01506],[12.4000972,50.0150245],[12.4001964,50.0150211],[12.4002806,50.0150261],[12.4004312,50.0150222],[12.4004961,50.0149848],[12.4005685,50.0149037],[12.4005528,50.014872],[12.4005032,50.0148489],[12.4005179,50.0147787],[12.4005878,50.0147526],[12.4006756,50.0147344],[12.4006842,50.0146975],[12.4006866,50.0146661],[12.4006699,50.0146349],[12.4007227,50.0145939],[12.4008126,50.0145331],[12.4008772,50.0145003],[12.4009065,50.0144994],[12.4009268,50.0145086],[12.4010385,50.0145732],[12.4011769,50.0145755],[12.401244,50.0145694],[12.401431,50.0146118],[12.4014513,50.014607],[12.4014863,50.0145836],[12.4014931,50.0145345],[12.4015373,50.0145141],[12.4015769,50.0145079],[12.4016747,50.0145086],[12.4017221,50.014493],[12.4017557,50.0144634],[12.401756,50.0144529],[12.4018749,50.0144829],[12.4021857,50.0145666],[12.4021808,50.0144545],[12.402224,50.0143343],[12.4023867,50.0142207],[12.4025267,50.014014],[12.4026272,50.0138618],[12.402714,50.0137525],[12.4027333,50.0136983],[12.4028225,50.0136133],[12.4028709,50.0135666],[12.402891,50.0135037],[12.402879,50.0133965],[12.402815,50.0132731],[12.4027826,50.0131234],[12.4027119,50.0130184],[12.4027077,50.013013],[12.4025419,50.0128097],[12.4024107,50.0125448],[12.4023586,50.0124117],[12.4022714,50.0122747],[12.4021957,50.0121756],[12.4021266,50.0120813],[12.4020363,50.0119623],[12.4019325,50.0118772],[12.4016389,50.0115663],[12.4013273,50.0112527],[12.4011229,50.0111714],[12.4008308,50.0109697],[12.4005415,50.0108923],[12.4002608,50.0107785],[12.3999498,50.0106042],[12.3996043,50.0104244],[12.3994506,50.010387],[12.3988722,50.0100508],[12.398525,50.0098208],[12.398342,50.009998],[12.398297,50.0099937],[12.3982852,50.0099696],[12.398232,50.009935],[12.3981642,50.0099293],[12.3981596,50.0098765],[12.3982567,50.0097321],[12.3982538,50.0097011],[12.3982495,50.0096876],[12.3981161,50.009683],[12.3980786,50.0096878],[12.397968,50.0097089],[12.397908,50.0097002],[12.3978727,50.0096929],[12.3978485,50.0096796],[12.3978149,50.0096241],[12.3977935,50.0095628],[12.3977468,50.009467],[12.3977478,50.0093374],[12.397684,50.0092326],[12.3976861,50.0091936],[12.3977014,50.0091714],[12.397775,50.0091274],[12.3977814,50.009092],[12.3977653,50.0090742],[12.3977139,50.0090609],[12.3975145,50.0090691],[12.3974866,50.0090666],[12.3974406,50.0090359],[12.3973996,50.0089719],[12.397391,50.0089441],[12.3973896,50.0088909],[12.3973935,50.0088499],[12.3974053,50.0088038],[12.3974328,50.0087582],[12.397457,50.0087375],[12.3975758,50.0086722],[12.3976012,50.0086258],[12.3975998,50.00843],[12.3976062,50.0083419],[12.397624,50.0082271],[12.3976051,50.0081592],[12.397608,50.008106],[12.3976254,50.008053],[12.39777,50.0079276],[12.3978142,50.0078679],[12.3978731,50.0078262],[12.3980005,50.0077861],[12.3980432,50.0078254],[12.3981051,50.0078183],[12.3982184,50.0078281],[12.3982771,50.0079175],[12.3983992,50.0079085],[12.3985181,50.0079614],[12.3986471,50.008049],[12.3987989,50.0081347],[12.3990183,50.0083324],[12.3991513,50.0084457],[12.3993689,50.0085193],[12.3996383,50.0085417],[12.3998791,50.0085482],[12.4001418,50.0085437],[12.4004892,50.0085323],[12.4007919,50.0084643],[12.4011241,50.0083301],[12.4013577,50.0082323],[12.4018784,50.0079601],[12.4022905,50.0077286],[12.4027339,50.0072379],[12.4027343,50.0066537],[12.4023486,50.0067471],[12.4022511,50.0066837],[12.4022229,50.0066152],[12.4022896,50.0065487],[12.4022596,50.006522],[12.4022496,50.0065048],[12.4022482,50.006477],[12.4022375,50.0064458],[12.4022104,50.006413],[12.4021915,50.0063626],[12.402144,50.0062862],[12.4021344,50.0062509],[12.4020812,50.0062027],[12.4020716,50.0061686],[12.4020284,50.0061225],[12.4020188,50.0060856],[12.4020166,50.0060466],[12.4019884,50.0059847],[12.4019592,50.0059574],[12.401926,50.005912],[12.401901,50.0058549],[12.4018785,50.0058273],[12.4018661,50.0057886],[12.4018561,50.0057725],[12.4018329,50.0057147],[12.4018157,50.0056923],[12.4018008,50.0056599],[12.4017426,50.0056127],[12.4016923,50.0055629],[12.4016791,50.0055448],[12.4016634,50.0054693],[12.4016609,50.0053953],[12.4016552,50.0053673],[12.4016566,50.0052985],[12.4016648,50.0052703],[12.4016901,50.0052441],[12.401734,50.0052139],[12.4017736,50.00519],[12.4018835,50.00514],[12.4019121,50.0051191],[12.4020041,50.0050714],[12.402043,50.0050393],[12.4020802,50.0050155],[12.4021351,50.0049891],[12.4022018,50.004974],[12.4022707,50.0049657],[12.4023149,50.0049698],[12.4023842,50.0049698],[12.4024826,50.0049827],[12.4025683,50.004988],[12.4025997,50.0049932],[12.4027628,50.0050038],[12.4027639,50.0050004],[12.4028109,50.0050169],[12.4028866,50.0050279],[12.4029851,50.0050552],[12.4030239,50.005062],[12.4030996,50.00509],[12.4032473,50.0051198],[12.4032937,50.0051189],[12.4033237,50.0051157],[12.4033793,50.0051235],[12.4034082,50.0051182],[12.4034393,50.0051285],[12.403466,50.005143],[12.4035003,50.0051464],[12.4035171,50.0051407],[12.4039203,50.005154],[12.4039296,50.0051586],[12.4040655,50.0051607],[12.4041023,50.0051554],[12.4041126,50.0051432],[12.4041433,50.0051437],[12.4041622,50.0051508],[12.4041843,50.0051412],[12.4042329,50.0051568],[12.4042732,50.0051467],[12.4042982,50.0051588],[12.4043021,50.0051707],[12.4043374,50.0051802],[12.4043438,50.0051898],[12.4044052,50.0051827],[12.4045162,50.005157],[12.4046122,50.0051769],[12.40465,50.005168],[12.4046792,50.0051905],[12.4046907,50.0051918],[12.4046946,50.0051834],[12.4047028,50.005184],[12.4047196,50.0052024],[12.4047627,50.0052276],[12.4047831,50.0052262],[12.4047845,50.005215],[12.4047695,50.0052006],[12.4047906,50.0051907],[12.4048045,50.0051657],[12.404823,50.0051636],[12.4048994,50.0051818],[12.4049108,50.0052026],[12.4049679,50.0052006],[12.4049765,50.0052178],[12.4049679,50.0052318],[12.4049833,50.0052405],[12.4050018,50.0052373],[12.4050196,50.0052212],[12.4050882,50.0052451],[12.405156,50.0052274],[12.4051852,50.0052542],[12.405222,50.005254],[12.4052255,50.0052407],[12.4052405,50.0052269],[12.4052626,50.0052228],[12.4052823,50.0052359],[12.4053354,50.0052545],[12.405349,50.0052698],[12.4053833,50.0052684],[12.4053954,50.005276],[12.405389,50.0052937],[12.4053922,50.0053104],[12.405445,50.0053189],[12.4054514,50.005326],[12.4054618,50.0053297],[12.4055452,50.0053361],[12.4055634,50.0053324],[12.4055831,50.0053377],[12.4056148,50.0053336],[12.4057144,50.0053586],[12.4057611,50.0053586],[12.4057804,50.0053487],[12.4058436,50.005359],[12.4058832,50.0053682],[12.4059171,50.0053673],[12.4059538,50.0053716],[12.4060134,50.0053872],[12.4060498,50.0053996],[12.4060908,50.0053815],[12.4061283,50.0053907],[12.4061369,50.0053985],[12.4061736,50.005395],[12.4061836,50.0054003],[12.406184,50.0054226],[12.4062022,50.0054249],[12.4062571,50.0054074],[12.4062839,50.0054095],[12.4063185,50.0054012],[12.4063891,50.005404],[12.4064305,50.0053822],[12.4064494,50.0053762],[12.4064933,50.0053535],[12.4065397,50.0053515],[12.4065711,50.0053345],[12.4066268,50.0053269],[12.4066528,50.005332],[12.4067517,50.005315],[12.4067702,50.0053267],[12.4068005,50.0053235],[12.4068944,50.0052895],[12.4069433,50.0052795],[12.4069932,50.005282],[12.4070111,50.0052767],[12.4070186,50.0052689],[12.4071267,50.0052703],[12.4072248,50.0052953],[12.4072419,50.0053116],[12.4072958,50.0052992],[12.407339,50.0052971],[12.4073586,50.0052866],[12.4073932,50.005285],[12.4074189,50.0052909],[12.4074589,50.0052911],[12.4074785,50.0052776],[12.4074928,50.0052751],[12.4075203,50.0052602],[12.4075977,50.0052306],[12.4076273,50.0052107],[12.4076551,50.0051978],[12.4076619,50.005187],[12.4076922,50.0051967],[12.4077051,50.0051951],[12.4077479,50.0051675],[12.4077889,50.0051639],[12.4078057,50.0051574],[12.4078286,50.0051311],[12.4078849,50.0051272],[12.4079659,50.0051272],[12.4080958,50.0051597],[12.4081047,50.0051756],[12.4081711,50.0051545],[12.4082182,50.0051572],[12.4082946,50.0051503],[12.4083691,50.0051191],[12.4083952,50.0050992],[12.4084419,50.0050857],[12.4084715,50.0050873],[12.4084819,50.0050944],[12.4085054,50.005093],[12.4085561,50.0051036],[12.4086164,50.0050595],[12.4086346,50.0050483],[12.4086396,50.005038],[12.4086649,50.0050221],[12.4086953,50.005024],[12.4088009,50.0050235],[12.4088112,50.0050313],[12.4088391,50.0050315],[12.4088519,50.0050192],[12.4088366,50.004988],[12.4088633,50.0049756],[12.4088045,50.0049309],[12.408823,50.0049155],[12.4088448,50.0049143],[12.4088537,50.0049079],[12.4088808,50.0049052],[12.4089301,50.0049235],[12.4089757,50.0049247],[12.4090018,50.0049162],[12.4090064,50.004891],[12.4090239,50.0048806],[12.4090442,50.0048861],[12.4090639,50.0048857],[12.4091156,50.0048921],[12.4091352,50.0048793],[12.4092073,50.0048559],[12.4092341,50.0048586],[12.4092808,50.0048916],[12.4093579,50.0048813],[12.4093747,50.0048398],[12.4094225,50.0048288],[12.4094375,50.0047976],[12.4095003,50.0047731],[12.4095163,50.004771],[12.4095252,50.0047616],[12.4095559,50.0047485],[12.4095613,50.0047359],[12.4096658,50.0047219],[12.409699,50.0047249],[12.4097497,50.0046985],[12.4097971,50.0047008],[12.4098617,50.0046804],[12.409967,50.004688],[12.4100929,50.0047247],[12.4101343,50.0047139],[12.4101814,50.0047146],[12.4102028,50.0047339],[12.4102742,50.0047435],[12.4103281,50.0047609],[12.4103631,50.0047595],[12.4104077,50.0047556],[12.410454,50.0047605],[12.4104983,50.0047738],[12.4105279,50.0047777],[12.4105672,50.0047921],[12.4106143,50.0047937],[12.4106689,50.0047875],[12.410706,50.0047793],[12.410727,50.004782],[12.410783,50.0048059],[12.410899,50.0048396],[12.4109429,50.0048666],[12.4110424,50.0048914],[12.4111331,50.004863],[12.4111752,50.0048648],[12.4111934,50.0048618],[12.4112248,50.0048733],[12.4113011,50.004866],[12.4113368,50.0048832],[12.4113986,50.0048861],[12.4114449,50.0048988],[12.4114806,50.0048983],[12.4115959,50.0049132],[12.4116141,50.0049304],[12.4116555,50.0049389],[12.4116822,50.004951],[12.4117133,50.0049428],[12.4117297,50.0049247],[12.4118164,50.004902],[12.4118164,50.0048742],[12.4118278,50.0048696],[12.4118592,50.0048749],[12.4118813,50.004874],[12.4118956,50.0048671],[12.4119284,50.0048701],[12.4119734,50.0048673],[12.4120019,50.0048965],[12.4120412,50.0049072],[12.4120837,50.0048933],[12.4121118,50.0048611],[12.4121357,50.0048556],[12.4121846,50.0048582],[12.4122332,50.0048389],[12.4122617,50.004838],[12.4122963,50.0048228],[12.4123638,50.0048261],[12.412444,50.0048423],[12.4124779,50.0048228],[12.4125129,50.0048164],[12.4125646,50.0047976],[12.4126431,50.0047949],[12.4126628,50.0047829],[12.4126638,50.0047575],[12.4127163,50.0047669],[12.4127313,50.0047843],[12.4127456,50.0047962],[12.4127627,50.0047976],[12.4128594,50.0047689],[12.4129033,50.0047343],[12.4129654,50.0047437],[12.4130082,50.0047419],[12.4131024,50.004763],[12.4131613,50.004802],[12.4132444,50.0047536],[12.4132776,50.0047423],[12.4132951,50.004743],[12.413319,50.0047306],[12.4133589,50.0047279],[12.4134282,50.004674],[12.4135031,50.0047068],[12.4135402,50.0046992],[12.4135498,50.004693],[12.4135855,50.0046871],[12.4136023,50.0046958],[12.4136219,50.004693],[12.4136312,50.0046761],[12.4136469,50.0046703],[12.4136911,50.0046433],[12.4137361,50.0046291],[12.4137579,50.0046139],[12.413821,50.0046247],[12.4138446,50.0045976],[12.413902,50.004588],[12.4139241,50.0045951],[12.4139827,50.0045905],[12.4140098,50.0046082],[12.4140355,50.004591],[12.4140729,50.0045788],[12.4141008,50.0045791],[12.4141008,50.0045894],[12.41416,50.0046022],[12.4141864,50.0046002],[12.4142185,50.0046105],[12.4143209,50.0046098],[12.4143727,50.0045887],[12.4144968,50.0045823],[12.4145468,50.0045917],[12.4146235,50.0045713],[12.4146253,50.0045609],[12.4146824,50.0045431],[12.4146892,50.0045265],[12.4147966,50.0044724],[12.4148654,50.0044715],[12.4149314,50.0044561],[12.4149982,50.0044245],[12.4151459,50.0043804],[12.4151491,50.004355],[12.4152751,50.0043059],[12.4153,50.0043119],[12.4154,50.0042578],[12.4155041,50.0042234],[12.4155655,50.0041986],[12.4156551,50.0041896],[12.4157421,50.0041543],[12.4158157,50.0041325],[12.415897,50.004097],[12.415912,50.0040736],[12.4160208,50.004013],[12.4160565,50.003977],[12.4161885,50.0038926],[12.4162099,50.0038952],[12.4162431,50.0038867],[12.4163619,50.0038477],[12.4164401,50.003827],[12.4164786,50.0038298],[12.4165179,50.003822],[12.4165503,50.0038043],[12.4165732,50.0037807],[12.4165957,50.0037715],[12.4167434,50.003739],[12.4167723,50.0037264],[12.4167958,50.0037078],[12.4168494,50.0036929],[12.4169414,50.0036486],[12.4170028,50.0036365],[12.4170406,50.0036122],[12.4171102,50.0035922],[12.4172408,50.0035392],[12.4173425,50.0034817],[12.4175106,50.003345],[12.4179662,50.0029209],[12.4182948,50.0026975],[12.4189735,50.0023047],[12.4191733,50.0022092],[12.4199287,50.0019251],[12.4207494,50.001656],[12.4209039,50.0015992],[12.4217032,50.0013629],[12.4220383,50.0012712],[12.4225749,50.001012],[12.4232176,50.0008109],[12.4238412,50.0005734],[12.4240674,50.0004503],[12.4243398,50.0003019],[12.4243872,50.0003009],[12.4244392,50.0003833],[12.4244301,50.0004569],[12.424362,50.0006126],[12.4243051,50.0006756],[12.4243446,50.0006929],[12.4246494,50.000826],[12.4249656,50.0009723],[12.4252063,50.0010738],[12.425494,50.0012075],[12.4256758,50.0012918],[12.4259397,50.0013764],[12.4267637,50.0015864],[12.4268351,50.0016046],[12.4272544,50.0017477],[12.4275154,50.0018683],[12.4276612,50.0019154],[12.4280548,50.0020077],[12.4284416,50.0020843],[12.4290936,50.0021633],[12.4296197,50.0022689],[12.4299413,50.0023214],[12.4305077,50.0023858],[12.4310751,50.0024616],[12.4316509,50.0025104],[12.4316364,50.0023316],[12.4316223,50.002044],[12.431677,50.0017502],[12.4316819,50.0017246],[12.4319108,50.001207],[12.4319302,50.0010876],[12.4319212,50.0003364],[12.431985,50.0001903],[12.4320546,50.000127],[12.4325264,50.0000565],[12.4333737,49.9998571],[12.4338308,49.9997032],[12.4340579,49.9995516],[12.4344064,49.9992481],[12.4345934,49.999007],[12.4347091,49.9989019],[12.4347976,49.9988216],[12.4349824,49.9987064],[12.4351814,49.9985336],[12.4352722,49.998419],[12.4353002,49.9982561],[12.4352413,49.9980195],[12.4352569,49.9977134],[12.4352078,49.9972814],[12.4353781,49.9963599],[12.4355763,49.9955872],[12.4357118,49.995072],[12.4357212,49.9950183],[12.4357465,49.9948723],[12.4357535,49.9945855],[12.4357415,49.9944592],[12.4356694,49.9942886],[12.4353017,49.9935033],[12.4344033,49.9933593],[12.4335904,49.9932091],[12.4329774,49.9930299],[12.4320937,49.9929718],[12.4316924,49.9929695],[12.4315313,49.9929852],[12.4311388,49.9930235],[12.4304128,49.9928902],[12.4296515,49.9927504],[12.4294432,49.9927025],[12.4287561,49.9925263],[12.4283468,49.9924578],[12.4283224,49.9924446],[12.4281236,49.992338],[12.4278903,49.9921382],[12.4269958,49.9916726],[12.4256832,49.9909898],[12.4260093,49.9906012],[12.4261953,49.9904099],[12.4264657,49.99016],[12.4265076,49.9901569],[12.4266821,49.9901892],[12.4267781,49.9901825],[12.4269112,49.9901471],[12.4275075,49.9899272],[12.4278185,49.9897684],[12.4280514,49.9896678],[12.4283205,49.98961],[12.4285616,49.9895225],[12.4292222,49.9892644],[12.429523,49.9891262],[12.4297565,49.9890223],[12.430047,49.9888927],[12.4303612,49.9887982],[12.4307435,49.9886936],[12.4308656,49.9886485],[12.4309331,49.9886119],[12.4310403,49.9885538],[12.4310632,49.9885412],[12.431362,49.9885726],[12.4314484,49.9883911],[12.431487,49.9883411],[12.4316111,49.9881376],[12.4316341,49.9880927],[12.4317055,49.9879747],[12.4318289,49.9877257],[12.432001,49.9873109],[12.4318113,49.987108],[12.4317295,49.9869968],[12.431678,49.986897],[12.4316383,49.9867242],[12.4316085,49.986426],[12.431584,49.9862467],[12.4315137,49.9860004],[12.4314303,49.9857669],[12.4313776,49.9855716],[12.4313686,49.9854444],[12.4313646,49.9851884],[12.4313836,49.9850203],[12.4314011,49.9846996],[12.4314428,49.9846048],[12.4314804,49.984392],[12.4316359,49.9844129],[12.4318211,49.9844555],[12.4321,49.9845387],[12.432675,49.9847375],[12.4332528,49.9849528],[12.433595,49.9850767],[12.4339137,49.9851809],[12.4339473,49.9851364],[12.4347876,49.9853574],[12.4352121,49.985467],[12.4358649,49.9856556],[12.4361539,49.9857331],[12.4363304,49.9857675],[12.4365392,49.9857943],[12.4380606,49.9863205],[12.4381913,49.9863668],[12.438241,49.9863842],[12.4388035,49.9865818],[12.4392382,49.986726],[12.4396493,49.9868608],[12.4399876,49.9869617],[12.4400415,49.9869058],[12.4402697,49.9867147],[12.4407226,49.986418],[12.4413043,49.9866933],[12.4416927,49.986874],[12.4419204,49.9870244],[12.4425894,49.9875718],[12.4428435,49.9877402],[12.4431911,49.9879544],[12.4437682,49.9882388],[12.444166,49.9884105],[12.4444596,49.9885577],[12.4450931,49.9889273],[12.4457528,49.9892372],[12.4461669,49.989395],[12.4464798,49.9895265],[12.446688,49.9896295],[12.4471267,49.9898764],[12.4473147,49.9899708],[12.4475335,49.9900657],[12.4475645,49.9901047],[12.4477638,49.9903101],[12.4478407,49.9903051],[12.4478588,49.9903039],[12.4482591,49.9902772],[12.4485526,49.9902762],[12.4488241,49.9902952],[12.4490152,49.9903283],[12.4491898,49.9903741],[12.4495056,49.990464],[12.4496039,49.9904919],[12.4499542,49.990603],[12.4502694,49.9907206],[12.4504647,49.9908026],[12.450769,49.9909636],[12.4514438,49.9911175],[12.4515849,49.9911575],[12.4516826,49.9911948],[12.4518742,49.9912872],[12.4521799,49.9913725],[12.4530476,49.9915815],[12.4535913,49.9916654],[12.4540094,49.9924622],[12.4539914,49.9928156],[12.4539067,49.993279],[12.4538294,49.993486],[12.4542256,49.9935657],[12.4545603,49.9936116],[12.4546097,49.9936177],[12.4552426,49.9936949],[12.4555512,49.9937428],[12.4563904,49.9940152],[12.4569383,49.9941524],[12.4570373,49.9941522],[12.4572616,49.994179],[12.4574731,49.9941856],[12.4577034,49.9941991],[12.4577629,49.9941926],[12.457869,49.9942197],[12.4579582,49.9942518],[12.4579924,49.9942821],[12.4581825,49.9943658],[12.4583447,49.9944819],[12.458508,49.9945434],[12.4588399,49.9947132],[12.458966,49.9947657],[12.4607382,49.9948743],[12.4619936,49.994593],[12.4623213,49.9945181],[12.4635538,49.9942346],[12.4640677,49.9940541],[12.4643632,49.9938968],[12.4651282,49.9934243],[12.4658263,49.9930665],[12.4659064,49.9931135],[12.4671639,49.9928141],[12.4676565,49.9924703],[12.4683717,49.9920588],[12.4691592,49.9915939],[12.470046,49.9909145],[12.4701346,49.9907773],[12.4699438,49.990647],[12.4694345,49.9904143],[12.4683627,49.9898823],[12.4684814,49.9894155],[12.4687467,49.9890274],[12.469038,49.9887179],[12.4693294,49.9884083],[12.4697281,49.9879964],[12.4702289,49.9874693],[12.4703476,49.987312],[12.4708458,49.9867021],[12.4718832,49.9861568],[12.4736651,49.9852193],[12.4745504,49.9845181],[12.4754398,49.9838139],[12.4760025,49.9823482],[12.4763273,49.9814883],[12.4766092,49.9807413],[12.4771916,49.9808423],[12.4779152,49.9809667],[12.4784025,49.9810317],[12.4789962,49.9810976],[12.4796056,49.9811477],[12.4799817,49.9811672],[12.4807486,49.9811779],[12.4815569,49.9811889],[12.4816007,49.9808452],[12.4824947,49.9808687],[12.4830057,49.9808966],[12.4838061,49.980968],[12.4844105,49.9810421],[12.4844815,49.9811524],[12.4845607,49.9811513],[12.4846592,49.9811402],[12.4853285,49.9810104],[12.4855042,49.9809858],[12.4860244,49.9809373],[12.486357,49.9809352],[12.4867114,49.9809928],[12.4870202,49.9810707],[12.4875744,49.9812272],[12.4877654,49.9812663],[12.4885519,49.981363],[12.4891464,49.9814882],[12.4893845,49.9815305],[12.4899586,49.9816004],[12.4901104,49.9809902],[12.4902709,49.9806492],[12.4906202,49.980219],[12.4907887,49.9798608],[12.4912505,49.9796427],[12.4919161,49.9793361],[12.4919552,49.9788676],[12.4921498,49.9785686],[12.4923105,49.9783592],[12.492569,49.9779857],[12.4928684,49.9776114],[12.4931277,49.9773132],[12.4933213,49.9771592],[12.4936845,49.9767926],[12.4938139,49.9766164],[12.4940607,49.9763635],[12.4942536,49.9761218],[12.4943414,49.9760411],[12.4943463,49.9759289],[12.4949835,49.9754486],[12.4953225,49.9752774],[12.4955265,49.9751007],[12.4956371,49.974986],[12.4959257,49.9748034],[12.4964968,49.9743869],[12.4966992,49.9742627],[12.4970212,49.9740047],[12.4972744,49.9738273],[12.4975427,49.9736095],[12.4977138,49.9734329],[12.4978889,49.9732919],[12.4982548,49.9730106],[12.4984444,49.9728989],[12.4985824,49.9728176],[12.4988539,49.9726317],[12.4990554,49.9723249],[12.4993041,49.9721356],[12.4995578,49.9720459],[12.4991374,49.9718854],[12.498672,49.9717445],[12.4984435,49.9716722],[12.498164,49.9715837],[12.497482,49.9714233],[12.4969651,49.9713009],[12.4963174,49.9710232],[12.4956709,49.9707458],[12.4950024,49.9704386],[12.494058,49.9698818],[12.4940221,49.9698607],[12.4938661,49.9695764],[12.4937543,49.9693001],[12.4937189,49.9691771],[12.4937257,49.9689883],[12.4937058,49.9688095],[12.4936655,49.9686744],[12.4937111,49.9684198],[12.4938043,49.9681338],[12.4938578,49.9680036],[12.4939855,49.9676944],[12.4940219,49.9675738],[12.4940422,49.9672555],[12.4940535,49.9668385],[12.4940338,49.9666492],[12.4939395,49.9664357],[12.4938303,49.9662034],[12.4937632,49.9659978],[12.4936036,49.9657271],[12.4934201,49.965372],[12.4933674,49.9652356],[12.4932763,49.9651045],[12.4931052,49.9648677],[12.4930268,49.9647177],[12.492954,49.9645677],[12.4929011,49.9643995],[12.4928554,49.9643161],[12.4926857,49.9640935],[12.4922885,49.9636728],[12.4921415,49.9634882],[12.4916893,49.9630661],[12.4914872,49.9627875],[12.4913037,49.9626129],[12.4910601,49.9624353],[12.4909148,49.9622919],[12.4908401,49.962161],[12.4908226,49.9620445],[12.4908493,49.9618007],[12.49091,49.9616857],[12.4911176,49.9615193],[12.4911933,49.9613961],[12.4912257,49.9612907],[12.4912893,49.9611071],[12.4913126,49.9609591],[12.4913204,49.960868],[12.4912962,49.9607358],[12.4912244,49.9605446],[12.4911876,49.9603629],[12.4911343,49.960141],[12.4910757,49.9599155],[12.491044,49.9597382],[12.4910258,49.9595636],[12.4909985,49.9594676],[12.4909365,49.9593831],[12.4908021,49.9592623],[12.4907464,49.959173],[12.4906576,49.9589131],[12.4906033,49.9586838],[12.4905553,49.9585949],[12.4904523,49.9585326],[12.4901619,49.9583901],[12.4899639,49.9583124],[12.4897484,49.9582575],[12.4894169,49.9581315],[12.4891675,49.9580403],[12.4890761,49.9580163],[12.4889948,49.9580076],[12.488846,49.9580031],[12.4886986,49.9579998],[12.4883406,49.9579237],[12.4881272,49.9578879],[12.4880162,49.9578822],[12.4878976,49.9578897],[12.4876019,49.9579377],[12.4873103,49.9579672],[12.4870649,49.9579863],[12.4868468,49.958021],[12.4866852,49.9580302],[12.4865309,49.9580321],[12.4861946,49.958092],[12.4858215,49.9581293],[12.4854706,49.9582026],[12.4850407,49.9582327],[12.4848823,49.958262],[12.4846822,49.9583197],[12.4844921,49.9583708],[12.483766,49.9583702],[12.4835499,49.9583398],[12.4831667,49.9583135],[12.4827213,49.9583196],[12.4815742,49.9582962],[12.4814273,49.9582618],[12.4809753,49.9580557],[12.4806982,49.9578872],[12.480364,49.9577101],[12.479941,49.9574662],[12.4795463,49.9572379],[12.4792852,49.957102],[12.4791276,49.9570326],[12.4788239,49.9569145],[12.4785956,49.956835],[12.4782922,49.9567705],[12.4781864,49.9567223],[12.4780803,49.9565581],[12.4778794,49.956371],[12.4776816,49.9561653],[12.4773782,49.9558466],[12.4771356,49.9555979],[12.4770435,49.955526],[12.4767251,49.9552516],[12.4760529,49.9546749],[12.4758893,49.9544648],[12.475466,49.9537595],[12.4751713,49.9531607],[12.4752279,49.9524935],[12.4748807,49.9518796],[12.4734616,49.9508155],[12.4719427,49.9498486],[12.4704533,49.9488484],[12.4699908,49.9483245],[12.4698191,49.9475837],[12.4700923,49.9457868],[12.4704916,49.9450021],[12.4709235,49.9444443],[12.4711083,49.9441868],[12.4712398,49.9440034],[12.4713893,49.9438723],[12.4715324,49.9437467],[12.4720971,49.9432513],[12.4723819,49.9427339],[12.4724026,49.9426964],[12.4728389,49.9419045],[12.4735083,49.9406403],[12.4741166,49.9398424],[12.4749306,49.9385227],[12.475613,49.9379768],[12.4760085,49.9376602],[12.4771197,49.9367248],[12.4774087,49.9364814],[12.478335,49.9355348],[12.481103,49.9358196],[12.4829903,49.9356927],[12.4854999,49.9359297],[12.4872314,49.9361045],[12.4896927,49.9363575],[12.4908449,49.9364365],[12.4909198,49.9364416],[12.4920663,49.9363329],[12.4933952,49.9365978],[12.4938478,49.9366919],[12.4942936,49.9367842],[12.4943161,49.936789],[12.4943308,49.9367488],[12.4943511,49.9367249],[12.4943655,49.9366371],[12.4943347,49.9366222],[12.494317,49.9366026],[12.4942849,49.936579],[12.4942605,49.9365328],[12.4942716,49.9365224],[12.4942719,49.9365089],[12.4942961,49.9364839],[12.4942841,49.9364749],[12.4942845,49.9364462],[12.4942961,49.9364299],[12.4942925,49.9364129],[12.4943177,49.9363908],[12.4943022,49.936372],[12.4942689,49.9363808],[12.4942517,49.9363586],[12.4942416,49.9363504],[12.4942437,49.9363318],[12.4942498,49.936315],[12.4942025,49.9362904],[12.4941964,49.936271],[12.4942035,49.9362274],[12.4941905,49.9361871],[12.4941956,49.9361617],[12.4941912,49.9361378],[12.4941859,49.9360891],[12.4941481,49.9360819],[12.4941422,49.9360457],[12.4940737,49.9360009],[12.4940553,49.9359723],[12.4940713,49.935959],[12.4940392,49.9359036],[12.4940329,49.9358534],[12.4940209,49.9358402],[12.4939965,49.9358287],[12.4940194,49.9358056],[12.4940037,49.9357908],[12.4940009,49.9357692],[12.4940158,49.9357361],[12.4940218,49.9356764],[12.494013,49.9356618],[12.4939793,49.9356615],[12.4939563,49.9356521],[12.4939532,49.9356299],[12.4939317,49.9356142],[12.493929,49.935591],[12.4939403,49.9355819],[12.4939309,49.935556],[12.4939697,49.9355412],[12.4939601,49.9355164],[12.4939553,49.935498],[12.493919,49.9354955],[12.4938975,49.9354734],[12.4939043,49.9354213],[12.4938848,49.9353885],[12.4938856,49.9353331],[12.4938424,49.9353247],[12.4937913,49.9352853],[12.4937685,49.9352805],[12.4937753,49.9352643],[12.4937954,49.9352599],[12.4937763,49.9352465],[12.4937603,49.9352498],[12.4937358,49.9352327],[12.4937219,49.9352275],[12.4937051,49.935176],[12.4937055,49.9351532],[12.4936189,49.9351296],[12.4936226,49.9351193],[12.4936055,49.9350903],[12.4936216,49.9350649],[12.4936025,49.9350495],[12.4936071,49.9350371],[12.4935964,49.9350123],[12.4936497,49.9349933],[12.4936568,49.9349595],[12.4936242,49.9349523],[12.4935775,49.9349304],[12.4934983,49.9349169],[12.4934815,49.9349084],[12.4934604,49.934881],[12.4934698,49.9348636],[12.49346,49.9348494],[12.493455,49.9348424],[12.4934287,49.934841],[12.4934194,49.9348226],[12.493421,49.9348105],[12.4934084,49.9347952],[12.4934346,49.9347721],[12.4934088,49.9347536],[12.4934176,49.9347403],[12.4933843,49.9347286],[12.4933685,49.9346989],[12.4933822,49.9346881],[12.4933846,49.9346745],[12.493377,49.934654],[12.4933596,49.934636],[12.4933597,49.9345813],[12.4933811,49.9345395],[12.4933839,49.9345039],[12.4933671,49.9344756],[12.4933677,49.934443],[12.4933396,49.9344331],[12.4933415,49.934412],[12.4933585,49.9343999],[12.4933542,49.9343821],[12.4933336,49.9343632],[12.4932684,49.9343483],[12.4932719,49.9343151],[12.4932387,49.9341924],[12.4932619,49.9341704],[12.4932504,49.9341632],[12.4932581,49.9341563],[12.4932603,49.9341416],[12.4932783,49.9341364],[12.4932947,49.9341416],[12.493325,49.9341355],[12.4933582,49.9341002],[12.493317,49.934055],[12.4932875,49.9340455],[12.4932686,49.9339825],[12.493296,49.9339569],[12.493298,49.9339443],[12.4932518,49.9339094],[12.4932411,49.9338802],[12.4932548,49.9338677],[12.4932379,49.9338495],[12.4932289,49.9338017],[12.4932189,49.9337898],[12.4932536,49.9337829],[12.4932571,49.9337503],[12.4932653,49.9337376],[12.4932453,49.9337323],[12.4932384,49.9337222],[12.4932137,49.9337154],[12.4931918,49.9337032],[12.4931578,49.9336487],[12.4931642,49.9336402],[12.493182,49.9336373],[12.4932071,49.9336392],[12.4932262,49.9336126],[12.4932468,49.9335948],[12.4932457,49.933581],[12.4932317,49.9335858],[12.4931976,49.9335624],[12.4932337,49.9335239],[12.4932018,49.9334726],[12.493176,49.933476],[12.4931608,49.9334852],[12.4931417,49.933478],[12.4931288,49.9334284],[12.4931633,49.933429],[12.4931944,49.933419],[12.4931873,49.9333979],[12.4931321,49.9333776],[12.4931177,49.9333649],[12.4931176,49.9333564],[12.4931354,49.9333352],[12.4930934,49.9333241],[12.4930949,49.9333005],[12.4930732,49.9332876],[12.4930706,49.9332384],[12.4930194,49.9331818],[12.4929935,49.9331763],[12.4929923,49.9331631],[12.493022,49.93316],[12.4939788,49.9330691],[12.4952766,49.9329452],[12.4968907,49.9326422],[12.4982932,49.932487],[12.4984449,49.9323906],[12.4989861,49.9320468],[12.5000372,49.93138],[12.5003233,49.9312003],[12.5017437,49.9304318],[12.5037754,49.9296292],[12.5058299,49.9291824],[12.5061207,49.9291477],[12.5076511,49.9289657],[12.5093626,49.9284563],[12.5104718,49.9281363],[12.5112463,49.927874],[12.5121144,49.927577],[12.5140006,49.9278453],[12.5162119,49.9278795],[12.5182375,49.9277666],[12.5202712,49.9278205],[12.5223255,49.9276833],[12.5238683,49.9272627],[12.5249098,49.9270522],[12.5262215,49.9267882],[12.5274061,49.9266105],[12.5275579,49.9265877],[12.5288397,49.9263962],[12.5302129,49.9258986],[12.53177,49.9255881],[12.5341847,49.9250743],[12.5362183,49.9248885],[12.5371961,49.9248719],[12.5385522,49.9248431],[12.5391519,49.9246974],[12.5408456,49.9242852],[12.5415957,49.9239755],[12.5426778,49.9235275],[12.5434431,49.9231366],[12.5446033,49.9225411],[12.5461991,49.9215549],[12.5476748,49.920493],[12.5483245,49.9192549],[12.5483476,49.9180324],[12.5483226,49.9173815],[12.5482896,49.9165265],[12.5487677,49.9154065],[12.5489749,49.9145229],[12.5490349,49.9132005],[12.5500475,49.9119184],[12.5507686,49.9106003],[12.5509623,49.9100297],[12.5509818,49.9099728],[12.5512077,49.9093084],[12.5511545,49.9085531],[12.5510895,49.9076775],[12.5509514,49.9065989],[12.5508989,49.9061954],[12.5507002,49.9052849],[12.5507735,49.9049595],[12.5509965,49.9039344],[12.5505759,49.9027308],[12.5500296,49.9015379],[12.5496202,49.9010396],[12.5490786,49.9003825],[12.5488669,49.900058],[12.548467,49.8994426],[12.5483201,49.8992138],[12.5481236,49.8989125],[12.5480827,49.8988494],[12.5479755,49.8987305],[12.5469644,49.8976089],[12.5458803,49.8964048],[12.5451823,49.8956423],[12.5439834,49.8949811],[12.5434749,49.8947008],[12.5430191,49.8942227],[12.542768,49.8939595],[12.5422302,49.8934776],[12.5417223,49.8930227],[12.5416922,49.8929956],[12.5412579,49.8926075],[12.5411567,49.8925176],[12.5408901,49.8922496],[12.5407814,49.8921419],[12.5403922,49.8917508],[12.5403538,49.8917123],[12.5398761,49.8912319],[12.5395266,49.8912225],[12.5394592,49.8912207],[12.5375959,49.8911691],[12.5354651,49.8908066],[12.5349876,49.890492],[12.533789,49.8897024],[12.532198,49.8890459],[12.5305699,49.8881372],[12.5290752,49.887081],[12.5268491,49.8855332],[12.5262543,49.8851387],[12.5258452,49.8848677],[12.525436,49.8845966],[12.524512,49.8835786],[12.5243928,49.8834473],[12.5230397,49.8826171],[12.5216093,49.8816898],[12.5216126,49.8807768],[12.5212391,49.8805286],[12.5203032,49.8794541],[12.5196329,49.878155],[12.5187324,49.8771506],[12.5186452,49.8764607],[12.5186531,49.8751895],[12.5186671,49.873923],[12.5186699,49.8736584],[12.5188403,49.872098],[12.5186117,49.8704972],[12.5185765,49.8690683],[12.5178719,49.8676092],[12.5178409,49.8675486],[12.5178165,49.8675009],[12.5178008,49.8674703],[12.5169665,49.8658513],[12.5157894,49.8647178],[12.5149832,49.8634107],[12.5146123,49.8619663],[12.5145361,49.8619104],[12.5130643,49.8608291],[12.5121132,49.8594508],[12.5120786,49.8594006],[12.512028,49.8593615],[12.5114987,49.8589541],[12.5109695,49.8585466],[12.5095982,49.8581521],[12.5092578,49.8580543],[12.5084929,49.8578339],[12.5077278,49.8576135],[12.5076957,49.8576043],[12.5074982,49.8575986],[12.5057363,49.8575482],[12.5034413,49.8574879],[12.5013458,49.8572103],[12.4991785,49.857033],[12.4984459,49.856978],[12.4978631,49.8569341],[12.4981615,49.8548668],[12.4976283,49.8529406],[12.4974358,49.8515344],[12.4978729,49.8501807],[12.4980437,49.8499062],[12.4984461,49.8492597],[12.4986503,49.8489316],[12.4991089,49.8473256],[12.498917,49.8457704],[12.4988254,49.8450502],[12.4987525,49.8444571],[12.4986123,49.8429279],[12.4987008,49.8425366],[12.4987897,49.8421452],[12.498989,49.8412686],[12.49862,49.840015],[12.4985494,49.8387219],[12.4985067,49.8386331],[12.4984465,49.838507],[12.498296,49.8381918],[12.4982399,49.838074],[12.4980128,49.8376],[12.4979787,49.8375246],[12.4979739,49.8375348],[12.4979133,49.8375649],[12.4979005,49.8375629],[12.4978686,49.8375435],[12.4978613,49.8375301],[12.4978497,49.8375278],[12.4978375,49.8375252],[12.49777,49.8375315],[12.4977338,49.8375525],[12.4977204,49.8375761],[12.4976227,49.8376828],[12.4975524,49.8377234],[12.4975463,49.8377768],[12.497511,49.8378021],[12.4974815,49.8378102],[12.4973418,49.8378098],[12.4972901,49.8378192],[12.4972661,49.8378277],[12.4972056,49.8378282],[12.4970104,49.8378371],[12.4970241,49.8378557],[12.4970254,49.8378759],[12.4970622,49.8379281],[12.4970658,49.837948],[12.497043,49.8379778],[12.4969666,49.8380116],[12.4969362,49.8380131],[12.4968133,49.8379958],[12.4967147,49.8379519],[12.4966672,49.8379548],[12.4964703,49.8380604],[12.4964566,49.8380641],[12.4963477,49.8381668],[12.4962616,49.8381996],[12.4962059,49.8381951],[12.4961916,49.838199],[12.4961313,49.8382245],[12.4960355,49.8382555],[12.4959965,49.8382579],[12.4959521,49.8382441],[12.49595,49.8382321],[12.4959862,49.8381941],[12.4960005,49.8381909],[12.4960066,49.8381582],[12.495999,49.8381413],[12.4959494,49.8381426],[12.4959351,49.8381468],[12.4958816,49.8381796],[12.4958334,49.8382033],[12.4957987,49.8382323],[12.4957765,49.8382704],[12.4957689,49.8382951],[12.4957829,49.8383422],[12.4957407,49.8383845],[12.4956959,49.8383972],[12.4955319,49.8384029],[12.4954935,49.8384213],[12.495384,49.8384298],[12.4953249,49.8384194],[12.4952239,49.8384241],[12.4951999,49.8384174],[12.4951798,49.8383801],[12.4951308,49.8383299],[12.4950797,49.8382588],[12.4950544,49.8382494],[12.4949689,49.8383207],[12.4949035,49.8383407],[12.4948801,49.8383593],[12.4948289,49.8383611],[12.4947711,49.8383271],[12.4947419,49.8383126],[12.4947303,49.8383012],[12.4946999,49.838258],[12.4946722,49.8382616],[12.4946555,49.8382891],[12.4946062,49.8383171],[12.4946442,49.8383697],[12.4946537,49.8383733],[12.494699,49.8383821],[12.494717,49.838396],[12.494706,49.8384111],[12.4945502,49.8384547],[12.4945444,49.8384722],[12.4945304,49.8384843],[12.4945036,49.8385004],[12.4944498,49.8385108],[12.4943877,49.8385081],[12.4942791,49.8384908],[12.494203,49.8384859],[12.4940822,49.8385108],[12.4940232,49.8384861],[12.4940061,49.8384773],[12.4939736,49.8384769],[12.4939166,49.8385148],[12.4939033,49.8385359],[12.4939048,49.8385499],[12.4939306,49.838552],[12.4939428,49.8385756],[12.4939443,49.8386123],[12.4939218,49.8386445],[12.493888,49.8386725],[12.4938612,49.8387078],[12.4938302,49.8387196],[12.4937961,49.8387232],[12.4937246,49.8387051],[12.4936553,49.83871],[12.4936343,49.8387024],[12.4935827,49.8385921],[12.4935709,49.8385824],[12.4935401,49.8385791],[12.4935225,49.8385964],[12.4935219,49.8386162],[12.4935355,49.8386784],[12.4935149,49.8387171],[12.4934634,49.8387302],[12.4933572,49.8387345],[12.4933417,49.8387234],[12.4933216,49.8386586],[12.4932727,49.8386641],[12.4931969,49.8387101],[12.4931628,49.8387196],[12.4930943,49.83873],[12.4930438,49.8387661],[12.4929954,49.8387701],[12.4929884,49.8387879],[12.4929766,49.838803],[12.4929428,49.8388225],[12.492881,49.8388474],[12.49285,49.8388543],[12.4928272,49.838855],[12.4928092,49.8388649],[12.4927283,49.8388847],[12.4927015,49.8388823],[12.4926318,49.8388588],[12.4925798,49.8388631],[12.4925591,49.8388702],[12.4925329,49.8388705],[12.4924824,49.8389418],[12.4924702,49.8389479],[12.4924568,49.8389526],[12.4924188,49.8389506],[12.4923582,49.8389282],[12.49235,49.8389292],[12.4923448,49.8389383],[12.49234,49.8389673],[12.4923144,49.8389785],[12.4923056,49.8389799],[12.4922642,49.8389685],[12.4921705,49.8389818],[12.4921537,49.8389901],[12.4921498,49.8390252],[12.4921306,49.8390348],[12.492088,49.8390201],[12.4920479,49.8390297],[12.4920196,49.8390456],[12.4920083,49.8390635],[12.4920037,49.8390768],[12.4920269,49.8390958],[12.4920877,49.8391127],[12.4921066,49.8391133],[12.4921005,49.8391284],[12.4920786,49.8391382],[12.4920314,49.8391567],[12.4920223,49.8391836],[12.4920424,49.8392415],[12.4920357,49.8392536],[12.49198,49.8392988],[12.4919696,49.8393284],[12.4920083,49.8393704],[12.4920083,49.8393812],[12.4919815,49.8394038],[12.4919605,49.8394089],[12.4919572,49.8394526],[12.491903,49.8394791],[12.4918619,49.8394776],[12.491823,49.8393761],[12.4917831,49.8393751],[12.4917067,49.8394464],[12.4916873,49.8394491],[12.4915874,49.839434],[12.4914362,49.8394601],[12.4913541,49.8393916],[12.491239,49.8394016],[12.4911794,49.8393967],[12.491103,49.8394014],[12.4910829,49.8393765],[12.4910644,49.8393688],[12.4910248,49.8393688],[12.4909609,49.8393769],[12.4909241,49.8393922],[12.4908733,49.8394513],[12.4908879,49.8394933],[12.490925,49.8395139],[12.4909496,49.839515],[12.4909848,49.8395373],[12.4909776,49.8395688],[12.490946,49.8396034],[12.4909305,49.839633],[12.4909302,49.8396457],[12.4908903,49.8396705],[12.4908194,49.8397019],[12.4907083,49.8397217],[12.4906733,49.8397083],[12.4905464,49.839673],[12.4903843,49.8396491],[12.4903429,49.8396491],[12.4902142,49.8396375],[12.4901585,49.8396],[12.4901238,49.8395647],[12.4901159,49.8395602],[12.4900997,49.8395631],[12.4900705,49.8395763],[12.4900203,49.8396055],[12.4899272,49.8396512],[12.4898803,49.8396819],[12.4898335,49.8397227],[12.4898076,49.8397527],[12.4897805,49.8397776],[12.4897589,49.8398296],[12.4897592,49.8398663],[12.4897677,49.8399062],[12.4897632,49.8399115],[12.4897501,49.839967],[12.4897276,49.8399937],[12.4896959,49.8400129],[12.489678,49.8400096],[12.489667,49.84002],[12.4896673,49.8400528],[12.4897029,49.8401444],[12.4897547,49.8402559],[12.4897626,49.8402814],[12.4897802,49.8403085],[12.4897851,49.8403261],[12.4897793,49.8403432],[12.4897261,49.840395],[12.4895961,49.840428],[12.4895745,49.8404409],[12.489531,49.8404545],[12.489493,49.8404786],[12.4894202,49.8405012],[12.4894135,49.8405385],[12.489388,49.8405536],[12.489321,49.840603],[12.4893049,49.8406042],[12.4892724,49.8406099],[12.4892623,49.8406176],[12.4891896,49.8406419],[12.4891089,49.8406861],[12.4890743,49.840709],[12.4890128,49.8407218],[12.4889647,49.840722],[12.4888865,49.8407487],[12.4888606,49.8407559],[12.4888786,49.8407804],[12.4888141,49.840803],[12.4887581,49.8408262],[12.4886774,49.8408319],[12.488623,49.840866],[12.4885159,49.8408748],[12.4883302,49.8409528],[12.4883022,49.8409741],[12.4882037,49.8409975],[12.4881513,49.8409891],[12.4880339,49.841003],[12.4879867,49.8410334],[12.4879228,49.8410552],[12.4878902,49.8410703],[12.4878355,49.8410821],[12.4876757,49.8410911],[12.4876453,49.8411455],[12.4876151,49.8411731],[12.4875887,49.8411898],[12.4875452,49.8411869],[12.4875375,49.8411998],[12.4875707,49.8412306],[12.4876437,49.8412157],[12.4876699,49.8412308],[12.4876927,49.841285],[12.4876361,49.8413382],[12.4875981,49.8413645],[12.4875333,49.8414031],[12.4874904,49.8414803],[12.4874313,49.8414842],[12.4873191,49.8414491],[12.4872719,49.8415197],[12.4872104,49.8415146],[12.4871645,49.8414748],[12.4871264,49.8414759],[12.4870936,49.8414901],[12.4870026,49.8415892],[12.4869408,49.8416153],[12.4869122,49.8416102],[12.4868374,49.8416255],[12.486824,49.8416628],[12.4867805,49.8416747],[12.486757,49.8416567],[12.4867412,49.8416053],[12.4866956,49.8416106],[12.4866618,49.8416533],[12.4865693,49.8416985],[12.486565,49.8417466],[12.4865556,49.8417579],[12.4864783,49.8417493],[12.4863569,49.8416983],[12.4863365,49.8417234],[12.4863554,49.8417725],[12.4863544,49.8417888],[12.4863395,49.8418086],[12.4862245,49.8418058],[12.4860304,49.8417613],[12.48537,49.841611],[12.4843369,49.8417667],[12.4832366,49.8419329],[12.4831185,49.8418719],[12.4823302,49.8414631],[12.4820296,49.8413095],[12.4819414,49.8412698],[12.4814598,49.8410558],[12.4812534,49.840919],[12.4796167,49.8397985],[12.4783413,49.8389809],[12.478299,49.838369],[12.4775425,49.8377008],[12.475981,49.8372925],[12.4758516,49.836926],[12.4757454,49.8366732],[12.4756262,49.8363806],[12.4754382,49.8359773],[12.4753423,49.8357721],[12.474971,49.8352945],[12.4744773,49.8346931],[12.4730578,49.8336697],[12.4730748,49.8326341],[12.4730838,49.8320733],[12.4730873,49.8318874],[12.4732478,49.8314862],[12.4733799,49.8310274],[12.4735398,49.8305653],[12.4735835,49.8304647],[12.4735027,49.8302786],[12.473483,49.8301759],[12.4735459,49.8299044],[12.4736833,49.8295959],[12.4737095,49.8294994],[12.4738057,49.8292501],[12.4739484,49.828967],[12.4743089,49.828605],[12.4747255,49.8281209],[12.4749014,49.8278737],[12.4752357,49.8272873],[12.4752861,49.8271443],[12.4754144,49.8268437],[12.4755152,49.8266936],[12.4756146,49.8265757],[12.475639,49.8265805],[12.4758015,49.8263163],[12.4759409,49.8260692],[12.4760331,49.8255865],[12.476242,49.8248905],[12.4762772,49.8248753],[12.4762949,49.8248671],[12.4761915,49.8247759],[12.4761145,49.824685],[12.476058,49.8245849],[12.4756997,49.8238157],[12.4754142,49.8231659],[12.4750568,49.8224971],[12.4748782,49.8221629],[12.4747768,49.8219725],[12.4747133,49.8217863],[12.4746576,49.8214301],[12.4746366,49.821112],[12.4746685,49.8209266],[12.4747156,49.8206411],[12.4748362,49.8201622],[12.4748863,49.8199152],[12.4748147,49.8196583],[12.4748491,49.8192796],[12.4748573,49.8191665],[12.4748126,49.8190766],[12.4740866,49.8182909],[12.4737005,49.8178742],[12.4734163,49.8172926],[12.4731123,49.8166684],[12.4733638,49.8150974],[12.4726253,49.8147936],[12.4721109,49.8146231],[12.4718661,49.8145201],[12.4712871,49.8142947],[12.471235,49.8142823],[12.4707988,49.8141617],[12.4702837,49.814046],[12.4697728,49.8139077],[12.4695547,49.8138456],[12.4693449,49.8137984],[12.469192,49.813782],[12.4687923,49.813678],[12.4679838,49.8133528],[12.4676347,49.8132112],[12.4672599,49.8130609],[12.4671219,49.8129772],[12.4669277,49.8128748],[12.4666549,49.8126789],[12.4663945,49.812502],[12.4662788,49.8124196],[12.4659167,49.8120962],[12.4656941,49.8119013],[12.46558,49.8118008],[12.4655195,49.8117508],[12.4654168,49.8116779],[12.4652891,49.8115722],[12.4649129,49.8111256],[12.4646484,49.8108116],[12.4641076,49.8101696],[12.4640151,49.8100531],[12.4650606,49.8095035],[12.4657884,49.8084988],[12.466416,49.8078978],[12.4667424,49.8069624],[12.4668081,49.8059749],[12.4670628,49.8053508],[12.4675276,49.8048895],[12.4684426,49.8040188],[12.4691485,49.8033473],[12.4705006,49.8023249],[12.4705492,49.8014173],[12.4705969,49.8004385],[12.4706163,49.8003931],[12.4706446,49.8002771],[12.470701,49.8001504],[12.4705512,49.7995215],[12.4696183,49.7990263],[12.4694302,49.7989187],[12.468754,49.7985269],[12.4678174,49.7979665],[12.467529,49.7977939],[12.4672342,49.7975784],[12.4668945,49.7973352],[12.4657731,49.7966665],[12.4655134,49.7962072],[12.4653093,49.7956093],[12.4654267,49.7951142],[12.4660782,49.7943744],[12.4666087,49.7940552],[12.4679011,49.7934751],[12.4690531,49.7928761],[12.4695776,49.7926836],[12.469771,49.792361],[12.4701301,49.7922915],[12.470814,49.7921111],[12.4710554,49.7920844],[12.4713011,49.7920669],[12.4717023,49.7920034],[12.4721264,49.79196],[12.4727136,49.7919105],[12.4729186,49.7919645],[12.474184,49.7919957],[12.4746405,49.7909345],[12.4748139,49.7904616],[12.4748629,49.7903053],[12.4748886,49.7901811],[12.4748182,49.7899082],[12.4747561,49.7896971],[12.4747145,49.7895927],[12.4746903,49.7895334],[12.4746641,49.7894849],[12.4744383,49.7891869],[12.4742561,49.788933],[12.4741881,49.7888642],[12.4739056,49.7886482],[12.4738676,49.7886189],[12.4728778,49.7878567],[12.4727534,49.7877303],[12.4725443,49.7874511],[12.4724292,49.787335],[12.4725828,49.7867788],[12.4725416,49.7866619],[12.4726418,49.786155],[12.4726499,49.7861069],[12.472606,49.7860873],[12.4725486,49.7860914],[12.4725241,49.7860868],[12.4725043,49.7860633],[12.4724981,49.786036],[12.4724601,49.7860232],[12.4723836,49.7860287],[12.4723556,49.7860222],[12.4722776,49.7860324],[12.472236,49.7860189],[12.4722191,49.7859904],[12.4722007,49.7859485],[12.4721529,49.7859334],[12.472012,49.7859144],[12.4719526,49.785888],[12.47192,49.7858951],[12.4718998,49.7858953],[12.4718567,49.7859317],[12.4718046,49.785943],[12.4717285,49.7859467],[12.4717048,49.7859643],[12.4716353,49.7860497],[12.4715134,49.7860655],[12.4714905,49.7860528],[12.4714847,49.7860337],[12.4714393,49.7860442],[12.471407,49.7860683],[12.4713934,49.7861245],[12.4713628,49.7861678],[12.4713585,49.7862074],[12.4712952,49.7862282],[12.4712144,49.7862854],[12.4711733,49.7863325],[12.4711081,49.7863937],[12.4710785,49.7864571],[12.4710789,49.7864797],[12.4711022,49.7864982],[12.4711057,49.7865173],[12.4711049,49.7866008],[12.4710199,49.7866356],[12.4709923,49.7866807],[12.470936,49.7866727],[12.4708662,49.7866677],[12.4707504,49.7866481],[12.4706627,49.7866522],[12.4706087,49.7866401],[12.4705412,49.7866562],[12.4704297,49.7867264],[12.4704401,49.7867522],[12.4704759,49.7867933],[12.4704592,49.7868206],[12.4704033,49.78686],[12.4703121,49.7869041],[12.4703004,49.7869234],[12.4703494,49.7869893],[12.4703416,49.7870106],[12.4702278,49.7870891],[12.470222,49.7870974],[12.4702034,49.7871029],[12.4701502,49.7871021],[12.4701008,49.7871212],[12.470022,49.7871004],[12.4699704,49.7870976],[12.469878,49.7870946],[12.4698003,49.7870964],[12.4697374,49.7871124],[12.4696873,49.7871628],[12.4695918,49.7871691],[12.4695406,49.7871523],[12.4694947,49.7871335],[12.4693965,49.787136],[12.4693289,49.7871443],[12.4693059,49.7871381],[12.4692974,49.7871349],[12.4692963,49.7871325],[12.4693055,49.7871113],[12.4692641,49.7870803],[12.4691709,49.7870643],[12.4689712,49.7870058],[12.4688176,49.7869324],[12.4687012,49.7868885],[12.4685661,49.786844],[12.4684809,49.7868051],[12.4683744,49.7867696],[12.4682706,49.7867573],[12.4682109,49.7867508],[12.4681604,49.7867097],[12.4681022,49.7866909],[12.468054,49.7867009],[12.4680071,49.7866866],[12.4679977,49.7866462],[12.4678941,49.7866247],[12.4678187,49.7866039],[12.4677624,49.7866039],[12.4677155,49.7865846],[12.4676968,49.7865415],[12.4677294,49.7864605],[12.4677034,49.7864036],[12.4676735,49.7863783],[12.4676029,49.7863815],[12.4675834,49.7863627],[12.4676017,49.7863306],[12.4676137,49.7862963],[12.4675648,49.7862652],[12.4675415,49.7862411],[12.467537,49.7862236],[12.4675035,49.7861946],[12.4674932,49.7861768],[12.4674114,49.7861043],[12.4673808,49.7860371],[12.4673909,49.7860006],[12.4674202,49.7859503],[12.4674133,49.7859298],[12.4673899,49.7859112],[12.4673206,49.7859078],[12.4673095,49.7859058],[12.4672771,49.7858954],[12.4672402,49.7858573],[12.4672206,49.785823],[12.467206,49.7857753],[12.4671858,49.7857425],[12.467127,49.7857187],[12.465822,49.7852366],[12.4644137,49.7847131],[12.4630116,49.7841834],[12.461611,49.7836541],[12.4602063,49.7831275],[12.4588015,49.7825998],[12.4559977,49.7815415],[12.4549812,49.7811592],[12.4549346,49.7811414],[12.4545937,49.781013],[12.4526189,49.7802676],[12.4510192,49.7796684],[12.450534,49.779487],[12.4489409,49.7788945],[12.447736,49.7784466],[12.446332,49.777922],[12.4449293,49.7773974],[12.4435247,49.7768744],[12.4421739,49.776369],[12.4407117,49.7758257],[12.4393164,49.7753031],[12.43855,49.7750168],[12.4379223,49.7747811],[12.4373676,49.7745736],[12.4358184,49.7739955],[12.4343966,49.7734645],[12.4337263,49.7732137],[12.4324581,49.7727407],[12.431535,49.7723985],[12.4309394,49.772175],[12.4305945,49.7720473],[12.4295583,49.7716564],[12.4288269,49.7713777],[12.4281531,49.7711268],[12.4272377,49.7707813],[12.4271763,49.7707585],[12.4267755,49.7706074],[12.4253728,49.7700766],[12.4245362,49.7697588],[12.42398,49.7695461],[12.4225811,49.7690125],[12.4212497,49.7685033],[12.420062,49.7680514],[12.4183559,49.7674537],[12.4169818,49.7669507],[12.4155683,49.7664164],[12.4141916,49.7658952],[12.4128099,49.765367],[12.4113945,49.7648395],[12.4106386,49.7645574],[12.4105893,49.7645391],[12.4099956,49.7643164],[12.4085901,49.7637914],[12.4071616,49.7632389],[12.4064941,49.7630108],[12.4058502,49.7629048],[12.4052307,49.7628342],[12.4047615,49.7627815],[12.4040765,49.7624273],[12.4040467,49.7624119],[12.4035051,49.7621313],[12.403145,49.761881],[12.4031097,49.7618572],[12.4030646,49.7614324],[12.4029936,49.7612478],[12.4028856,49.7611041],[12.4025697,49.7606156],[12.4024696,49.7603474],[12.4024184,49.7602602],[12.4023539,49.7601947],[12.402263,49.760121],[12.4020014,49.7598756],[12.4019311,49.759799],[12.4018564,49.7596863],[12.4016136,49.7593744],[12.401563,49.7592553],[12.4015348,49.7591366],[12.4015357,49.7586992],[12.4015453,49.7585894],[12.401558,49.7584567],[12.4014305,49.7581511],[12.4013944,49.7577492],[12.4014091,49.757346],[12.4014321,49.7571744],[12.4014072,49.7570437],[12.401326,49.7568992],[12.4010228,49.7565111],[12.4008737,49.7563705],[12.4008999,49.756361],[12.4006432,49.7559642],[12.4005031,49.7556446],[12.4005817,49.7548782],[12.4005707,49.7541053],[12.4005559,49.7538568],[12.4005548,49.7538009],[12.4009071,49.7536021],[12.4011068,49.7534231],[12.4011997,49.7532004],[12.4012305,49.7530595],[12.4013288,49.7528724],[12.4015929,49.752591],[12.4017597,49.7523863],[12.4021472,49.7520522],[12.4022715,49.7519238],[12.4024606,49.7518105],[12.4026618,49.7516226],[12.4030721,49.7511947],[12.4031684,49.7511227],[12.4034273,49.7509506],[12.4035243,49.7508447],[12.4036029,49.7506984],[12.4036743,49.7504645],[12.4037656,49.7502971],[12.4040131,49.7499614],[12.4043448,49.7495278],[12.404775,49.7492517],[12.4049929,49.7490137],[12.4052591,49.7488571],[12.4053603,49.7487671],[12.4055861,49.7484397],[12.4057081,49.7481944],[12.4057327,49.7480805],[12.4056392,49.7474024],[12.4055506,49.7472005],[12.4053299,49.7469246],[12.4052366,49.7468438],[12.4047473,49.7465108],[12.4045383,49.7462264],[12.4044396,49.7461422],[12.4043549,49.7460172],[12.4043111,49.7459162],[12.4042986,49.7456759],[12.4043188,49.7453182],[12.4044274,49.7450427],[12.4044249,49.7449318],[12.404384,49.7446828],[12.4044015,49.7445457],[12.4044632,49.7443863],[12.4045504,49.7442213],[12.4045683,49.7437913],[12.4045271,49.7435549],[12.4047131,49.7431199],[12.4048122,49.742721],[12.4049036,49.7425508],[12.4051839,49.7419546],[12.405272,49.7418016],[12.4053376,49.7416116],[12.405384,49.741417],[12.405528,49.7411577],[12.4057015,49.7405457],[12.4057843,49.7403723],[12.4059829,49.7401665],[12.4063912,49.7397701],[12.406707,49.7393223],[12.4067397,49.7392759],[12.4076726,49.7389332],[12.4077938,49.7388598],[12.4079481,49.7387179],[12.4080922,49.7386354],[12.4084281,49.7383826],[12.4084893,49.7383159],[12.4085307,49.7381181],[12.4085893,49.738011],[12.4087145,49.7378849],[12.4088064,49.7377788],[12.4088904,49.7376136],[12.4089996,49.73745],[12.4090958,49.7373742],[12.4093319,49.7372178],[12.4094703,49.7370799],[12.4098525,49.7367945],[12.4100167,49.7366862],[12.410123,49.7365936],[12.4103769,49.7364886],[12.4108587,49.7363059],[12.4111756,49.736221],[12.4115989,49.7361423],[12.411963,49.7360223],[12.4121609,49.7359773],[12.4124609,49.7359277],[12.4125228,49.7359072],[12.412549,49.7358853],[12.4125381,49.735858],[12.4125295,49.7358491],[12.4125228,49.7358155],[12.4125033,49.7357934],[12.4125055,49.73577],[12.412564,49.73572],[12.4125589,49.7356851],[12.4125749,49.7356327],[12.4125659,49.7356112],[12.4125941,49.7355209],[12.4126307,49.7354765],[12.4126212,49.7354277],[12.4126184,49.7354022],[12.4125966,49.7353688],[12.4126031,49.735313],[12.4125925,49.7352806],[12.4125949,49.7352532],[12.4126269,49.735176],[12.4126147,49.7351357],[12.4126005,49.7351167],[12.4126043,49.7350719],[12.4126244,49.7350382],[12.4126046,49.7349699],[12.4126065,49.7348848],[12.4125819,49.7347693],[12.4126046,49.7346516],[12.4126426,49.7346136],[12.4126586,49.7345766],[12.4126599,49.7344816],[12.4126919,49.7343215],[12.4126765,49.734122],[12.4126407,49.7339481],[12.4126446,49.7337956],[12.4125953,49.7336694],[12.4125107,49.7336108],[12.4124416,49.7334554],[12.4124598,49.7333522],[12.4124324,49.7331898],[12.4123899,49.7330655],[12.4124317,49.7329112],[12.4125126,49.7327052],[12.4125656,49.7326402],[12.4126382,49.732609],[12.412689,49.7325799],[12.4127376,49.732534],[12.4127893,49.7324582],[12.4128158,49.7324479],[12.4130744,49.7322795],[12.4131766,49.7322523],[12.413208,49.7322074],[12.4133415,49.7321701],[12.4135004,49.7321457],[12.4135966,49.7321347],[12.4136819,49.7321372],[12.4137324,49.7321132],[12.4138557,49.7320936],[12.4139564,49.732035],[12.4139935,49.7320244],[12.414098,49.7320209],[12.4141283,49.7320265],[12.4142763,49.732016],[12.414414,49.7320226],[12.414499,49.7320455],[12.4145313,49.7320438],[12.4146809,49.7319996],[12.4147285,49.7320112],[12.4147742,49.7320011],[12.4148061,49.731972],[12.4148049,49.7319579],[12.414824,49.731949],[12.4148659,49.7319507],[12.4149755,49.7319306],[12.4150922,49.7319377],[12.415197,49.7319393],[12.4152443,49.7319499],[12.4152986,49.7319238],[12.415306,49.7319044],[12.4153472,49.7318867],[12.4154315,49.7318732],[12.4154916,49.7318891],[12.4155297,49.7319096],[12.4156025,49.7319344],[12.4156594,49.7319313],[12.4157099,49.7319214],[12.4157927,49.7319373],[12.415823,49.7319377],[12.4158463,49.7319207],[12.4158898,49.7319232],[12.4159323,49.7319015],[12.4159818,49.7318852],[12.416079,49.731834],[12.416094,49.7318311],[12.4161528,49.7317972],[12.416211,49.7317978],[12.4162743,49.7318071],[12.4163522,49.7317815],[12.4163778,49.7317683],[12.4164379,49.7317565],[12.4165654,49.7317462],[12.4166389,49.7317454],[12.4168488,49.731766],[12.4168894,49.7317766],[12.4169485,49.7318303],[12.4170451,49.7318573],[12.4171502,49.7318327],[12.4173653,49.7318387],[12.4174851,49.7318623],[12.4175608,49.7318363],[12.4175698,49.7318088],[12.4176005,49.7317784],[12.41758,49.7317532],[12.4176359,49.7317092],[12.4177005,49.7317063],[12.4177462,49.7316981],[12.4177874,49.7317026],[12.417844,49.7316954],[12.4179018,49.7316819],[12.4179664,49.7316776],[12.4179804,49.7316677],[12.4180555,49.7316745],[12.4180891,49.7316561],[12.4181792,49.731671],[12.4181946,49.7316609],[12.4182268,49.7316753],[12.4182492,49.7316753],[12.4182824,49.7316663],[12.4183585,49.7316605],[12.4184298,49.7316415],[12.4185116,49.7316055],[12.4185442,49.7315991],[12.4187091,49.7315388],[12.41871,49.7315041],[12.4187442,49.7314787],[12.4187298,49.7314508],[12.4187343,49.731431],[12.4187605,49.7314105],[12.4187982,49.7313934],[12.4188276,49.7313862],[12.4188871,49.7313897],[12.4189411,49.7313686],[12.4191226,49.7313535],[12.4192034,49.7313426],[12.4192274,49.7313426],[12.4192789,49.7313265],[12.419362,49.7313269],[12.4194719,49.731301],[12.4195352,49.7312969],[12.4195924,49.7312891],[12.4196138,49.7312804],[12.4196838,49.7312779],[12.4197541,49.7312818],[12.4198154,49.7312736],[12.4198659,49.7312756],[12.4198758,49.7312783],[12.4199286,49.7312579],[12.419972,49.7312517],[12.420041,49.7312207],[12.4200775,49.7312085],[12.4201053,49.7311893],[12.4201711,49.7311796],[12.4201954,49.7311674],[12.4202277,49.7311705],[12.4202462,49.7311585],[12.4202823,49.7311503],[12.4203101,49.7311474],[12.420328,49.7311383],[12.420359,49.7310951],[12.4203788,49.7310798],[12.4204354,49.7310511],[12.4204984,49.7310486],[12.4205549,49.7310222],[12.4205897,49.7310288],[12.4206019,49.7310379],[12.4206958,49.7310466],[12.4207604,49.7310751],[12.4208042,49.7310775],[12.420862,49.7310606],[12.4209279,49.7310647],[12.4210084,49.7310823],[12.4210563,49.7310856],[12.4211078,49.731086],[12.4211647,49.7310736],[12.4211832,49.7310565],[12.4212442,49.7310418],[12.4212522,49.7310519],[12.4214037,49.7310786],[12.4214353,49.7311025],[12.4214567,49.7311077],[12.4215136,49.7310897],[12.4215635,49.7310844],[12.4216571,49.7310806],[12.421722,49.7310732],[12.4217833,49.7310501],[12.4218246,49.7310486],[12.4218875,49.7310914],[12.4219172,49.7310994],[12.4219329,49.7311147],[12.4219319,49.7311372],[12.4219741,49.7311517],[12.4220217,49.7311585],[12.4220652,49.7311589],[12.4220959,49.7311858],[12.4221323,49.7311788],[12.4221854,49.7311748],[12.4222256,49.7311562],[12.4222886,49.7311517],[12.4223848,49.7311691],[12.4224621,49.7311436],[12.4226318,49.7311282],[12.4228111,49.7310557],[12.4228482,49.731049],[12.4229996,49.7309984],[12.4230888,49.7309623],[12.4231719,49.7309577],[12.4232118,49.7309596],[12.4232703,49.7309261],[12.4233266,49.7308999],[12.4234993,49.7308826],[12.4235458,49.7308832],[12.4236167,49.730896],[12.4236557,49.7308966],[12.4236995,49.7309086],[12.4237369,49.7309319],[12.4237433,49.7309557],[12.4238165,49.7309757],[12.4238222,49.7309893],[12.4238507,49.7309854],[12.4238823,49.7310013],[12.4239258,49.7310086],[12.4239737,49.731021],[12.4239948,49.7310162],[12.424006,49.7310191],[12.4240574,49.7310137],[12.4240929,49.7310185],[12.4241418,49.7310158],[12.4242051,49.7310015],[12.4242354,49.7309786],[12.4242575,49.7309751],[12.4242834,49.7309805],[12.4243108,49.7309765],[12.4243348,49.730967],[12.4244013,49.7309563],[12.4244598,49.7309284],[12.4244968,49.730917],[12.4245106,49.7309175],[12.424525,49.7309075],[12.4245595,49.7308976],[12.4245921,49.7308697],[12.4246349,49.7308474],[12.4246892,49.7308123],[12.4248471,49.7307921],[12.4250219,49.7307373],[12.4250663,49.7307429],[12.4251066,49.730753],[12.4251321,49.7307504],[12.4251683,49.7307648],[12.4252095,49.7307654],[12.425235,49.7307541],[12.4252993,49.730758],[12.4253766,49.7307225],[12.4254587,49.7307072],[12.4255006,49.7306541],[12.4255348,49.7306485],[12.4255642,49.7306287],[12.4255728,49.7306095],[12.4255962,49.7305938],[12.4256591,49.730581],[12.4256975,49.7305634],[12.4257217,49.7305167],[12.4257323,49.7304791],[12.4257051,49.730426],[12.4257294,49.7303901],[12.4256773,49.7302951],[12.4256741,49.7302542],[12.4256987,49.730216],[12.4257237,49.7301939],[12.4257317,49.7301426],[12.4257265,49.7300974],[12.4257777,49.7300699],[12.4257837,49.73006],[12.425769,49.7300117],[12.4257662,49.729991],[12.4257812,49.7299759],[12.4257914,49.7299216],[12.4257885,49.7298991],[12.4258509,49.729777],[12.4258525,49.7297427],[12.4259001,49.7296836],[12.4259071,49.729652],[12.4259461,49.7296155],[12.4259531,49.7295932],[12.4260215,49.7295417],[12.4260221,49.7295136],[12.4260589,49.7294601],[12.426064,49.729388],[12.426079,49.7293519],[12.4260717,49.7293085],[12.4260857,49.7292358],[12.4260803,49.7292007],[12.4261183,49.7291616],[12.4261238,49.7291135],[12.4261151,49.7290668],[12.4260589,49.7289999],[12.4260362,49.7289604],[12.4259554,49.7288795],[12.4259515,49.7288458],[12.4259582,49.7288276],[12.4259796,49.728808],[12.4259953,49.7287386],[12.4260202,49.728683],[12.4260122,49.7286283],[12.4260317,49.7285983],[12.4260691,49.7285803],[12.4261407,49.7285789],[12.4261835,49.7285591],[12.4262184,49.7285465],[12.4263503,49.7285425],[12.4263775,49.7285467],[12.4264056,49.7285334],[12.4264315,49.7285144],[12.4264258,49.7284818],[12.4264504,49.7284539],[12.4264686,49.7284194],[12.4264897,49.7284099],[12.4265152,49.7284078],[12.4265542,49.7283855],[12.4265772,49.7283824],[12.4266769,49.7283062],[12.426683,49.728293],[12.4266479,49.7282],[12.4266744,49.728159],[12.4266681,49.7281435],[12.4266437,49.7281365],[12.4265836,49.7280953],[12.4265524,49.7280603],[12.4265167,49.7280559],[12.4264801,49.728034],[12.4264634,49.7279624],[12.4264959,49.7279277],[12.4265144,49.7279244],[12.4265095,49.7278868],[12.42649,49.7278669],[12.4264995,49.7278593],[12.4264968,49.7278356],[12.4264873,49.7278239],[12.4264887,49.7277979],[12.4265321,49.727769],[12.4265854,49.727753],[12.4265962,49.7277302],[12.4266419,49.7277161],[12.4267553,49.7277053],[12.4268023,49.7277077],[12.4268177,49.7276849],[12.4268629,49.7276676],[12.4268841,49.72767],[12.4269149,49.7276586],[12.426928,49.7276338],[12.4269469,49.7276267],[12.4269515,49.727613],[12.4269822,49.7276095],[12.4269976,49.7275844],[12.427073,49.7275543],[12.4271408,49.7274935],[12.4271969,49.7274728],[12.4272836,49.7273848],[12.4273383,49.7273215],[12.4273483,49.7272931],[12.4273853,49.727261],[12.4274002,49.727254],[12.4274183,49.7272394],[12.4274233,49.7272195],[12.4273989,49.7271985],[12.4274075,49.7270912],[12.4273871,49.7270375],[12.4273582,49.7270308],[12.4273085,49.7270261],[12.4272778,49.7269972],[12.4272895,49.7269595],[12.4272949,49.7269244],[12.4273736,49.7268274],[12.4273921,49.7268105],[12.4273799,49.7267617],[12.4273939,49.7267456],[12.4274134,49.7267076],[12.42744,49.7266852],[12.4274613,49.7266343],[12.4274902,49.7266031],[12.4275096,49.7265925],[12.4275245,49.7265765],[12.4274852,49.7265362],[12.4275822,49.7261783],[12.4276657,49.7260862],[12.4281964,49.7254978],[12.4284941,49.7244678],[12.4284949,49.7237298],[12.4285951,49.7227469],[12.4285152,49.7219475],[12.4285191,49.7217935],[12.4286131,49.7215174],[12.4287221,49.7211971],[12.4287432,49.7212014],[12.4289387,49.720888],[12.4290219,49.7207802],[12.4290548,49.7206703],[12.4292704,49.7204069],[12.4293756,49.7201454],[12.4296528,49.7198959],[12.4300319,49.7196984],[12.4301277,49.7196248],[12.4302101,49.7195041],[12.4307345,49.7190711],[12.4310753,49.7188186],[12.4317303,49.7185188],[12.4318866,49.7184264],[12.432346,49.7181827],[12.43293,49.7179565],[12.4328679,49.7170122],[12.4328072,49.7160908],[12.4330874,49.7155869],[12.4334422,49.715178],[12.4343248,49.7144806],[12.4345371,49.714277],[12.4347148,49.7139776],[12.4348689,49.7136843],[12.4349378,49.7134652],[12.4349513,49.7130823],[12.4350483,49.7127105],[12.4350758,49.7126189],[12.435183,49.7124174],[12.4354335,49.712092],[12.4355482,49.7119091],[12.4356767,49.7117138],[12.4357406,49.7116358],[12.4361461,49.7111402],[12.4370193,49.7100885],[12.4373501,49.7096694],[12.4376523,49.7093238],[12.4384436,49.7086704],[12.4389672,49.7079244],[12.4393093,49.7073918],[12.4400868,49.7058407],[12.4418141,49.7048073],[12.4417819,49.7047515],[12.4417341,49.7046921],[12.4417206,49.7046854],[12.4417019,49.7046389],[12.4416916,49.7045962],[12.4416892,49.7045417],[12.4416836,49.7045388],[12.4416805,49.7044887],[12.4416693,49.7044568],[12.4417345,49.7044329],[12.4417508,49.7044378],[12.4418284,49.7044234],[12.4418956,49.7044092],[12.4420721,49.7043365],[12.442088,49.7043272],[12.4421556,49.7043066],[12.4422002,49.7042796],[12.4422057,49.7042683],[12.4422018,49.7042236],[12.4422077,49.7041986],[12.4422069,49.704186],[12.4421779,49.7041469],[12.4421648,49.7040605],[12.4421902,49.7040353],[12.4422491,49.7039988],[12.4422753,49.7039638],[12.4423262,49.7039255],[12.4423568,49.7038854],[12.4424073,49.7038653],[12.4424523,49.703835],[12.4424511,49.7038177],[12.442467,49.7038139],[12.4424877,49.7038033],[12.4425008,49.7037951],[12.4426002,49.703774],[12.4426424,49.7037733],[12.4426706,49.7037622],[12.442704,49.7037635],[12.4429736,49.7037231],[12.4430563,49.7036997],[12.4430694,49.7036866],[12.4430603,49.7036704],[12.443071,49.7036609],[12.4431398,49.7036241],[12.4432034,49.7035922],[12.4433649,49.7035827],[12.4434865,49.7036079],[12.4436031,49.7036508],[12.4436444,49.7036349],[12.4439673,49.7034855],[12.4440866,49.7034348],[12.4442385,49.7033592],[12.4445395,49.7032242],[12.4452079,49.7028495],[12.4454672,49.7027008],[12.4456418,49.7026111],[12.4462784,49.7024475],[12.4466299,49.7023637],[12.4470391,49.7022014],[12.4473019,49.7020867],[12.4473437,49.70209],[12.4474825,49.7020854],[12.4476288,49.7020857],[12.4476741,49.7020934],[12.4477091,49.702088],[12.4480272,49.702098],[12.4483358,49.7020762],[12.4483684,49.7020682],[12.4485617,49.7020592],[12.4487625,49.7020435],[12.4489183,49.7020381],[12.4489382,49.7020432],[12.4491641,49.7020008],[12.4492066,49.7019962],[12.4492726,49.7019792],[12.4493736,49.7019352],[12.4494325,49.7018902],[12.4495371,49.7018527],[12.4495752,49.7018434],[12.4496687,49.7018483],[12.4498572,49.7018395],[12.4499948,49.7018107],[12.4500962,49.7017794],[12.4501657,49.7017446],[12.4502015,49.7017382],[12.4502477,49.7017354],[12.4503236,49.7016968],[12.4507395,49.7015286],[12.4529802,49.7010881],[12.4573281,49.7020232],[12.4606897,49.7006254],[12.4615439,49.7002422],[12.4616313,49.7001912],[12.4618962,49.7001046],[12.4620377,49.7000418],[12.4626123,49.6997057],[12.462798,49.6995897],[12.4629615,49.6995544],[12.4635535,49.6994575],[12.4641381,49.6993361],[12.4652797,49.6990362],[12.4663673,49.6988101],[12.4678143,49.6985388],[12.4687631,49.6983739],[12.4691221,49.6978047],[12.4769699,49.696043],[12.4797423,49.6954239],[12.483045,49.6943228],[12.4840477,49.6939892],[12.4845066,49.6931758],[12.4850627,49.6920801],[12.4854361,49.6914311],[12.4851988,49.6907839],[12.4850729,49.690454],[12.4850704,49.6897155],[12.4850813,49.6889959],[12.485128,49.6878718],[12.4864722,49.6877129],[12.4885477,49.68695],[12.4913793,49.6860146],[12.4925192,49.6858261],[12.493409,49.6857719],[12.4949826,49.6856766],[12.4967156,49.6856423],[12.4987565,49.6859927],[12.5002028,49.6864329],[12.5023512,49.6860301],[12.5040774,49.6853349],[12.5052489,49.6851769],[12.5068774,49.6856515],[12.5083736,49.686319],[12.5117854,49.68638],[12.5130916,49.6872048],[12.5146801,49.6878433],[12.5149806,49.6877944],[12.5179777,49.687317],[12.5209145,49.6868013],[12.5213587,49.6867249],[12.5217336,49.6866988],[12.5217971,49.6866521],[12.5217947,49.6866426],[12.5217642,49.6866229],[12.5217415,49.686613],[12.5217435,49.6865871],[12.5218307,49.6865419],[12.5218898,49.686476],[12.5219871,49.6864409],[12.5219756,49.686433],[12.5219909,49.686402],[12.5219841,49.6863425],[12.5219081,49.6863076],[12.5218477,49.686314],[12.5218375,49.6863212],[12.5218165,49.6863783],[12.52177,49.6864106],[12.5217201,49.6864121],[12.5216943,49.6864049],[12.5216614,49.6863902],[12.521583,49.6863118],[12.5215168,49.6862837],[12.5214489,49.6862716],[12.5214174,49.686256],[12.5213909,49.6862312],[12.5213896,49.6862216],[12.5214018,49.6862031],[12.521436,49.6861864],[12.5215141,49.6861829],[12.5216016,49.6861842],[12.5216498,49.686193],[12.5217391,49.6862347],[12.5217625,49.6862312],[12.5217781,49.6862255],[12.52179,49.6862183],[12.5217958,49.686206],[12.5218036,49.6861276],[12.5217981,49.686112],[12.5217659,49.6861142],[12.5217588,49.6861247],[12.5216946,49.6861561],[12.5216403,49.68615],[12.5216152,49.6861307],[12.5215918,49.6860841],[12.5216064,49.6860499],[12.5216529,49.6860327],[12.521659,49.6860038],[12.5216454,49.6859912],[12.5216736,49.6859157],[12.5216512,49.6858428],[12.5216386,49.6857266],[12.5215831,49.6856283],[12.5215653,49.68553],[12.5215124,49.6853868],[12.5215168,49.6853585],[12.5215721,49.6853188],[12.52162,49.6852948],[12.5216892,49.6852784],[12.5217496,49.685268],[12.5218249,49.6852467],[12.5218643,49.6852068],[12.5218528,49.6850959],[12.5218741,49.6850358],[12.5218691,49.6849776],[12.5218304,49.684946],[12.5217886,49.6849394],[12.5217465,49.6849244],[12.5217184,49.6848952],[12.5216525,49.6848373],[12.5216128,49.684792],[12.5216078,49.6847758],[12.521622,49.6847352],[12.5216393,49.6847022],[12.52166,49.6846427],[12.5216939,49.6845922],[12.5217102,49.6845734],[12.5217204,49.6845679],[12.5217265,49.6845501],[12.5217544,49.6845126],[12.5217717,49.6844627],[12.5217839,49.6844469],[12.5219094,49.6843444],[12.5219328,49.6843145],[12.5219712,49.6842528],[12.5219505,49.684219],[12.5218724,49.6842172],[12.5218368,49.6841981],[12.521826,49.684185],[12.5218327,49.6841597],[12.5218433,49.6841494],[12.5219115,49.6841123],[12.5219834,49.684095],[12.522091,49.6840677],[12.522185,49.6840355],[12.5222186,49.6840289],[12.5222569,49.6840144],[12.5222515,49.6839867],[12.522221,49.6839654],[12.5222199,49.6839362],[12.5222403,49.6839195],[12.5223034,49.6838886],[12.5223346,49.6838763],[12.5223526,49.6838642],[12.5224168,49.6838054],[12.5224395,49.6837707],[12.5225013,49.6836982],[12.5224856,49.6836701],[12.5224123,49.683647],[12.5223743,49.6836479],[12.5222759,49.683615],[12.5222118,49.6836135],[12.5221527,49.6835832],[12.5220934,49.6835368],[12.5220988,49.6835041],[12.5221151,49.6834734],[12.5221853,49.683433],[12.5222474,49.6833851],[12.5222932,49.6833221],[12.5223143,49.683305],[12.5223133,49.6832942],[12.5222658,49.6832415],[12.5222549,49.6831978],[12.52225,49.6831489],[12.522263,49.6830687],[12.5222702,49.6830604],[12.5223055,49.6830479],[12.5223808,49.6830395],[12.5224364,49.6830527],[12.5224843,49.6830496],[12.5225406,49.6830305],[12.5225539,49.6830312],[12.5225708,49.6830215],[12.5225647,49.682991],[12.5225349,49.6829712],[12.5225125,49.6829596],[12.5224588,49.6829398],[12.5224361,49.6829174],[12.52243,49.6828847],[12.5224588,49.6828366],[12.5224551,49.6827881],[12.5224885,49.6827635],[12.522522,49.6827405],[12.5225226,49.6827317],[12.5225277,49.6827214],[12.5225053,49.6827064],[12.5224463,49.6826988],[12.5224334,49.6826658],[12.5224656,49.6826245],[12.5224795,49.6825951],[12.5225142,49.6825846],[12.5225148,49.6825745],[12.522545,49.6825323],[12.5225606,49.6825299],[12.5226621,49.6824557],[12.5226621,49.6824438],[12.5226224,49.68239],[12.5226129,49.6823591],[12.5226261,49.6823378],[12.5226689,49.6823185],[12.5226943,49.6823046],[12.5227273,49.6821843],[12.5227602,49.6821303],[12.5228053,49.6820653],[12.5228202,49.6820216],[12.5228148,49.6820045],[12.5228437,49.6819751],[12.5228457,49.6818927],[12.5228613,49.6818899],[12.5228766,49.6818785],[12.5229163,49.6818227],[12.5229411,49.6817575],[12.522936,49.6817103],[12.5229506,49.6816606],[12.5229658,49.6816472],[12.5230086,49.681618],[12.5229937,49.681597],[12.5229791,49.6815715],[12.5229614,49.681559],[12.5229058,49.6815482],[12.5228664,49.6815289],[12.5228644,49.6815173],[12.5228847,49.6814874],[12.5229346,49.6814791],[12.5230055,49.6814918],[12.5230194,49.6815017],[12.523051,49.6814951],[12.5230632,49.681481],[12.5230551,49.6814659],[12.5230144,49.6814406],[12.5229377,49.6814222],[12.5229156,49.6814189],[12.5228219,49.6813622],[12.5227941,49.6813539],[12.5227602,49.6813587],[12.5227286,49.6813886],[12.522713,49.6813906],[12.5226482,49.6813658],[12.5226329,49.6813506],[12.5226017,49.6813302],[12.5225925,49.6813144],[12.5226051,49.6812784],[12.5226126,49.6812639],[12.5225756,49.6812294],[12.5225586,49.6812257],[12.5225206,49.6812369],[12.5225057,49.6812426],[12.5224558,49.6812219],[12.5224371,49.6811859],[12.5224015,49.6811624],[12.5223733,49.6811179],[12.52239,49.6810957],[12.5224476,49.681052],[12.5225047,49.6810136],[12.522562,49.6809707],[12.5226217,49.6809494],[12.5227391,49.6809538],[12.5227514,49.6809481],[12.5227717,49.6809301],[12.5227717,49.6808849],[12.5227008,49.6808197],[12.5227072,49.680805],[12.5227249,49.6807949],[12.5227564,49.6807999],[12.5228739,49.6808394],[12.5229027,49.680857],[12.5229159,49.680873],[12.5229326,49.6808787],[12.522978,49.6808783],[12.5229947,49.6808656],[12.5230032,49.6808307],[12.5230045,49.6807892],[12.5230201,49.6807387],[12.523011,49.6807231],[12.5229512,49.680671],[12.5229594,49.6806308],[12.5229489,49.6806207],[12.522902,49.6806273],[12.5228287,49.6806346],[12.5227978,49.6806297],[12.5227721,49.6806025],[12.5227636,49.6805757],[12.5227802,49.6804967],[12.5227568,49.6804787],[12.5226777,49.680458],[12.5226686,49.6804504],[12.5226584,49.6804352],[12.522677,49.6804064],[12.522695,49.6803887],[12.5226916,49.6803709],[12.5226465,49.6803239],[12.5226082,49.6802578],[12.5225457,49.6802064],[12.5225277,49.6802005],[12.5224958,49.6801779],[12.5224955,49.6801495],[12.5224785,49.6801416],[12.5224643,49.6801245],[12.5224405,49.6801137],[12.5223859,49.6801184],[12.5223316,49.6801168],[12.5222936,49.680105],[12.522226,49.6800696],[12.522202,49.6799695],[12.5221874,49.6799548],[12.5220842,49.6799223],[12.5220459,49.6798968],[12.5220455,49.6798838],[12.5220041,49.6798478],[12.521962,49.6797861],[12.5219315,49.6797598],[12.5219071,49.6797427],[12.5218891,49.679717],[12.5218864,49.6796847],[12.5219196,49.6796324],[12.521943,49.6796076],[12.5219529,49.6795363],[12.5219495,49.6794085],[12.5219532,49.6792438],[12.5219376,49.6791983],[12.5219016,49.6791472],[12.5219325,49.6790694],[12.5219396,49.6790251],[12.5219556,49.6789926],[12.5220323,49.6789379],[12.5220547,49.6789115],[12.5221276,49.6788698],[12.5222434,49.6787717],[12.5222892,49.6787251],[12.5223652,49.6786654],[12.5223805,49.6786265],[12.5223689,49.6786153],[12.522317,49.6785859],[12.5222797,49.6785451],[12.5222518,49.6785079],[12.522226,49.6784601],[12.5221996,49.6784201],[12.5221823,49.6783782],[12.5221555,49.6783354],[12.5221541,49.6783167],[12.5221568,49.678309],[12.5221931,49.6782818],[12.5222434,49.6782682],[12.5222827,49.6782365],[12.5223682,49.67815],[12.5223923,49.6781041],[12.5223858,49.6780472],[12.5223574,49.6780117],[12.5223112,49.6779939],[12.5222936,49.6779768],[12.5222939,49.6779517],[12.5223133,49.6779326],[12.5223038,49.6779028],[12.5222922,49.6778903],[12.5222861,49.677878],[12.5222898,49.6778455],[12.5223058,49.6778022],[12.5223469,49.6777864],[12.5223937,49.6777611],[12.5224449,49.6777387],[12.5225189,49.6777242],[12.5225915,49.6776975],[12.5226434,49.6776568],[12.5226445,49.6776276],[12.5226431,49.677598],[12.5226614,49.677576],[12.5227266,49.6775435],[12.5227378,49.6775097],[12.5227283,49.6774989],[12.5226791,49.6774932],[12.5226285,49.6774763],[12.5226153,49.6774675],[12.5226041,49.6774432],[12.5225695,49.6773883],[12.522525,49.677363],[12.5225254,49.6773487],[12.5225494,49.6773323],[12.522563,49.6773292],[12.5226265,49.6773274],[12.5226804,49.6773299],[12.5227123,49.6773195],[12.5227748,49.677199],[12.5227778,49.6771707],[12.5227687,49.6771636],[12.5227066,49.67715],[12.5226322,49.6771577],[12.5225997,49.6771505],[12.5225545,49.6771142],[12.5225467,49.6771046],[12.5225793,49.6770758],[12.5226356,49.6770393],[12.5226363,49.6770244],[12.5226043,49.6769811],[12.522602,49.6769792],[12.5225647,49.676923],[12.5225664,49.6768848],[12.5225786,49.6768424],[12.5226027,49.6768248],[12.5226407,49.6768257],[12.5226937,49.6768496],[12.5227286,49.6768694],[12.5227995,49.6769008],[12.5228654,49.6769085],[12.5228813,49.6769025],[12.5228922,49.6768887],[12.5229034,49.6768411],[12.5228786,49.6767987],[12.5228915,49.6767631],[12.5229139,49.6767455],[12.5229784,49.6767238],[12.5230045,49.6767317],[12.5230347,49.6767941],[12.5230439,49.6768294],[12.5230659,49.6768356],[12.5231185,49.6768206],[12.5231501,49.676798],[12.5231752,49.6767591],[12.523182,49.6767273],[12.5231708,49.6767161],[12.5230758,49.6766759],[12.5230551,49.6766612],[12.5230598,49.6766355],[12.5231735,49.6766289],[12.5231918,49.6766103],[12.523181,49.6765767],[12.5231691,49.6765648],[12.5231861,49.676547],[12.5232013,49.6765424],[12.5232197,49.6765475],[12.5232241,49.6765593],[12.5232519,49.676578],[12.5232692,49.6765786],[12.5233011,49.6765418],[12.5233035,49.6765207],[12.5232899,49.6764915],[12.5232689,49.6764688],[12.5232349,49.6764383],[12.5231817,49.676439],[12.5231725,49.6764197],[12.5231925,49.6763621],[12.5232078,49.6763507],[12.5232359,49.6763479],[12.5232682,49.6763384],[12.5232828,49.6763522],[12.5233795,49.6763948],[12.5235067,49.6763569],[12.5235142,49.6763439],[12.5234905,49.6763222],[12.5234647,49.6763066],[12.5234402,49.6763057],[12.5234066,49.6762967],[12.5233554,49.6762629],[12.5233255,49.6762352],[12.5232991,49.6762038],[12.5233187,49.6761847],[12.5233198,49.6761616],[12.5233306,49.6761206],[12.5233381,49.6761157],[12.5233398,49.6761021],[12.5233174,49.6760896],[12.5232923,49.6760947],[12.5232773,49.6760942],[12.5232275,49.6761164],[12.5231738,49.6761208],[12.5231019,49.6761124],[12.5230856,49.6760977],[12.5230933,49.6760829],[12.5230992,49.6760788],[12.5231257,49.6760512],[12.5231119,49.6760347],[12.5230698,49.6760186],[12.5230654,49.6759665],[12.5230691,49.6759512],[12.5231021,49.6759255],[12.523136,49.6759187],[12.5232076,49.675958],[12.5232368,49.6759958],[12.523251,49.6760025],[12.523317,49.6760131],[12.5233878,49.6759962],[12.5234068,49.6759839],[12.5234058,49.6759777],[12.523419,49.6759595],[12.5234516,49.6759424],[12.5234608,49.6759421],[12.5234692,49.6759501],[12.5235198,49.6759518],[12.5235632,49.6759698],[12.5235999,49.6759876],[12.5236331,49.6760124],[12.5236518,49.6760243],[12.5237231,49.6760311],[12.5237387,49.6760412],[12.5237363,49.6760533],[12.5237539,49.6760642],[12.5237696,49.6760724],[12.523773,49.6760812],[12.5237801,49.6760853],[12.523796,49.6760882],[12.5238466,49.6760618],[12.5238642,49.6760306],[12.5239531,49.6759],[12.523961,49.6758646],[12.523945,49.6758541],[12.5239162,49.6758493],[12.5238442,49.6758543],[12.5238344,49.6758471],[12.5238312,49.6758309],[12.5238306,49.6758132],[12.5238507,49.6757893],[12.5238262,49.6757623],[12.523776,49.6757324],[12.5237852,49.6757138],[12.5238334,49.6756993],[12.523871,49.6756828],[12.5239772,49.6756591],[12.5240173,49.6756145],[12.5240444,49.6756145],[12.5240865,49.6756101],[12.5241408,49.6756222],[12.5241683,49.6756444],[12.5241897,49.6756824],[12.5242039,49.6756863],[12.5242484,49.6756709],[12.5243044,49.6756422],[12.5243217,49.6756378],[12.5243373,49.675624],[12.5243699,49.6756106],[12.5244004,49.675551],[12.524395,49.6755308],[12.5243919,49.6755074],[12.5243862,49.6754948],[12.5243519,49.6754716],[12.5243169,49.6754415],[12.5243105,49.6754311],[12.5243173,49.6753747],[12.5243098,49.6753429],[12.5243302,49.6753176],[12.5243926,49.6752978],[12.524417,49.6752741],[12.5244092,49.6752465],[12.5244276,49.6752269],[12.5244557,49.6752219],[12.5244876,49.6752186],[12.5245134,49.6752069],[12.5245233,49.6751931],[12.5245219,49.6751742],[12.5245138,49.6751536],[12.524489,49.6751189],[12.5244686,49.6751094],[12.524455,49.6751215],[12.5244269,49.6751329],[12.5243502,49.6751318],[12.5243159,49.6751154],[12.5242942,49.6750965],[12.5242955,49.6750587],[12.5243047,49.6750468],[12.5242983,49.6750378],[12.5242871,49.675006],[12.524302,49.674986],[12.5243213,49.6749849],[12.5243322,49.6749948],[12.5243502,49.6750025],[12.5243909,49.6749988],[12.5244208,49.6749744],[12.5244737,49.6749469],[12.5244785,49.6749333],[12.5245026,49.6748933],[12.5245171,49.674856],[12.5245283,49.6748395],[12.5245592,49.6748231],[12.5245711,49.6748125],[12.5246125,49.6748106],[12.5246312,49.6747976],[12.5246373,49.6747717],[12.5246342,49.6747598],[12.52462,49.6747535],[12.5245256,49.6747372],[12.5244856,49.6747049],[12.5244822,49.6746502],[12.5244425,49.6746037],[12.524454,49.6745462],[12.5244907,49.6744904],[12.5245382,49.6744381],[12.5245667,49.6744309],[12.524632,49.6744561],[12.5246539,49.6744642],[12.5246668,49.6744713],[12.524697,49.6744711],[12.5247146,49.6744596],[12.5247333,49.6744399],[12.5247406,49.674396],[12.5247465,49.6743762],[12.5247852,49.6743419],[12.5248711,49.6743127],[12.5249101,49.6742776],[12.5249821,49.6742699],[12.5250065,49.6742504],[12.5250024,49.6742438],[12.5250099,49.6742317],[12.5250143,49.6741913],[12.5250635,49.674157],[12.5251619,49.6741239],[12.5252322,49.674072],[12.5253292,49.6740112],[12.5253937,49.6739427],[12.5254269,49.6738977],[12.5254188,49.6738551],[12.5254205,49.6737962],[12.5254588,49.6737244],[12.525448,49.6737097],[12.5253743,49.6736941],[12.5253485,49.6737013],[12.5252522,49.6736897],[12.5252444,49.6736752],[12.5252535,49.6736394],[12.5252963,49.6736067],[12.5253177,49.6735726],[12.5253112,49.6735522],[12.5252926,49.673536],[12.5252729,49.673505],[12.5253058,49.6734516],[12.5253207,49.6734473],[12.525334,49.6734457],[12.5254544,49.6734672],[12.5254755,49.6734751],[12.5254812,49.6734934],[12.5254755,49.6735217],[12.5254646,49.6735527],[12.5254694,49.6735711],[12.5254839,49.6735819],[12.525581,49.6735926],[12.52558,49.6736126],[12.5255549,49.6736392],[12.525543,49.673646],[12.5255403,49.6736745],[12.5255545,49.6736785],[12.5255579,49.6736833],[12.5255942,49.6737029],[12.5256234,49.6737002],[12.5256485,49.6736897],[12.5256777,49.6736653],[12.5256967,49.6736337],[12.5256988,49.6736012],[12.525711,49.6735316],[12.5257167,49.6735193],[12.5257442,49.6733686],[12.5257398,49.6733572],[12.5257239,49.6733513],[12.525695,49.6733495],[12.5256533,49.6733208],[12.52562,49.6732869],[12.5256326,49.6732692],[12.5256655,49.6732569],[12.5256862,49.6732558],[12.5257398,49.6732771],[12.5257619,49.6732801],[12.5257883,49.6732639],[12.5257785,49.6732536],[12.5257551,49.6731967],[12.5257086,49.6731699],[12.5256512,49.6731782],[12.5255763,49.6732215],[12.5254979,49.6732281],[12.5254846,49.6732248],[12.5254806,49.6732138],[12.5254856,49.673211],[12.5254765,49.6731848],[12.5255074,49.6731497],[12.5255332,49.6730994],[12.5254985,49.6730592],[12.5254663,49.6730412],[12.5254571,49.6730309],[12.5254558,49.6730122],[12.5254728,49.6729955],[12.5255104,49.6729711],[12.525524,49.6729674],[12.5255304,49.6729514],[12.525525,49.6729342],[12.5254968,49.6729147],[12.525448,49.67291],[12.52543,49.6729086],[12.5254208,49.6729013],[12.5254032,49.6728488],[12.5254229,49.6727728],[12.5254246,49.6727397],[12.525411,49.6727179],[12.5254008,49.6726938],[12.5254117,49.6726797],[12.5254354,49.6726749],[12.5254527,49.6726815],[12.5254548,49.6726953],[12.5254843,49.6727023],[12.5255086,49.6727219],[12.5255247,49.6727344],[12.5255467,49.6727436],[12.5255626,49.6727408],[12.5255664,49.6727307],[12.5255803,49.6727157],[12.5255722,49.6727094],[12.5255725,49.6726911],[12.5255956,49.6726718],[12.5256146,49.6726753],[12.5256719,49.6726582],[12.5257486,49.6726606],[12.5258471,49.6726859],[12.5258657,49.6726799],[12.5259037,49.6726551],[12.5259202,49.6726226],[12.5259372,49.6725801],[12.5259439,49.6725287],[12.5259303,49.6724746],[12.5259129,49.6724603],[12.5258304,49.6724693],[12.525807,49.6724829],[12.5257795,49.672484],[12.5257721,49.6724605],[12.5257955,49.6724342],[12.5258498,49.6724056],[12.5258637,49.6723892],[12.5258762,49.6723411],[12.525918,49.6723196],[12.5259251,49.6723048],[12.5259017,49.6722708],[12.5258766,49.6722578],[12.5258796,49.6722508],[12.5258613,49.6722218],[12.5258654,49.6722038],[12.5258844,49.6721799],[12.5258973,49.6721634],[12.5258857,49.6721417],[12.5258613,49.6721276],[12.525827,49.6721158],[12.5257992,49.6720909],[12.525863,49.6720308],[12.5259461,49.6719699],[12.5260259,49.6719368],[12.5261043,49.6719115],[12.5261447,49.6719047],[12.526164,49.671908],[12.5261776,49.6719269],[12.5261691,49.6719781],[12.5261803,49.6719967],[12.5262149,49.6720207],[12.5263269,49.6720516],[12.5263503,49.6720556],[12.5264165,49.6720602],[12.5264406,49.6720532],[12.5265003,49.6720422],[12.526542,49.6720229],[12.5265644,49.6719796],[12.526618,49.6719378],[12.5266615,49.6719084],[12.52667,49.6718909],[12.5266459,49.6718614],[12.5265831,49.6718024],[12.526578,49.6717732],[12.5265712,49.6717136],[12.5265644,49.6716697],[12.5265722,49.6716076],[12.5266069,49.6715551],[12.5267355,49.6714227],[12.5267528,49.6713919],[12.5268111,49.6713524],[12.5268084,49.6713346],[12.5268125,49.671324],[12.5268281,49.6712933],[12.5268627,49.6712527],[12.526857,49.6712197],[12.5268172,49.6711831],[12.5268264,49.6711607],[12.5268156,49.6711264],[12.5268057,49.6710945],[12.5267606,49.6710814],[12.5267433,49.6710825],[12.5267307,49.6710939],[12.5266998,49.6711213],[12.5266788,49.6711292],[12.5266588,49.6711213],[12.5266537,49.6711011],[12.52669,49.6710721],[12.5267243,49.671023],[12.5267487,49.6710003],[12.5267609,49.6709955],[12.5268132,49.6709913],[12.5268268,49.6709808],[12.5268349,49.6708692],[12.5268101,49.6708415],[12.5267613,49.670826],[12.5267202,49.6708005],[12.5266707,49.6708093],[12.5266136,49.6708492],[12.5265091,49.6708622],[12.5264922,49.6708721],[12.5264616,49.6709057],[12.5264314,49.670912],[12.5264094,49.670896],[12.526409,49.6708758],[12.5264236,49.6708262],[12.5264969,49.6707381],[12.5265719,49.6706568],[12.5265963,49.6706426],[12.5267277,49.6706171],[12.5268159,49.6706246],[12.5268831,49.670668],[12.5268929,49.6706836],[12.5268967,49.6707008],[12.526933,49.6707166],[12.5269598,49.670717],[12.5269998,49.6707058],[12.5270171,49.670668],[12.5270507,49.670636],[12.5271009,49.6705145],[12.5270626,49.6705141],[12.527048,49.6705156],[12.5270063,49.6705016],[12.5269662,49.6704801],[12.5269516,49.6704533],[12.5269387,49.670412],[12.5269038,49.6703995],[12.5268312,49.6703889],[12.5268111,49.6703709],[12.52682,49.6703437],[12.5268413,49.6703461],[12.5269299,49.6703406],[12.52699,49.6703402],[12.5270667,49.670318],[12.5271213,49.670318],[12.5271787,49.6703296],[12.5272469,49.6703239],[12.5272839,49.6703147],[12.5273344,49.670296],[12.5273575,49.67028],[12.5273439,49.6702585],[12.5272903,49.6701943],[12.527275,49.6701838],[12.5272793,49.6701264],[12.527293,49.6701058],[12.5273219,49.6700981],[12.5273253,49.6701122],[12.5273836,49.6701282],[12.5274634,49.67013],[12.5274841,49.6701432],[12.5274936,49.6702229],[12.5275119,49.6702301],[12.5275659,49.6702097],[12.5276039,49.6702093],[12.5276755,49.6701923],[12.5277029,49.6701719],[12.5277094,49.6701581],[12.5276992,49.6701201],[12.5277186,49.6700953],[12.5277342,49.6700882],[12.5277603,49.6700623],[12.527783,49.6700281],[12.5278309,49.6700037],[12.527855,49.6699075],[12.5278624,49.6699049],[12.5278801,49.6698688],[12.5278719,49.6698392],[12.5278696,49.6697937],[12.5279541,49.6697272],[12.5279771,49.6696637],[12.5280304,49.6696402],[12.5280949,49.6696341],[12.5281689,49.6696095],[12.5282133,49.6696029],[12.5282965,49.6695616],[12.5282961,49.6695535],[12.5282849,49.6695478],[12.5282873,49.6695377],[12.5283022,49.6695218],[12.5282737,49.6695192],[12.5282554,49.6695098],[12.5282469,49.6695021],[12.5282164,49.6694983],[12.5281584,49.6694658],[12.5281329,49.6694553],[12.5281251,49.669425],[12.5281448,49.6694074],[12.528213,49.6693738],[12.5282452,49.669322],[12.5283128,49.6692603],[12.5283141,49.6692499],[12.5283026,49.6692293],[12.5283206,49.6691898],[12.5283436,49.6691788],[12.5283577,49.6691676],[12.5283816,49.6691285],[12.5283592,49.6691129],[12.5282897,49.6691096],[12.5282252,49.6691256],[12.5281953,49.6691223],[12.5281821,49.6691085],[12.5281933,49.6690841],[12.528325,49.6690255],[12.5283545,49.6690088],[12.5284444,49.6689706],[12.5285544,49.6689381],[12.528573,49.668919],[12.5285713,49.6689056],[12.5285639,49.6688968],[12.5285527,49.6688939],[12.5285042,49.6688876],[12.5284621,49.6688588],[12.5284661,49.6688419],[12.5284892,49.6688318],[12.5285649,49.6688195],[12.5286273,49.6687995],[12.5286725,49.6687929],[12.5286769,49.6687692],[12.5286582,49.6687536],[12.5285646,49.6687277],[12.5284543,49.6687141],[12.5284344,49.6687017],[12.5284342,49.6686835],[12.5284651,49.6686343],[12.5284814,49.6686001],[12.5285058,49.6685886],[12.5286477,49.6685895],[12.5287081,49.6685607],[12.5287705,49.6685478],[12.5288035,49.668534],[12.5288404,49.6684916],[12.5289012,49.6684525],[12.5288978,49.6684085],[12.5289042,49.6683802],[12.5289585,49.6683679],[12.5290067,49.6683734],[12.5290766,49.6683945],[12.5291123,49.6683949],[12.5291832,49.6683879],[12.5292738,49.6684235],[12.5292667,49.6684523],[12.5292857,49.6684797],[12.529303,49.6684883],[12.5293488,49.6684986],[12.5293776,49.6684898],[12.5294007,49.668476],[12.5294143,49.6684586],[12.5294577,49.6684362],[12.5294954,49.6684217],[12.5295548,49.6684059],[12.5296101,49.6683684],[12.5296474,49.6683154],[12.5296515,49.6682946],[12.529683,49.6682816],[12.5296942,49.6682491],[12.5296169,49.6682357],[12.529605,49.6682219],[12.5295358,49.6681828],[12.5295524,49.6680492],[12.529419,49.6680031],[12.5295001,49.6679651],[12.5296549,49.6679372],[12.5297353,49.6678918],[12.5297428,49.6678801],[12.5297217,49.667856],[12.5296712,49.6678355],[12.5296176,49.6678314],[12.5295962,49.6678184],[12.5295948,49.6678041],[12.5296108,49.6677945],[12.5296247,49.6677617],[12.5296118,49.6677457],[12.5295639,49.6677281],[12.52955,49.6677277],[12.5295398,49.6677321],[12.529475,49.6677334],[12.5294119,49.6677154],[12.5293919,49.667691],[12.5293949,49.6676831],[12.5293936,49.6676638],[12.5294177,49.6676462],[12.5294228,49.6676374],[12.5294167,49.6676161],[12.5294241,49.6675867],[12.5294391,49.6675645],[12.5294625,49.6675522],[12.5294672,49.6675291],[12.5294425,49.6675127],[12.5294258,49.6674766],[12.5293963,49.6674657],[12.5293637,49.6674672],[12.5293301,49.6674907],[12.5292935,49.6674947],[12.5292802,49.6674723],[12.5293006,49.6674354],[12.5293115,49.6674033],[12.5293071,49.667389],[12.529344,49.6673468],[12.5293729,49.6673306],[12.5295195,49.6673183],[12.5295588,49.6673207],[12.5295938,49.6673236],[12.5296386,49.6673372],[12.5296881,49.6673607],[12.5297014,49.6673567],[12.5297024,49.6673477],[12.5297323,49.6673231],[12.529719,49.6672739],[12.5296627,49.6672052],[12.5296464,49.6671938],[12.5296416,49.6671727],[12.5296491,49.6671287],[12.5296654,49.667102],[12.5296528,49.6670802],[12.5296271,49.66708],[12.5295677,49.6670528],[12.5295483,49.6670369],[12.5295348,49.6670372],[12.5295144,49.6670319],[12.5294978,49.6670216],[12.5294743,49.6669765],[12.5294754,49.6669576],[12.5294967,49.6669322],[12.5295721,49.6668955],[12.5295762,49.6668621],[12.5295605,49.6668439],[12.5295507,49.6668412],[12.5294978,49.6668057],[12.5294974,49.6667931],[12.529529,49.6667281],[12.529532,49.666713],[12.5295667,49.6666934],[12.5295765,49.6666936],[12.5296471,49.666664],[12.5296698,49.6666653],[12.5297879,49.6666513],[12.5298011,49.6666458],[12.529848,49.6666414],[12.5298761,49.6666337],[12.5298734,49.6666106],[12.5298707,49.6665911],[12.5298507,49.6665482],[12.5298385,49.6665142],[12.5298381,49.6664861],[12.5298436,49.6664727],[12.5298544,49.6664648],[12.5299281,49.6664406],[12.5299688,49.6664202],[12.5299807,49.6663791],[12.5299888,49.6663209],[12.5299739,49.6662983],[12.529965,49.6662669],[12.5299352,49.6662172],[12.5299427,49.6661612],[12.5299739,49.6660822],[12.5299287,49.6660367],[12.5299053,49.6659868],[12.5298524,49.6659247],[12.5298184,49.6658876],[12.5297726,49.6658324],[12.5297292,49.6657969],[12.5297207,49.6657613],[12.5297248,49.6657116],[12.5297153,49.6656956],[12.529698,49.6656868],[12.5296834,49.6656846],[12.5296545,49.6656884],[12.5296403,49.6657018],[12.5296186,49.6657463],[12.5295958,49.6657602],[12.5295456,49.665776],[12.5294669,49.6658105],[12.5294557,49.6658311],[12.5294604,49.6658557],[12.5294798,49.665897],[12.5294716,49.6659111],[12.5294462,49.6659221],[12.5294218,49.665917],[12.5293844,49.6659163],[12.5293522,49.6659082],[12.5293406,49.6658946],[12.5293423,49.6658799],[12.5293664,49.6658559],[12.5293613,49.6658502],[12.5293664,49.6658127],[12.5293471,49.6657857],[12.5293155,49.6657668],[12.529286,49.6657141],[12.5292823,49.6657033],[12.5293067,49.6656576],[12.5293064,49.6656418],[12.529285,49.665611],[12.5292531,49.6655976],[12.5292188,49.6655941],[12.5291462,49.665584],[12.5290705,49.665573],[12.5290549,49.6655614],[12.5290485,49.6655423],[12.5290128,49.6655199],[12.5289901,49.6655164],[12.5289568,49.665503],[12.5289508,49.6654936],[12.5289495,49.6654703],[12.5289695,49.6654584],[12.5290024,49.665449],[12.5290326,49.6654202],[12.5290309,49.6654011],[12.5290092,49.6653835],[12.5289742,49.6653618],[12.5289471,49.6653293],[12.528943,49.6653018],[12.5289464,49.6652814],[12.5289444,49.6652713],[12.5289033,49.6652456],[12.5288952,49.6652142],[12.528869,49.6651817],[12.5288565,49.665159],[12.5288436,49.6651252],[12.5288008,49.6651208],[12.5287859,49.66513],[12.5287774,49.6651518],[12.5287645,49.6651641],[12.5287184,49.6651845],[12.5286736,49.6651738],[12.5286457,49.6651542],[12.5286508,49.6650855],[12.5286627,49.6650573],[12.528661,49.665029],[12.5286498,49.6649983],[12.5286271,49.6649644],[12.5285986,49.6649484],[12.5285568,49.6649113],[12.5285494,49.6649018],[12.5285453,49.6648785],[12.5285283,49.6648717],[12.5284988,49.6648669],[12.5284506,49.6648555],[12.5284323,49.664861],[12.5283994,49.6648957],[12.5283295,49.6649436],[12.5282938,49.6649473],[12.5282148,49.6649306],[12.5281225,49.6649339],[12.5281021,49.6649231],[12.528094,49.6649113],[12.5280987,49.6648867],[12.5281096,49.6648757],[12.5281289,49.6648465],[12.5281428,49.664834],[12.5281557,49.6648008],[12.5281438,49.6647876],[12.5281109,49.664772],[12.5280946,49.6647421],[12.5280804,49.6647048],[12.5280573,49.6646804],[12.5280003,49.6645491],[12.5280047,49.6645192],[12.5280319,49.6645036],[12.5280695,49.6645038],[12.5280929,49.6645038],[12.5281401,49.6645003],[12.5281897,49.664481],[12.5282087,49.6644524],[12.5282059,49.6644109],[12.5281829,49.6643786],[12.5281785,49.6643343],[12.5281724,49.6642927],[12.5282151,49.664233],[12.528191,49.6642005],[12.5281367,49.6641722],[12.5280991,49.6641465],[12.5280936,49.6641122],[12.5281313,49.6640606],[12.5281486,49.6640496],[12.5281656,49.6640494],[12.5282348,49.6640281],[12.5282813,49.6640336],[12.5283084,49.6640257],[12.5283366,49.6639861],[12.5282857,49.663942],[12.5282361,49.6639437],[12.5281914,49.6639321],[12.5281343,49.6638638],[12.5281259,49.6638469],[12.5281262,49.6638284],[12.5280919,49.6638155],[12.5279745,49.6638139],[12.5278995,49.6638007],[12.5278371,49.6637669],[12.527704,49.6637485],[12.527645,49.6637557],[12.5275629,49.6637616],[12.527477,49.6637485],[12.5274163,49.6637094],[12.5273002,49.6636641],[12.527213,49.6636474],[12.5271546,49.6636323],[12.5271309,49.6636039],[12.5270878,49.6635815],[12.5269945,49.6635604],[12.5269096,49.6635506],[12.5268078,49.6635303],[12.5267793,49.6635174],[12.5267406,49.6634963],[12.5266555,49.6634412],[12.5266039,49.6633981],[12.5265608,49.6633529],[12.5265258,49.663238],[12.5265004,49.6632048],[12.5264885,49.6632028],[12.5264081,49.6631635],[12.5263694,49.6631613],[12.5263297,49.6631429],[12.5263131,49.6631187],[12.5263063,49.6630906],[12.5262734,49.6630372],[12.5262503,49.6629889],[12.526177,49.6628977],[12.5260708,49.6628477],[12.5260457,49.6628481],[12.5259781,49.6628652],[12.5259391,49.6628549],[12.5258987,49.662834],[12.5258288,49.6628156],[12.5258146,49.6628143],[12.525725,49.6627576],[12.5257114,49.6627209],[12.5257311,49.6626706],[12.5257121,49.6626254],[12.5257128,49.6626144],[12.5257355,49.6625656],[12.5257029,49.6625051],[12.5256873,49.6624745],[12.5256741,49.662436],[12.5256585,49.6624136],[12.525635,49.6624048],[12.5255315,49.6623824],[12.5254745,49.6623504],[12.525464,49.6623238],[12.5253972,49.6622794],[12.5253673,49.6622304],[12.5253625,49.6621817],[12.5253683,49.6621626],[12.5253399,49.6620962],[12.5253171,49.6620059],[12.5253293,49.6620002],[12.5252502,49.6619299],[12.5251959,49.6618886],[12.5250598,49.6618298],[12.5249648,49.6617819],[12.5249244,49.6617415],[12.5248786,49.661712],[12.5248091,49.661622],[12.5247544,49.6615113],[12.5246662,49.6614616],[12.5246414,49.6614581],[12.5245118,49.6614726],[12.5244646,49.6614572],[12.524429,49.6614192],[12.5243476,49.6613764],[12.524206,49.6612699],[12.5241171,49.6612272],[12.5241066,49.6612167],[12.5241059,49.6611943],[12.5240696,49.661162],[12.5240136,49.6611312],[12.5239729,49.6611295],[12.5239665,49.6611409],[12.5239682,49.6611526],[12.5239481,49.6611829],[12.5239115,49.6611952],[12.5238921,49.6611941],[12.5238731,49.6611681],[12.5238402,49.661146],[12.5238355,49.6611299],[12.5238535,49.6610776],[12.5238372,49.6610478],[12.5238202,49.6610451],[12.5237055,49.6609801],[12.523621,49.6609588],[12.5235657,49.6609869],[12.5235786,49.6611148],[12.5235463,49.661225],[12.523529,49.6612457],[12.5235012,49.6612455],[12.5234435,49.6612154],[12.5234381,49.6611906],[12.5233991,49.6611141],[12.5233902,49.6611012],[12.5233784,49.6610946],[12.5233529,49.6610891],[12.5232776,49.6610379],[12.5232294,49.6609909],[12.5231456,49.6608901],[12.5230903,49.6608532],[12.5230655,49.6608305],[12.5230543,49.6608037],[12.5230285,49.6607813],[12.5229956,49.6607763],[12.5229776,49.660767],[12.5229379,49.6607211],[12.5229074,49.660673],[12.5228646,49.6606524],[12.5228052,49.6606401],[12.5227791,49.6606434],[12.522774,49.6606519],[12.5226881,49.6606785],[12.5226196,49.6606875],[12.5225627,49.6607039],[12.5225283,49.6606994],[12.5224978,49.6606785],[12.5224954,49.6606504],[12.5225432,49.6605733],[12.5225232,49.6605371],[12.5224713,49.6605177],[12.5224754,49.6604804],[12.5224906,49.6604386],[12.5224849,49.6604112],[12.5224445,49.660367],[12.5224255,49.6603271],[12.5224214,49.6603005],[12.5224367,49.6602789],[12.5224133,49.6602089],[12.5224716,49.6601704],[12.5224737,49.6601623],[12.522531,49.6601102],[12.5225327,49.6600889],[12.5225198,49.6600791],[12.5224883,49.6600529],[12.5224167,49.6600318],[12.5223644,49.6600292],[12.5223176,49.6600094],[12.522249,49.6599589],[12.5222358,49.6599259],[12.5222178,49.6599053],[12.5222032,49.6598838],[12.5222029,49.6598337],[12.522228,49.6598161],[12.5222327,49.6598038],[12.5222284,49.6597683],[12.5222453,49.6597513],[12.5222772,49.6597432],[12.5224404,49.6597796],[12.522475,49.6597588],[12.5224727,49.6597315],[12.5224292,49.6597115],[12.5223451,49.6596839],[12.5223227,49.6596806],[12.5223077,49.6596448],[12.522305,49.659618],[12.522324,49.6596101],[12.522381,49.6596193],[12.5224367,49.659587],[12.522438,49.6595743],[12.5223983,49.6595138],[12.5223966,49.659495],[12.5224336,49.659466],[12.5224981,49.6594789],[12.5225341,49.659525],[12.5225717,49.6595264],[12.5225887,49.6595149],[12.5226009,49.6594774],[12.5225958,49.6594666],[12.5225588,49.6594394],[12.5225538,49.6593888],[12.5225331,49.6593823],[12.5224733,49.6593691],[12.5224401,49.6593546],[12.5223994,49.6593792],[12.522359,49.659373],[12.5223335,49.6593436],[12.5223145,49.6593128],[12.522303,49.6592799],[12.5223165,49.6592636],[12.5223593,49.6591826],[12.5223973,49.659123],[12.5224435,49.6590956],[12.5224757,49.6590844],[12.5225629,49.6590119],[12.5225836,49.6590016],[12.522588,49.6589904],[12.5225924,49.6589477],[12.5226138,49.6589152],[12.5226511,49.6588968],[12.5226773,49.6588931],[12.5226949,49.6588979],[12.5227519,49.6589491],[12.5227339,49.6590227],[12.522755,49.6590356],[12.5227618,49.6590541],[12.5227937,49.6590688],[12.5228195,49.659062],[12.5228785,49.6590224],[12.5228989,49.6589939],[12.5229617,49.6589539],[12.5229827,49.6589374],[12.5230451,49.6589091],[12.5231032,49.6588983],[12.5231167,49.6588689],[12.5231063,49.6588043],[12.5230791,49.6586945],[12.5230696,49.6586771],[12.5230407,49.6586376],[12.5230424,49.65862],[12.5230828,49.6585956],[12.5231476,49.6585315],[12.5231642,49.6584827],[12.5231663,49.6584476],[12.5231612,49.6584229],[12.5231429,49.6584183],[12.5231215,49.6584221],[12.5230421,49.6584208],[12.5229583,49.6584179],[12.522944,49.6584153],[12.5229002,49.6583911],[12.5228514,49.6583733],[12.5228449,49.6583632],[12.5228283,49.6583507],[12.5227991,49.6582995],[12.5227974,49.6582808],[12.5228147,49.6582389],[12.5228632,49.6582228],[12.5228948,49.6582219],[12.5229437,49.6582364],[12.522979,49.6582551],[12.5230285,49.6582523],[12.5230821,49.6582066],[12.523073,49.6581877],[12.523073,49.6581815],[12.5231062,49.6581259],[12.5230987,49.6581079],[12.5230709,49.6581035],[12.5230662,49.6581108],[12.5230383,49.6581183],[12.5229596,49.6581106],[12.5229298,49.6581101],[12.522869,49.6580899],[12.5228476,49.6580779],[12.5228429,49.6580697],[12.5228344,49.6580357],[12.5228442,49.6580288],[12.5228544,49.6580086],[12.5228252,49.6579766],[12.522811,49.6579779],[12.5227913,49.6579704],[12.5227282,49.6579173],[12.5227068,49.6578749],[12.5227109,49.6578395],[12.5228313,49.6577696],[12.5229192,49.6577428],[12.5229369,49.6577323],[12.522961,49.6577259],[12.522999,49.6577239],[12.5230187,49.6577325],[12.5230248,49.6577437],[12.5230078,49.6577758],[12.5229617,49.6577945],[12.5229406,49.6578193],[12.5229413,49.6578419],[12.5229756,49.6578696],[12.5230434,49.6578713],[12.5230648,49.6578608],[12.5231052,49.6578456],[12.5231371,49.6578489],[12.5231405,49.6578544],[12.5232226,49.6578729],[12.5232613,49.6578764],[12.5232772,49.6578858],[12.5232895,49.6579157],[12.523283,49.6579287],[12.5232895,49.6579511],[12.5232993,49.6579583],[12.5233163,49.6579643],[12.5233533,49.6579627],[12.5233746,49.657941],[12.5233688,49.6579223],[12.5233797,49.6578863],[12.523375,49.6578441],[12.5233536,49.6577991],[12.523356,49.6577626],[12.5233902,49.657722],[12.5234391,49.6577002],[12.5234761,49.6577101],[12.5235409,49.6577793],[12.5235711,49.6577824],[12.523584,49.65778],[12.5235986,49.657769],[12.5236258,49.6577097],[12.5236373,49.6576462],[12.5236288,49.6576246],[12.5235969,49.6576224],[12.5235209,49.657626],[12.5234785,49.6576224],[12.5234595,49.6576156],[12.5234347,49.6576],[12.5234337,49.6575822],[12.5234188,49.6575605],[12.5234245,49.657548],[12.5234354,49.6575409],[12.5234931,49.657524],[12.5235284,49.6575275],[12.5235861,49.6575385],[12.5236003,49.6575383],[12.5236617,49.6575025],[12.5236532,49.6574507],[12.5236231,49.6573972],[12.5236129,49.6573783],[12.523562,49.6573246],[12.5235362,49.6573061],[12.5235092,49.6572803],[12.5235026,49.6572601],[12.5234915,49.6572135],[12.5234946,49.6571746],[12.5234988,49.6571569],[12.5234749,49.6570242],[12.5234293,49.6569697],[12.5233998,49.6569278],[12.5233872,49.6569054],[12.5233576,49.6568759],[12.5232966,49.6568441],[12.5232573,49.6568152],[12.5232199,49.6567989],[12.5231879,49.6567973],[12.5231781,49.6568],[12.5231363,49.6568345],[12.5231206,49.656838],[12.5230961,49.6568345],[12.5230599,49.6568244],[12.5230555,49.6568201],[12.5230665,49.6567786],[12.5231039,49.6567554],[12.5231744,49.6567261],[12.523186,49.6567155],[12.5232265,49.6566941],[12.5232608,49.6566797],[12.5232973,49.6566699],[12.5233649,49.6566789],[12.5234183,49.656673],[12.5234893,49.6565447],[12.5234849,49.6565307],[12.5234494,49.6565043],[12.5233212,49.6565329],[12.5232202,49.6565388],[12.5231866,49.6565344],[12.5231561,49.6565183],[12.523153,49.6565047],[12.5231797,49.6564837],[12.5232404,49.6564566],[12.5232514,49.6564458],[12.5232467,49.6564353],[12.5231882,49.6564031],[12.5230951,49.6564292],[12.5230819,49.656431],[12.5230071,49.6564102],[12.5229502,49.6564025],[12.5229282,49.6563929],[12.5229339,49.6563703],[12.5229496,49.6563567],[12.5229769,49.6563425],[12.5230458,49.6563331],[12.5230838,49.6563036],[12.5230703,49.6562794],[12.5230583,49.6562684],[12.5230077,49.6562613],[12.5229886,49.6562566],[12.5229829,49.6562409],[12.5229977,49.656224],[12.5230543,49.6561925],[12.5231118,49.6561805],[12.5231291,49.6561831],[12.523235,49.6562248],[12.52329,49.6561978],[12.5233218,49.656176],[12.5233473,49.6561418],[12.5233322,49.6559885],[12.5232894,49.6559352],[12.5232419,49.6559092],[12.5231784,49.6558815],[12.5231593,49.6558697],[12.5231329,49.6558377],[12.5231329,49.6558304],[12.5231552,49.6558123],[12.5231659,49.6558076],[12.5232089,49.6557995],[12.5232973,49.6558176],[12.5233328,49.6558123],[12.5233724,49.6558115],[12.5233916,49.6558217],[12.523384,49.6558593],[12.5233655,49.6558734],[12.5233661,49.6558801],[12.5233743,49.6558923],[12.5233872,49.6558978],[12.5235686,49.6559289],[12.5235896,49.6559232],[12.5236258,49.6558949],[12.5236613,49.6558422],[12.5236742,49.6558357],[12.523721,49.655792],[12.5237239,49.6557696],[12.5237044,49.6557531],[12.5236585,49.6557574],[12.5236167,49.6557364],[12.5235811,49.6556558],[12.5235862,49.6556397],[12.5236802,49.6555917],[12.5237364,49.6555555],[12.5237789,49.6555166],[12.5238524,49.6554792],[12.5238666,49.6554783],[12.5239075,49.6555009],[12.5240134,49.6554926],[12.524081,49.6554724],[12.5241215,49.6554588],[12.5241527,49.6554124],[12.5241347,49.6553823],[12.5240976,49.6553768],[12.5240716,49.6553497],[12.5240643,49.6553359],[12.5240816,49.6553161],[12.524142,49.6552911],[12.5241662,49.6552697],[12.5242111,49.6552467],[12.5242265,49.6552453],[12.5242561,49.6552414],[12.5243259,49.6552435],[12.5243592,49.6552589],[12.5243633,49.6552714],[12.5243856,49.6553031],[12.5244523,49.6553688],[12.5244809,49.655366],[12.5244881,49.6553558],[12.5245044,49.6553499],[12.524572,49.6552644],[12.5245837,49.6552307],[12.5245953,49.655214],[12.5246252,49.65519],[12.5246456,49.65518],[12.5246802,49.6551755],[12.524694,49.6551786],[12.5247333,49.6551957],[12.5247408,49.6552073],[12.5247915,49.6552103],[12.5248528,49.6552028],[12.5249005,49.6551794],[12.5249414,49.6551472],[12.5250904,49.655055],[12.5251916,49.6549944],[12.5252715,49.6549325],[12.5253004,49.6549042],[12.5253155,49.6548658],[12.5253183,49.6548472],[12.5253623,49.6547994],[12.5253916,49.654785],[12.5254721,49.6547713],[12.5255239,49.6547605],[12.5255503,49.6547599],[12.5256006,49.654751],[12.5256437,49.6547493],[12.5256726,49.6547544],[12.5257591,49.6547473],[12.5257974,49.654717],[12.5258056,49.6546974],[12.5257889,49.6546771],[12.5257195,49.6546553],[12.5255877,49.6545957],[12.5255661,49.6545576],[12.5255956,49.6545192],[12.5256616,49.6544648],[12.5257034,49.654442],[12.5257456,49.6544333],[12.5258304,49.6544416],[12.5259131,49.6544801],[12.5260187,49.6544787],[12.5260672,49.6544746],[12.5261049,49.6544758],[12.5261291,49.6544597],[12.5261586,49.6544052],[12.5261728,49.6543472],[12.5261643,49.6543209],[12.5261291,49.6543028],[12.5260373,49.6542835],[12.5259911,49.6542802],[12.5259009,49.6542888],[12.5258578,49.6543024],[12.525821,49.6543095],[12.5258025,49.6543077],[12.5257867,49.6542979],[12.5257886,49.6542719],[12.5258097,49.6542328],[12.5258279,49.6542059],[12.5258619,49.654195],[12.5259254,49.6541907],[12.5259468,49.6541815],[12.5259719,49.654154],[12.5259788,49.6541384],[12.5259691,49.6541225],[12.5259332,49.6540956],[12.5258814,49.6540997],[12.5258663,49.6541021],[12.5258477,49.6540977],[12.5258081,49.6540535],[12.525816,49.654045],[12.5258374,49.6540435],[12.5259263,49.6540448],[12.5259474,49.6540415],[12.5259741,49.654022],[12.5259832,49.6540028],[12.52596,49.6539556],[12.5259304,49.6539271],[12.5259097,49.6539196],[12.5257817,49.6539094],[12.525744,49.6539214],[12.5257355,49.6539591],[12.5256883,49.6540067],[12.5256648,49.6540085],[12.5256013,49.6539981],[12.5255387,49.6539774],[12.5254953,49.653941],[12.5254956,49.6538821],[12.5255164,49.6538543],[12.5255268,49.6538351],[12.5254818,49.6538313],[12.5254136,49.6538321],[12.5252573,49.6538274],[12.5251942,49.6538115],[12.5251461,49.6538453],[12.5251734,49.6538693],[12.5251901,49.6539055],[12.525181,49.6539137],[12.5250948,49.6539226],[12.5250722,49.6539167],[12.5249552,49.6538024],[12.5249411,49.6537207],[12.5249081,49.6536859],[12.5248779,49.6536465],[12.524816,49.6535341],[12.5247999,49.653391],[12.5247849,49.6533406],[12.5248106,49.6533247],[12.524827,49.6533263],[12.5248326,49.6533332],[12.5249134,49.6533497],[12.5250008,49.6533516],[12.5250106,49.6533365],[12.5249983,49.6532722],[12.5249706,49.653225],[12.5249895,49.6531965],[12.5250326,49.6531843],[12.5250854,49.6531505],[12.525087,49.6531372],[12.5250043,49.6530902],[12.524949,49.6530522],[12.5249326,49.6530322],[12.5249031,49.6530318],[12.5248952,49.6530469],[12.5247786,49.6530656],[12.5246054,49.6530009],[12.5245969,49.6529838],[12.5246579,49.6528965],[12.5246701,49.6528338],[12.5246223,49.6528285],[12.5245978,49.6528281],[12.5245038,49.6528698],[12.5244629,49.652847],[12.5245063,49.652821],[12.5246481,49.6527575],[12.5247698,49.6527436],[12.5247805,49.652722],[12.5246984,49.6526925],[12.524634,49.6526976],[12.5246126,49.6526846],[12.524623,49.6526638],[12.5246685,49.6526453],[12.52475,49.6526388],[12.5249358,49.6527288],[12.5249738,49.6527253],[12.5250099,49.6527225],[12.5249876,49.6526659],[12.5250046,49.652614],[12.5248519,49.6525198],[12.5247918,49.6524824],[12.5249314,49.6524138],[12.524943,49.6523905],[12.524861,49.6523015],[12.5249086,49.6522618],[12.5248335,49.6521799],[12.5247034,49.6519935],[12.5245969,49.6518698],[12.5244906,49.6516975],[12.5243905,49.6516017],[12.5240079,49.6513522],[12.5239114,49.651306],[12.523774,49.6513262],[12.5237419,49.6512637],[12.5236901,49.6512338],[12.5236146,49.651214],[12.5233911,49.6512228],[12.5231833,49.6512266],[12.5228114,49.6510744],[12.5227155,49.651029],[12.5226508,49.6509911],[12.522503,49.6509366],[12.5224376,49.6509411],[12.5224276,49.6509474],[12.5224166,49.6509419],[12.5223782,49.6509337],[12.5223229,49.6509303],[12.522254,49.6509215],[12.5222138,49.6509287],[12.5221742,49.6509295],[12.5221182,49.6509064],[12.5220444,49.6508937],[12.5219809,49.6508686],[12.5219309,49.6508422],[12.5217149,49.6508039],[12.5215954,49.6507723],[12.5215841,49.6507622],[12.5215898,49.6507548],[12.521586,49.6507414],[12.5215137,49.6507086],[12.5214703,49.6506922],[12.521454,49.6506781],[12.5214694,49.6506213],[12.5214552,49.6505967],[12.5214134,49.6505816],[12.5213958,49.6505802],[12.5213546,49.6505674],[12.5212795,49.6505617],[12.5212125,49.6505379],[12.5211019,49.6505623],[12.5210227,49.6505531],[12.5209356,49.6505586],[12.5209161,49.6505523],[12.5208686,49.6505244],[12.520824,49.6504805],[12.5208117,49.6504359],[12.520829,49.6504123],[12.5208746,49.650383],[12.5209252,49.6503816],[12.5209488,49.6503455],[12.520957,49.6503238],[12.5209736,49.6503256],[12.5210418,49.6503069],[12.5210796,49.6502731],[12.5210607,49.6502535],[12.5210789,49.6502332],[12.5211035,49.6501644],[12.5210931,49.6501322],[12.5210742,49.6501214],[12.5209903,49.6500201],[12.5209815,49.6499875],[12.5209915,49.6499484],[12.5210104,49.6499328],[12.5210315,49.6499401],[12.5210824,49.649935],[12.5211723,49.6499407],[12.5212852,49.6498953],[12.5212981,49.6498713],[12.5212594,49.649808],[12.5212663,49.6497933],[12.5212845,49.6497925],[12.521316,49.6497844],[12.5213468,49.6497538],[12.5214181,49.6497174],[12.5214521,49.6496653],[12.5214345,49.6496374],[12.5213788,49.6496226],[12.5213216,49.6496545],[12.521243,49.6496726],[12.521205,49.6496686],[12.5211777,49.6496474],[12.5211799,49.6496333],[12.5212116,49.6496211],[12.5212283,49.6495731],[12.5212503,49.6495446],[12.5213012,49.6495059],[12.5213282,49.6494958],[12.5213502,49.649475],[12.5213854,49.6493751],[12.5213763,49.6493333],[12.5213883,49.6493191],[12.5214109,49.6493238],[12.5214323,49.6493136],[12.5214439,49.6492908],[12.5214053,49.6492527],[12.5213987,49.6492312],[12.5214115,49.6491756],[12.5213506,49.6491288],[12.5213311,49.6491058],[12.5211374,49.6490127],[12.5211107,49.6490187],[12.5210764,49.6490355],[12.521028,49.6490862],[12.5209821,49.6490976],[12.5209054,49.6491534],[12.5208513,49.6491562],[12.520807,49.6491123],[12.5207966,49.6490974],[12.5208146,49.6490547],[12.5208391,49.6490396],[12.5208733,49.6489916],[12.520912,49.6489625],[12.5208979,49.6489273],[12.5208504,49.6489187],[12.5207771,49.6489376],[12.5206979,49.6489138],[12.5206825,49.648903],[12.5206357,49.6488943],[12.520536,49.6488625],[12.5204659,49.6488513],[12.5204288,49.6488296],[12.5204449,49.648795],[12.5204247,49.6487628],[12.5204075,49.6487431],[12.520415,49.6487317],[12.5204471,49.6487131],[12.5204405,49.6486474],[12.5204153,49.6486443],[12.5203377,49.6486238],[12.5203153,49.648601],[12.5202569,49.6485818],[12.5201726,49.6485265],[12.5200991,49.6485625],[12.5200415,49.6486016],[12.5200183,49.6486323],[12.5199978,49.6486321],[12.5199004,49.6485937],[12.5198919,49.6485686],[12.5199145,49.6485578],[12.5199441,49.6485564],[12.5199749,49.6485128],[12.5199642,49.648486],[12.519945,49.6484656],[12.5198821,49.6484567],[12.5197737,49.6484791],[12.5197548,49.6484453],[12.5196108,49.6484066],[12.5195917,49.6483691],[12.5195304,49.6483349],[12.5195549,49.648314],[12.519558,49.6482757],[12.5195549,49.6482265],[12.5195033,49.6481898],[12.5194373,49.6481853],[12.5194106,49.6481743],[12.5194162,49.6481601],[12.5194093,49.6481432],[12.5193917,49.6481428],[12.5193615,49.648132],[12.5192792,49.6481385],[12.5192107,49.648107],[12.5192135,49.6480838],[12.519177,49.6480361],[12.5191717,49.6480117],[12.5191635,49.6479899],[12.5191462,49.6479639],[12.5191226,49.6479545],[12.519089,49.6479075],[12.5190101,49.6478501],[12.5189041,49.6477992],[12.5188127,49.6477776],[12.518779,49.6477762],[12.5186734,49.647742],[12.5186357,49.6476893],[12.5185285,49.647651],[12.5184961,49.6476286],[12.5184974,49.6476018],[12.5184923,49.6475898],[12.5184662,49.6475808],[12.5184383,49.6475596],[12.5184203,49.647536],[12.5184225,49.6475179],[12.5183141,49.6474436],[12.5182889,49.6474312],[12.5182037,49.6474139],[12.5181525,49.6474416],[12.518106,49.6474359],[12.518084,49.6474186],[12.5180968,49.6473903],[12.51815,49.6473567],[12.5181648,49.6473237],[12.5181978,49.6472822],[12.5181893,49.6471949],[12.5181927,49.6471739],[12.518182,49.6471682],[12.5181739,49.6471576],[12.5181965,49.6471226],[12.5182198,49.6471031],[12.5182333,49.6470862],[12.5182125,49.6470554],[12.5181267,49.646982],[12.5181079,49.6469119],[12.5181283,49.6468629],[12.5181531,49.6468488],[12.5181487,49.646824],[12.5181503,49.6467892],[12.5181745,49.6467418],[12.5181736,49.6467312],[12.5181968,49.6466939],[12.5182575,49.6466713],[12.5182691,49.646653],[12.5182657,49.6466325],[12.5182848,49.6465852],[12.5182914,49.6465584],[12.5182279,49.6465024],[12.5182323,49.6464574],[12.5182078,49.6464254],[12.5181264,49.6463849],[12.5181148,49.6463562],[12.5180572,49.6463404],[12.5180346,49.6463575],[12.5180264,49.6464155],[12.5179818,49.6464368],[12.5179554,49.6464269],[12.5179337,49.6464065],[12.5179189,49.6464069],[12.517896,49.6464173],[12.5177199,49.6463367],[12.5177457,49.6462897],[12.5177753,49.6462675],[12.5177913,49.646229],[12.517824,49.6461971],[12.5177718,49.6461635],[12.5177504,49.6461405],[12.5177064,49.6461278],[12.5176693,49.6461213],[12.5176401,49.6461136],[12.5176596,49.6460613],[12.5176797,49.6460442],[12.5176652,49.6460094],[12.5175335,49.6459605],[12.5174757,49.6458716],[12.5175043,49.6458469],[12.5175181,49.6458075],[12.5175571,49.6457836],[12.5175957,49.6457893],[12.5176281,49.6458144],[12.5176608,49.6458099],[12.5176989,49.6457584],[12.5177187,49.6457492],[12.5177206,49.6457264],[12.5176998,49.6457193],[12.5176806,49.6457226],[12.5176432,49.6457154],[12.5176451,49.6457085],[12.5175002,49.6456287],[12.5174684,49.6456297],[12.5174109,49.6456572],[12.5173147,49.6456548],[12.5173106,49.6456499],[12.5172789,49.6456283],[12.5172842,49.6455988],[12.5173386,49.6455646],[12.5174137,49.6455052],[12.5174093,49.6454885],[12.5174156,49.6454559],[12.5173688,49.6454417],[12.5173254,49.6454498],[12.5172682,49.6454368],[12.5172471,49.6454018],[12.5172597,49.6453908],[12.5172789,49.6453879],[12.517305,49.6453802],[12.5173087,49.6453696],[12.5173499,49.6453313],[12.5174474,49.6453155],[12.5175071,49.645323],[12.5175344,49.6453118],[12.5175153,49.6452648],[12.5175128,49.6452161],[12.5174741,49.6451864],[12.5173999,49.6451601],[12.5173902,49.6451494],[12.5174169,49.645104],[12.5175297,49.6450698],[12.5175398,49.645051],[12.5174958,49.644978],[12.5175612,49.6449258],[12.5176071,49.6449234],[12.5176294,49.6449083],[12.5176404,49.6448967],[12.5176662,49.6448426],[12.5176869,49.6447449],[12.5176819,49.6447318],[12.5176703,49.6443408],[12.517697,49.6443111],[12.5178884,49.6442643],[12.5178771,49.6442183],[12.5176218,49.6437287],[12.5177746,49.6436226],[12.5179051,49.6434602],[12.5178897,49.6433812],[12.5178897,49.6433515],[12.5182848,49.6430934],[12.5184794,49.6431233],[12.5185543,49.6431502],[12.518708,49.6431848],[12.5187429,49.64323],[12.5187294,49.6432611],[12.5186643,49.6433108],[12.5188881,49.6433631],[12.5189368,49.6433588],[12.5190607,49.643028],[12.5191717,49.642911],[12.5192839,49.6429248],[12.5193194,49.6429549],[12.5193421,49.6429647],[12.5193688,49.642937],[12.519343,49.6427998],[12.5194232,49.6427522],[12.5194948,49.6426726],[12.519624,49.6426775],[12.5198259,49.6426254],[12.5199211,49.6425348],[12.5200786,49.6424672],[12.5203144,49.6424886],[12.5203732,49.6424796],[12.5204732,49.6424147],[12.5205084,49.6423031],[12.5205709,49.6422734],[12.5206395,49.6422734],[12.5206734,49.6422797],[12.5208118,49.6423256],[12.5208779,49.6423522],[12.5209679,49.642401],[12.5210462,49.6424419],[12.5210824,49.6424542],[12.5211289,49.6424686],[12.5211651,49.6424733],[12.5211811,49.6424711],[12.5212154,49.6424572],[12.5212415,49.6424342],[12.5213125,49.6424629],[12.5218872,49.6426514],[12.5224807,49.6419656],[12.5234587,49.6422528],[12.523454,49.6422825],[12.5235241,49.6422801],[12.5235423,49.6423007],[12.5235653,49.642365],[12.5236517,49.6423646],[12.5236794,49.6423361],[12.5236945,49.6422522],[12.5240343,49.6422946],[12.5241324,49.6423532],[12.5241487,49.6423603],[12.5242886,49.6423298],[12.5242817,49.6421901],[12.5244285,49.6421498],[12.5245257,49.6422243],[12.5245813,49.6422341],[12.5246068,49.6422341],[12.524653,49.6421476],[12.5248579,49.642057],[12.5250874,49.6420946],[12.525127,49.6420584],[12.5251025,49.6419414],[12.5251198,49.6419277],[12.5254767,49.6419432],[12.5254939,49.641912],[12.525498,49.6418546],[12.5256015,49.6418306],[12.5256615,49.6417626],[12.5257291,49.6417764],[12.525752,49.641786],[12.5258963,49.641729],[12.5261158,49.6415912],[12.5262899,49.6414469],[12.5262796,49.6413742],[12.5263214,49.6413693],[12.5263333,49.641389],[12.5264091,49.6414355],[12.526438,49.6414825],[12.526466,49.6415177],[12.5265408,49.6414941],[12.5265512,49.6413915],[12.5266002,49.641308],[12.5265433,49.6412693],[12.5265314,49.6412535],[12.5265383,49.6412303],[12.5266618,49.6411792],[12.5267942,49.6411838],[12.5268209,49.641159],[12.5267979,49.6411313],[12.5266809,49.6410593],[12.5266702,49.6410377],[12.5267464,49.64101],[12.5268386,49.6410575],[12.5269317,49.6410467],[12.5269621,49.6410623],[12.5269981,49.6411231],[12.5270409,49.6411477],[12.5270992,49.6411284],[12.5270969,49.6410861],[12.5270661,49.6409324],[12.5270926,49.6409246],[12.5273681,49.6410193],[12.5273971,49.640989],[12.5272107,49.6408528],[12.5272877,49.6408281],[12.5274273,49.6408348],[12.5275209,49.6408428],[12.527535,49.6408387],[12.5275873,49.6408164],[12.5274178,49.6406612],[12.5274468,49.6405775],[12.5276295,49.6405896],[12.5277195,49.6406057],[12.527814,49.6406258],[12.5278505,49.6406074],[12.5277496,49.6405423],[12.5277565,49.6405116],[12.5278235,49.6404936],[12.5280188,49.640594],[12.528068,49.6405615],[12.5280372,49.6405099],[12.5278987,49.6404634],[12.5278961,49.6404435],[12.5279493,49.6404268],[12.5279866,49.6404243],[12.5281044,49.6404612],[12.5281909,49.6404541],[12.5281906,49.6403401],[12.5280737,49.6403142],[12.528155,49.6402491],[12.5281487,49.6401745],[12.5281892,49.640136],[12.5282199,49.6401295],[12.5284035,49.6401804],[12.5284817,49.6401406],[12.5284478,49.640101],[12.5283728,49.6400586],[12.5283883,49.6400197],[12.5284147,49.6400128],[12.5285498,49.6399886],[12.5285679,49.6399596],[12.5285495,49.6399213],[12.5284058,49.6398934],[12.5283958,49.6398597],[12.5284199,49.6398452],[12.5285874,49.6398221],[12.5285954,49.6398093],[12.5285184,49.6397358],[12.5284888,49.639698],[12.5285101,49.6396532],[12.5286644,49.6395635],[12.5286652,49.6395004],[12.5286236,49.6394459],[12.5286592,49.6393495],[12.5287014,49.6393106],[12.5287583,49.6392757],[12.5287736,49.6392411],[12.528592,49.6391705],[12.5285848,49.6391644],[12.5285592,49.6391324],[12.5285104,49.6390124],[12.5285153,49.6388706],[12.5285391,49.6388446],[12.5286443,49.6388827],[12.5286948,49.6388317],[12.5287023,49.6388196],[12.5284874,49.6386756],[12.5284009,49.6387147],[12.5283185,49.6386714],[12.5281941,49.6386916],[12.5281846,49.6386247],[12.528211,49.6386005],[12.5282504,49.6385884],[12.5282693,49.638561],[12.528259,49.6385339],[12.5282294,49.6385212],[12.5282179,49.6385047],[12.5282469,49.6384907],[12.5283191,49.6385186],[12.5283653,49.6385082],[12.5283756,49.6385019],[12.528348,49.6384441],[12.5284699,49.6381229],[12.5284058,49.6380864],[12.5282702,49.6380226],[12.5282242,49.6379803],[12.5281372,49.6377383],[12.5281119,49.6377143],[12.5280358,49.6377429],[12.5280079,49.6377355],[12.5279993,49.6377106],[12.5280424,49.637667],[12.5280458,49.6376434],[12.5279993,49.6376328],[12.5279056,49.637657],[12.5278737,49.637652],[12.5278439,49.6376384],[12.5278243,49.6375967],[12.527851,49.637568],[12.5279137,49.6375208],[12.5278898,49.6375038],[12.5278456,49.6375025],[12.5277111,49.6375723],[12.5276485,49.6375874],[12.5276089,49.6375904],[12.5275781,49.6375872],[12.5275344,49.6375448],[12.5274881,49.6374272],[12.5275011,49.6373487],[12.5274867,49.6373353],[12.5274207,49.6373239],[12.5272661,49.6373673],[12.5272483,49.6373706],[12.5272038,49.6373533],[12.5272127,49.6372793],[12.5271618,49.6372573],[12.5270075,49.6372776],[12.5268742,49.6371991],[12.5268826,49.6371727],[12.5270768,49.6371353],[12.5270975,49.6371224],[12.5270863,49.6370934],[12.5267099,49.6369935],[12.5267142,49.636968],[12.5268329,49.6368856],[12.5268423,49.6368599],[12.5266467,49.6367996],[12.5266478,49.636781],[12.5267998,49.6367663],[12.5268435,49.6367536],[12.5268521,49.6367376],[12.526828,49.6367053],[12.526701,49.6365961],[12.5266269,49.6365817],[12.5266122,49.6365834],[12.5265082,49.6365907],[12.5264496,49.6366415],[12.5263482,49.6366065],[12.5262258,49.6366031],[12.5261505,49.6365799],[12.5261491,49.6365685],[12.5261614,49.6364727],[12.5262284,49.6364159],[12.526229,49.6364031],[12.5260411,49.6362556],[12.5260069,49.6362319],[12.5259072,49.6362059],[12.5258908,49.6361763],[12.5260787,49.6360353],[12.5260709,49.6359997],[12.5259787,49.6359712],[12.5258454,49.6359229],[12.525877,49.6358484],[12.5258586,49.6358222],[12.5257992,49.6358105],[12.525673,49.6358518],[12.5255386,49.6358607],[12.5254185,49.6357923],[12.5253984,49.6357526],[12.5254395,49.635692],[12.5254285,49.6356248],[12.5253921,49.6356105],[12.5252797,49.6356326],[12.525257,49.6356348],[12.5251849,49.6356339],[12.5252131,49.63556],[12.5251987,49.6355083],[12.5250663,49.6354415],[12.5249505,49.6354774],[12.5248744,49.6354622],[12.5249261,49.6353356],[12.5248936,49.6353051],[12.5248189,49.6353023],[12.5245181,49.6351953],[12.5244922,49.6351739],[12.5244058,49.6350506],[12.5243,49.635015],[12.5242199,49.6350078],[12.5240308,49.6349445],[12.5240053,49.6349257],[12.5240768,49.6347789],[12.5241716,49.6347065],[12.5241199,49.6346797],[12.5239992,49.6347058],[12.5238987,49.6346751],[12.5239082,49.6346548],[12.5239797,49.6345729],[12.523936,49.6345339],[12.5236878,49.6345086],[12.5236628,49.6344961],[12.5236507,49.6343815],[12.5236226,49.634372],[12.523545,49.6343738],[12.5234439,49.6343856],[12.5233919,49.6343748],[12.5232934,49.6343697],[12.5230609,49.6344317],[12.5230256,49.6344068],[12.5230061,49.6342161],[12.5230721,49.6341442],[12.5230526,49.6341228],[12.5228515,49.6340108],[12.5228561,49.6339636],[12.5229805,49.6339403],[12.5229555,49.633886],[12.5228822,49.6338638],[12.522769,49.6338932],[12.5225967,49.6337976],[12.5225929,49.6337864],[12.5225998,49.6337754],[12.5226308,49.6337479],[12.5228139,49.6336524],[12.5228026,49.6336336],[12.5226018,49.6335473],[12.5225944,49.6335322],[12.5226435,49.6333927],[12.5226136,49.633268],[12.5225027,49.6331688],[12.5225024,49.6331532],[12.5225998,49.6331229],[12.5225257,49.632902],[12.5226794,49.6328549],[12.5227035,49.6328298],[12.5226946,49.6328281],[12.5226564,49.6327849],[12.5226073,49.6326128],[12.5227584,49.6325791],[12.5227498,49.6325321],[12.5226079,49.6324454],[12.522611,49.6324286],[12.522863,49.6322271],[12.5229615,49.6322083],[12.5229813,49.6321452],[12.5229492,49.6321366],[12.5229078,49.6321486],[12.5226294,49.6320524],[12.5226214,49.6320205],[12.5225435,49.6319757],[12.5225403,49.6319563],[12.5226202,49.6319396],[12.5226242,49.6318973],[12.5224582,49.6318512],[12.522447,49.6318361],[12.5224656,49.6317289],[12.5225139,49.6317038],[12.5225854,49.631696],[12.5225803,49.631674],[12.5225395,49.6316519],[12.5222473,49.6316113],[12.522247,49.6315899],[12.5222688,49.631559],[12.5223283,49.6315209],[12.5223849,49.6314593],[12.5226102,49.6313988],[12.5226139,49.631364],[12.522497,49.6313417],[12.5223726,49.6312911],[12.5224536,49.6311992],[12.5226633,49.6313034],[12.5226805,49.6312911],[12.5226504,49.6311923],[12.5226794,49.6311815],[12.5228035,49.6311897],[12.5228325,49.6311753],[12.5228409,49.6310968],[12.5229021,49.6310989],[12.5231055,49.6311739],[12.5231715,49.6311197],[12.5230753,49.6309439],[12.5229058,49.6309673],[12.52289,49.6309528],[12.5229176,49.6309091],[12.5228771,49.6307453],[12.5229308,49.6307362],[12.5231138,49.6307743],[12.5231431,49.6307622],[12.5230279,49.6306355],[12.5229305,49.6306171],[12.5229434,49.6305484],[12.5232816,49.6306039],[12.5232968,49.6305901],[12.5232281,49.6305335],[12.5232531,49.6304546],[12.5232876,49.6304491],[12.5234353,49.6304848],[12.5235272,49.6305198],[12.5235717,49.6304892],[12.523718,49.6305051],[12.5237441,49.6304299],[12.5238249,49.6302774],[12.523807,49.6301602],[12.5237217,49.6301115],[12.5236246,49.629942],[12.5235933,49.6299248],[12.5235258,49.6299122],[12.5235034,49.6299049],[12.5235143,49.6298592],[12.5235137,49.6298357],[12.523485,49.6298316],[12.5233244,49.6298521],[12.5232606,49.6298456],[12.5232775,49.6297931],[12.5233224,49.6297717],[12.5234436,49.6297388],[12.5234841,49.6297157],[12.5235648,49.6296868],[12.5235835,49.6296945],[12.5236097,49.6297415],[12.523647,49.6297695],[12.5236901,49.6297622],[12.5236778,49.6294974],[12.5235735,49.6294699],[12.5234775,49.629433],[12.5233502,49.6294591],[12.5233293,49.6294605],[12.523275,49.6294678],[12.523262,49.6294961],[12.5232684,49.6296081],[12.5232457,49.629621],[12.5230845,49.6296133],[12.523029,49.6295703],[12.522998,49.6295329],[12.5229785,49.629519],[12.5229515,49.6295253],[12.5228825,49.6295573],[12.52278,49.6295677],[12.5226734,49.6295542],[12.5225972,49.6295328],[12.522584,49.6295223],[12.5225719,49.6295007],[12.5225958,49.6294617],[12.5226481,49.6294429],[12.5227478,49.6293984],[12.5227702,49.6293485],[12.5228058,49.6293005],[12.5228299,49.6292886],[12.523048,49.629326],[12.5231402,49.6293615],[12.5232261,49.6293428],[12.5232411,49.6293277],[12.5232393,49.6293111],[12.5232652,49.629296],[12.5233497,49.6292933],[12.5233698,49.6292594],[12.5233333,49.6291818],[12.5233057,49.629067],[12.5232382,49.6290612],[12.5231075,49.6290952],[12.5230104,49.6291464],[12.5229098,49.6291574],[12.5228868,49.6291356],[12.5228765,49.6291172],[12.5229785,49.6289133],[12.5229742,49.6288779],[12.5230239,49.6288386],[12.5230523,49.6288321],[12.523096,49.6288386],[12.5233014,49.6288952],[12.5233864,49.6289017],[12.5235197,49.6288208],[12.5235852,49.6287125],[12.5234985,49.6286523],[12.5233063,49.6286256],[12.5232787,49.6286164],[12.5231549,49.628521],[12.5231612,49.6284988],[12.5233551,49.6283812],[12.5234502,49.6283349],[12.5234521,49.6282809],[12.5234942,49.628283],[12.5235874,49.6282889],[12.5238588,49.6277159],[12.5245287,49.6273524],[12.5266553,49.6268315],[12.527802,49.6265482],[12.5284183,49.6263958],[12.5291796,49.6270125],[12.5307192,49.6268501],[12.5321782,49.6266944],[12.5336414,49.626538],[12.5342853,49.626081],[12.5326452,49.6239059],[12.5299669,49.6226816],[12.5296503,49.6226375],[12.5269131,49.6222538],[12.5282478,49.6204403],[12.5281035,49.6180989],[12.5360538,49.6179038],[12.5457849,49.6212576],[12.5481221,49.6210139],[12.5560937,49.6206734],[12.5568068,49.6205098],[12.5568347,49.6205034],[12.5591476,49.6199732],[12.5607428,49.6196047],[12.5576199,49.6163581],[12.5569424,49.6142829],[12.5573103,49.6129253],[12.5572436,49.6128756],[12.5573187,49.6127999],[12.5573312,49.6127686],[12.5573072,49.612657],[12.5573499,49.6125739],[12.557483,49.6125057],[12.5575233,49.612431],[12.5576664,49.612376],[12.5577251,49.6123994],[12.5577481,49.6124186],[12.5578044,49.6124823],[12.5579659,49.6125287],[12.5581045,49.6126065],[12.5583689,49.6126453],[12.5584301,49.6126322],[12.5585405,49.6124832],[12.558527,49.6124463],[12.558511,49.6124292],[12.5584231,49.6124271],[12.5583856,49.6124357],[12.5583651,49.6124071],[12.558347,49.6122853],[12.5586778,49.6120742],[12.5588181,49.6120363],[12.5590554,49.611992],[12.5591801,49.6119389],[12.5592284,49.6118513],[12.5593365,49.6117126],[12.5594105,49.611512],[12.5597854,49.611216],[12.5597767,49.6111532],[12.559662,49.6110602],[12.5596467,49.6110656],[12.5595696,49.6109132],[12.5595609,49.61085],[12.5596631,49.6107777],[12.5599469,49.6106953],[12.5600942,49.6106057],[12.560221,49.6105965],[12.5603541,49.6105454],[12.5604604,49.6104587],[12.5605208,49.6104378],[12.5607175,49.6104391],[12.5608061,49.6104265],[12.5610854,49.610311],[12.5611903,49.6102295],[12.5614446,49.6101933],[12.5614756,49.6102021],[12.5615558,49.6101773],[12.5615756,49.6101008],[12.5616003,49.610087],[12.5616448,49.6100909],[12.5617191,49.6100695],[12.5616795,49.6100188],[12.562224,49.6091039],[12.5622777,49.6090134],[12.5623602,49.6082126],[12.5624384,49.6074552],[12.562888,49.6067763],[12.563325,49.6061142],[12.5633914,49.6058927],[12.56362,49.6044677],[12.5636797,49.6034776],[12.5637028,49.6027905],[12.5636924,49.6021639],[12.5636974,49.6016367],[12.5638463,49.601032],[12.5637957,49.6005662],[12.5636659,49.6002499],[12.5633344,49.5999148],[12.5632129,49.5998758],[12.5638605,49.5989803],[12.5639235,49.5987963],[12.5638471,49.5981037],[12.5639198,49.5974255],[12.56408,49.5967605],[12.564373,49.5965774],[12.5652005,49.5961579],[12.5652985,49.5959159],[12.5653204,49.5957979],[12.5656277,49.5951881],[12.5661635,49.5947631],[12.5675603,49.5938028],[12.5681707,49.593519],[12.5703095,49.5920466],[12.5711509,49.5914917],[12.5712133,49.5913715],[12.5719012,49.5908578],[12.5733629,49.5897882],[12.5746629,49.5887487],[12.5766794,49.5863417],[12.576542,49.5842863],[12.5763329,49.5836385],[12.575211,49.5823586],[12.5742339,49.5811278],[12.5740909,49.5798723],[12.5742582,49.5786353],[12.5740919,49.57822],[12.5736763,49.5771307],[12.5734987,49.5758154],[12.5737232,49.5752558],[12.5737958,49.5751794],[12.5738155,49.574957],[12.57368,49.5747594],[12.5732289,49.5735585],[12.5731627,49.5734365],[12.5727551,49.5730156],[12.5722789,49.571874],[12.5721986,49.5710419],[12.5721255,49.5709319],[12.5714448,49.5704262],[12.571114,49.5700811],[12.5709931,49.5698186],[12.5708099,49.5695698],[12.5707861,49.5693801],[12.5709834,49.5688485],[12.5718688,49.5678179],[12.5724231,49.5673039],[12.5725842,49.5670039],[12.5730737,49.5664068],[12.5733342,49.5659388],[12.5735166,49.5657053],[12.5736311,49.5653831],[12.5740817,49.5647875],[12.5742179,49.5644038],[12.574113,49.5627209],[12.5742807,49.5625002],[12.5744526,49.5618385],[12.5744211,49.5614557],[12.5740511,49.5598212],[12.5743492,49.559133],[12.5744782,49.5589664],[12.5746379,49.5588821],[12.5752053,49.5584163],[12.5755591,49.5581529],[12.5763524,49.5576497],[12.5766916,49.5575803],[12.5769421,49.5574844],[12.5774099,49.5573475],[12.5777305,49.5571583],[12.5785677,49.5568027],[12.5793077,49.5563088],[12.579798,49.5559623],[12.5800923,49.5558171],[12.5803911,49.5556697],[12.5804931,49.5549564],[12.5805838,49.5544819],[12.5807781,49.5542469],[12.5808566,49.5541523],[12.5811693,49.5538717],[12.5813824,49.5531394],[12.5816269,49.5523043],[12.5821407,49.5515781],[12.5825513,49.5509025],[12.583575,49.5495302],[12.5843562,49.5488259],[12.584735,49.5485941],[12.5857813,49.5480528],[12.5858625,49.5480106],[12.5863369,49.5476534],[12.5868193,49.5472958],[12.5874469,49.54683],[12.5878772,49.546511],[12.5878951,49.546508],[12.5878898,49.5464165],[12.5878705,49.5461123],[12.587879,49.546045],[12.5878708,49.5459485],[12.5878764,49.5458166],[12.5878928,49.5457771],[12.5878676,49.545775],[12.588263,49.545457],[12.5887518,49.5450655],[12.5897274,49.5443924],[12.5903645,49.543948],[12.5906454,49.5437591],[12.5915718,49.543275],[12.5919942,49.5430428],[12.5922007,49.5429553],[12.5924381,49.5428529],[12.5930103,49.5425986],[12.5939182,49.5421759],[12.5949151,49.5417212],[12.594682,49.5412707],[12.5938001,49.5405428],[12.5918139,49.5395289],[12.5913058,49.5394054],[12.5898977,49.5388325],[12.589369,49.538609],[12.5890652,49.5385429],[12.5885484,49.538488],[12.5885508,49.5384854],[12.5900582,49.5375132],[12.5917338,49.5366477],[12.5935411,49.5359225],[12.5953454,49.5351736],[12.5966459,49.5344783],[12.59926,49.5335498],[12.5997644,49.5332695],[12.6021361,49.5324264],[12.6046703,49.5317692],[12.6077411,49.5309779],[12.6101098,49.5306749],[12.6120435,49.5305293],[12.612983,49.529884],[12.6135446,49.5294991],[12.6141942,49.5288978],[12.6145289,49.5284274],[12.6155322,49.5286287],[12.6165714,49.5290027],[12.6176103,49.5291291],[12.6189083,49.5293273],[12.6189113,49.529314],[12.618971,49.5293085],[12.619026,49.5292761],[12.6190777,49.5292155],[12.6192119,49.5290974],[12.619552,49.5288614],[12.6196983,49.5287346],[12.6201624,49.5282578],[12.6203897,49.5279565],[12.6204307,49.5278799],[12.6206133,49.5272365],[12.6206569,49.5271195],[12.6206851,49.5268487],[12.6207709,49.5265817],[12.6213248,49.5265168],[12.6216331,49.5265665],[12.6218094,49.5265998],[12.6220081,49.5266722],[12.6221984,49.5267573],[12.6223904,49.5268059],[12.6236522,49.5270598],[12.6242893,49.5271775],[12.6246064,49.5272539],[12.6248095,49.5272889],[12.6252175,49.527401],[12.6254327,49.5274129],[12.6259162,49.5274359],[12.6260892,49.527415],[12.6262648,49.5273767],[12.6264272,49.5273729],[12.6266907,49.5273788],[12.6269385,49.5273486],[12.6270984,49.5273384],[12.6272894,49.5273479],[12.6274551,49.527326],[12.6279063,49.5272404],[12.6280881,49.527188],[12.6282458,49.5271361],[12.6285974,49.527007],[12.6291787,49.5283655],[12.6294837,49.5290199],[12.6300219,49.5300665],[12.6306028,49.5310662],[12.6313586,49.5315191],[12.6319282,49.5318606],[12.6321701,49.5320058],[12.6334031,49.5320136],[12.6342627,49.5320194],[12.6354925,49.5320404],[12.6361097,49.5319826],[12.6368374,49.5316708],[12.6376333,49.5313298],[12.6379405,49.5311981],[12.6383737,49.5308029],[12.6391063,49.5301344],[12.6395959,49.5290702],[12.6397062,49.5288312],[12.6400886,49.5284823],[12.6404333,49.5281682],[12.6407257,49.5279481],[12.6410157,49.5277754],[12.6412002,49.5273385],[12.641384,49.5269045],[12.6415636,49.5264809],[12.641865,49.5257424],[12.6422493,49.5249955],[12.6425437,49.5245166],[12.6430325,49.5241494],[12.6436148,49.5236742],[12.6441965,49.5229631],[12.6442009,49.5221558],[12.6442056,49.5214235],[12.6436737,49.520905],[12.6433273,49.5205651],[12.6429703,49.5200695],[12.642849,49.5194565],[12.6427571,49.5190913],[12.6427165,49.5189375],[12.6427092,49.5189098],[12.6426883,49.518832],[12.6426875,49.5188288],[12.6426891,49.5188281],[12.6426872,49.5188131],[12.642653,49.5187702],[12.6425444,49.5186661],[12.6425099,49.5186531],[12.6424689,49.5185875],[12.6424013,49.5185294],[12.6423807,49.5185023],[12.6423839,49.5184789],[12.6423428,49.5184467],[12.6423494,49.5183998],[12.6423049,49.5183377],[12.642302,49.5183131],[12.642257,49.5182768],[12.6422459,49.5182452],[12.6422493,49.5182187],[12.6422387,49.5182065],[12.6422616,49.5181741],[12.6422415,49.5181252],[12.6422108,49.5181098],[12.6421917,49.5180468],[12.6421635,49.5180266],[12.6421635,49.5179744],[12.64217,49.5179266],[12.642164,49.5178907],[12.6421387,49.5178648],[12.6421848,49.5178274],[12.6422039,49.5178067],[12.6421922,49.5177949],[12.6421885,49.5177729],[12.6422108,49.5177527],[12.6422065,49.5176456],[12.6422313,49.5176146],[12.6422185,49.5175624],[12.6422509,49.5175406],[12.6422788,49.5175114],[12.6422868,49.5174955],[12.6423125,49.5174838],[12.6423287,49.5174607],[12.6422706,49.5173623],[12.6422831,49.5173461],[12.6422863,49.517315],[12.6422663,49.5173011],[12.6422712,49.5172138],[12.6422501,49.5171946],[12.6422555,49.5171742],[12.6422404,49.5171384],[12.6422666,49.5171166],[12.6422535,49.5170816],[12.6422264,49.5170564],[12.6422316,49.5170228],[12.6422524,49.5170056],[12.6422364,49.5169767],[12.6422646,49.5169658],[12.6422794,49.5169222],[12.6422683,49.5168728],[12.6422706,49.5168467],[12.6422635,49.5168121],[12.6422447,49.5167898],[12.6422561,49.5167787],[12.6422327,49.5167408],[12.6422404,49.5167273],[12.6422401,49.5167115],[12.6422307,49.5166912],[12.6422498,49.5166677],[12.6422518,49.516637],[12.6422754,49.5166108],[12.642286,49.5165934],[12.6423013,49.516576],[12.6423258,49.5165368],[12.6423253,49.516509],[12.6423344,49.5164928],[12.6423352,49.5164796],[12.6423412,49.5164685],[12.6422825,49.5163714],[12.6422874,49.5163535],[12.642309,49.5163411],[12.6423147,49.5163213],[12.642315,49.5163075],[12.6422845,49.5162853],[12.6422771,49.5162575],[12.642276,49.5162407],[12.6422811,49.5162239],[12.6422543,49.5162102],[12.642233,49.5161915],[12.6422122,49.516164],[12.6422133,49.516139],[12.642225,49.5161314],[12.6422187,49.5161029],[12.6422475,49.5160315],[12.6422788,49.5160251],[12.6423173,49.5159864],[12.6423495,49.515908],[12.642327,49.5158623],[12.6423315,49.5158026],[12.6423831,49.5157515],[12.642405,49.5157114],[12.6424275,49.5156537],[12.6424124,49.5156182],[12.6424076,49.5155977],[12.6424096,49.515582],[12.6424056,49.5155453],[12.6424113,49.5155324],[12.6424005,49.5155045],[12.6423996,49.5154813],[12.6424019,49.5154314],[12.6423865,49.5153978],[12.6423899,49.5153733],[12.6423985,49.5153536],[12.6424045,49.5153288],[12.6424301,49.5152988],[12.6424347,49.5152875],[12.6424569,49.5152705],[12.6424569,49.5152454],[12.6424791,49.515233],[12.6424717,49.5152163],[12.6424862,49.5151988],[12.6424851,49.5151797],[12.6424774,49.5151542],[12.6424939,49.5151231],[12.6425352,49.5151087],[12.6425358,49.5150706],[12.6425534,49.515058],[12.6425506,49.5150379],[12.6425851,49.5150334],[12.6426124,49.5150077],[12.642664,49.5149829],[12.6426643,49.5149654],[12.6426984,49.5149606],[12.6427189,49.5149602],[12.6427557,49.514938],[12.6427614,49.5149169],[12.6427614,49.514898],[12.6427939,49.5148433],[12.6428021,49.5148048],[12.6428337,49.514753],[12.6429112,49.5146772],[12.6429451,49.5146597],[12.6429847,49.514624],[12.6430366,49.5145668],[12.6430411,49.5145441],[12.6430303,49.5145304],[12.6430961,49.5145015],[12.6431619,49.5144888],[12.6432186,49.5144729],[12.6432248,49.5144288],[12.6432226,49.5143978],[12.6432305,49.5143717],[12.6432137,49.5143212],[12.6431844,49.5143153],[12.6431964,49.514279],[12.6432217,49.5142526],[12.6432644,49.5141993],[12.6433049,49.5141712],[12.6433282,49.5141592],[12.6433208,49.5141372],[12.6433069,49.5141261],[12.6433169,49.5141159],[12.6433151,49.5140488],[12.6433613,49.5139907],[12.6433522,49.5139689],[12.6433995,49.5138625],[12.6433795,49.5138538],[12.6433593,49.5138224],[12.643347,49.5137958],[12.6433191,49.5137921],[12.6433134,49.5137577],[12.6433348,49.5137283],[12.6433582,49.5137207],[12.643396,49.5136741],[12.6434222,49.5136658],[12.643414,49.5136175],[12.6434348,49.5135949],[12.6434385,49.5135594],[12.6434553,49.5135032],[12.6434912,49.5134878],[12.6435433,49.5134938],[12.6435661,49.5134488],[12.6435946,49.5134342],[12.6436256,49.5134266],[12.6436219,49.5134015],[12.6436404,49.5133802],[12.6436413,49.513331],[12.6436365,49.5132881],[12.6436316,49.5132698],[12.6436174,49.5132374],[12.6435393,49.513193],[12.6435251,49.5131313],[12.6435624,49.5131246],[12.6435635,49.5130358],[12.6435849,49.5130286],[12.6435818,49.5129863],[12.6435655,49.5129508],[12.6435755,49.5129149],[12.6435576,49.5128958],[12.6435678,49.5128082],[12.6435493,49.512776],[12.6435949,49.5127615],[12.6436296,49.5127336],[12.6436356,49.5127013],[12.643631,49.5126883],[12.6436293,49.5126485],[12.6436051,49.5126215],[12.6436288,49.5125979],[12.6436453,49.512589],[12.6436407,49.5125459],[12.6436877,49.5124819],[12.6436863,49.5124508],[12.6436581,49.5124338],[12.6436145,49.5124351],[12.643616,49.5124205],[12.6435917,49.5124122],[12.6435658,49.5123798],[12.6435148,49.5123587],[12.6435145,49.5123142],[12.6435382,49.5123077],[12.6435493,49.512291],[12.6436162,49.5122411],[12.6436513,49.5122337],[12.6436615,49.5121997],[12.6436442,49.5121751],[12.6436618,49.5121538],[12.6436909,49.5120935],[12.6436553,49.5120053],[12.6436849,49.511959],[12.6437239,49.5119505],[12.6437595,49.5119145],[12.6437646,49.5118238],[12.6437968,49.5117994],[12.6438037,49.5117672],[12.6437686,49.5117432],[12.6437655,49.5116994],[12.6437396,49.5116677],[12.643725,49.5116598],[12.6437128,49.5116208],[12.6436778,49.5115995],[12.6436604,49.5115668],[12.6436376,49.5115411],[12.6436325,49.5115089],[12.6436063,49.5114809],[12.6436151,49.5114343],[12.6436273,49.5114231],[12.6436288,49.5114066],[12.6436664,49.5113909],[12.6437364,49.5113894],[12.6437983,49.5113119],[12.64378,49.5112657],[12.6438142,49.5112353],[12.6438661,49.5111612],[12.6438698,49.5111118],[12.6438988,49.5110306],[12.6438806,49.5110121],[12.6438433,49.5110051],[12.6438057,49.5109451],[12.6438262,49.5109013],[12.6438134,49.5108652],[12.6438242,49.5108428],[12.6438524,49.5108214],[12.6438541,49.510794],[12.6437849,49.51078],[12.6437495,49.5107537],[12.6437419,49.5107363],[12.6437162,49.5107186],[12.6437874,49.5106612],[12.6438074,49.5106364],[12.6438435,49.5106128],[12.6438598,49.5105772],[12.6439022,49.510561],[12.6438455,49.5104727],[12.6438515,49.5104337],[12.6438789,49.5104193],[12.6438527,49.5103847],[12.6438008,49.5103866],[12.6438159,49.5103331],[12.6437849,49.5103153],[12.6437034,49.510288],[12.6437014,49.5102573],[12.6436305,49.5102403],[12.6436031,49.5102255],[12.6435906,49.5101518],[12.643555,49.5101548],[12.6434895,49.5101383],[12.6434522,49.510084],[12.6434707,49.510069],[12.6434997,49.5100331],[12.643514,49.5099857],[12.643418,49.5099247],[12.6434459,49.5098947],[12.6434168,49.509872],[12.6433775,49.5098655],[12.6433792,49.5097945],[12.6434274,49.5097893],[12.6434519,49.5097545],[12.6433875,49.5097253],[12.643355,49.5097464],[12.6433234,49.5097353],[12.643302,49.5097163],[12.6432793,49.5097018],[12.6433018,49.5096556],[12.6433268,49.5096132],[12.6433453,49.509518],[12.6434148,49.5094298],[12.6434242,49.5093402],[12.6433433,49.5093129],[12.6432898,49.509279],[12.6433077,49.5091482],[12.643269,49.5091244],[12.6432676,49.5090968],[12.6432881,49.5090609],[12.6433308,49.5090221],[12.6433169,49.5089847],[12.6431747,49.5088736],[12.6431089,49.5088482],[12.6430861,49.5088083],[12.6430126,49.5087744],[12.6429653,49.5087768],[12.6429314,49.508738],[12.642899,49.508716],[12.6428867,49.5086794],[12.6428431,49.5086431],[12.6427358,49.508622],[12.642758,49.5085872],[12.6427497,49.5085645],[12.6427896,49.5085162],[12.6427981,49.508418],[12.6427491,49.5083888],[12.6427204,49.508384],[12.6426816,49.508354],[12.6426987,49.5083066],[12.6426796,49.5082857],[12.6426267,49.5082674],[12.6426212,49.5082138],[12.6425839,49.5081947],[12.6425891,49.508125],[12.642568,49.5081121],[12.6425674,49.5080812],[12.6426799,49.5079828],[12.6425993,49.5079652],[12.6425865,49.507943],[12.6426204,49.5078809],[12.6426953,49.5078381],[12.6426665,49.5078045],[12.6426363,49.5078048],[12.6426306,49.5077196],[12.6426127,49.5076389],[12.6426201,49.507611],[12.6426013,49.507593],[12.6426378,49.5075599],[12.6425668,49.507434],[12.6425671,49.5073866],[12.6425452,49.5073596],[12.6425475,49.5073369],[12.6426178,49.5072858],[12.6426919,49.507273],[12.6426474,49.5072362],[12.6426295,49.5072277],[12.6425808,49.5071437],[12.6425939,49.5071258],[12.6426774,49.5070581],[12.6426577,49.507027],[12.642621,49.5070385],[12.6425919,49.5070522],[12.6425158,49.5070267],[12.642458,49.5069614],[12.6424643,49.5069362],[12.6425039,49.5069138],[12.6425147,49.5068767],[12.6424566,49.5068245],[12.6424318,49.5067425],[12.6423691,49.5066891],[12.6423221,49.506678],[12.6422395,49.5067368],[12.6421843,49.506724],[12.6421205,49.5064815],[12.6420057,49.5064749],[12.6419766,49.5064601],[12.6419356,49.5063121],[12.6418681,49.5062592],[12.6418137,49.5062076],[12.6417373,49.5061937],[12.6416371,49.5062328],[12.6415399,49.5062248],[12.6415026,49.5062072],[12.6415072,49.5061375],[12.6414738,49.5061073],[12.6413992,49.5060733],[12.6413835,49.5060217],[12.6414303,49.5059879],[12.6414026,49.5058576],[12.6414052,49.5058264],[12.6413667,49.5057829],[12.6412918,49.5058066],[12.6411252,49.505653],[12.641126,49.5056279],[12.6412183,49.5055877],[12.6412203,49.5055711],[12.6411554,49.5055657],[12.6411209,49.5055447],[12.6411015,49.5054131],[12.6410864,49.5053874],[12.6410805,49.5052679],[12.6410557,49.5052685],[12.6410454,49.5052467],[12.640983,49.5052135],[12.6409739,49.5051636],[12.6409195,49.5051438],[12.6408551,49.5050922],[12.6407492,49.5050195],[12.640813,49.5049758],[12.6408415,49.5050027],[12.6408762,49.505011],[12.6409167,49.5049918],[12.6409642,49.5049374],[12.6409614,49.5048963],[12.6409457,49.5048266],[12.640995,49.5048136],[12.6410232,49.5047861],[12.6410144,49.5047448],[12.6409605,49.5046277],[12.6409058,49.5045833],[12.6408446,49.5045659],[12.6408073,49.5045968],[12.6407483,49.504575],[12.6407364,49.5045517],[12.6407549,49.5045195],[12.6407264,49.5044585],[12.6406187,49.5043891],[12.640654,49.5043689],[12.6406811,49.5043319],[12.6406538,49.5043127],[12.6406549,49.5042465],[12.6406683,49.5041849],[12.6406082,49.5041525],[12.6405731,49.5041168],[12.6405959,49.5040626],[12.6404806,49.503937],[12.640582,49.5038919],[12.6405196,49.5038567],[12.6404165,49.50385],[12.6404199,49.5038036],[12.6404663,49.5037167],[12.6404099,49.5037113],[12.6403817,49.5036741],[12.6404421,49.5036331],[12.6404928,49.5036368],[12.6405629,49.5036203],[12.6406287,49.5036166],[12.6406632,49.5035746],[12.6406438,49.503494],[12.6406669,49.5034594],[12.6406817,49.5034449],[12.640721,49.5033245],[12.6407082,49.5032868],[12.6407261,49.5032557],[12.6407557,49.5032228],[12.6407606,49.5031619],[12.6407891,49.5031366],[12.6408757,49.5031214],[12.6408543,49.5030252],[12.640889,49.5029693],[12.6408905,49.5029555],[12.6408831,49.5029396],[12.6407882,49.5029179],[12.6407774,49.5029042],[12.6408973,49.5028874],[12.6409509,49.5028456],[12.6409711,49.5028445],[12.6410147,49.5028574],[12.6410745,49.5027843],[12.6411542,49.5027579],[12.6411474,49.5027466],[12.6411369,49.5027424],[12.6411198,49.5027388],[12.6410699,49.5027422],[12.6410585,49.5027255],[12.6410785,49.502703],[12.6410676,49.5026861],[12.640958,49.5026229],[12.6409332,49.5025585],[12.6408586,49.5025707],[12.6408574,49.5025981],[12.6408275,49.5026118],[12.6407965,49.5025947],[12.6407825,49.5023911],[12.6408665,49.5023907],[12.6409093,49.5023722],[12.6409127,49.5023596],[12.6408902,49.5023509],[12.6408002,49.5023311],[12.6407272,49.502279],[12.6407674,49.5022166],[12.6408645,49.5021981],[12.640864,49.5021743],[12.6407492,49.5021391],[12.6407392,49.5020644],[12.6408124,49.5020511],[12.6408623,49.5020307],[12.640858,49.501998],[12.6408381,49.50199],[12.640678,49.5019748],[12.6406783,49.5020353],[12.6406714,49.5020509],[12.640652,49.5020597],[12.6406062,49.5020398],[12.6405771,49.501992],[12.6405592,49.5019852],[12.6404865,49.5019869],[12.6404996,49.5019151],[12.6404279,49.5018988],[12.6403943,49.5019195],[12.6403871,49.5019567],[12.6403344,49.5019787],[12.6402883,49.501956],[12.6403051,49.501881],[12.6402327,49.5017053],[12.6402515,49.5016829],[12.6403336,49.5016759],[12.6403447,49.5016526],[12.6402478,49.5015814],[12.6401709,49.5015592],[12.6401228,49.5015347],[12.6401498,49.501499],[12.6401988,49.5014918],[12.6402903,49.5013668],[12.6402789,49.5013588],[12.6400986,49.5013392],[12.639947,49.5014365],[12.6399268,49.5014406],[12.6399137,49.5014321],[12.6399003,49.5013877],[12.6399072,49.501332],[12.6398616,49.5012894],[12.6398092,49.5012626],[12.6398143,49.5012532],[12.639877,49.5012515],[12.6400197,49.5011912],[12.6401065,49.5011929],[12.6401191,49.5011881],[12.6400339,49.5010915],[12.6400296,49.5010817],[12.6400242,49.5010748],[12.64002,49.5010438],[12.6400239,49.5010008],[12.6399718,49.500972],[12.6399385,49.5010012],[12.6399146,49.5010049],[12.6398995,49.5010025],[12.6398297,49.50097],[12.6398131,49.5009659],[12.639706,49.5009709],[12.6397055,49.5009485],[12.6397419,49.5009128],[12.6397522,49.5008541],[12.6397189,49.5008209],[12.6395955,49.5008159],[12.6395559,49.5008048],[12.6394887,49.500792],[12.6394417,49.5007409],[12.6394306,49.500684],[12.6394431,49.500641],[12.6394859,49.5006268],[12.6395309,49.5006416],[12.6395417,49.5006688],[12.6395773,49.500663],[12.6395628,49.500599],[12.6395935,49.500572],[12.6395833,49.5005363],[12.6395975,49.5005258],[12.6396146,49.5005197],[12.6396858,49.5005535],[12.6397417,49.5005252],[12.6398086,49.5005258],[12.6398761,49.5004982],[12.6399741,49.5005058],[12.6399422,49.5003837],[12.6398995,49.5003051],[12.6399151,49.5002672],[12.639867,49.5002202],[12.6398829,49.5001948],[12.6399436,49.5001767],[12.6400313,49.5002289],[12.6400889,49.5002315],[12.6401083,49.5002031],[12.6400365,49.5001497],[12.6400345,49.5001308],[12.6400553,49.5001073],[12.6400225,49.5000761],[12.6400009,49.500087],[12.6399843,49.5000901],[12.6399482,49.5000918],[12.6399251,49.5000526],[12.6399442,49.5000187],[12.6399163,49.4999812],[12.6399083,49.4999545],[12.6399123,49.4999349],[12.639916,49.4999253],[12.6399214,49.4999231],[12.6399413,49.4999266],[12.6399824,49.4999482],[12.640039,49.4999558],[12.6400473,49.4999319],[12.6400385,49.4998713],[12.6401624,49.4998748],[12.6401718,49.4998685],[12.6401601,49.4998517],[12.6400798,49.4998196],[12.6400655,49.4998021],[12.6400727,49.4997765],[12.6401145,49.4997677],[12.6401393,49.4997588],[12.6401239,49.4997464],[12.6400752,49.499746],[12.6399749,49.4997001],[12.6399348,49.4996602],[12.6398838,49.4996778],[12.6397696,49.4996611],[12.6396955,49.4996191],[12.6396944,49.4995723],[12.6397086,49.4995638],[12.6397975,49.4995418],[12.6397627,49.4994903],[12.6397519,49.4994811],[12.6397585,49.4994667],[12.6398354,49.4994459],[12.6399072,49.499504],[12.6399405,49.4995729],[12.6399721,49.4995736],[12.6400217,49.499559],[12.640104,49.4995597],[12.6401874,49.4995282],[12.6402217,49.4994877],[12.6402056,49.49941],[12.6401264,49.4994102],[12.6401041,49.4994237],[12.6400382,49.4994359],[12.6399646,49.4994189],[12.6399616,49.4994015],[12.6399703,49.4993985],[12.639978,49.4993897],[12.6399815,49.4993812],[12.6399712,49.499358],[12.6399243,49.4993476],[12.6398802,49.4993234],[12.6398688,49.4993126],[12.6398802,49.4993044],[12.6399513,49.4992827],[12.6399213,49.4992335],[12.6399276,49.4992229],[12.639939,49.4991939],[12.6398764,49.4991797],[12.6397955,49.4990658],[12.6398573,49.4990388],[12.6399121,49.499048],[12.6399292,49.4990414],[12.6399145,49.4989509],[12.6399605,49.4989047],[12.6399829,49.4988525],[12.6399494,49.498792],[12.639969,49.4987694],[12.6400254,49.4987595],[12.640097,49.4987112],[12.6402048,49.498621],[12.6402666,49.4986194],[12.6402424,49.4985688],[12.6402664,49.4985462],[12.6402626,49.4985011],[12.6402481,49.4984661],[12.6402653,49.4984452],[12.640259,49.4984144],[12.6403203,49.4983125],[12.6403598,49.4983046],[12.6403611,49.4982747],[12.6403897,49.4982475],[12.6404232,49.4982605],[12.6404826,49.4982284],[12.6405597,49.4982018],[12.6405673,49.4981909],[12.6405436,49.4981505],[12.6405507,49.4981311],[12.6406776,49.498064],[12.6406956,49.4980329],[12.6407362,49.4980218],[12.640749,49.4980104],[12.6407446,49.4979928],[12.6408745,49.4978955],[12.6408685,49.4978799],[12.6409104,49.4978367],[12.6409205,49.4978106],[12.6409769,49.4977463],[12.6410421,49.4977266],[12.6410518,49.4977038],[12.641528,49.4972074],[12.6415998,49.4971254],[12.6417572,49.4969904],[12.6417806,49.496929],[12.6418207,49.4968977],[12.6418819,49.4968699],[12.6418832,49.4968445],[12.6420683,49.4966568],[12.6421008,49.4966195],[12.6421145,49.496591],[12.6421409,49.4965678],[12.6421422,49.4965296],[12.642615,49.4957504],[12.6426638,49.4956914],[12.6427838,49.4954765],[12.6428135,49.4954429],[12.6428653,49.4953452],[12.6428724,49.4953242],[12.6429078,49.4952651],[12.6429449,49.4952165],[12.6429759,49.4951935],[12.6430866,49.4951668],[12.6430956,49.4951688],[12.6431627,49.4951533],[12.6431831,49.4951551],[12.6432196,49.4951468],[12.6432804,49.4950435],[12.6433038,49.4949773],[12.6433422,49.4949539],[12.6434314,49.4948443],[12.6434735,49.4948282],[12.6435243,49.4947996],[12.6435698,49.4947349],[12.6436419,49.4946767],[12.6436419,49.494657],[12.6436994,49.4946368],[12.6437218,49.494581],[12.6437201,49.4945625],[12.6437519,49.4945402],[12.6437759,49.4945],[12.643812,49.4944642],[12.6438348,49.4944451],[12.6438615,49.4943945],[12.6438515,49.494372],[12.643812,49.4943474],[12.6437693,49.4943075],[12.6437158,49.4943162],[12.6436998,49.4943112],[12.6437155,49.4942793],[12.6437489,49.4942422],[12.6437622,49.4942029],[12.6437626,49.4941781],[12.6437576,49.4941504],[12.6437793,49.4941269],[12.6438187,49.4941267],[12.6438732,49.494087],[12.6439016,49.4940787],[12.6439477,49.494011],[12.6439079,49.4939808],[12.6438822,49.4939806],[12.6438231,49.4939691],[12.6438027,49.4939444],[12.643798,49.4939177],[12.6437449,49.4938793],[12.6437399,49.4938684],[12.6437328,49.4938057],[12.6437836,49.4937857],[12.6438424,49.4937959],[12.6438749,49.493772],[12.6438555,49.4937351],[12.6438632,49.4937243],[12.6438638,49.4936924],[12.6438328,49.4936557],[12.643816,49.4936023],[12.6436847,49.4934514],[12.6436436,49.4934274],[12.6435785,49.4934135],[12.6435019,49.4933844],[12.6434264,49.4933918],[12.643396,49.493377],[12.6434775,49.4933358],[12.6436005,49.4933017],[12.6436376,49.4932789],[12.643683,49.4932572],[12.6437021,49.4932266],[12.6437516,49.4932296],[12.6437796,49.4932107],[12.6437903,49.4931919],[12.6437616,49.4931489],[12.6437512,49.4931181],[12.6437198,49.4931013],[12.6436707,49.4930822],[12.6436747,49.4930529],[12.6436536,49.4930184],[12.6436085,49.4929943],[12.6434932,49.492965],[12.6434902,49.4929585],[12.6435307,49.4928891],[12.6435484,49.4928899],[12.6436092,49.4929325],[12.6436326,49.4929385],[12.6437739,49.4928927],[12.6438114,49.4927768],[12.6438578,49.4927855],[12.6439153,49.4928033],[12.6439584,49.4927944],[12.6439952,49.492754],[12.6440232,49.4927395],[12.6440302,49.4927204],[12.6439935,49.492698],[12.64394,49.4926837],[12.6437653,49.4926891],[12.6437272,49.4926876],[12.6436914,49.4926622],[12.6436697,49.4926316],[12.6436463,49.4925726],[12.6436399,49.4925413],[12.643649,49.4925172],[12.643675,49.4925112],[12.6437445,49.492524],[12.6437198,49.492557],[12.6437191,49.4925806],[12.6437352,49.4925949],[12.6437836,49.4926188],[12.6438328,49.4926097],[12.6438782,49.492585],[12.6439156,49.4925439],[12.6439273,49.4924801],[12.6438979,49.4924608],[12.6438685,49.4924558],[12.6438077,49.4924562],[12.6437813,49.4924371],[12.6438037,49.4924104],[12.6437987,49.4923952],[12.6438067,49.4923768],[12.6438528,49.4923557],[12.6438535,49.4923405],[12.6438211,49.4923256],[12.6437967,49.4922997],[12.6437546,49.4922724],[12.6437375,49.4922405],[12.6437178,49.4922277],[12.6436827,49.4922129],[12.6436399,49.4922012],[12.6436252,49.4921869],[12.643677,49.4921187],[12.6436526,49.4920961],[12.6436757,49.4920879],[12.643713,49.4920393],[12.6437415,49.4920184],[12.6437582,49.4919959],[12.6437542,49.4919789],[12.6437238,49.4919804],[12.6437078,49.4919705],[12.6436774,49.4919626],[12.6436176,49.4919611],[12.6435845,49.4919746],[12.6435186,49.4919728],[12.6435046,49.4919425],[12.6435534,49.4918433],[12.6435547,49.4918235],[12.6435096,49.4917994],[12.6434585,49.4918003],[12.6434672,49.4917419],[12.6434558,49.4917154],[12.6434237,49.4917056],[12.643393,49.4916683],[12.643393,49.4916412],[12.6434027,49.4916238],[12.6434254,49.4916104],[12.6435434,49.4915962],[12.6436095,49.4915704],[12.6436313,49.4915554],[12.6436563,49.4915313],[12.6436827,49.491524],[12.6437252,49.49153],[12.6437886,49.491514],[12.6438054,49.491486],[12.6438087,49.4913968],[12.6438424,49.4913755],[12.6438658,49.4913668],[12.6438615,49.4913529],[12.6438451,49.4913314],[12.6438023,49.4913316],[12.6437813,49.491324],[12.6437044,49.4912589],[12.6436867,49.491234],[12.6436583,49.4912194],[12.6436724,49.4911775],[12.6436904,49.4911569],[12.6437268,49.4911391],[12.6437806,49.4911016],[12.6438207,49.4911276],[12.6438424,49.4911272],[12.6438428,49.4911007],[12.643801,49.4910492],[12.6438144,49.4910293],[12.6438618,49.4910202],[12.6439036,49.491],[12.6439273,49.4909746],[12.643932,49.4909479],[12.6438825,49.4909171],[12.6438277,49.4909236],[12.6438107,49.4909121],[12.6438358,49.4908563],[12.6438354,49.4908372],[12.6438261,49.4908294],[12.64378,49.4908126],[12.6437659,49.4907938],[12.6437338,49.4907829],[12.6437004,49.4907879],[12.6436891,49.4907773],[12.6436927,49.4907525],[12.6436981,49.4907397],[12.6437058,49.4906922],[12.6437195,49.4906713],[12.6437379,49.4906644],[12.64378,49.4906637],[12.6438354,49.4906783],[12.6438348,49.4906364],[12.6438157,49.4905897],[12.643814,49.4905815],[12.643788,49.4905574],[12.6437352,49.49054],[12.6437091,49.4905285],[12.6437094,49.4905163],[12.6437255,49.4904964],[12.6437479,49.4904823],[12.6437238,49.4904597],[12.6436703,49.4904406],[12.643665,49.490398],[12.6436951,49.4903865],[12.6437659,49.4903842],[12.6438164,49.4903748],[12.6438722,49.490349],[12.6438759,49.4903297],[12.6439013,49.4903117],[12.643923,49.490321],[12.6439607,49.4903212],[12.6439781,49.4903117],[12.6439711,49.4902854],[12.6439801,49.4902578],[12.6439958,49.4902335],[12.6439831,49.4901938],[12.643948,49.4901834],[12.6439347,49.4901714],[12.6439487,49.4901608],[12.6439851,49.4901519],[12.6440015,49.4901328],[12.644049,49.4901211],[12.6440777,49.4901061],[12.644063,49.4900809],[12.6440135,49.4900724],[12.6439734,49.490069],[12.6439531,49.4900353],[12.6439978,49.4899539],[12.6440393,49.4899287],[12.644058,49.4898858],[12.6440506,49.4898714],[12.6440079,49.4898506],[12.6439811,49.4898476],[12.6439658,49.4898599],[12.6439414,49.4898638],[12.6439086,49.4898552],[12.6438989,49.4898415],[12.6439009,49.4898146],[12.6438976,49.4897889],[12.643912,49.4897523],[12.6439233,49.489708],[12.6439768,49.489698],[12.6440202,49.4897012],[12.6440359,49.4896858],[12.6440186,49.4896678],[12.6439878,49.4896487],[12.6439845,49.4896198],[12.6440062,49.4895975],[12.6440105,49.4895806],[12.6439868,49.4895621],[12.6439805,49.4895491],[12.6438929,49.489495],[12.6438605,49.4894805],[12.6438194,49.4894805],[12.6438057,49.4894905],[12.6437288,49.4894963],[12.643652,49.4895],[12.6436022,49.4895007],[12.6435694,49.4894887],[12.6435584,49.4894766],[12.6435457,49.4894779],[12.64354,49.4894887],[12.643517,49.4894976],[12.6434942,49.4894948],[12.6434518,49.4894544],[12.6434478,49.4894303],[12.6434411,49.4894151],[12.6433653,49.4893637],[12.6433616,49.48935],[12.6433756,49.4893244],[12.6433963,49.4893177],[12.6434251,49.4893261],[12.6434505,49.4893298],[12.6435016,49.4893101],[12.6434912,49.4892354],[12.6434929,49.4891957],[12.6435206,49.4891844],[12.6435791,49.4891829],[12.6435968,49.4891987],[12.6436369,49.4891926],[12.6436299,49.4891716],[12.6436353,49.4891479],[12.6436503,49.4891369],[12.6436854,49.489131],[12.6437021,49.4891251],[12.6437211,49.4891217],[12.6437275,49.4890798],[12.6437445,49.4890529],[12.6437452,49.4890272],[12.6437385,49.4890086],[12.6437135,49.4889864],[12.6438107,49.4888703],[12.6438134,49.4888225],[12.6438003,49.4888056],[12.6437328,49.4887967],[12.6437004,49.4887759],[12.6436941,49.4887294],[12.643649,49.4887129],[12.6436176,49.4886558],[12.6436473,49.4886187],[12.6436797,49.4886304],[12.6436794,49.4886599],[12.6437128,49.4886684],[12.6437893,49.4886348],[12.6438013,49.4886005],[12.6437679,49.4885874],[12.6438137,49.4885286],[12.6438398,49.488511],[12.6438672,49.4884743],[12.6439233,49.4884759],[12.6439404,49.4884546],[12.6439257,49.4884266],[12.643928,49.4884177],[12.6440323,49.4884003],[12.644076,49.488348],[12.6440717,49.488279],[12.644068,49.4882605],[12.6439861,49.4882425],[12.6439691,49.4881687],[12.6438959,49.4881331],[12.6439641,49.4880599],[12.6439587,49.4880478],[12.6438942,49.488033],[12.6438989,49.4880174],[12.6440216,49.4879792],[12.6440513,49.4879067],[12.6439734,49.4878798],[12.6439764,49.4878626],[12.6440189,49.487819],[12.6440526,49.4878034],[12.6440633,49.4877936],[12.6440988,49.48774],[12.6441485,49.4877434],[12.6442027,49.4877886],[12.6442652,49.4877899],[12.6443136,49.4876716],[12.6442605,49.487659],[12.644216,49.4876803],[12.6441696,49.4876733],[12.6441389,49.4875939],[12.6441379,49.4875828],[12.6441656,49.4875763],[12.64421,49.4875444],[12.6442084,49.4874882],[12.6441917,49.4874113],[12.6442451,49.4873931],[12.6443384,49.4874],[12.6443918,49.4873961],[12.6444092,49.487389],[12.6444149,49.4873718],[12.6444132,49.4873625],[12.6443988,49.4873501],[12.6443617,49.4873262],[12.6442698,49.4873015],[12.6442465,49.4872904],[12.6441653,49.4871981],[12.6440877,49.4870816],[12.6440042,49.487051],[12.643917,49.487006],[12.6438739,49.4869405],[12.6439103,49.486815],[12.6439247,49.4868098],[12.6440386,49.4868178],[12.644057,49.4867713],[12.6438505,49.4867735],[12.6437743,49.4867876],[12.6437054,49.4867642],[12.643657,49.4867668],[12.6436436,49.486759],[12.643657,49.4867195],[12.6435624,49.4866569],[12.6435474,49.4866543],[12.643535,49.4866658],[12.6435477,49.4867427],[12.6434966,49.4867405],[12.6434749,49.4867327],[12.6434358,49.4866758],[12.6434408,49.4866057],[12.6434578,49.486584],[12.6435313,49.4865936],[12.6436122,49.4865851],[12.6436633,49.4865662],[12.6436693,49.4865365],[12.6436683,49.4865143],[12.6437058,49.4865078],[12.6437516,49.4864937],[12.6437643,49.4864755],[12.6437252,49.4864058],[12.6437268,49.4863578],[12.6436951,49.4863155],[12.643652,49.4863005],[12.643549,49.4863135],[12.643417,49.4864097],[12.6433275,49.486393],[12.6432917,49.4863795],[12.6433004,49.4863057],[12.6432977,49.4862347],[12.6433064,49.4862236],[12.6433235,49.4862258],[12.6434612,49.4861839],[12.6434745,49.4862028],[12.6434692,49.4862117],[12.6434765,49.4862208],[12.6435627,49.4862239],[12.6436189,49.4862089],[12.6436262,49.4862028],[12.6436286,49.4861147],[12.6436433,49.4861108],[12.6436677,49.4861108],[12.6436864,49.4861136],[12.6437111,49.4861027],[12.6437048,49.4860828],[12.6436306,49.4860554],[12.6436115,49.4860424],[12.6436002,49.4860326],[12.6435975,49.4860055],[12.6435985,49.4859885],[12.6437078,49.4859523],[12.6437559,49.4859154],[12.643797,49.485898],[12.6438294,49.4858935],[12.6438411,49.4858021],[12.6438672,49.4857382],[12.6438989,49.4857035],[12.6439898,49.4856612],[12.6440296,49.4856473],[12.6440329,49.4856369],[12.6440359,49.4856221],[12.6439607,49.48557],[12.6439664,49.4855387],[12.6439878,49.4855274],[12.6440463,49.4855105],[12.6440483,49.485502],[12.6440313,49.4854714],[12.6440363,49.4854606],[12.6438752,49.4854378],[12.6438612,49.4854295],[12.6438742,49.4853918],[12.6439013,49.485349],[12.6439106,49.485347],[12.6439053,49.4852767],[12.6438391,49.4852602],[12.6438134,49.4852246],[12.64381,49.4852014],[12.6438431,49.485174],[12.6438555,49.4851688],[12.6439206,49.485179],[12.6439561,49.485182],[12.6439671,49.4851777],[12.6439858,49.4851089],[12.6439059,49.4850303],[12.6439036,49.4850066],[12.6439086,49.485001],[12.6440219,49.4849899],[12.6441345,49.4849485],[12.6441552,49.4849487],[12.644191,49.4849619],[12.644197,49.4849613],[12.644208,49.484955],[12.6442144,49.4849161],[12.6441759,49.4848608],[12.6441399,49.4848512],[12.6441061,49.484869],[12.6440881,49.4848644],[12.6440302,49.4848278],[12.6439384,49.4848032],[12.6439333,49.4847922],[12.643941,49.4847809],[12.6439417,49.4847722],[12.6439243,49.4847594],[12.6439156,49.4847563],[12.6438588,49.4847824],[12.6438434,49.4847846],[12.6438277,49.4847839],[12.6437923,49.4847772],[12.6437536,49.4847142],[12.6437733,49.484668],[12.6438277,49.4846354],[12.6438682,49.4846237],[12.643924,49.4846408],[12.643944,49.4846328],[12.6439587,49.4845961],[12.6439781,49.484574],[12.6439671,49.484567],[12.6438575,49.484526],[12.6438037,49.4844758],[12.6438074,49.4844604],[12.6438371,49.4844524],[12.6438952,49.4844639],[12.6439454,49.484452],[12.6439547,49.4844426],[12.6439049,49.484369],[12.643912,49.4843562],[12.64393,49.4843465],[12.6439624,49.4843404],[12.6440129,49.4843217],[12.6440169,49.4843141],[12.6440055,49.4842831],[12.6439885,49.4842034],[12.6439788,49.4841964],[12.6439073,49.4842125],[12.6438872,49.4842123],[12.6438511,49.4841899],[12.643812,49.4841891],[12.643785,49.4841702],[12.6437666,49.4841726],[12.6437482,49.4841988],[12.6437084,49.4841912],[12.6436971,49.4841832],[12.6436353,49.4841954],[12.6436105,49.4841765],[12.6435875,49.4841498],[12.6435704,49.4841437],[12.6435597,49.4841001],[12.6435992,49.4840812],[12.6436286,49.4840818],[12.6436724,49.4840929],[12.643679,49.4840877],[12.6436847,49.4840247],[12.6436393,49.4840158],[12.6436339,49.4840011],[12.643681,49.4839648],[12.6437262,49.4839683],[12.6437402,49.4839635],[12.6437402,49.4839361],[12.6437619,49.483916],[12.6437696,49.4838982],[12.6437101,49.4838827],[12.6436553,49.4839144],[12.6436246,49.483896],[12.6436102,49.4838979],[12.6435173,49.4838971],[12.6434775,49.4839214],[12.6434448,49.4839196],[12.6434,49.4839029],[12.6433445,49.4839281],[12.643262,49.4839027],[12.6432553,49.4838914],[12.6432797,49.4838628],[12.6433318,49.4838165],[12.6433048,49.4837625],[12.6431427,49.4837164],[12.6431216,49.4836965],[12.6431928,49.4836392],[12.6431811,49.4836339],[12.6430949,49.4836281],[12.64301,49.4836667],[12.6429863,49.4836884],[12.6429375,49.4836678],[12.6429328,49.4836524],[12.6429422,49.4836385],[12.6430381,49.4835983],[12.6430545,49.4835853],[12.6430264,49.4835321],[12.6428967,49.4834663],[12.6427684,49.4835551],[12.6426916,49.4835838],[12.6426348,49.4835521],[12.6425853,49.4834377],[12.6425529,49.4834294],[12.6424242,49.4834453],[12.6423858,49.4834696],[12.6422117,49.4835167],[12.6421572,49.4834902],[12.6421241,49.4833576],[12.6419741,49.4833259],[12.6419153,49.4833841],[12.6419317,49.4834557],[12.6418976,49.4834917],[12.6418097,49.4834865],[12.6417559,49.4835039],[12.6416463,49.4835256],[12.6416657,49.4835675],[12.641522,49.4835938],[12.6414805,49.4836222],[12.6413272,49.483614],[12.6412804,49.4835488],[12.6412282,49.483553],[12.6411901,49.4835749],[12.6409876,49.4836233],[12.6408967,49.4833739],[12.6408573,49.4833283],[12.6406805,49.4833192],[12.6406048,49.4833489],[12.6403315,49.4833861],[12.6403052,49.4833052],[12.6402771,49.483295],[12.6402664,49.4832968],[12.6401843,49.4832978],[12.640113,49.4832944],[12.6399885,49.4832598],[12.6399144,49.4832334],[12.6398177,49.4832054],[12.6397899,49.4832109],[12.6396944,49.4832149],[12.639635,49.4831718],[12.639586,49.4831547],[12.6394707,49.4830811],[12.6394104,49.4830455],[12.6393323,49.4830435],[12.639299,49.4830578],[12.6392782,49.483073],[12.6392561,49.4831233],[12.6392436,49.4831356],[12.6391925,49.4831521],[12.6391089,49.4831415],[12.6390906,49.483137],[12.6390489,49.4831036],[12.6390281,49.483097],[12.6390104,49.483096],[12.6389189,49.4831119],[12.6388491,49.4831099],[12.6387851,49.4831362],[12.638674,49.4831417],[12.638607,49.4831515],[12.6384987,49.4831231],[12.6384644,49.4830743],[12.6384335,49.4829646],[12.6384968,49.4829199],[12.6384307,49.4828594],[12.6384118,49.4828531],[12.63832,49.482862],[12.6382119,49.4828407],[12.6381871,49.4828302],[12.6381783,49.4828196],[12.6382144,49.4827522],[12.6382441,49.4827171],[12.6382639,49.4826996],[12.6382655,49.482659],[12.6383301,49.4825997],[12.638383,49.4824703],[12.6383962,49.4823991],[12.6384075,49.4823625],[12.6384638,49.4823228],[12.6385039,49.4823005],[12.6385553,49.4822578],[12.6385685,49.4822452],[12.6385608,49.4822262],[12.63851,49.4821743],[12.6384769,49.4821076],[12.6384656,49.4820892],[12.6383842,49.4820134],[12.6383717,49.4819677],[12.6383441,49.4819068],[12.6383411,49.4818965],[12.6383282,49.4818862],[12.638297,49.4818512],[12.6382851,49.4818078],[12.6382618,49.4817939],[12.638234,49.481785],[12.6381232,49.481717],[12.6381112,49.4817118],[12.6380537,49.4816766],[12.6376246,49.4815811],[12.6375907,49.4815535],[12.637583,49.4815257],[12.6375907,49.4814617],[12.6375913,49.4814418],[12.6375787,49.4814324],[12.6375885,49.4814159],[12.6375956,49.4813422],[12.6375726,49.4813107],[12.6375264,49.4812628],[12.6375191,49.4812054],[12.6374652,49.4811767],[12.6373651,49.4811411],[12.6373394,49.4811364],[12.6372461,49.4811378],[12.6371613,49.4811226],[12.6371374,49.4811143],[12.6371105,49.4811149],[12.6370621,49.4811049],[12.636989,49.4810932],[12.6369477,49.4810805],[12.6369327,49.4810624],[12.636933,49.4810278],[12.6369489,49.4809745],[12.6369538,49.4809296],[12.6369342,49.4809004],[12.636899,49.480854],[12.6368718,49.4808411],[12.6366722,49.4807647],[12.636623,49.4807492],[12.6366068,49.4807353],[12.6365829,49.480724],[12.6364219,49.4806818],[12.636395,49.4806729],[12.6363329,49.480661],[12.6363139,49.4806562],[12.636211,49.4805697],[12.6362882,49.4804894],[12.6363056,49.4804814],[12.6363191,49.4804816],[12.6363665,49.4804981],[12.6364335,49.4804872],[12.6364589,49.4804663],[12.6364629,49.4804552],[12.6364488,49.4804309],[12.6362732,49.4803913],[12.6362441,49.4803961],[12.6361654,49.4804299],[12.6361483,49.4804341],[12.6361122,49.4804182],[12.6360972,49.4803909],[12.6361247,49.4803217],[12.6361924,49.4802442],[12.636193,49.4802309],[12.6361615,49.4801977],[12.635894,49.4801271],[12.6358212,49.4801173],[12.6357973,49.4801118],[12.6357189,49.4800774],[12.635703,49.4800537],[12.6356657,49.4800141],[12.6356623,49.4800064],[12.6356678,49.4799722],[12.6357364,49.4799563],[12.6357707,49.479966],[12.6357881,49.4799658],[12.6358389,49.4799147],[12.6358661,49.4798994],[12.6358949,49.4798722],[12.6359047,49.4798515],[12.6359356,49.4798016],[12.6359121,49.4797606],[12.6358903,49.4797469],[12.6357777,49.4797348],[12.6357437,49.479737],[12.635714,49.4797505],[12.6356984,49.47976],[12.6356461,49.4797529],[12.6356134,49.4797354],[12.6356097,49.4797278],[12.6356075,49.4797012],[12.6356427,49.4796473],[12.6356525,49.4795878],[12.6356587,49.4795723],[12.6356948,49.4795501],[12.6357241,49.4795035],[12.6357217,49.4794789],[12.6357303,49.4794524],[12.6357015,49.479395],[12.635692,49.4793898],[12.6355996,49.4793808],[12.6355723,49.4793735],[12.6355525,49.479359],[12.6355402,49.479246],[12.6355595,49.4792071],[12.6356164,49.4791645],[12.6356253,49.4791399],[12.6355901,49.4790009],[12.6355534,49.4789728],[12.6354695,49.4789207],[12.6354616,49.4789094],[12.6354022,49.4787664],[12.6354022,49.4786849],[12.635378,49.4784946],[12.6353309,49.4784334],[12.6352951,49.4783771],[12.6351987,49.4782701],[12.6351497,49.4782001],[12.6351393,49.4781751],[12.6351467,49.4781297],[12.6351564,49.4781027],[12.6351411,49.4780878],[12.6351485,49.4780751],[12.63521,49.4780277],[12.635187,49.477983],[12.6351616,49.4779553],[12.6351007,49.4779062],[12.6350343,49.4778364],[12.6350181,49.4778024],[12.6349688,49.4777159],[12.6349691,49.4776909],[12.6350016,49.4776503],[12.6349835,49.4776201],[12.634956,49.477598],[12.6348174,49.4775579],[12.6347436,49.477527],[12.6347203,49.477504],[12.6347075,49.4774881],[12.6346787,49.4773393],[12.6346601,49.4772894],[12.6346255,49.4772558],[12.6345884,49.4771868],[12.6345894,49.4771582],[12.6345156,49.4770697],[12.634425,49.4770168],[12.6344057,49.4769874],[12.6343617,49.4769319],[12.6343568,49.4769201],[12.6343421,49.4769064],[12.6343268,49.4768871],[12.6343182,49.4768782],[12.634279,49.4768529],[12.6342637,49.4768331],[12.6342536,49.4768116],[12.634272,49.4767917],[12.6342818,49.4767322],[12.6342466,49.4767263],[12.6342212,49.4767155],[12.6341398,49.4766865],[12.6341126,49.4766736],[12.6340507,49.476633],[12.6339966,49.4766121],[12.6338763,49.4765734],[12.6337955,49.4765304],[12.6337891,49.4765248],[12.6337658,49.4765083],[12.6337689,49.476461],[12.6337646,49.4764548],[12.6337465,49.4764049],[12.633721,49.4763653],[12.633697,49.4762876],[12.6336983,49.4762783],[12.6336924,49.4762553],[12.6336489,49.4761719],[12.6336486,49.4761499],[12.6336728,49.4761241],[12.6337095,49.4761228],[12.6337511,49.476146],[12.6337664,49.4761686],[12.6337976,49.4761434],[12.6338166,49.476121],[12.6338408,49.4761152],[12.6338717,49.4761299],[12.6338925,49.4761518],[12.6339161,49.4761466],[12.6339109,49.4761253],[12.6339188,49.4761063],[12.6339354,49.4760931],[12.6340311,49.4761212],[12.6340856,49.4761472],[12.6341046,49.476149],[12.6341438,49.476142],[12.6341762,49.4761464],[12.6342096,49.4761335],[12.6342389,49.4761349],[12.6342842,49.4761438],[12.6342965,49.4761651],[12.634339,49.4761667],[12.6344596,49.4761309],[12.6345055,49.4761331],[12.6345474,49.476124],[12.6345872,49.4760892],[12.6346001,49.4760701],[12.6346353,49.4760734],[12.6347644,49.4761335],[12.6347442,49.4761776],[12.6347736,49.4762228],[12.6348299,49.476246],[12.6348703,49.4762689],[12.6348838,49.4763035],[12.6349349,49.4762733],[12.6349682,49.4762695],[12.6349893,49.4762564],[12.6350175,49.4762614],[12.6350603,49.4762548],[12.6351115,49.4762375],[12.6351424,49.4762317],[12.6351788,49.4762045],[12.6351773,49.4761468],[12.6351999,49.4761303],[12.6353049,49.4761436],[12.6353581,49.4761649],[12.6353854,49.4761898],[12.6354129,49.4761995],[12.6354493,49.4762001],[12.6355892,49.4761663],[12.6356819,49.4761259],[12.6357058,49.4761245],[12.6357759,49.476155],[12.6358554,49.4761647],[12.6359243,49.4761552],[12.6360103,49.4761611],[12.6360798,49.4761745],[12.6361055,49.4761707],[12.6361352,49.476153],[12.6361639,49.4761416],[12.636261,49.4761207],[12.6362958,49.4761331],[12.6364045,49.476108],[12.63644,49.4760949],[12.636469,49.4760959],[12.6364797,49.4761019],[12.6365281,49.4760903],[12.6365361,49.4760764],[12.6365719,49.4760671],[12.6366068,49.4760319],[12.6366413,49.4759901],[12.6367197,49.4759535],[12.636753,49.4759511],[12.6369226,49.4760249],[12.6369281,49.4760359],[12.6369725,49.4760184],[12.6370184,49.4759935],[12.6370756,49.4759758],[12.6370958,49.4759639],[12.6371056,49.4759088],[12.6371766,49.4758718],[12.6371748,49.4758551],[12.6372136,49.475777],[12.6372295,49.4757372],[12.6372653,49.4757052],[12.6373051,49.4756942],[12.6373379,49.4756918],[12.6373743,49.4756622],[12.6373449,49.4756145],[12.6373336,49.4755831],[12.6373351,49.4755572],[12.6374,49.4755314],[12.6374098,49.4755216],[12.6374012,49.4755041],[12.6374089,49.4754661],[12.6374597,49.4754208],[12.6375515,49.4753928],[12.6375842,49.4753526],[12.6376669,49.4753516],[12.6377036,49.475347],[12.6377256,49.4753365],[12.6377293,49.4753218],[12.6376519,49.4752486],[12.637636,49.4752146],[12.6376519,49.4751925],[12.63768,49.475175],[12.6376846,49.4751317],[12.6377792,49.4751436],[12.6378621,49.4751649],[12.6380185,49.4751384],[12.6380479,49.4751305],[12.63811,49.4751241],[12.6381262,49.4751156],[12.6381293,49.4750935],[12.6381486,49.4750629],[12.6382162,49.4750098],[12.6382679,49.4749642],[12.6383438,49.4749266],[12.6383392,49.4749054],[12.6383457,49.4748867],[12.6383708,49.4748606],[12.6383815,49.4748215],[12.6384004,49.4748049],[12.6384476,49.4747936],[12.6384944,49.4747745],[12.6385051,49.4747616],[12.6385626,49.4747489],[12.6385391,49.4746661],[12.6385599,49.4746453],[12.6385584,49.4746121],[12.6385449,49.4745522],[12.6385173,49.4745275],[12.6385112,49.474512],[12.6385235,49.4744969],[12.6385229,49.4744874],[12.6385434,49.4744721],[12.6385678,49.474444],[12.6385939,49.4744388],[12.6386291,49.4744257],[12.6386636,49.4743927],[12.6386841,49.4743901],[12.6387426,49.4743358],[12.6387818,49.4743154],[12.6388044,49.4742917],[12.6388072,49.47428],[12.6388078,49.474264],[12.6388142,49.4742553],[12.6388604,49.4742654],[12.6389017,49.4742686],[12.6389082,49.4742601],[12.6389051,49.4741889],[12.6388662,49.4741521],[12.6388362,49.4741475],[12.6388124,49.4741519],[12.638801,49.4741386],[12.6388013,49.4740716],[12.6388268,49.4740535],[12.6388999,49.4740373],[12.6389137,49.4740224],[12.6389103,49.4739874],[12.63894,49.4739666],[12.6389544,49.4739491],[12.638944,49.4739296],[12.6389486,49.4739147],[12.6389801,49.4739049],[12.6390018,49.4738936],[12.6390122,49.4738526],[12.6390043,49.4738385],[12.6390049,49.4738242],[12.639026,49.4738128],[12.6390428,49.4737963],[12.6390336,49.4737729],[12.6390336,49.4737538],[12.6390495,49.473743],[12.6390866,49.4737353],[12.6391429,49.4736641],[12.6391585,49.4736301],[12.6391842,49.4735879],[12.639183,49.4735623],[12.6391717,49.4735531],[12.639129,49.473541],[12.6390713,49.4735379],[12.6390481,49.4735399],[12.6390184,49.4734624],[12.6391262,49.4734637],[12.6391664,49.4734256],[12.6391998,49.473388],[12.6392063,49.473328],[12.6391214,49.4733231],[12.6390792,49.4733089],[12.639082,49.4732945],[12.6391561,49.4732599],[12.6391582,49.4732468],[12.6391007,49.4732131],[12.6390647,49.4732077],[12.6390587,49.4731847],[12.6390632,49.4731315],[12.6391152,49.4731161],[12.6391377,49.4731348],[12.6391822,49.4731225],[12.6391985,49.4731089],[12.6392394,49.4731058],[12.639271,49.4731201],[12.6393419,49.473128],[12.6393999,49.473156],[12.6394214,49.473155],[12.6394426,49.4731417],[12.6394491,49.4730947],[12.6394395,49.4730848],[12.639448,49.4730688],[12.6395001,49.4730635],[12.6395174,49.4730429],[12.6394605,49.4729761],[12.6394666,49.4729409],[12.6394882,49.4729317],[12.6395361,49.4729552],[12.6395702,49.4729501],[12.6395772,49.4729258],[12.6395625,49.472916],[12.6395893,49.4728822],[12.6395953,49.4727997],[12.6395765,49.4727718],[12.6396018,49.4727405],[12.6395941,49.4727289],[12.6394876,49.4727509],[12.6394882,49.4727978],[12.6394714,49.4727998],[12.6394289,49.4727568],[12.6393971,49.4727597],[12.6393913,49.4727313],[12.639396,49.4727133],[12.6393694,49.4726945],[12.6393441,49.472647],[12.6393733,49.4726346],[12.639377,49.4725745],[12.6393924,49.4725667],[12.6394456,49.4725819],[12.6395131,49.4725871],[12.6395322,49.4725689],[12.6395322,49.4725512],[12.6395506,49.4725304],[12.6395536,49.472484],[12.6395389,49.4724717],[12.6395042,49.472467],[12.6394813,49.4724497],[12.6394523,49.4724047],[12.6395016,49.4723532],[12.6395192,49.4723487],[12.6395142,49.4723338],[12.6394854,49.4723297],[12.6394432,49.4723327],[12.6393924,49.4722937],[12.6393543,49.4722456],[12.6392926,49.4721961],[12.6392971,49.4721735],[12.6392954,49.4721538],[12.6393127,49.4721357],[12.6393482,49.4721348],[12.6393839,49.4721291],[12.6393839,49.4721084],[12.639417,49.4720583],[12.6394519,49.4720381],[12.6395084,49.4720357],[12.6395462,49.4720268],[12.6395973,49.4720319],[12.6396579,49.4720181],[12.6396843,49.4720329],[12.6397033,49.4720067],[12.6396834,49.4719572],[12.6397018,49.4719426],[12.6397585,49.471946],[12.6397708,49.4719387],[12.6398464,49.4719399],[12.6399494,49.471865],[12.639968,49.471793],[12.6400913,49.4716616],[12.6401381,49.4716622],[12.640179,49.4716043],[12.6402156,49.4715608],[12.6402236,49.4715207],[12.640282,49.471523],[12.6403415,49.4714927],[12.6403757,49.4714849],[12.6404534,49.4714456],[12.6404817,49.4714438],[12.6405421,49.4713951],[12.6405263,49.4713251],[12.6405103,49.4712866],[12.6404742,49.4712516],[12.6404856,49.4711838],[12.6404683,49.4711474],[12.640483,49.4711313],[12.6405432,49.4710924],[12.6405806,49.4710868],[12.6406564,49.4710218],[12.6407258,49.4709938],[12.6407589,49.4709231],[12.6407862,49.4708407],[12.6408628,49.4707906],[12.6408929,49.4707614],[12.6409273,49.4707372],[12.6409444,49.4707037],[12.6409645,49.4706937],[12.6410502,49.4706721],[12.6410745,49.4706268],[12.6410985,49.4705908],[12.6411348,49.470586],[12.6411264,49.4705147],[12.6411314,49.4704935],[12.6411448,49.4704809],[12.6411541,49.4704525],[12.6411831,49.4704299],[12.641243,49.4704037],[12.6412443,49.4703618],[12.641288,49.4703064],[12.6413246,49.470242],[12.6413173,49.4702173],[12.6412755,49.4701778],[12.64129,49.4701709],[12.6413121,49.4701554],[12.6413614,49.4701418],[12.6413973,49.4701188],[12.6414512,49.4700987],[12.6415687,49.4700238],[12.6416555,49.4699229],[12.6417011,49.4698969],[12.6418332,49.4698682],[12.641913,49.4698681],[12.6419269,49.4698799],[12.6419708,49.469891],[12.642037,49.469876],[12.6420649,49.4698459],[12.6421759,49.4697497],[12.6422192,49.4696706],[12.6423077,49.4696272],[12.6423804,49.4695637],[12.6424289,49.4695497],[12.6424395,49.4695423],[12.6424924,49.4695378],[12.6425184,49.4695453],[12.642571,49.4695453],[12.642605,49.4695285],[12.6426812,49.4695068],[12.64276,49.4694609],[12.6428116,49.469419],[12.6428944,49.4693794],[12.6429628,49.4693714],[12.6429843,49.469373],[12.643071,49.4693957],[12.6431573,49.4693901],[12.6432322,49.4693687],[12.6432548,49.4693352],[12.643296,49.4693146],[12.6433139,49.4692889],[12.6434215,49.4692627],[12.6434511,49.4692688],[12.6435177,49.4692558],[12.6435849,49.4692349],[12.6436347,49.4692326],[12.643663,49.469222],[12.6436536,49.4691948],[12.6437185,49.4691771],[12.6438048,49.4691689],[12.6438536,49.4691391],[12.6439228,49.4691064],[12.6439674,49.4691133],[12.6440789,49.4691475],[12.6441598,49.4691598],[12.6443211,49.4691997],[12.6443634,49.4691878],[12.6444539,49.4692226],[12.6444653,49.469223],[12.6445174,49.4692461],[12.6445428,49.4692437],[12.6445648,49.4692188],[12.6445973,49.4692119],[12.644639,49.4692275],[12.6447394,49.4692011],[12.6447632,49.4692166],[12.6447573,49.469229],[12.6447886,49.4692326],[12.6448418,49.4692186],[12.6448794,49.4692208],[12.644895,49.4692265],[12.6448911,49.4692498],[12.6449725,49.4692558],[12.6450832,49.469221],[12.6451343,49.469212],[12.6452318,49.4692019],[12.6452624,49.4692038],[12.6453355,49.4691576],[12.6454315,49.4691249],[12.6455165,49.4690718],[12.6455515,49.4690893],[12.6455959,49.4690878],[12.6458197,49.4690071],[12.6458492,49.4690108],[12.6459682,49.468979],[12.6460424,49.4689908],[12.6460717,49.4690079],[12.6461036,49.4690127],[12.6461433,49.4690039],[12.6461845,49.4689557],[12.6463186,49.4689164],[12.6463468,49.4689008],[12.6463748,49.4689062],[12.6465009,49.4688859],[12.6465115,49.4688615],[12.6465626,49.4688408],[12.6465846,49.4687786],[12.6466686,49.46871],[12.6467483,49.4687019],[12.6467859,49.4686788],[12.6468499,49.468677],[12.6469189,49.468632],[12.6469707,49.4686328],[12.6469788,49.4685856],[12.6470275,49.468558],[12.6470542,49.4685278],[12.647095,49.468539],[12.6471523,49.4685191],[12.6471909,49.4685198],[12.647283,49.4684909],[12.6472962,49.4684818],[12.6473211,49.4684828],[12.6474199,49.4684756],[12.6475026,49.46848],[12.6475822,49.468447],[12.6477365,49.4684191],[12.6477884,49.468417],[12.6478576,49.4683902],[12.6480575,49.4683878],[12.6482279,49.4683806],[12.6483072,49.4683918],[12.648341,49.4683817],[12.6484146,49.4683691],[12.6484784,49.4683089],[12.6485484,49.4682843],[12.6485383,49.4682781],[12.6486193,49.4681128],[12.6489342,49.4675055],[12.6493002,49.4668121],[12.6495775,49.4662895],[12.6496551,49.4661511],[12.6499028,49.4657094],[12.650263,49.4650636],[12.6505559,49.4645562],[12.6509624,49.4638512],[12.6513851,49.4631212],[12.6517488,49.4624955],[12.651875,49.4622578],[12.6519733,49.4620711],[12.6520548,49.4619162],[12.6522997,49.4614873],[12.652326,49.4614408],[12.6527028,49.4607815],[12.6529981,49.4602646],[12.653332,49.4595965],[12.6536658,49.4589282],[12.6536748,49.45891],[12.6539582,49.4583315],[12.65427,49.4576949],[12.6549161,49.4564326],[12.6552945,49.455761],[12.6556185,49.4551681],[12.6561049,49.4540428],[12.6563138,49.4535942],[12.656714,49.4527323],[12.6568208,49.4525292],[12.6568338,49.4525045],[12.6573991,49.4514312],[12.6577334,49.4507985],[12.6578065,49.4506602],[12.6579773,49.4503354],[12.6569856,49.4498298],[12.6568679,49.4497714],[12.656102,49.4493829],[12.6559287,49.4492953],[12.6558094,49.4492343],[12.655585,49.4488899],[12.6555827,49.4488391],[12.6556269,49.4487655],[12.6556182,49.4487146],[12.6555213,49.4486867],[12.655502,49.4486546],[12.6555096,49.4486224],[12.6556152,49.4485673],[12.6556508,49.448576],[12.6557378,49.4484728],[12.6557391,49.4484268],[12.6556823,49.4484205],[12.6556455,49.4484028],[12.6556225,49.448381],[12.6556345,49.4483551],[12.6556328,49.4482526],[12.6556567,49.4482368],[12.655758,49.4480792],[12.6557783,49.4480347],[12.6558656,49.4479737],[12.6558995,49.4478722],[12.6559031,49.4478437],[12.6558892,49.4478063],[12.6558988,49.4477971],[12.6558882,49.4477705],[12.6558719,49.447758],[12.6558882,49.447677],[12.6559118,49.4476462],[12.6560482,49.4476129],[12.6560386,49.447497],[12.6559908,49.4474806],[12.6559951,49.4474618],[12.6560257,49.4474452],[12.6560745,49.4473901],[12.6560512,49.4473372],[12.6560024,49.4473245],[12.6559852,49.4473122],[12.6559778,49.4472582],[12.6559639,49.447231],[12.6559583,49.4472072],[12.6559759,49.4471215],[12.6559964,49.4470939],[12.6560041,49.447005],[12.6560834,49.4468098],[12.6561934,49.4466664],[12.6562661,49.4465898],[12.6562621,49.4465807],[12.6562332,49.4465702],[12.6562123,49.4465464],[12.6561877,49.4465352],[12.6561485,49.4464929],[12.6561628,49.4464654],[12.6561528,49.4464449],[12.65611,49.4464262],[12.6561103,49.4464132],[12.6561269,49.4463836],[12.6560824,49.446343],[12.6560944,49.4463178],[12.6561243,49.4463128],[12.6561761,49.446323],[12.6562103,49.4463191],[12.6562634,49.4463428],[12.6562734,49.4463046],[12.6563454,49.4462856],[12.6563418,49.4462416],[12.6563212,49.4462029],[12.6564049,49.4460913],[12.6564308,49.446071],[12.6564119,49.4460464],[12.6564298,49.4459903],[12.6564563,49.4459816],[12.6565005,49.4460084],[12.6565503,49.4460069],[12.6565815,49.4459836],[12.6566825,49.445968],[12.6567187,49.4459542],[12.6567652,49.4458413],[12.6569621,49.4458268],[12.6570986,49.445805],[12.6571271,49.4457871],[12.6571331,49.4457454],[12.6571145,49.4457057],[12.6571035,49.4457107],[12.6570697,49.445688],[12.6570561,49.4456621],[12.657068,49.4456405],[12.6570444,49.4454853],[12.6570517,49.4454274],[12.6570162,49.4453961],[12.6570155,49.4453544],[12.6570185,49.445232],[12.6571175,49.4450539],[12.6571348,49.4449902],[12.657153,49.4449686],[12.6572254,49.4447659],[12.6572897,49.4446554],[12.6573345,49.444622],[12.6574089,49.444595],[12.6574577,49.4445505],[12.6573316,49.4444802],[12.6572968,49.4444422],[12.656922,49.4442002],[12.6569206,49.444175],[12.6569743,49.44409],[12.6570405,49.4440432],[12.6570625,49.4439849],[12.6570887,49.4439551],[12.6570945,49.4439084],[12.6570756,49.4438889],[12.6570767,49.443848],[12.6571207,49.4438279],[12.6571488,49.4438046],[12.6572164,49.443797],[12.6572756,49.4437695],[12.6573101,49.4437619],[12.6572904,49.4437286],[12.6573163,49.4436721],[12.6573196,49.4435753],[12.6574187,49.4435667],[12.6574462,49.4435402],[12.6574952,49.4435193],[12.6574061,49.4434373],[12.6574239,49.443393],[12.6574128,49.4433344],[12.657452,49.4432687],[12.6575094,49.4432323],[12.6575708,49.4432418],[12.6576218,49.4432088],[12.657604,49.4431388],[12.6575789,49.4430979],[12.6574991,49.4430446],[12.657545,49.4429841],[12.6575912,49.4429709],[12.6576296,49.4429867],[12.6576916,49.4429673],[12.6577603,49.4430189],[12.6577834,49.4430037],[12.6577726,49.4429313],[12.6576919,49.44291],[12.6576746,49.4428865],[12.6576677,49.4428436],[12.6576833,49.4428211],[12.6577111,49.4428101],[12.6577361,49.4427423],[12.6577689,49.442705],[12.6577612,49.4426771],[12.6578068,49.442618],[12.657836,49.4425965],[12.657826,49.4425655],[12.6578379,49.4425456],[12.6578827,49.4425246],[12.6579184,49.4424474],[12.657942,49.4424271],[12.6579796,49.4423795],[12.6579679,49.4423307],[12.6579022,49.4422938],[12.6579353,49.442254],[12.6579657,49.4422448],[12.6579904,49.4422106],[12.6579748,49.4421561],[12.6579097,49.4421451],[12.6578544,49.4421203],[12.6578224,49.4421194],[12.6577748,49.4420733],[12.6577317,49.4420563],[12.6577061,49.4419875],[12.6577548,49.4419322],[12.6577203,49.441894],[12.6577395,49.441852],[12.6577854,49.4418043],[12.6577208,49.441776],[12.6577225,49.4417511],[12.6577011,49.4417382],[12.6576218,49.4416479],[12.6576451,49.4416223],[12.6577253,49.4416143],[12.6577253,49.4415841],[12.6577698,49.4415609],[12.6577642,49.4415143],[12.6578193,49.4414764],[12.6578182,49.4414556],[12.657774,49.4414345],[12.6577634,49.4413829],[12.6577425,49.4413612],[12.6577676,49.4413248],[12.6577795,49.4412704],[12.6578179,49.4412671],[12.6579534,49.4411633],[12.6579534,49.4411446],[12.6579267,49.4411065],[12.6579328,49.441077],[12.6579709,49.4410658],[12.6580987,49.44109],[12.6581137,49.441075],[12.6581076,49.441028],[12.6580424,49.4410008],[12.6580733,49.4409596],[12.6579637,49.440916],[12.6579824,49.4408669],[12.6579167,49.440855],[12.6579437,49.4408101],[12.6580294,49.4407341],[12.6580294,49.4407139],[12.6581103,49.440682],[12.6581159,49.44065],[12.6580964,49.4406019],[12.6580742,49.4405923],[12.6580578,49.4405641],[12.6580967,49.4405252],[12.6580717,49.4405009],[12.6580803,49.440463],[12.6581699,49.4404098],[12.6581874,49.440415],[12.6582364,49.4403549],[12.6582027,49.440343],[12.6581562,49.4403065],[12.6581504,49.4402905],[12.6581668,49.4402862],[12.6581668,49.4402759],[12.6581368,49.4402509],[12.6581262,49.440205],[12.6581554,49.440189],[12.6581362,49.440125],[12.6580628,49.4400892],[12.6580358,49.4400933],[12.6580018,49.4400848],[12.658011,49.4400239],[12.6579256,49.439996],[12.6578555,49.4398958],[12.6578825,49.4398679],[12.6578686,49.4398542],[12.657863,49.4398303],[12.6579206,49.4397643],[12.6579562,49.4397641],[12.6579849,49.4397999],[12.6580708,49.4397972],[12.6581028,49.4397637],[12.6580525,49.4397136],[12.6580372,49.4396494],[12.6579854,49.4396143],[12.6579729,49.4395122],[12.6580107,49.4394491],[12.6580842,49.439421],[12.6580931,49.4393601],[12.658048,49.4393422],[12.658043,49.4393136],[12.6580719,49.4392845],[12.6581034,49.4392772],[12.6581298,49.4392973],[12.6581933,49.4392671],[12.6582074,49.4392199],[12.6581465,49.4391911],[12.6581493,49.4391659],[12.6581793,49.439137],[12.6581454,49.43905],[12.6580822,49.4390583],[12.6579562,49.4389986],[12.6579164,49.4389903],[12.6579083,49.4389689],[12.6579556,49.4389139],[12.6579042,49.4388244],[12.6579103,49.4387956],[12.6578366,49.4386939],[12.6578763,49.4386453],[12.6579504,49.43861],[12.6579509,49.438551],[12.6579006,49.4385231],[12.6578352,49.438524],[12.6577918,49.4385067],[12.6577528,49.4384717],[12.6577489,49.4384158],[12.657782,49.4383898],[12.6578786,49.4383721],[12.6578638,49.438325],[12.6578321,49.4382977],[12.6577617,49.4382932],[12.6577545,49.4382725],[12.657797,49.4381792],[12.6578218,49.4381464],[12.6577759,49.4380661],[12.6577089,49.4380551],[12.6575862,49.437952],[12.6575336,49.4379577],[12.6574276,49.4378085],[12.6574092,49.4377551],[12.6572743,49.437635],[12.6572119,49.4376272],[12.6571524,49.4375832],[12.6571585,49.4375367],[12.6571872,49.4375018],[12.6572311,49.437462],[12.6571897,49.4374334],[12.657171,49.4374162],[12.6570848,49.4373869],[12.6570703,49.4373625],[12.6570567,49.4373022],[12.6569771,49.4372541],[12.6569824,49.4372025],[12.6570066,49.4371347],[12.656998,49.437121],[12.6570063,49.4370712],[12.6570308,49.4370157],[12.6570277,49.4369672],[12.6569821,49.4369009],[12.6569237,49.4368921],[12.6569262,49.4368564],[12.6569991,49.4368161],[12.6570739,49.4368108],[12.6571209,49.4368269],[12.6571952,49.4368313],[12.6573001,49.4368264],[12.6573477,49.4368087],[12.6574468,49.4367368],[12.6574331,49.4366668],[12.6574192,49.4366576],[12.6573085,49.436644],[12.6572603,49.436623],[12.6570903,49.43649],[12.6570814,49.4364776],[12.6571173,49.436439],[12.6570873,49.4364162],[12.6569802,49.4363999],[12.6569234,49.4363919],[12.6569078,49.4363888],[12.6568297,49.4363641],[12.6567335,49.4363963],[12.6567009,49.4363839],[12.6566814,49.4363263],[12.6566683,49.4363147],[12.6566436,49.436308],[12.6566313,49.4362492],[12.65665,49.4362091],[12.6567223,49.4361935],[12.6567891,49.436147],[12.6566141,49.4359529],[12.6566105,49.4359413],[12.6566667,49.4359035],[12.6568492,49.4358568],[12.6568979,49.4357879],[12.6569188,49.4357694],[12.6569238,49.4357499],[12.656823,49.435718],[12.6568261,49.4356797],[12.6568667,49.4356346],[12.6568492,49.4355984],[12.6566747,49.435485],[12.656655,49.4354245],[12.656618,49.4353931],[12.6565877,49.4353523],[12.6565738,49.4352783],[12.6565977,49.4352552],[12.6565743,49.435189],[12.6565718,49.4351486],[12.6565454,49.4350692],[12.6565952,49.4349849],[12.656566,49.4349639],[12.6565078,49.4349632],[12.6564499,49.4349747],[12.6564552,49.4349814],[12.6564522,49.4349946],[12.656441,49.4350002],[12.6563876,49.4349899],[12.6563503,49.4349349],[12.6562936,49.434927],[12.656266,49.4349337],[12.6562713,49.4349423],[12.6562541,49.4349566],[12.6562438,49.4349603],[12.6562171,49.4349498],[12.6561597,49.4349431],[12.6561019,49.4349503],[12.656074,49.4349449],[12.6559792,49.4348821],[12.6559612,49.4347894],[12.6559437,49.4347713],[12.6559043,49.434761],[12.655553,49.4347964],[12.6557402,49.4347408],[12.6559952,49.4346601],[12.6563009,49.4345698],[12.6573028,49.4343012],[12.6573665,49.4342842],[12.6592966,49.4336607],[12.6600774,49.4334082],[12.6614662,49.4329594],[12.6615315,49.4329359],[12.6623019,49.4326596],[12.6632393,49.4323228],[12.6642146,49.4319171],[12.6650209,49.4315815],[12.6650743,49.4315594],[12.6650957,49.4315504],[12.6660775,49.4311402],[12.6668746,49.4308076],[12.6678514,49.4304232],[12.6678876,49.4304092],[12.668675,49.4301055],[12.6696054,49.4297468],[12.6696118,49.4297443],[12.6705627,49.4293888],[12.6706316,49.4293631],[12.6722241,49.4287676],[12.6722339,49.428764],[12.6727253,49.428584],[12.6727735,49.4285663],[12.6735249,49.428291],[12.6735622,49.4282772],[12.673975,49.4281262],[12.6747337,49.4278405],[12.6749034,49.4277767],[12.6754991,49.4275522],[12.676272,49.4272597],[12.677518,49.4267891],[12.6785428,49.4264043],[12.6787529,49.4263256],[12.6793717,49.4260932],[12.6794831,49.4261087],[12.6794969,49.4261107],[12.6797084,49.4261403],[12.680245,49.4262154],[12.6803702,49.426233],[12.6806756,49.4262758],[12.681008,49.4263227],[12.6810552,49.4263294],[12.6812978,49.426314],[12.6817616,49.4262846],[12.6820747,49.4262647],[12.6826315,49.4262293],[12.6836164,49.4261667],[12.6847294,49.4260913],[12.6859731,49.4260078],[12.6860598,49.426002],[12.6881409,49.4258815],[12.6888176,49.4258367],[12.6892793,49.4258061],[12.6906602,49.4257151],[12.6906742,49.4257142],[12.6907852,49.4257067],[12.6908323,49.4257034],[12.6912888,49.4256783],[12.6913703,49.4256739],[12.6918814,49.4256457],[12.6922875,49.4256235],[12.692541,49.4256096],[12.6933817,49.4255462],[12.6943722,49.4255197],[12.6970102,49.4253717],[12.6977249,49.4253246],[12.698661,49.4252633],[12.6987282,49.4252589],[12.6999551,49.4251887],[12.701262,49.425115],[12.7014072,49.4251075],[12.702388,49.4250571],[12.7033374,49.4250088],[12.7044306,49.4249587],[12.7058112,49.4248945],[12.7076431,49.4248075],[12.7087051,49.4247571],[12.7088282,49.4246357],[12.7095234,49.4239536],[12.7100422,49.4234468],[12.711079,49.4223837],[12.7120623,49.4213756],[12.7121188,49.4213147],[12.7129161,49.4205107],[12.7136417,49.4197789],[12.7137365,49.4193269],[12.7138511,49.4187763],[12.714011,49.4180093],[12.7140368,49.4178837],[12.7150684,49.41683],[12.7148113,49.4159251],[12.7144089,49.4160845],[12.7146526,49.4149109],[12.7148146,49.4141296],[12.7162678,49.4137129],[12.7177727,49.4134192],[12.7187195,49.4132343],[12.7207746,49.4127712],[12.7219196,49.4125129],[12.7238309,49.4120838],[12.7251136,49.4117721],[12.7261549,49.4115378],[12.72733,49.4112728],[12.7286407,49.4109603],[12.7306835,49.410455],[12.7324556,49.4100174],[12.7330417,49.4098722],[12.7331339,49.409815],[12.7334624,49.4096112],[12.7359367,49.4080813],[12.7371047,49.4073594],[12.7382205,49.4066757],[12.7392863,49.4060234],[12.7406457,49.4051989],[12.7406677,49.4051855],[12.740818,49.4050942],[12.7413121,49.4047939],[12.7432676,49.4035938],[12.7449429,49.4025766],[12.7465595,49.4015944],[12.7476324,49.4009235],[12.7476979,49.4008825],[12.7487349,49.4002352],[12.7500316,49.3994653],[12.7503938,49.3992503],[12.7507561,49.3990352],[12.7508496,49.3989797],[12.7513566,49.3986784],[12.7526814,49.3978545],[12.7533817,49.3974219],[12.7542705,49.3968786],[12.7551901,49.396317],[12.7560942,49.3957634],[12.7576685,49.3947991],[12.7577802,49.3944039],[12.7580474,49.3934733],[12.7584322,49.3921479],[12.7585829,49.3916242],[12.7588108,49.3908319],[12.75908,49.3898674],[12.7594207,49.3886537],[12.7596509,49.3878339],[12.7599058,49.3869237],[12.7600696,49.3863253],[12.7601635,49.3859823],[12.7602112,49.3858064],[12.7603004,49.3854769],[12.7604252,49.3850163],[12.7604314,49.384994],[12.7608083,49.383616],[12.7608087,49.3836149],[12.7608444,49.3834822],[12.7611005,49.3825319],[12.7606396,49.3814297],[12.7604176,49.3808993],[12.7602248,49.3804398],[12.7598957,49.3796299],[12.7598264,49.3794591],[12.7592428,49.3780169],[12.7591789,49.3778587],[12.7588011,49.3769617],[12.7586006,49.3764855],[12.7583729,49.375946],[12.7580742,49.3752378],[12.7583313,49.3749912],[12.7584234,49.374903],[12.7587224,49.3746164],[12.7587871,49.3745543],[12.7597479,49.3736342],[12.7613231,49.3721242],[12.7619835,49.3714937],[12.76293,49.3705959],[12.7633713,49.3701756],[12.7647031,49.3689103],[12.7647933,49.3688246],[12.7650593,49.3685717],[12.7664389,49.3672602],[12.7675086,49.3662446],[12.7684278,49.3653714],[12.7700844,49.3650794],[12.7726033,49.364672],[12.7736844,49.3644967],[12.7754666,49.3642215],[12.7771367,49.3639627],[12.777997,49.3632384],[12.7788863,49.3624896],[12.7800955,49.3614402],[12.7812853,49.3604078],[12.7823633,49.3592117],[12.7814146,49.3580145],[12.7806451,49.3570458],[12.779834,49.3563192],[12.7792359,49.3557807],[12.7789369,49.3555113],[12.7786377,49.355242],[12.7784821,49.3535103],[12.7783277,49.3517971],[12.7785914,49.3508129],[12.7786778,49.3503716],[12.7786828,49.3499472],[12.7786934,49.3490605],[12.7786944,49.3489783],[12.7787036,49.3481563],[12.7793043,49.347936],[12.779905,49.3477157],[12.7819117,49.346984],[12.7827448,49.3467305],[12.7833787,49.3464894],[12.7850825,49.3459139],[12.7857825,49.3454587],[12.7878937,49.344915],[12.7905956,49.3442187],[12.7920166,49.3439188],[12.7936481,49.3435771],[12.7954979,49.3431739],[12.7959987,49.3430566],[12.7964995,49.3429393],[12.7971851,49.3428086],[12.7974669,49.3427548],[12.7977488,49.3427011],[12.7990075,49.3423959],[12.8002022,49.3421831],[12.8021505,49.3418022],[12.8030886,49.3416241],[12.8042294,49.3417533],[12.8051461,49.341857],[12.80662,49.3420163],[12.8075133,49.3419514],[12.8084171,49.3418855],[12.8106614,49.3415021],[12.810855,49.341469],[12.8124027,49.3411983],[12.8125953,49.3411645],[12.8130431,49.3411766],[12.8144702,49.341217],[12.8157133,49.3412727],[12.816683,49.3412932],[12.8173099,49.3413169],[12.8179366,49.3413407],[12.8189441,49.3412878],[12.819167,49.341276],[12.8193901,49.3412649],[12.8195398,49.3412573],[12.8197891,49.3412449],[12.8207957,49.3411946],[12.821536,49.3411569],[12.8222763,49.3411191],[12.82274,49.3411059],[12.8228918,49.3411016],[12.8231891,49.3410931],[12.8234123,49.3410867],[12.8235981,49.3410815],[12.8244353,49.3410507],[12.8252724,49.3410199],[12.8266477,49.3409708],[12.826652,49.3409711],[12.8267108,49.3409759],[12.8282185,49.3410996],[12.8298266,49.3411972],[12.83153,49.3410996],[12.8316634,49.341092],[12.8317422,49.3410841],[12.8326585,49.3409926],[12.8332688,49.3409329],[12.833438,49.3409163],[12.8347423,49.3408512],[12.8352322,49.3408266],[12.8357712,49.3407995],[12.8359027,49.340793],[12.8372394,49.340728],[12.8378339,49.3410115],[12.8384275,49.3412919],[12.839078,49.3415992],[12.8391821,49.3416419],[12.8396024,49.3418146],[12.8395877,49.3418296],[12.8396666,49.3418635],[12.8401663,49.3420785],[12.8406989,49.3421817],[12.840818,49.3421999],[12.8409229,49.3422071],[12.8409362,49.3422398],[12.8414303,49.3422642],[12.8428927,49.3423412],[12.8429231,49.342563],[12.8429798,49.3426989],[12.8431378,49.3429],[12.8433735,49.3433212],[12.8434534,49.3434877],[12.8435049,49.343678],[12.8435478,49.3440807],[12.8435537,49.3442911],[12.8436138,49.3445533],[12.8436382,49.3447051],[12.8436384,49.3447997],[12.8436207,49.3448735],[12.8434918,49.3450866],[12.8450692,49.3448422],[12.8472755,49.3445021],[12.8472911,49.3445127],[12.8473108,49.3445024],[12.8473872,49.3445024],[12.8474653,49.3444854],[12.8475008,49.3444551],[12.8474934,49.3444205],[12.847507,49.3444098],[12.8475388,49.3444127],[12.8475801,49.3444442],[12.8476235,49.3444449],[12.8476677,49.3444203],[12.8476786,49.3443884],[12.8475683,49.3442948],[12.8475665,49.3442617],[12.8475844,49.3442438],[12.8476727,49.3442225],[12.8477108,49.3441917],[12.8477815,49.3442138],[12.8478305,49.3442156],[12.847875,49.3442065],[12.8478901,49.3441866],[12.8478925,49.3441536],[12.8478618,49.3440831],[12.8478848,49.3440189],[12.8479684,49.3440197],[12.8479935,49.3440033],[12.8480092,49.3439489],[12.8480494,49.3439381],[12.8481103,49.3439438],[12.8481414,49.3439656],[12.8481555,49.3439916],[12.8481846,49.3440082],[12.8482035,49.3440008],[12.8482261,49.3439818],[12.8482803,49.3439745],[12.8483098,49.3439589],[12.8483135,49.3438685],[12.848369,49.343851],[12.8483707,49.3438313],[12.8483452,49.3438213],[12.8482743,49.3438208],[12.8482581,49.3438133],[12.8482481,49.3437769],[12.8482614,49.3437656],[12.8483424,49.3437531],[12.8483842,49.3437282],[12.8484941,49.343685],[12.8484961,49.3436634],[12.8484787,49.3436529],[12.8484333,49.3436402],[12.8484156,49.3436183],[12.8484913,49.3435866],[12.8485001,49.3435652],[12.8484984,49.3435398],[12.8485184,49.3435301],[12.8485731,49.3435297],[12.8485919,49.3435143],[12.8486132,49.3434718],[12.8486417,49.3434458],[12.8486315,49.3434243],[12.848504,49.3433929],[12.8484848,49.343359],[12.848448,49.3433323],[12.8484251,49.3432993],[12.8484413,49.3432671],[12.8484076,49.3432469],[12.8484059,49.3432306],[12.8484287,49.3432057],[12.8484258,49.3431767],[12.848527,49.3431142],[12.8485872,49.3431052],[12.848623,49.343084],[12.8486283,49.343054],[12.8485999,49.343018],[12.8486011,49.3429721],[12.8486188,49.3429511],[12.8486708,49.3429349],[12.8486594,49.3428981],[12.8487104,49.3428567],[12.8487024,49.3428404],[12.8486335,49.3428539],[12.8485955,49.342835],[12.8485958,49.3428188],[12.8486498,49.3428055],[12.8486633,49.3427875],[12.8486544,49.3427668],[12.8486093,49.3427396],[12.8486242,49.3426796],[12.84861,49.3426673],[12.8485411,49.3426329],[12.8485595,49.342601],[12.8485598,49.342566],[12.8485883,49.3425552],[12.8486367,49.3425903],[12.8486737,49.3425928],[12.8486947,49.3425854],[12.8487224,49.3425585],[12.8488216,49.3425291],[12.8488629,49.3424996],[12.848906,49.3424764],[12.8489204,49.3424485],[12.848972,49.3424346],[12.8489931,49.3424007],[12.8490405,49.3423626],[12.8490814,49.3423154],[12.8490908,49.3422927],[12.8490764,49.3422758],[12.8490267,49.3422615],[12.8489717,49.3421798],[12.8490896,49.3420353],[12.8491574,49.3420404],[12.8492038,49.3420201],[12.8492504,49.3420142],[12.8492759,49.3419732],[12.8494189,49.3419502],[12.8494423,49.341925],[12.8494672,49.3419212],[12.8495429,49.3419644],[12.8495753,49.3419599],[12.8495937,49.3419394],[12.8495778,49.3418874],[12.8495833,49.3418369],[12.8495408,49.3418177],[12.8494616,49.341818],[12.8493907,49.3418056],[12.8493554,49.341742],[12.8494164,49.3416676],[12.8494452,49.3416478],[12.8494531,49.3416229],[12.8494596,49.3416031],[12.8495446,49.3415418],[12.8495703,49.3415448],[12.8496128,49.3415898],[12.8496427,49.3415888],[12.8496925,49.3415434],[12.8497526,49.3415036],[12.8499718,49.3414418],[12.8500059,49.3414116],[12.849993,49.3413801],[12.8498887,49.3413413],[12.8498821,49.3413146],[12.8499087,49.341299],[12.8499782,49.3412931],[12.8500073,49.3412794],[12.8499869,49.3412347],[12.850034,49.3411898],[12.8499723,49.3411171],[12.8500434,49.3410841],[12.8500529,49.341058],[12.8499691,49.341013],[12.8499631,49.3409805],[12.8499739,49.3409545],[12.8500413,49.3408876],[12.8501021,49.3408273],[12.850121,49.3408085],[12.8501235,49.340807],[12.8501734,49.3407777],[12.8501979,49.3407762],[12.8502791,49.3408277],[12.8505396,49.3406434],[12.8507392,49.340502],[12.85106,49.3402746],[12.851381,49.3400472],[12.8515419,49.3399167],[12.8516424,49.3396997],[12.8514771,49.3394443],[12.8519436,49.3391213],[12.8524101,49.3387983],[12.8533895,49.3381205],[12.8543838,49.3382774],[12.8553586,49.338575],[12.8558051,49.3387076],[12.856113,49.3388834],[12.8564209,49.339059],[12.8565516,49.3391338],[12.8567084,49.3392235],[12.8575037,49.3391018],[12.8583531,49.3389716],[12.858628,49.3389294],[12.8589029,49.3388872],[12.8593513,49.3388186],[12.8608112,49.3383636],[12.8612287,49.3382333],[12.8616463,49.3381029],[12.862008,49.337968],[12.8627344,49.337697],[12.8630334,49.3375855],[12.8640745,49.3371968],[12.8641535,49.3371788],[12.8654864,49.3368748],[12.8658677,49.3367171],[12.8658834,49.3367106],[12.8666103,49.3364098],[12.8668865,49.3362904],[12.8675187,49.3360173],[12.8676036,49.3359813],[12.8682626,49.3357022],[12.8688554,49.3353496],[12.8696522,49.3350483],[12.8702075,49.3348586],[12.8707627,49.334669],[12.8717764,49.3344209],[12.8719813,49.3342669],[12.8725756,49.3340708],[12.8729843,49.3338371],[12.8734181,49.3336939],[12.8738315,49.3335837],[12.8742447,49.3334736],[12.8747062,49.3333174],[12.8751676,49.3331612],[12.8762577,49.3328523],[12.876913,49.3324778],[12.877523,49.3326499],[12.8785065,49.3328973],[12.8788736,49.3329411],[12.8790834,49.332937],[12.8792908,49.332933],[12.8794156,49.3329305],[12.8794758,49.3329221],[12.8796302,49.3329009],[12.879805,49.3328951],[12.8802373,49.3328808],[12.8808447,49.3328609],[12.8810312,49.3327904],[12.881719,49.3328104],[12.8822587,49.3327711],[12.8824575,49.3327884],[12.8829339,49.3328301],[12.8832114,49.3328544],[12.8832704,49.3328594],[12.8833347,49.3328651],[12.8839466,49.3328867],[12.8842214,49.3328411],[12.8845178,49.332743],[12.8853052,49.3326514],[12.8860758,49.3325009],[12.8868019,49.332359],[12.8868463,49.3323503],[12.8874717,49.3325969],[12.8880036,49.3329433],[12.8887892,49.3331174],[12.8889143,49.333142],[12.8889257,49.3331644],[12.8888837,49.333207],[12.8888737,49.3332253],[12.8888604,49.3333286],[12.888865,49.3334247],[12.8888337,49.3334595],[12.8888015,49.3334751],[12.8887345,49.3334869],[12.8887071,49.3334917],[12.8886472,49.3335131],[12.8884479,49.3336913],[12.8884122,49.3337013],[12.8883707,49.3336954],[12.8882638,49.3336607],[12.8882332,49.3336575],[12.8881833,49.3336689],[12.8881436,49.3336875],[12.8881266,49.3337059],[12.8881268,49.3337566],[12.8881062,49.3338068],[12.8880726,49.333819],[12.8879597,49.3338105],[12.8879158,49.3338167],[12.8878894,49.3338466],[12.8878443,49.3339228],[12.8878509,49.3339934],[12.8878969,49.3340985],[12.8879336,49.3341521],[12.8879439,49.3341782],[12.8879383,49.3342044],[12.8878913,49.3342395],[12.8878402,49.3342576],[12.8877437,49.3342638],[12.8877116,49.3342771],[12.8876995,49.3343041],[12.8877138,49.3343413],[12.8877429,49.3343789],[12.8877499,49.3344088],[12.8877349,49.3344363],[12.887668,49.3344825],[12.8875652,49.3345366],[12.8875192,49.3345729],[12.8874924,49.3346087],[12.8875001,49.3346327],[12.8875958,49.3347541],[12.8876634,49.3347974],[12.8876587,49.3348144],[12.8875576,49.3348574],[12.8875355,49.3348847],[12.887527,49.3349105],[12.8875318,49.3349382],[12.8875301,49.3349775],[12.8874941,49.3350023],[12.8874279,49.3350195],[12.8873488,49.3349912],[12.8873087,49.3349677],[12.8872442,49.334911],[12.8872165,49.3349015],[12.8870899,49.3349044],[12.8870608,49.3349146],[12.8870294,49.3349667],[12.8870432,49.3350247],[12.8870702,49.3350464],[12.8870975,49.3350375],[12.8871454,49.3350059],[12.8871762,49.335004],[12.8872145,49.3350648],[12.8872332,49.335182],[12.8871982,49.3352335],[12.8871762,49.3352813],[12.887156,49.3352975],[12.8871291,49.3353023],[12.8870575,49.3353075],[12.8868981,49.3353505],[12.8868782,49.335375],[12.8868906,49.3353997],[12.8869196,49.3354041],[12.8869932,49.3354005],[12.8870197,49.3354111],[12.8870281,49.3354335],[12.887013,49.335471],[12.88703,49.3354843],[12.8870982,49.3355072],[12.8871671,49.3355605],[12.8872999,49.3356959],[12.8873058,49.3357475],[12.8872909,49.3357914],[12.8872683,49.3358137],[12.8872297,49.3358356],[12.8871343,49.3358729],[12.8870813,49.3359005],[12.887017,49.3359519],[12.8870413,49.3359782],[12.8870673,49.3359977],[12.8870587,49.3360175],[12.8869531,49.3360784],[12.8868907,49.3361185],[12.8868395,49.3361293],[12.8867332,49.336135],[12.8866613,49.3362132],[12.8866407,49.3362764],[12.8866441,49.3362901],[12.8866726,49.336297],[12.8867625,49.3362934],[12.8867995,49.3362987],[12.8868231,49.3363175],[12.8869223,49.336457],[12.8869187,49.3364917],[12.8869821,49.3365127],[12.8870211,49.3365419],[12.8870609,49.3365801],[12.8870702,49.336602],[12.8870643,49.3366264],[12.8870351,49.3366558],[12.8869594,49.3368281],[12.8869693,49.3368688],[12.8869928,49.3368704],[12.8870392,49.3368336],[12.8870816,49.3368111],[12.8871202,49.3367992],[12.887151,49.3368016],[12.8871793,49.3368209],[12.8872153,49.3369236],[12.8872064,49.3369877],[12.887179,49.3370519],[12.8871522,49.3370733],[12.8870969,49.3370797],[12.8870129,49.337074],[12.8869952,49.33706],[12.8869805,49.3370422],[12.8869551,49.3370486],[12.8869271,49.3370659],[12.8868638,49.3370708],[12.8868506,49.3370803],[12.8868484,49.3371254],[12.8868132,49.337177],[12.8867697,49.3372677],[12.8867383,49.3372752],[12.8866037,49.3372605],[12.886568,49.3372732],[12.8865702,49.3372995],[12.8865999,49.337333],[12.8866464,49.3373698],[12.8866221,49.3373916],[12.886563,49.3374213],[12.8865277,49.3374188],[12.8864192,49.3373477],[12.8863784,49.3373364],[12.8863435,49.3373423],[12.8863113,49.337367],[12.8863105,49.3373835],[12.88633,49.3374068],[12.8863958,49.3374559],[12.8864302,49.3374938],[12.8864595,49.3375533],[12.8864662,49.3375981],[12.8864531,49.3376364],[12.8864356,49.33765],[12.8863382,49.3376787],[12.8863065,49.3376979],[12.8862748,49.3377484],[12.8862901,49.337768],[12.8863409,49.3377897],[12.886402,49.3378458],[12.8864428,49.337909],[12.8865608,49.3380069],[12.8863954,49.3381069],[12.8863656,49.3381363],[12.8863726,49.3381479],[12.8864044,49.3382006],[12.8864131,49.3382304],[12.8864368,49.3382555],[12.8864409,49.3382865],[12.886419,49.3383156],[12.8863166,49.338341],[12.8862008,49.3383448],[12.8862004,49.3383706],[12.8862564,49.3384013],[12.8863716,49.3385298],[12.8863266,49.3385677],[12.8863269,49.3386389],[12.8861297,49.3386199],[12.8860425,49.3386686],[12.8860471,49.3386872],[12.8860654,49.3386956],[12.8861042,49.3386785],[12.8861763,49.3386992],[12.8861797,49.3387315],[12.8861419,49.3387752],[12.8861607,49.3388051],[12.8862372,49.338852],[12.8862843,49.3388516],[12.8863206,49.3388916],[12.8863101,49.3389817],[12.8862609,49.3390192],[12.8862321,49.3390577],[12.8861935,49.3390573],[12.8861774,49.3390313],[12.8861358,49.3390557],[12.8861674,49.3391108],[12.8861541,49.3391317],[12.8861136,49.3391383],[12.8860794,49.3391328],[12.8860164,49.3391063],[12.8859604,49.3390727],[12.885837,49.3390935],[12.8858105,49.3391071],[12.88574,49.3391008],[12.8857051,49.3391411],[12.8857055,49.3391918],[12.8857733,49.3392011],[12.8858531,49.3392312],[12.8858848,49.3392597],[12.8858478,49.3393079],[12.885778,49.3393338],[12.8857307,49.3393213],[12.8856436,49.3393378],[12.8856391,49.3393698],[12.8856881,49.3394201],[12.885692,49.3394398],[12.8856775,49.3395005],[12.8856107,49.3395474],[12.8855753,49.3395333],[12.8855473,49.3395363],[12.8855075,49.3395555],[12.8854549,49.339561],[12.8854397,49.3395773],[12.8854279,49.3396227],[12.8853804,49.3396893],[12.8853288,49.3397936],[12.885287,49.339838],[12.88527,49.3398549],[12.8852599,49.339904],[12.8852977,49.3400316],[12.8853008,49.3400829],[12.8853115,49.3400997],[12.8852985,49.3401161],[12.8852811,49.3401317],[12.8852769,49.3401661],[12.8852906,49.3402155],[12.8853366,49.3402691],[12.8853396,49.3403021],[12.8852896,49.3403726],[12.8852284,49.3403589],[12.8850531,49.3404024],[12.8849559,49.3404072],[12.8848722,49.3404564],[12.8848137,49.340463],[12.884805,49.3404754],[12.8848003,49.3405025],[12.88476,49.3405317],[12.8847332,49.340543],[12.8846709,49.3406075],[12.8846562,49.3406561],[12.8846063,49.3406881],[12.884563,49.3406964],[12.8845088,49.3406905],[12.8844558,49.3406943],[12.8844168,49.3406746],[12.8843192,49.3407044],[12.8842837,49.3406942],[12.884232,49.3407251],[12.8841943,49.3407427],[12.8841768,49.3407619],[12.8841725,49.3407819],[12.8842016,49.340829],[12.8841648,49.3409185],[12.8840998,49.3409765],[12.8840041,49.3410032],[12.8839421,49.3410336],[12.8839066,49.3410602],[12.8838654,49.3410709],[12.8838488,49.3411383],[12.8838139,49.3411827],[12.8838328,49.3412219],[12.8838464,49.3413358],[12.8838106,49.3414004],[12.8837282,49.3414698],[12.8836846,49.341529],[12.8836693,49.3416296],[12.883672,49.3416697],[12.8836539,49.3417301],[12.8836511,49.3417687],[12.8836181,49.3418205],[12.8835326,49.3419047],[12.8834234,49.3419696],[12.883216,49.3420572],[12.8831751,49.3420798],[12.8831025,49.3420965],[12.8830533,49.3421204],[12.8830261,49.3421544],[12.8830144,49.3422224],[12.8829879,49.3423008],[12.8829453,49.3423663],[12.882903,49.342408],[12.882899,49.3424761],[12.8828563,49.3424948],[12.8828099,49.3424993],[12.8826662,49.3424985],[12.882629,49.3425229],[12.8825715,49.3425479],[12.8825086,49.3425798],[12.8823541,49.3426132],[12.8822532,49.34262],[12.8821262,49.3426462],[12.8820783,49.3426706],[12.8820266,49.3427345],[12.88197,49.3427451],[12.8819059,49.34285],[12.881846,49.3429075],[12.8818081,49.3429636],[12.8817933,49.3429992],[12.881763,49.3430186],[12.8815309,49.3431132],[12.8814696,49.3431287],[12.8813382,49.3431218],[12.8812634,49.3431672],[12.8811647,49.3432721],[12.881137,49.3433146],[12.8809926,49.3435057],[12.880984,49.3435524],[12.8809851,49.3435556],[12.8810431,49.3437201],[12.8810359,49.3437699],[12.8810458,49.343815],[12.8810467,49.3438999],[12.8810801,49.3439278],[12.8810776,49.343987],[12.8810323,49.3440201],[12.8810091,49.3441184],[12.8810105,49.344161],[12.8810536,49.3441906],[12.8810607,49.3442478],[12.8810426,49.3442745],[12.8809709,49.3442965],[12.8809195,49.3443035],[12.880893,49.3443195],[12.8808739,49.3443585],[12.8808699,49.3444947],[12.8808771,49.3445302],[12.8808652,49.3445911],[12.8808817,49.3446568],[12.8809062,49.3446917],[12.8810799,49.3447609],[12.8811198,49.3447964],[12.8811286,49.3448267],[12.8811221,49.3448668],[12.8810895,49.3448866],[12.8810574,49.3449156],[12.8810543,49.3449395],[12.8810641,49.3449568],[12.8811098,49.3449759],[12.8811683,49.3449875],[12.8812152,49.3449832],[12.88126,49.3449878],[12.8813104,49.3450103],[12.8813233,49.3450364],[12.8813292,49.3450881],[12.881299,49.3451541],[12.8812808,49.3451679],[12.8812638,49.3451809],[12.8812264,49.3451919],[12.8811872,49.3451966],[12.88116,49.3452145],[12.8811273,49.3452615],[12.8810695,49.345373],[12.8810456,49.3453936],[12.8810012,49.3454048],[12.8809409,49.345413],[12.8808996,49.3454409],[12.8808747,49.3454933],[12.8808173,49.3455415],[12.8807408,49.3455605],[12.8807202,49.3455718],[12.8807209,49.345644],[12.8807481,49.3456744],[12.8808467,49.3457427],[12.8808865,49.3457548],[12.8809669,49.3457702],[12.8809931,49.3457851],[12.8810086,49.3458134],[12.8810168,49.3458618],[12.8810154,49.3459031],[12.8810171,49.3459303],[12.8809712,49.3459758],[12.8809942,49.3460074],[12.8809848,49.3460446],[12.8809713,49.3460487],[12.8809588,49.3460506],[12.8808905,49.3460615],[12.8808082,49.3460877],[12.8806855,49.3461131],[12.8806334,49.3461609],[12.8805697,49.3461905],[12.8805644,49.3462265],[12.8805967,49.3462655],[12.8806279,49.3463042],[12.8806739,49.3463466],[12.880707,49.3463976],[12.8807261,49.3464447],[12.8807252,49.3464693],[12.8807116,49.3465525],[12.8806751,49.346662],[12.8805813,49.3467338],[12.8805454,49.3467683],[12.8804996,49.3467892],[12.880429,49.3467993],[12.880391,49.3468312],[12.8803791,49.3468585],[12.8804193,49.346901],[12.8804223,49.3469209],[12.8804017,49.3469435],[12.8803114,49.3469815],[12.8802847,49.346982],[12.8802387,49.3469655],[12.8802066,49.3469066],[12.8801567,49.3468336],[12.8801544,49.34681],[12.8800868,49.3468063],[12.8800156,49.346823],[12.8800043,49.3468349],[12.8800206,49.3469083],[12.8800295,49.3469594],[12.880032,49.3469731],[12.8800145,49.3470163],[12.8799862,49.3470286],[12.879949,49.3470259],[12.8799308,49.3470492],[12.8799418,49.3471066],[12.8799853,49.3471997],[12.8800304,49.3472358],[12.8800215,49.3472774],[12.8800831,49.347284],[12.8801286,49.3472926],[12.8801504,49.3473166],[12.8801823,49.3473422],[12.8802094,49.3473766],[12.880207,49.3474152],[12.8801997,49.347457],[12.8801802,49.3474729],[12.8801531,49.347476],[12.8801171,49.3474663],[12.880097,49.347464],[12.8800285,49.3474766],[12.8800326,49.3475316],[12.8800494,49.3475706],[12.8800562,49.3476246],[12.880098,49.3476708],[12.8801019,49.3476991],[12.8800959,49.3477281],[12.8801075,49.3477597],[12.8801099,49.3478183],[12.8801107,49.3478643],[12.8800892,49.347888],[12.8800616,49.3478978],[12.880038,49.3478991],[12.8799886,49.3479107],[12.8799717,49.3479366],[12.8799826,49.3479648],[12.8800423,49.3480251],[12.8800565,49.3480402],[12.8800569,49.3480619],[12.8801201,49.3481391],[12.8801687,49.3481755],[12.8801951,49.348196],[12.8801917,49.3482153],[12.8801744,49.3482338],[12.8801242,49.3482537],[12.8800427,49.3482522],[12.8799788,49.3482441],[12.8799184,49.3482554],[12.8798392,49.3482677],[12.8798211,49.3482848],[12.8798279,49.3483542],[12.8798368,49.3483836],[12.8798326,49.3484219],[12.8798473,49.3484511],[12.8798779,49.3484775],[12.8799391,49.3485536],[12.8799349,49.3485711],[12.8799118,49.3485932],[12.8798659,49.3486274],[12.8798567,49.348668],[12.8798345,49.348761],[12.8798404,49.3487999],[12.8798594,49.3488547],[12.879867,49.3489107],[12.8798522,49.3489593],[12.8798278,49.3489758],[12.8798418,49.349014],[12.8799315,49.3490472],[12.880052,49.3491036],[12.8800737,49.3491459],[12.8801247,49.3492033],[12.8801113,49.3492621],[12.8801321,49.3493095],[12.8801979,49.3493395],[12.880239,49.3493462],[12.8802712,49.3493806],[12.8802716,49.349445],[12.8802615,49.3494688],[12.8802252,49.3494921],[12.88011,49.3495388],[12.8800859,49.3495499],[12.8800576,49.3495735],[12.8800375,49.3496226],[12.879998,49.3496563],[12.8799693,49.349687],[12.8800155,49.3496921],[12.880084,49.3497313],[12.8801094,49.3497516],[12.8801341,49.34982],[12.8801313,49.3498494],[12.880141,49.3498677],[12.8801364,49.3499005],[12.8801522,49.349921],[12.8801827,49.3499315],[12.8802567,49.3499505],[12.8802856,49.3499704],[12.8802956,49.3499863],[12.8802732,49.3500212],[12.8801946,49.350061],[12.8801994,49.3501044],[12.8801942,49.3501483],[12.8801786,49.3501813],[12.8801925,49.3501926],[12.8802378,49.3502052],[12.880252,49.3502176],[12.8802404,49.3502482],[12.8802215,49.3502659],[12.880166,49.3503061],[12.8800874,49.3503498],[12.8800803,49.3503509],[12.8800303,49.3503586],[12.8800147,49.3503804],[12.8800229,49.3503928],[12.8800124,49.350403],[12.8801032,49.3504037],[12.8801583,49.3504044],[12.8817087,49.3504151],[12.8817678,49.3504155],[12.8842827,49.350433],[12.884345,49.3504334],[12.8852373,49.3507272],[12.885911,49.3509491],[12.8859113,49.3509532],[12.8859123,49.3509625],[12.8859296,49.3509614],[12.8863633,49.3509325],[12.8864655,49.3509187],[12.8865631,49.3509057],[12.8866799,49.350876],[12.8871879,49.3506987],[12.8872073,49.3506918],[12.8877001,49.3506164],[12.8878727,49.3506149],[12.8879338,49.3506276],[12.8881554,49.3507676],[12.8883766,49.3508776],[12.8884772,49.3509042],[12.8888423,49.3509064],[12.8891257,49.3508465],[12.8895229,49.3507925],[12.889774,49.3507298],[12.889904,49.350652],[12.8901966,49.3502777],[12.8902822,49.3502097],[12.8903733,49.350139],[12.8904181,49.3501044],[12.8906373,49.3500487],[12.890923,49.3500675],[12.8911789,49.3500842],[12.8911837,49.3500845],[12.8921723,49.3499678],[12.8924025,49.3499513],[12.8927158,49.3498863],[12.8930108,49.349804],[12.8934184,49.3497436],[12.8943663,49.3494965],[12.8948855,49.3493487],[12.8952583,49.3492637],[12.8956216,49.3491083],[12.8960794,49.3489686],[12.8962988,49.3489455],[12.8971844,49.3489872],[12.8977362,49.3490683],[12.8979012,49.3490927],[12.8988672,49.349238],[12.8990674,49.3492937],[12.899527,49.3494926],[12.8996447,49.3495318],[12.9002549,49.3496239],[12.9006091,49.3496909],[12.9008148,49.3496853],[12.9011125,49.3496601],[12.9013869,49.3496286],[12.9016685,49.3495705],[12.9019232,49.3494774],[12.902121,49.3493384],[12.9022253,49.3492289],[12.9023019,49.3491621],[12.9024362,49.349103],[12.9025866,49.3490753],[12.902735,49.3490917],[12.902837,49.3491028],[12.9028422,49.3490902],[12.9029675,49.3491178],[12.9030557,49.3491371],[12.9030927,49.3491453],[12.9033279,49.3491762],[12.9034927,49.3491672],[12.9040472,49.3490872],[12.9044904,49.3489938],[12.9049135,49.3488762],[12.9050065,49.3488504],[12.9053614,49.3487784],[12.9058529,49.3487077],[12.9060027,49.3486782],[12.9063518,49.3485791],[12.9066238,49.3484634],[12.906649,49.348448],[12.9066882,49.3484242],[12.9067132,49.3484088],[12.9068996,49.3482835],[12.9074053,49.348042],[12.90766,49.347859],[12.9080385,49.3476225],[12.9081038,49.3475865],[12.9081434,49.3475647],[12.9084865,49.3474191],[12.9088112,49.3472765],[12.9091508,49.3471093],[12.9095991,49.3469053],[12.9097179,49.3469434],[12.9098501,49.3469511],[12.9099779,49.3469433],[12.9101677,49.3469083],[12.9104047,49.3468106],[12.9106193,49.3466965],[12.9107919,49.3466236],[12.9111667,49.3464891],[12.9113918,49.3463805],[12.9120932,49.3460167],[12.9129378,49.345495],[12.9129404,49.3454934],[12.9129763,49.3454767],[12.9132819,49.3453346],[12.9134857,49.3452217],[12.9136169,49.3451354],[12.9137102,49.3450402],[12.9137854,49.3449679],[12.913896,49.3448896],[12.9140355,49.3448196],[12.9143459,49.3447526],[12.9149008,49.3446487],[12.9153483,49.3445452],[12.9157142,49.3444366],[12.9159499,49.3443667],[12.9163323,49.3442381],[12.916792,49.3441145],[12.9168892,49.3441054],[12.9171707,49.3440843],[12.9173752,49.3440185],[12.9175101,49.3439711],[12.9178386,49.3438528],[12.9182807,49.3437159],[12.9186532,49.3436153],[12.918939,49.3435427],[12.9193251,49.3434459],[12.9195216,49.3434519],[12.9195541,49.3434589],[12.9197262,49.3434962],[12.9208592,49.343862],[12.9214726,49.3438646],[12.9217052,49.3438655],[12.9225781,49.343957],[12.9227624,49.3439762],[12.9234313,49.3441889],[12.9240558,49.3443439],[12.9251818,49.3445643],[12.9255999,49.3446677],[12.9264921,49.3447857],[12.9272991,49.3448609],[12.9275795,49.3448871],[12.9277445,49.3448768],[12.9281398,49.3448523],[12.928224,49.3448492],[12.9282636,49.3448478],[12.9287261,49.3448308],[12.9291738,49.3448143],[12.9293418,49.3448023],[12.9300041,49.3447552],[12.9308989,49.3446163],[12.9311794,49.3445433],[12.9324908,49.3442017],[12.9326619,49.3441314],[12.9335302,49.3437748],[12.9339296,49.3436108],[12.9339891,49.3435864],[12.9341799,49.343467],[12.9347122,49.3431338],[12.9349299,49.3429976],[12.9355625,49.3427845],[12.9359032,49.3426697],[12.9374557,49.3428177],[12.9376626,49.3426639],[12.9382537,49.3423706],[12.9389301,49.3422611],[12.9390182,49.3422528],[12.9398249,49.3423729],[12.9406128,49.342533],[12.9409472,49.3426263],[12.9414117,49.3427559],[12.9416635,49.3433929],[12.9418143,49.3437083],[12.9419081,49.3437219],[12.9420544,49.3438283],[12.942234,49.3439589],[12.9427847,49.3441644],[12.9428345,49.3441715],[12.943322,49.3440691],[12.943734,49.3439826],[12.9437366,49.343982],[12.9439544,49.3439361],[12.944661,49.343885],[12.9452847,49.3437959],[12.9458145,49.3436961],[12.9461971,49.3435988],[12.9468232,49.3432689],[12.9469896,49.3432013],[12.9472995,49.3430753],[12.9475114,49.342989],[12.947534,49.342983],[12.9478609,49.3428966],[12.9482561,49.342854],[12.9493374,49.3427942],[12.9496021,49.3428344],[12.9500328,49.3429108],[12.951637,49.341806],[12.9527861,49.3410141],[12.9534328,49.3405625],[12.95404,49.3401386],[12.9547728,49.3396272],[12.9552468,49.3392962],[12.9557463,49.3389479],[12.9561296,49.3385977],[12.9561973,49.3385359],[12.9566485,49.3381123],[12.9572705,49.3375293],[12.9575721,49.3373258],[12.9582735,49.3368529],[12.9584357,49.3367434],[12.9595617,49.3368247],[12.959571,49.3368254],[12.9601263,49.3368543],[12.9609483,49.336863],[12.9610506,49.3368415],[12.9611685,49.3368396],[12.9619362,49.3368267],[12.9621437,49.336841],[12.9626861,49.3369444],[12.9627313,49.3369531],[12.9637802,49.3370982],[12.9639966,49.3371168],[12.9645386,49.3366747],[12.965059,49.3362501],[12.965129,49.336193],[12.9655895,49.3359909],[12.9662468,49.3358003],[12.9669064,49.3356071],[12.9672144,49.3358139],[12.9675974,49.33566],[12.9682425,49.3353279],[12.9685858,49.3351726],[12.968619,49.335207],[12.969248,49.3349225],[12.9697603,49.3347208],[12.9705234,49.334501],[12.9726306,49.3338608],[12.9726814,49.3338061],[12.9726984,49.333789],[12.9727436,49.3337394],[12.9743719,49.3319969],[12.9752034,49.331105],[12.9756362,49.3306387],[12.9756995,49.3305868],[12.9757253,49.3305662],[12.9764606,49.3299578],[12.9765892,49.3298772],[12.9775395,49.3292737],[12.9787483,49.3285063],[12.9802932,49.3275907],[12.9807416,49.3273249],[12.9811992,49.3270536],[12.9822682,49.3265454],[12.9827431,49.3263197],[12.9831289,49.3261363],[12.9836342,49.3258961],[12.9854698,49.3251229],[12.9857528,49.3250037],[12.9878944,49.3241015],[12.9880509,49.3240357],[12.9880843,49.3240216],[12.988557,49.3238228],[12.9886271,49.323793],[12.9886372,49.3237302],[12.9886506,49.3236946],[12.9886506,49.3236508],[12.9886919,49.3235811],[12.9887706,49.3234893],[12.9887579,49.323449],[12.988694,49.3234004],[12.988657,49.3233889],[12.9885436,49.3233093],[12.9885051,49.3233206],[12.9884861,49.3233109],[12.9884691,49.323255],[12.9884243,49.3232417],[12.9884405,49.3232225],[12.9885581,49.3231763],[12.9886601,49.3232161],[12.9886884,49.3232828],[12.9888497,49.3232578],[12.9888896,49.3232589],[12.9889408,49.3232274],[12.9889525,49.3231933],[12.9888875,49.323096],[12.9888353,49.3230923],[12.9887516,49.3231107],[12.988646,49.3229784],[12.9885023,49.32285],[12.9885094,49.322835],[12.9884981,49.3228049],[12.9884359,49.3227669],[12.9884327,49.3227418],[12.9884688,49.3227153],[12.9884804,49.3226739],[12.9884522,49.3226161],[12.9884511,49.322569],[12.988408,49.322546],[12.988408,49.3225282],[12.9885443,49.3224725],[12.9886259,49.3224601],[12.9886502,49.3224666],[12.9887212,49.3226191],[12.9886764,49.3226942],[12.9887117,49.3227406],[12.9888967,49.3227169],[12.9889313,49.3226723],[12.9889285,49.3226497],[12.9889581,49.3226375],[12.9890768,49.3226198],[12.9892078,49.3225809],[12.9892176,49.3225289],[12.9891707,49.3224873],[12.9890951,49.3223809],[12.9890348,49.3223427],[12.9890358,49.3223289],[12.9890941,49.3222804],[12.98914,49.3222818],[12.9891636,49.3222778],[12.9892106,49.3222081],[12.9893186,49.3221464],[12.9893246,49.3221289],[12.9892448,49.3221018],[12.9892141,49.3221022],[12.9890905,49.3221167],[12.9890612,49.3221096],[12.9890482,49.3220822],[12.9890792,49.3219455],[12.9890764,49.3219094],[12.9890856,49.3218767],[12.9890895,49.3218385],[12.9891615,49.3217589],[12.9892413,49.3217379],[12.9892508,49.3217269],[12.9892349,49.3217048],[12.9892664,49.321682],[12.9893091,49.321685],[12.9894599,49.3217771],[12.989534,49.3217607],[12.9896124,49.3217876],[12.9896368,49.3217851],[12.9896738,49.3217745],[12.9898189,49.3217856],[12.9898807,49.3217156],[12.9899333,49.3216845],[12.9899538,49.3216595],[12.9899718,49.3215982],[12.9899464,49.3215766],[12.989903,49.3215676],[12.989736,49.3215481],[12.9897148,49.3215396],[12.9896502,49.3214438],[12.9895767,49.3214196],[12.9895527,49.3213844],[12.9895661,49.3213306],[12.9896078,49.3212694],[12.9896551,49.3212259],[12.9896894,49.3212192],[12.9897271,49.3212786],[12.9897572,49.3212898],[12.9899054,49.3212291],[12.9899464,49.3212344],[12.9899739,49.3212565],[12.9900386,49.3212772],[12.9900837,49.3212869],[12.9902031,49.3212346],[12.9902794,49.3212213],[12.9903016,49.3211985],[12.9902748,49.3211356],[12.9902112,49.321117],[12.9902003,49.3211193],[12.9901727,49.3211067],[12.9901095,49.3210892],[12.9900993,49.3210981],[12.9900679,49.3211152],[12.9900527,49.3211103],[12.99001,49.3210355],[12.9900004,49.3210286],[12.9899644,49.3210199],[12.9899573,49.3209861],[12.989969,49.3209304],[12.990016,49.3208885],[12.9900456,49.3208381],[12.9900813,49.3208309],[12.9901261,49.3207824],[12.9901187,49.3207476],[12.9901561,49.3206703],[12.9901837,49.3206487],[12.9903284,49.3205976],[12.990387,49.3205481],[12.9904262,49.3205497],[12.9904584,49.320578],[12.9904958,49.3206705],[12.9905424,49.3206988],[12.9906141,49.3206924],[12.9907285,49.3206321],[12.9908009,49.3205706],[12.9908245,49.32057],[12.9908729,49.320526],[12.990863,49.3205057],[12.9908429,49.3204977],[12.9907648,49.3204931],[12.9907557,49.3204664],[12.9907497,49.320419],[12.9907151,49.320384],[12.9907225,49.3202379],[12.9908697,49.3201318],[12.9909633,49.32012],[12.9910967,49.3200634],[12.991101,49.3200187],[12.9910561,49.3199987],[12.9909424,49.3199295],[12.9908842,49.319923],[12.9908626,49.319917],[12.9908418,49.3198952],[12.990863,49.3198454],[12.9908764,49.319796],[12.9908987,49.3197688],[12.9908919,49.319752],[12.9908206,49.3197],[12.9908005,49.3196779],[12.9906589,49.3196277],[12.9906444,49.319598],[12.9906879,49.3195311],[12.9906896,49.3194431],[12.9907278,49.3194346],[12.9907578,49.3194408],[12.9907934,49.3194629],[12.9908298,49.3194788],[12.9909424,49.3194912],[12.9910812,49.3194604],[12.9911508,49.3194828],[12.9913393,49.3194227],[12.9914477,49.3194084],[12.9914625,49.3193647],[12.9913969,49.3192611],[12.9914011,49.3192197],[12.9914307,49.3192001],[12.991483,49.3191499],[12.9915261,49.3191449],[12.9915854,49.3191775],[12.991614,49.3191826],[12.9916645,49.3192001],[12.9917898,49.3191628],[12.9918103,49.3191506],[12.9918258,49.3191216],[12.9918612,49.3191099],[12.9919081,49.3191239],[12.9919187,49.319132],[12.9919759,49.3191389],[12.9920172,49.3191465],[12.9920938,49.3191071],[12.9922347,49.3190726],[12.9922464,49.3190558],[12.9921874,49.3190164],[12.9921595,49.3189752],[12.9920952,49.318955],[12.9920575,49.3189126],[12.9920109,49.3188938],[12.9920031,49.3188823],[12.9920041,49.3188551],[12.99205,49.3187409],[12.9920677,49.3187184],[12.9921348,49.3187225],[12.9922545,49.3186445],[12.9922937,49.3186505],[12.9923244,49.3186774],[12.9923247,49.3187159],[12.9923477,49.3187458],[12.9924271,49.318723],[12.9924819,49.3187363],[12.9925119,49.3187502],[12.9925299,49.3187849],[12.9925256,49.3187973],[12.9925359,49.3188293],[12.992586,49.3188533],[12.992591,49.3188915],[12.9927047,49.3189044],[12.9927837,49.318885],[12.9927979,49.3188609],[12.9927495,49.3187483],[12.9927488,49.3186901],[12.9927898,49.3186443],[12.9928374,49.3186061],[12.9928604,49.3185603],[12.9929324,49.3185446],[12.9929705,49.3185237],[12.9929624,49.3184588],[12.9930217,49.3184213],[12.9930309,49.3183805],[12.9930835,49.3182862],[12.9930895,49.3182279],[12.9931029,49.3182173],[12.9931453,49.3182173],[12.9931834,49.3182332],[12.9933773,49.3182714],[12.9933963,49.3182636],[12.9934313,49.3182611],[12.9935058,49.3182728],[12.9935316,49.3182565],[12.9935686,49.3182045],[12.9936089,49.3181803],[12.9936135,49.3181389],[12.9935934,49.3180871],[12.9935881,49.3180783],[12.9935513,49.3180788],[12.9933875,49.3181076],[12.9933331,49.3180903],[12.9932968,49.3180493],[12.9932971,49.3180238],[12.9933165,49.3179817],[12.9933384,49.3179108],[12.9933593,49.3178958],[12.9933907,49.3179023],[12.9934987,49.3179451],[12.9935736,49.3179497],[12.993605,49.3179407],[12.9936318,49.3178951],[12.9936287,49.3177793],[12.9936566,49.3177455],[12.9936855,49.3177448],[12.9937053,49.317725],[12.9937018,49.3177163],[12.9936855,49.3177064],[12.9936675,49.3176562],[12.9937187,49.3176007],[12.993777,49.3175828],[12.9938352,49.317589],[12.9938688,49.3175664],[12.9938808,49.3175485],[12.9939062,49.3175478],[12.9939503,49.3175635],[12.9939839,49.3175655],[12.9940495,49.3175908],[12.9940704,49.3175904],[12.9941071,49.3175503],[12.994106,49.317534],[12.9941473,49.3175066],[12.9941936,49.3174956],[12.9943038,49.3175483],[12.9943228,49.3175508],[12.9943429,49.3175317],[12.9943161,49.3174661],[12.9943172,49.3174224],[12.994314,49.3174035],[12.9943165,49.3173715],[12.9943366,49.3173492],[12.9943737,49.317322],[12.9944291,49.317267],[12.9945241,49.3172198],[12.9945414,49.3172074],[12.9947289,49.3171317],[12.9948072,49.3171183],[12.9948687,49.317134],[12.9949972,49.3171413],[12.9950586,49.3171271],[12.9951353,49.3171211],[12.9952288,49.3171568],[12.9953626,49.3171579],[12.9954089,49.3171713],[12.9955152,49.3171777],[12.9955618,49.3171747],[12.9956172,49.3171871],[12.9956974,49.3171501],[12.9957489,49.3171407],[12.9957814,49.3171211],[12.9958407,49.3170707],[12.9958411,49.3170391],[12.9958647,49.3169901],[12.995899,49.3169639],[12.9958764,49.3169243],[12.9959011,49.31691],[12.9959703,49.3168916],[12.9959848,49.3168707],[12.9959505,49.3168433],[12.9959523,49.3168299],[12.9959904,49.3167977],[12.9960296,49.3167305],[12.9960918,49.3167066],[12.9960907,49.3166974],[12.9960995,49.3166695],[12.9960925,49.3166433],[12.9961002,49.3166235],[12.9961454,49.3165915],[12.9961663,49.3165866],[12.9961754,49.3165749],[12.9961959,49.3165293],[12.9962086,49.3165102],[12.9962146,49.3164914],[12.99621,49.3164711],[12.9961715,49.316452],[12.9961638,49.3164363],[12.9962252,49.3163938],[12.9962916,49.3164048],[12.9963262,49.3163786],[12.9963262,49.3163381],[12.9963467,49.316293],[12.9963735,49.3162874],[12.9964766,49.3162762],[12.9965949,49.3162327],[12.9967658,49.3161758],[12.9968763,49.3161648],[12.9969254,49.3161505],[12.996991,49.3161194],[12.9970938,49.3161309],[12.9971305,49.3161314],[12.9971598,49.3161222],[12.9971672,49.3160987],[12.9971997,49.3160591],[12.9971902,49.3160179],[12.9972135,49.3159574],[12.9972664,49.3159106],[12.9972527,49.3158913],[12.9972315,49.315883],[12.997211,49.3158796],[12.9971588,49.3158768],[12.9971164,49.3158867],[12.997086,49.3158317],[12.9971076,49.3157666],[12.9971263,49.3157521],[12.9971482,49.315747],[12.9971711,49.3156793],[12.9971312,49.3156379],[12.9971464,49.3156087],[12.9972442,49.3156202],[12.9972933,49.3155997],[12.9973431,49.3155974],[12.9974243,49.3155806],[12.9975238,49.3155767],[12.9975443,49.3155617],[12.997569,49.3155573],[12.9976612,49.3155794],[12.9976947,49.3155705],[12.9977205,49.3155389],[12.9977177,49.3155009],[12.9977473,49.315433],[12.9977848,49.3154066],[12.9977802,49.3153661],[12.9977555,49.3153318],[12.9977615,49.315303],[12.9979105,49.3152277],[12.9979186,49.3152072],[12.9978434,49.3151244],[12.9977918,49.3151131],[12.9977597,49.3151016],[12.9977562,49.315071],[12.997813,49.3150606],[12.9978557,49.3150696],[12.9979186,49.3150595],[12.9979956,49.315059],[12.9981015,49.3150385],[12.9981587,49.315077],[12.9983119,49.3150963],[12.9983649,49.3151177],[12.9983864,49.315117],[12.9984041,49.3151177],[12.9984175,49.3150984],[12.9984249,49.3150813],[12.9984761,49.3150588],[12.9984676,49.3150125],[12.9984182,49.3149773],[12.9983907,49.3149444],[12.9983543,49.3149218],[12.9983377,49.3149009],[12.9982939,49.3148843],[12.9982837,49.3148753],[12.9982699,49.3148781],[12.9982551,49.3148652],[12.9982681,49.3148247],[12.9982703,49.3147902],[12.9982865,49.3147637],[12.998338,49.314734],[12.9984217,49.3147317],[12.9984704,49.3146976],[12.9985262,49.3146829],[12.9985619,49.3146813],[12.9985753,49.3146917],[12.9985884,49.3147248],[12.9985976,49.3147359],[12.9986202,49.3147487],[12.9986459,49.314757],[12.9987416,49.3147342],[12.9987688,49.3147073],[12.998761,49.3146854],[12.9987579,49.3146484],[12.9987833,49.3146376],[12.9988175,49.3146304],[12.9988468,49.3146422],[12.9988684,49.3146355],[12.998904,49.3145821],[12.99894,49.3145625],[12.9989457,49.3145404],[12.9989114,49.3145029],[12.9990064,49.3144746],[12.9990869,49.3145153],[12.9991247,49.314525],[12.999166,49.3145103],[12.9992176,49.3145126],[12.9992613,49.3145068],[12.9992882,49.3145089],[12.9993076,49.3145239],[12.999338,49.3145731],[12.9993355,49.314604],[12.9993482,49.3146426],[12.9993567,49.3146495],[12.9993535,49.3147013],[12.9993697,49.3147407],[12.9994068,49.3147844],[12.9995099,49.3148123],[12.9995749,49.3147554],[12.9996289,49.3147515],[12.999673,49.3147025],[12.9997175,49.3146935],[12.9997807,49.3146362],[12.9997878,49.3146212],[12.9997751,49.3145987],[12.9997818,49.3145766],[12.9997874,49.314563],[12.9998136,49.3145317],[12.9998549,49.3145147],[12.9999043,49.3144889],[12.999953,49.3144797],[12.9999792,49.3144686],[12.9999156,49.3144279],[12.999893,49.314423],[12.9998746,49.314392],[12.9998842,49.3143743],[12.9999244,49.3143729],[12.9999802,49.3143812],[13.000018,49.3143835],[13.0000614,49.314371],[13.000077,49.3143367],[13.0001197,49.314296],[13.0001204,49.3142688],[13.0001094,49.3142592],[13.0000254,49.3142341],[12.9999859,49.3141917],[12.9999767,49.3141655],[13.000024,49.3141208],[13.0000741,49.3141079],[13.0001486,49.3141176],[13.0001673,49.3141056],[13.0001698,49.314066],[13.0001846,49.3140472],[13.0002327,49.3140154],[13.0002397,49.3140048],[13.0002842,49.3139887],[13.0003577,49.3140046],[13.0003841,49.3140304],[13.000465,49.3140932],[13.0004163,49.314142],[13.0003707,49.3141659],[13.0003795,49.3142131],[13.0004152,49.3142272],[13.0004646,49.3142654],[13.0005134,49.314276],[13.0005483,49.314308],[13.0005709,49.3143098],[13.0006309,49.3142808],[13.0006472,49.3142463],[13.0006712,49.3142407],[13.0008583,49.314267],[13.0009028,49.314261],[13.0009349,49.314243],[13.0009229,49.3141655],[13.0009907,49.314119],[13.0010239,49.3141155],[13.0011743,49.3141857],[13.0012619,49.3142071],[13.001281,49.3141998],[13.0013113,49.3141618],[13.0012637,49.3141243],[13.0012464,49.314078],[13.0011948,49.3140396],[13.0012005,49.3139991],[13.0012336,49.3139632],[13.0012953,49.3139619],[13.0013564,49.3139552],[13.0014342,49.313965],[13.0015713,49.3140199],[13.0016203,49.3139626],[13.0016934,49.3139278],[13.0016952,49.3138939],[13.0016652,49.3138585],[13.0016519,49.3138122],[13.0016611,49.3137859],[13.0017186,49.3137338],[13.0017424,49.313731],[13.0017595,49.3137402],[13.0017926,49.3137487],[13.0018609,49.3137208],[13.0019101,49.3137252],[13.0019584,49.313719],[13.0019826,49.3137115],[13.0020385,49.313677],[13.0020184,49.3136638],[13.0019368,49.3136551],[13.0019226,49.3136448],[13.0019175,49.3136019],[13.0019846,49.3135647],[13.0020123,49.3134952],[13.0019929,49.3134336],[13.0019954,49.31342],[13.0020322,49.3133873],[13.0020156,49.313377],[13.0019732,49.3133553],[13.001928,49.3133239],[13.0019117,49.3132498],[13.0019252,49.3132189],[13.0019496,49.3132109],[13.002004,49.3132294],[13.0020569,49.3132319],[13.0021539,49.313224],[13.0022343,49.3130735],[13.0022681,49.3130363],[13.0023072,49.3129644],[13.0024004,49.3129004],[13.0024653,49.3128749],[13.0024892,49.3128266],[13.0025246,49.3128079],[13.0025613,49.3127689],[13.0025758,49.3127312],[13.0026164,49.3126789],[13.0026272,49.3126493],[13.0026784,49.3126285],[13.0027132,49.3125895],[13.0028116,49.3125333],[13.0028828,49.3125443],[13.0029325,49.3125292],[13.0029998,49.3125536],[13.0031064,49.3124778],[13.0032132,49.3124664],[13.0033441,49.3124334],[13.0034076,49.3124308],[13.0034632,49.312444],[13.0035233,49.3124324],[13.0036225,49.3123914],[13.0036844,49.312385],[13.0037259,49.3123614],[13.0037322,49.3123272],[13.0037083,49.3122928],[13.0037455,49.3122755],[13.0037925,49.3122316],[13.0038762,49.312217],[13.0039344,49.3122213],[13.0039848,49.3121681],[13.004042,49.312157],[13.0040669,49.3121228],[13.0041167,49.3120917],[13.0041856,49.3120665],[13.0041586,49.3119788],[13.0041707,49.3119371],[13.0041761,49.3119116],[13.0042087,49.3118719],[13.0041932,49.3118033],[13.0041833,49.3117753],[13.0041565,49.3116823],[13.0041679,49.3116721],[13.0041865,49.3116652],[13.0041992,49.3116394],[13.0042039,49.3116172],[13.0042785,49.3115919],[13.004332,49.3115114],[13.0043819,49.3114854],[13.0043647,49.3114525],[13.0043974,49.3114346],[13.0043894,49.3114001],[13.0044318,49.3113949],[13.0044434,49.3113439],[13.0044673,49.3113014],[13.0045219,49.3112732],[13.0045183,49.3112452],[13.0045549,49.3111818],[13.0045466,49.3111353],[13.0045746,49.3111122],[13.0045718,49.3110808],[13.0046106,49.3110336],[13.0046699,49.3110267],[13.0047492,49.3110439],[13.0048338,49.3110399],[13.0048662,49.3110533],[13.0048853,49.3110668],[13.0049341,49.3110762],[13.0049366,49.3110511],[13.0049291,49.3110164],[13.004928,49.3109904],[13.0048947,49.3109235],[13.0048701,49.310908],[13.0048548,49.3108487],[13.0048279,49.3107961],[13.0048379,49.310761],[13.0047933,49.3107159],[13.0047811,49.310694],[13.0047736,49.3106689],[13.0047423,49.3106233],[13.0047323,49.3105836],[13.0047046,49.3105398],[13.004699,49.3104901],[13.0046813,49.3104619],[13.0047459,49.3103996],[13.0047595,49.310375],[13.0047248,49.3103728],[13.0047592,49.3102593],[13.0047803,49.3102257],[13.004788,49.3101945],[13.004806,49.3101731],[13.0048138,49.3101195],[13.0047963,49.3100849],[13.0048545,49.3100524],[13.004905,49.3100446],[13.0049433,49.3100049],[13.0049463,49.3099335],[13.0049568,49.3098919],[13.0048953,49.3098807],[13.0048146,49.3098431],[13.0047861,49.3098008],[13.0047764,49.3097605],[13.0048216,49.3097179],[13.004918,49.3096998],[13.0049871,49.3096412],[13.0049527,49.3095785],[13.0049549,49.3095604],[13.0049286,49.3095458],[13.0049166,49.3095317],[13.0049524,49.3095008],[13.0049995,49.3094887],[13.0050411,49.3094448],[13.0050913,49.3094439],[13.005254,49.3094965],[13.0052765,49.3094907],[13.0053192,49.3094453],[13.0052496,49.3094231],[13.0052116,49.3093978],[13.005211,49.3093575],[13.0052285,49.3093307],[13.0053424,49.3092884],[13.0052421,49.3092037],[13.0051517,49.3091711],[13.0050123,49.3091254],[13.0047395,49.3091171],[13.0047281,49.3090634],[13.0047403,49.3090269],[13.0048354,49.3089647],[13.0049818,49.3089037],[13.0050084,49.3087842],[13.0050455,49.3087399],[13.0052097,49.3086168],[13.0052501,49.3085593],[13.0053466,49.3085063],[13.0053754,49.3084664],[13.0054129,49.3084375],[13.0054425,49.3083994],[13.005556,49.308056],[13.0056328,49.3079019],[13.0055875,49.3076457],[13.005599,49.3074711],[13.0055652,49.307419],[13.005504,49.3073248],[13.0057304,49.3071919],[13.0058269,49.307168],[13.005912,49.3071532],[13.0064748,49.3070555],[13.0066044,49.3070569],[13.0067614,49.3070578],[13.0070571,49.3070596],[13.0071865,49.3070904],[13.0072949,49.3071463],[13.0076965,49.306784],[13.007734,49.3066302],[13.0077649,49.3065031],[13.0077503,49.3063181],[13.0077385,49.3061683],[13.0077268,49.3061591],[13.0074017,49.3059204],[13.0077057,49.3058959],[13.0087822,49.3056996],[13.0088369,49.305666],[13.0110342,49.3052821],[13.0116234,49.3052171],[13.0118198,49.3051954],[13.0118723,49.3051928],[13.0133112,49.3051198],[13.014176,49.3050953],[13.0155656,49.3050268],[13.0159858,49.3050099],[13.0165432,49.30497],[13.0167397,49.3049462],[13.0171935,49.3048915],[13.0181451,49.3048314],[13.018943,49.3047958],[13.0197359,49.3047604],[13.0201111,49.3047655],[13.0209654,49.3048433],[13.0217432,49.3048863],[13.0223405,49.3049831],[13.0225598,49.3049892],[13.0241177,49.3048759],[13.0243514,49.3048331],[13.0246746,49.3047736],[13.0256625,49.3046161],[13.0275128,49.3044505],[13.0280763,49.3044067],[13.0285312,49.3043712],[13.0291143,49.3043259],[13.0291769,49.3038031],[13.0293019,49.3027438],[13.0294047,49.3019089],[13.0295003,49.3011915],[13.0295174,49.3010633],[13.0295542,49.3007784],[13.0296431,49.3000864],[13.0296835,49.2997623],[13.0298406,49.2990911],[13.0298811,49.2989828],[13.0299194,49.2988802],[13.0299397,49.2985713],[13.0299404,49.2985599],[13.0299455,49.2984838],[13.0299947,49.2977656],[13.029996,49.2964352],[13.0300234,49.2962673],[13.030076,49.2959441],[13.0300973,49.2958141],[13.0302269,49.2950176],[13.03025,49.2945086],[13.0302583,49.2941806],[13.0303293,49.2936686],[13.0303892,49.2930004],[13.0304962,49.2917992],[13.0304134,49.2897233],[13.0303982,49.2883041],[13.0304184,49.2875859],[13.0296985,49.2863289],[13.0289851,49.2852408],[13.0282911,49.2840856],[13.0279128,49.2832237],[13.0276398,49.2827062],[13.0274026,49.2822036],[13.027035,49.2818092],[13.026789,49.2811423],[13.0255378,49.2787613],[13.0261919,49.277533],[13.0268039,49.276455],[13.0270759,49.2759772],[13.0274623,49.2752041],[13.0284039,49.2732715],[13.029018,49.2721267],[13.0299757,49.270394],[13.0302507,49.2699081],[13.0307477,49.2691525],[13.0319414,49.2673922],[13.0323575,49.2667848],[13.0330638,49.2655651],[13.0339847,49.263927],[13.035249,49.2644045],[13.0360071,49.264618],[13.0364456,49.264597],[13.0372394,49.2646138],[13.0384854,49.264716],[13.0402422,49.264529],[13.0408241,49.2645591],[13.0420211,49.2647962],[13.042169,49.2648045],[13.0425726,49.2648881],[13.042844,49.2649429],[13.0430996,49.2649779],[13.0431205,49.264937],[13.0432036,49.2648555],[13.0432058,49.2648459],[13.0432759,49.264811],[13.0433222,49.2647959],[13.0433586,49.2647741],[13.0433666,49.2647661],[13.0434741,49.2647077],[13.043507,49.2646945],[13.0435102,49.2646361],[13.0435695,49.2645941],[13.043585,49.2645763],[13.0436266,49.264549],[13.0436843,49.2645345],[13.0437319,49.2645107],[13.0437433,49.2644795],[13.0437947,49.2644383],[13.0438371,49.2643762],[13.0438394,49.2643205],[13.043893,49.2642299],[13.0439396,49.2642055],[13.0439675,49.2641749],[13.044009,49.2641417],[13.0440531,49.2641088],[13.0442228,49.2640163],[13.0447932,49.2638721],[13.0450235,49.2638551],[13.0455603,49.2638282],[13.0462656,49.2637496],[13.0470948,49.2636577],[13.0471224,49.2636546],[13.0472515,49.2636464],[13.048184,49.2639219],[13.0491887,49.2643342],[13.0493695,49.2644373],[13.0497341,49.2647912],[13.049878,49.2648686],[13.0501594,49.2649009],[13.0511128,49.2649089],[13.0518008,49.2648531],[13.0520819,49.2647446],[13.0524795,49.2644393],[13.0528304,49.2643556],[13.0533408,49.2642749],[13.0538579,49.2642357],[13.054426,49.2641025],[13.0549784,49.2640317],[13.0553222,49.2639231],[13.0556736,49.2637203],[13.0557272,49.2636892],[13.0558779,49.2635988],[13.0559601,49.2635204],[13.0561752,49.2633155],[13.0563245,49.2631476],[13.0564278,49.2630003],[13.0566411,49.2623915],[13.0566617,49.2623386],[13.056855,49.2618396],[13.0571515,49.2613487],[13.0571679,49.2613292],[13.0575233,49.2609045],[13.0580589,49.2603704],[13.0580859,49.2603454],[13.0582666,49.2602523],[13.0582824,49.2602229],[13.0582124,49.2602385],[13.0581985,49.2602381],[13.0581755,49.2602148],[13.0581921,49.2601876],[13.0581667,49.2601688],[13.0581722,49.2601506],[13.0582045,49.2601116],[13.0581905,49.2600886],[13.0581226,49.2600177],[13.0580771,49.2599893],[13.0580668,49.2599648],[13.0581265,49.259899],[13.0581649,49.2598289],[13.0581761,49.2597977],[13.0581772,49.2597613],[13.0582137,49.2597205],[13.0581967,49.259672],[13.0581064,49.259582],[13.0581125,49.2595654],[13.05812,49.2595634],[13.0581103,49.2594983],[13.0580805,49.259497],[13.0580727,49.2595007],[13.0580724,49.2595434],[13.0580481,49.259549],[13.0580203,49.2595363],[13.0579952,49.2595107],[13.0579044,49.2594667],[13.0578907,49.2594008],[13.0578522,49.2593836],[13.0577923,49.2593721],[13.0577659,49.2593581],[13.0577503,49.2593279],[13.0576594,49.2592913],[13.0576424,49.2592657],[13.0576823,49.2591766],[13.0576722,49.2591293],[13.0576901,49.2591062],[13.0577126,49.2590407],[13.0577344,49.2590184],[13.0576954,49.2589762],[13.0576419,49.258948],[13.0576204,49.258906],[13.0576736,49.258775],[13.0577157,49.2587577],[13.0577196,49.2587383],[13.0577079,49.2586855],[13.0576641,49.2586457],[13.0576522,49.2586203],[13.0576533,49.2586081],[13.0576717,49.2585946],[13.0576614,49.258581],[13.0575995,49.2585479],[13.0575401,49.258551],[13.0575332,49.2585486],[13.0575014,49.2585266],[13.057502,49.2585015],[13.0575399,49.2584509],[13.0575351,49.2583995],[13.0575382,49.2583862],[13.0575627,49.2583535],[13.0575755,49.2583476],[13.0575697,49.2583291],[13.0575438,49.2583107],[13.0575067,49.2583018],[13.0574936,49.2582973],[13.0574797,49.2582878],[13.0574234,49.2582769],[13.0573796,49.2582478],[13.0573401,49.2582176],[13.0572556,49.2581792],[13.0572531,49.2581736],[13.0572186,49.2581568],[13.0571996,49.2581563],[13.0571352,49.2581679],[13.0571026,49.2582005],[13.0570848,49.2582038],[13.0570182,49.2581674],[13.0569343,49.2580765],[13.0569301,49.2580685],[13.0568883,49.2580377],[13.056887,49.2580068],[13.0569672,49.2577498],[13.0569658,49.2576649],[13.0569848,49.2576516],[13.0570266,49.2576318],[13.0570321,49.2575778],[13.0570104,49.2574574],[13.057019,49.2574457],[13.0570321,49.2574435],[13.0570918,49.257445],[13.0571079,49.2574475],[13.0571194,49.2574514],[13.0571366,49.2574321],[13.0571372,49.2573622],[13.0571305,49.2573373],[13.0571082,49.2573086],[13.0570533,49.2572506],[13.0570391,49.2572104],[13.0570168,49.2571836],[13.0569625,49.2571584],[13.0569377,49.2571276],[13.0569201,49.2570847],[13.0569335,49.2570285],[13.0569251,49.2570145],[13.0568769,49.2569563],[13.0568828,49.2569148],[13.0569009,49.2568636],[13.056892,49.2568281],[13.0568599,49.2568257],[13.0568301,49.2568439],[13.0568209,49.256865],[13.0568075,49.2568692],[13.0567928,49.2568699],[13.0567786,49.2568697],[13.0567248,49.2568197],[13.0567081,49.2567908],[13.0567181,49.2566524],[13.056739,49.2566338],[13.0567671,49.2565753],[13.0568351,49.2565154],[13.0568722,49.2564711],[13.056904,49.2564492],[13.0569257,49.2564403],[13.0570121,49.2563708],[13.0570489,49.2563525],[13.0571093,49.2562932],[13.0571241,49.2562346],[13.0571854,49.2562126],[13.0572531,49.2561939],[13.057235,49.2561251],[13.0572584,49.2560833],[13.0573172,49.2560518],[13.0573554,49.2560398],[13.0574212,49.2560142],[13.057432,49.2560075],[13.0574443,49.2559856],[13.0574016,49.2559345],[13.0574415,49.2557757],[13.0574529,49.2557643],[13.057483,49.2557574],[13.0574997,49.2557626],[13.0575351,49.2557852],[13.0575337,49.2557896],[13.0575524,49.2557939],[13.0575962,49.2557848],[13.057619,49.2557594],[13.0576081,49.2557225],[13.0576157,49.2556904],[13.0576062,49.2556144],[13.0576148,49.2555566],[13.0575881,49.2555229],[13.0576171,49.2554276],[13.0576485,49.2554018],[13.0576753,49.2553705],[13.0576864,49.2553403],[13.0576784,49.2552954],[13.0576683,49.2552536],[13.0576714,49.2552216],[13.0577104,49.2552034],[13.0577238,49.2551841],[13.0577238,49.2551777],[13.057675,49.2550922],[13.057658,49.255076],[13.0576563,49.2550671],[13.0576416,49.2550278],[13.0576605,49.2549667],[13.0576837,49.254916],[13.0577034,49.2549022],[13.0577979,49.2548969],[13.057818,49.2548803],[13.0578216,49.2548372],[13.0578124,49.2548063],[13.0578018,49.2547903],[13.0577581,49.2547507],[13.0577681,49.2547339],[13.0577982,49.2547307],[13.0578509,49.2547412],[13.057872,49.2547432],[13.0578949,49.2547396],[13.0579102,49.254733],[13.0579462,49.2547241],[13.0579581,49.2547112],[13.0580094,49.2546732],[13.058013,49.2546464],[13.0580041,49.2546177],[13.0579779,49.2545931],[13.0579214,49.2545695],[13.0579002,49.2545573],[13.0578692,49.2545115],[13.0578495,49.2544236],[13.057833,49.2543865],[13.05783,49.254368],[13.0578065,49.2543409],[13.0577717,49.2542807],[13.0577611,49.2542507],[13.0577675,49.2542126],[13.0577477,49.2542052],[13.0577586,49.2541786],[13.0577767,49.2541695],[13.0577943,49.2541488],[13.0577622,49.2541041],[13.0577497,49.2540213],[13.0577854,49.2539505],[13.0577597,49.2539116],[13.0576307,49.2538907],[13.0576176,49.2537483],[13.0576979,49.2536543],[13.0577188,49.2536392],[13.0577204,49.2535848],[13.0577695,49.2535328],[13.0577636,49.2534929],[13.0577255,49.2534267],[13.0577455,49.2533185],[13.0579241,49.2532088],[13.0579294,49.2531803],[13.0578553,49.2531342],[13.0578319,49.2531095],[13.0578325,49.2530509],[13.0578879,49.2529251],[13.0578623,49.2528529],[13.0579066,49.2528223],[13.057957,49.2528216],[13.0580011,49.2528318],[13.0580518,49.2528829],[13.0580863,49.2528961],[13.0582287,49.252888],[13.0582438,49.2528927],[13.0582817,49.2528841],[13.0583009,49.2528663],[13.0583048,49.2528589],[13.0583034,49.252839],[13.0582661,49.2528041],[13.0582474,49.2528047],[13.0582633,49.2527826],[13.0582638,49.252777],[13.0583296,49.252719],[13.0583488,49.2527172],[13.0583224,49.2526608],[13.0583229,49.2526144],[13.0583093,49.2525704],[13.0582388,49.2525094],[13.0581897,49.2524867],[13.0581384,49.2524833],[13.0581223,49.252488],[13.0581028,49.2524731],[13.0580908,49.2524289],[13.0580922,49.2524125],[13.0580975,49.2524014],[13.0581161,49.2523827],[13.0581487,49.2523519],[13.0582039,49.2522775],[13.058212,49.2522481],[13.0582084,49.2521615],[13.058214,49.2521113],[13.0582716,49.2520738],[13.05847,49.2520762],[13.0584831,49.2520829],[13.0584929,49.2520796],[13.0584962,49.2520716],[13.0584943,49.2520644],[13.0585107,49.2520151],[13.0586202,49.2519139],[13.0586793,49.2518341],[13.058657,49.2517922],[13.0586473,49.2517888],[13.0586384,49.251766],[13.0586278,49.2517571],[13.0586439,49.2517046],[13.0586665,49.2516906],[13.058788,49.251666],[13.0588418,49.251666],[13.058871,49.2516469],[13.0588775,49.2516245],[13.0588683,49.2516038],[13.0588894,49.251582],[13.0589209,49.2515725],[13.0589602,49.2515443],[13.0589633,49.2515227],[13.0589365,49.2514917],[13.0589315,49.2514747],[13.0589666,49.2514497],[13.0590009,49.2514561],[13.0590101,49.2514397],[13.0590137,49.2513872],[13.0590444,49.2513648],[13.0590564,49.251323],[13.0590739,49.2513117],[13.0591018,49.251323],[13.0591288,49.2513226],[13.059281,49.2512777],[13.0593063,49.2512904],[13.0593116,49.251336],[13.0593345,49.2513437],[13.0593846,49.2513215],[13.0593952,49.2512968],[13.0593743,49.2512345],[13.0594186,49.2511345],[13.0594342,49.2511236],[13.059483,49.2511118],[13.0595231,49.251111],[13.0595563,49.2511205],[13.0595596,49.2511267],[13.0595775,49.25114],[13.0595867,49.2511412],[13.0596474,49.251111],[13.0596672,49.2511063],[13.0596934,49.2510959],[13.0597235,49.2510923],[13.0597505,49.251095],[13.05977,49.2511125],[13.0597931,49.2511163],[13.059814,49.2511078],[13.0598213,49.2510996],[13.0598054,49.2510859],[13.0597887,49.251025],[13.059789,49.2510004],[13.0598093,49.2509746],[13.0598363,49.2509484],[13.0598408,49.2509339],[13.0598366,49.250925],[13.0598202,49.2509199],[13.0598054,49.250921],[13.0597121,49.250939],[13.0597001,49.250929],[13.0597115,49.2509197],[13.0597474,49.2508817],[13.059797,49.2508076],[13.0598533,49.2507709],[13.0598687,49.2507673],[13.0599216,49.2507796],[13.0599353,49.2507743],[13.0599383,49.2507562],[13.0599127,49.2507351],[13.0598851,49.2507221],[13.059877,49.2506976],[13.059882,49.2506903],[13.0598988,49.2506743],[13.0599464,49.2506572],[13.0600746,49.2505735],[13.0600958,49.250539],[13.0601679,49.2504489],[13.0601966,49.2504184],[13.0601838,49.2503671],[13.0602162,49.2503378],[13.0602808,49.2502945],[13.0602892,49.2502941],[13.0603382,49.2502568],[13.0603886,49.2502234],[13.0604076,49.2502037],[13.0604876,49.2501764],[13.0605349,49.2501721],[13.0605812,49.2501561],[13.0606071,49.2501552],[13.0606255,49.2501761],[13.0606511,49.2501748],[13.0606695,49.2501706],[13.0607133,49.2501062],[13.060747,49.2500939],[13.0607885,49.250097],[13.0608066,49.250117],[13.0608092,49.2501317],[13.060825,49.2501259],[13.0608791,49.2500875],[13.060983,49.2500375],[13.0610343,49.2499573],[13.0610351,49.2499453],[13.061048,49.24994],[13.0610909,49.2499571],[13.0611904,49.2499756],[13.0612057,49.2499762],[13.0612483,49.2499653],[13.0612695,49.2499413],[13.0612728,49.2499141],[13.0612848,49.2499112],[13.0613283,49.2499222],[13.0613648,49.2499271],[13.0614345,49.2499218],[13.0614587,49.249936],[13.0614687,49.2499509],[13.0614657,49.2499587],[13.061491,49.2499631],[13.0615674,49.2499565],[13.0615827,49.2499471],[13.0616181,49.2499325],[13.0616803,49.2499289],[13.06177,49.2499358],[13.061782,49.2499312],[13.061836,49.2499336],[13.0618934,49.2499493],[13.0619085,49.2499558],[13.0619539,49.2499511],[13.0619625,49.2499376],[13.062008,49.2499203],[13.062035,49.2499294],[13.0620707,49.2499602],[13.0621038,49.2499665],[13.0621314,49.2499565],[13.0621746,49.2499516],[13.062195,49.2499747],[13.0622154,49.2499659],[13.0626741,49.2498221],[13.0627169,49.2498087],[13.0626982,49.2497461],[13.0627467,49.2497142],[13.0628055,49.2496971],[13.0629175,49.2496848],[13.0629627,49.249699],[13.063036,49.2496888],[13.0630808,49.2496686],[13.0631293,49.2496291],[13.0631441,49.2496278],[13.0631569,49.2496522],[13.0631463,49.2496826],[13.063131,49.2497037],[13.0631223,49.2497051],[13.0631165,49.2497101],[13.0631892,49.2497606],[13.0632257,49.2497697],[13.0632569,49.2497617],[13.0633528,49.2497779],[13.0634439,49.2497994],[13.0634606,49.2497899],[13.063484,49.2497714],[13.0635217,49.2497639],[13.0635604,49.2497424],[13.0635936,49.249685],[13.0636432,49.2496755],[13.0636585,49.2496742],[13.0636702,49.2496771],[13.0637318,49.2497377],[13.0637967,49.2497335],[13.0638106,49.249721],[13.0637956,49.2496877],[13.0637928,49.2496449],[13.0638207,49.2496362],[13.0639018,49.2496326],[13.0639157,49.2496233],[13.0639199,49.2495922],[13.0639944,49.2495845],[13.0641926,49.2495418],[13.064548,49.2496904],[13.0647869,49.2498637],[13.0652336,49.249899],[13.065351,49.2500155],[13.0655985,49.2498951],[13.0656038,49.2498772],[13.0656998,49.2498951],[13.0657148,49.2499062],[13.0657357,49.249933],[13.0657268,49.249953],[13.0657291,49.2499592],[13.0657472,49.2499648],[13.0658363,49.2499535],[13.0658837,49.2499844],[13.0659308,49.2500012],[13.0659843,49.2500103],[13.0660331,49.2499304],[13.0660172,49.249912],[13.0660261,49.2499029],[13.0660883,49.2498849],[13.0661571,49.24989],[13.0661685,49.2498838],[13.066122,49.2498422],[13.0660977,49.2498389],[13.0660894,49.2498285],[13.0660944,49.2498087],[13.0661317,49.2497862],[13.0662301,49.2497807],[13.0663081,49.2497309],[13.0663109,49.2497205],[13.0662791,49.2496974],[13.0662585,49.2496952],[13.0662242,49.2496754],[13.0662351,49.2496537],[13.0663156,49.2496396],[13.0664363,49.2495868],[13.0665372,49.2495961],[13.0666155,49.2495877],[13.0666361,49.2495808],[13.0667038,49.2495939],[13.0667197,49.2496054],[13.0667192,49.2496574],[13.0667069,49.2496801],[13.0667203,49.2496919],[13.0667966,49.2496959],[13.0668315,49.2497143],[13.066859,49.2497423],[13.0668822,49.2497765],[13.0669095,49.2497931],[13.066983,49.2498014],[13.0670165,49.2498018],[13.0670296,49.2497907],[13.0670315,49.2497565],[13.0670588,49.2497416],[13.0670887,49.2497396],[13.0671227,49.2497423],[13.0671709,49.2497532],[13.067201,49.2497791],[13.0672104,49.2497753],[13.0672355,49.2497471],[13.0672829,49.2497316],[13.0673905,49.2497318],[13.0674381,49.2497489],[13.0675075,49.2497458],[13.0675317,49.2497627],[13.0675471,49.2497909],[13.0676098,49.2497829],[13.0676217,49.2497747],[13.0676502,49.2497165],[13.0676934,49.2496778],[13.0677187,49.2496605],[13.0677329,49.2496632],[13.0677611,49.2496885],[13.0677898,49.2496783],[13.0678363,49.2496339],[13.0678433,49.249625],[13.0678703,49.2495402],[13.0678631,49.2494848],[13.0678709,49.2494769],[13.0679219,49.2494524],[13.0679266,49.2494285],[13.0679149,49.2494114],[13.0678854,49.2493971],[13.0678661,49.2493654],[13.0678868,49.249331],[13.0678795,49.2492956],[13.0678901,49.2492736],[13.0679096,49.2492679],[13.0679706,49.2492699],[13.068011,49.2492585],[13.0680216,49.2492517],[13.0680172,49.2492403],[13.0678976,49.2492117],[13.0678862,49.2491822],[13.0678926,49.249171],[13.0679049,49.249157],[13.0679729,49.2491169],[13.0679695,49.2490988],[13.0679386,49.2490766],[13.0679272,49.2490713],[13.067909,49.2490553],[13.0679038,49.2490238],[13.0679325,49.2489762],[13.0679274,49.2489565],[13.0679001,49.2489267],[13.0678748,49.2489045],[13.0678553,49.2488748],[13.0678463,49.2488235],[13.0678486,49.2487964],[13.0678346,49.2487346],[13.0677979,49.2486871],[13.0677973,49.2486751],[13.0678071,49.248662],[13.0678633,49.2486371],[13.0679146,49.2485736],[13.0680261,49.2485714],[13.0680551,49.2485827],[13.0680601,49.2485891],[13.0680949,49.2485951],[13.0681133,49.2485894],[13.0681596,49.2485479],[13.0681899,49.2484075],[13.0681657,49.2483502],[13.0681746,49.2483428],[13.0682529,49.2483258],[13.0682724,49.2482742],[13.0682228,49.2482312],[13.0682228,49.2482134],[13.0682724,49.2482081],[13.0682755,49.2481669],[13.068198,49.2481141],[13.0681306,49.2480874],[13.068113,49.2480832],[13.0681206,49.2480615],[13.0681415,49.2480544],[13.0681883,49.2480479],[13.0681883,49.248033],[13.0681774,49.2480148],[13.0681013,49.2479709],[13.0680927,49.2479591],[13.0680801,49.2478787],[13.0680921,49.2478316],[13.0680893,49.2478001],[13.0681125,49.2477641],[13.0680657,49.2477332],[13.0680598,49.2477212],[13.0680581,49.2476895],[13.0680997,49.247643],[13.068101,49.247616],[13.0680946,49.2475813],[13.0681155,49.2475678],[13.0681403,49.2475576],[13.0681938,49.2475491],[13.0682248,49.2475329],[13.0682089,49.2474741],[13.0682198,49.2474618],[13.0682872,49.2474319],[13.068302,49.2474329],[13.0683507,49.2474512],[13.06836,49.2474461],[13.0683661,49.2474436],[13.068392,49.2474003],[13.0684212,49.2473796],[13.0684446,49.2473454],[13.0686425,49.2472693],[13.0686656,49.2472444],[13.0686846,49.2472331],[13.0687857,49.247202],[13.0688242,49.2471658],[13.0689159,49.2471323],[13.0689716,49.2470936],[13.0690909,49.2470708],[13.0691516,49.2470654],[13.0692051,49.2470507],[13.0692408,49.2470128],[13.0693018,49.2469946],[13.0693244,49.2469921],[13.0693542,49.2470021],[13.0693732,49.247007],[13.0694007,49.2470001],[13.0694272,49.2469608],[13.06944,49.246953],[13.0694662,49.2469541],[13.0694793,49.2469633],[13.0694963,49.2469997],[13.0694966,49.2470541],[13.069615,49.2471109],[13.0696839,49.2471493],[13.0697833,49.247168],[13.0698151,49.2471704],[13.0698856,49.2471642],[13.0700863,49.2471392],[13.0701322,49.2471358],[13.0701495,49.2471389],[13.0701988,49.2471331],[13.0702813,49.2471149],[13.0703131,49.2471012],[13.0704078,49.2470212],[13.07047,49.2470061],[13.0705279,49.2470034],[13.0705747,49.247005],[13.0706795,49.2469784],[13.0707411,49.2469581],[13.0707996,49.2469446],[13.070837,49.2469093],[13.0708746,49.246898],[13.0709671,49.2469051],[13.0711488,49.2468975],[13.0712458,49.2468733],[13.0713124,49.2468429],[13.0714668,49.246826],[13.0715086,49.24683],[13.0715587,49.2468189],[13.0716013,49.2467812],[13.0716797,49.2467689],[13.0717022,49.2467534],[13.0717607,49.2467341],[13.0718496,49.2467307],[13.071926,49.246733],[13.0719929,49.2467532],[13.072026,49.2467514],[13.0720389,49.2467472],[13.072111,49.2467541],[13.0721439,49.2467532],[13.0722434,49.2467254],[13.0722459,49.2467108],[13.0722297,49.2466712],[13.0722509,49.2466426],[13.072264,49.2466379],[13.072398,49.2466295],[13.0724543,49.246639],[13.0725014,49.2466341],[13.0725377,49.2466346],[13.0725672,49.2466374],[13.0726491,49.2465535],[13.0726452,49.2465249],[13.0726054,49.2464693],[13.0726068,49.2464585],[13.0726266,49.2464436],[13.0726597,49.2464371],[13.0726854,49.2464503],[13.0726962,49.246452],[13.0727224,49.246434],[13.0727285,49.2464003],[13.0727703,49.2463568],[13.0729049,49.2463508],[13.0729713,49.2463696],[13.0730401,49.2463752],[13.0730568,49.246375],[13.0730808,49.2463818],[13.0731262,49.2464023],[13.0731755,49.246412],[13.0732452,49.2464456],[13.0732655,49.2464514],[13.0734469,49.2464478],[13.0735205,49.2464471],[13.0735698,49.2464325],[13.073625,49.2464269],[13.0737019,49.2464347],[13.0737465,49.2464478],[13.0739045,49.2465338],[13.0740243,49.2465842],[13.0741782,49.246625],[13.0742339,49.2466261],[13.0743824,49.2466641],[13.0745011,49.2467017],[13.0745415,49.2467098],[13.0746009,49.2467167],[13.0746157,49.2467232],[13.07467,49.2467923],[13.0746616,49.2468425],[13.0747087,49.2469109],[13.0747539,49.2469264],[13.0747901,49.2469244],[13.0748514,49.2469],[13.074942,49.2468986],[13.0749799,49.2469044],[13.0750186,49.2468929],[13.0750481,49.2468964],[13.0751317,49.2469182],[13.0751724,49.2469211],[13.0752056,49.2469164],[13.0752393,49.246918],[13.0752744,49.24693],[13.0753427,49.2470032],[13.0754556,49.2470497],[13.0754765,49.2470494],[13.0754887,49.2470543],[13.0755015,49.2470707],[13.0755177,49.2471032],[13.075506,49.2471438],[13.0755385,49.24715],[13.0755924,49.2471511],[13.0756233,49.2471638],[13.0756406,49.2471809],[13.0757222,49.2471875],[13.075749,49.247176],[13.075793,49.2471725],[13.0758635,49.247172],[13.0759733,49.2471573],[13.0760157,49.2471363],[13.0760594,49.2471231],[13.0760954,49.2471165],[13.0762132,49.2470739],[13.0762247,49.2470457],[13.0762266,49.247035],[13.0762425,49.2470254],[13.076323,49.2469961],[13.0763576,49.246987],[13.076405,49.2469819],[13.0764253,49.2469682],[13.0764693,49.2469606],[13.0765674,49.2469497],[13.0765786,49.2469424],[13.0765978,49.2469182],[13.0766736,49.2468917],[13.0767385,49.2468367],[13.0767597,49.2467931],[13.0768113,49.2467691],[13.0768737,49.2467638],[13.076899,49.2467654],[13.0769419,49.246762],[13.0769768,49.2467554],[13.0770033,49.2467481],[13.0770395,49.2467518],[13.0771406,49.2467756],[13.077173,49.2467807],[13.0771897,49.246778],[13.0772086,49.2467822],[13.0772371,49.2467951],[13.0772549,49.2467991],[13.0773703,49.2468],[13.0774045,49.2468062],[13.0774173,49.2468096],[13.0774809,49.2468042],[13.0775394,49.2467931],[13.0776032,49.2468011],[13.0776498,49.2468198],[13.0776648,49.2468214],[13.0777203,49.2468085],[13.0777347,49.2468103],[13.0777687,49.2468231],[13.0777899,49.246826],[13.0778239,49.2468364],[13.0778479,49.2468607],[13.0779187,49.2468738],[13.0779652,49.2468978],[13.0780374,49.2469524],[13.0780925,49.246977],[13.0781672,49.247007],[13.0782177,49.2470377],[13.0783224,49.2470823],[13.0783651,49.2471074],[13.0784506,49.2471271],[13.0785013,49.2471451],[13.0785685,49.2471784],[13.0786387,49.2471889],[13.0787321,49.2471873],[13.078809,49.2472],[13.0789294,49.2472471],[13.0790236,49.2472968],[13.0790665,49.2473146],[13.0791088,49.2473241],[13.0791551,49.247353],[13.079193,49.2473839],[13.079242,49.2474188],[13.0792788,49.247431],[13.0793184,49.2474312],[13.0793878,49.247463],[13.0794995,49.2474969],[13.0796347,49.247502],[13.0796896,49.2474938],[13.0797785,49.2474656],[13.0798105,49.2474372],[13.0798392,49.2474303],[13.079878,49.2474367],[13.0799005,49.2474496],[13.0799596,49.2474652],[13.0800226,49.2474618],[13.0800658,49.2474463],[13.0801616,49.2474227],[13.0802043,49.2474236],[13.0802608,49.2474412],[13.0802801,49.2474419],[13.0803595,49.2474274],[13.080508,49.247466],[13.0806122,49.2474691],[13.0806237,49.2474647],[13.0806616,49.2474259],[13.0806705,49.2474221],[13.0807114,49.2474179],[13.0807287,49.2474185],[13.0807635,49.2474279],[13.0808165,49.2474065],[13.080846,49.2473685],[13.0809427,49.2473084],[13.0809591,49.2472946],[13.0810092,49.2471943],[13.0810769,49.2471102],[13.0810442,49.2470918],[13.0810563,49.247066],[13.0811169,49.2470568],[13.0811432,49.247012],[13.0812237,49.2469838],[13.0813191,49.246912],[13.0814273,49.2468454],[13.0814374,49.2467954],[13.081534,49.2467113],[13.0816053,49.2467263],[13.081725,49.2466486],[13.0817318,49.246607],[13.0818588,49.2465247],[13.0818968,49.2464494],[13.0818777,49.2464193],[13.0820041,49.2462651],[13.0821839,49.2461299],[13.0823,49.2460518],[13.0823291,49.2460033],[13.082385,49.2459783],[13.0823867,49.2459435],[13.0824957,49.2459234],[13.0826062,49.245837],[13.0826667,49.2458178],[13.0827537,49.2457306],[13.0828025,49.2457093],[13.0827871,49.245688],[13.0828051,49.2456705],[13.0828871,49.2456753],[13.0829734,49.245613],[13.0829756,49.245544],[13.0830389,49.245489],[13.0830447,49.2454548],[13.0831267,49.2453862],[13.0831948,49.2453517],[13.0832957,49.2452467],[13.0833063,49.2452357],[13.083311,49.245199],[13.0833663,49.245115],[13.083431,49.2450678],[13.0834282,49.2449748],[13.0835043,49.2448989],[13.0835807,49.2448567],[13.0836555,49.2448046],[13.0836948,49.2447242],[13.0837339,49.2447162],[13.0837562,49.2446539],[13.0837429,49.2446223],[13.0838298,49.2445543],[13.0838319,49.2444951],[13.0839195,49.2444056],[13.0840773,49.2443163],[13.0841445,49.2443109],[13.0843473,49.243998],[13.0844283,49.2439198],[13.0845435,49.2438872],[13.0845332,49.2438508],[13.0846861,49.2437696],[13.0847157,49.243706],[13.0847907,49.2436754],[13.0847848,49.243562],[13.0848944,49.2434947],[13.0849471,49.2434139],[13.085037,49.2433872],[13.085083,49.2432791],[13.0850952,49.2432031],[13.0850956,49.2432003],[13.0851397,49.2431579],[13.0851323,49.2431015],[13.0850486,49.2430382],[13.085048,49.2429951],[13.0850783,49.2429677],[13.0850581,49.2429002],[13.0850983,49.2428556],[13.0851811,49.2428126],[13.0852836,49.2427169],[13.0852907,49.242539],[13.0853663,49.2424903],[13.0853553,49.2424212],[13.0854057,49.2423687],[13.0855276,49.242317],[13.085519,49.2422744],[13.0856092,49.2421789],[13.0856207,49.2421169],[13.0856592,49.2421046],[13.085697,49.2420557],[13.0856715,49.2420241],[13.085704,49.2419271],[13.0857558,49.2417884],[13.0859046,49.2415999],[13.0860623,49.2415042],[13.0862166,49.2413375],[13.0864701,49.2412024],[13.0865059,49.2410701],[13.086517,49.2410335],[13.0866419,49.2409528],[13.0866893,49.240938],[13.0867133,49.2408841],[13.0868054,49.240809],[13.0869418,49.2407192],[13.0869565,49.2406195],[13.0869275,49.2405923],[13.0869367,49.2405567],[13.0870871,49.2404235],[13.0870779,49.2403322],[13.0871088,49.2402798],[13.0870992,49.2402408],[13.0871201,49.2402054],[13.0870851,49.2401546],[13.0871209,49.2400851],[13.0870985,49.2400536],[13.0871113,49.2400144],[13.0872008,49.2399321],[13.0872455,49.2398441],[13.0872705,49.2397044],[13.0872338,49.2396504],[13.0872554,49.2395866],[13.0872026,49.2395771],[13.0871517,49.2394147],[13.0872211,49.2392924],[13.0872176,49.2392653],[13.0872118,49.2392179],[13.0872318,49.2391406],[13.0872233,49.2391263],[13.0872536,49.2390824],[13.0872369,49.2390018],[13.087257,49.2389624],[13.0872479,49.2388838],[13.0872918,49.2387852],[13.0872805,49.238714],[13.0872781,49.2386024],[13.0873032,49.2385923],[13.0873113,49.2385354],[13.0874032,49.2384894],[13.0874983,49.2383682],[13.0876257,49.2383009],[13.0877276,49.2382063],[13.0877102,49.2381667],[13.0877852,49.2381572],[13.0878439,49.237947],[13.0879114,49.2379077],[13.0880713,49.2377475],[13.088178,49.2377028],[13.0883748,49.2376402],[13.0884031,49.2375684],[13.0883488,49.2374722],[13.0883728,49.2374379],[13.0883503,49.2373651],[13.0883775,49.237342],[13.0883619,49.2373143],[13.0883127,49.2373047],[13.0883111,49.2371295],[13.0883605,49.237072],[13.0883628,49.2370068],[13.0883292,49.2369705],[13.0884238,49.2368039],[13.0884288,49.2367637],[13.0883933,49.2367248],[13.0884318,49.2366424],[13.0883928,49.2366151],[13.0883855,49.2364129],[13.0883588,49.236409],[13.0883744,49.236306],[13.088397,49.2362961],[13.0883882,49.2362095],[13.0886462,49.2355591],[13.0890676,49.2349813],[13.0889383,49.2342402],[13.0889346,49.2342187],[13.0890041,49.2338482],[13.0888562,49.2330436],[13.0887391,49.2320887],[13.0886349,49.2314454],[13.0879832,49.2307925],[13.0872627,49.2305197],[13.0864787,49.2302678],[13.0861069,49.2299522],[13.0859909,49.2297551],[13.0860174,49.2293937],[13.0862103,49.2291211],[13.086327,49.2290401],[13.0866251,49.228915],[13.0868671,49.2287941],[13.0870153,49.2286968],[13.0871687,49.2285406],[13.0873563,49.2283872],[13.08753,49.228198],[13.0877905,49.2280009],[13.0881154,49.2278116],[13.0890788,49.2273675],[13.0898389,49.2269979],[13.0905753,49.2267374],[13.0907598,49.2266152],[13.0908829,49.2265194],[13.0910707,49.226319],[13.0911287,49.2262782],[13.0917407,49.2259982],[13.0921636,49.2257686],[13.093235,49.225299],[13.0939074,49.2250422],[13.0940138,49.2249992],[13.0944263,49.2249403],[13.0948741,49.2249356],[13.0951984,49.2248864],[13.0955323,49.2248158],[13.0957918,49.2247293],[13.0959944,49.224686],[13.0962558,49.2246545],[13.096539,49.2245919],[13.096818,49.2245518],[13.0971235,49.2244839],[13.0973448,49.2243722],[13.0980002,49.223901],[13.0984515,49.2238399],[13.0994276,49.2237812],[13.1002147,49.2237697],[13.1005274,49.2237682],[13.1014065,49.223594],[13.1016285,49.2235255],[13.1017779,49.2234506],[13.1028182,49.2227367],[13.1048765,49.2223522],[13.1053973,49.2215669],[13.1065433,49.2210304],[13.107201,49.2209384],[13.1075474,49.2208478],[13.1077786,49.2208343],[13.1080524,49.2208246],[13.1085271,49.2207628],[13.1091745,49.2208113],[13.1092945,49.2207507],[13.1094424,49.2204926],[13.1097019,49.2203143],[13.1097793,49.2201959],[13.109783,49.2201074],[13.109921,49.2198914],[13.1101514,49.2196618],[13.1102824,49.2195954],[13.1112215,49.2195876],[13.1113303,49.2195586],[13.1117328,49.2193998],[13.1119463,49.2193527],[13.1121503,49.2193501],[13.1123476,49.2193713],[13.1128658,49.219331],[13.1130851,49.2192578],[13.113387,49.2189268],[13.1137643,49.2186066],[13.1141757,49.2182578],[13.1142342,49.2180986],[13.1143353,49.217953],[13.114335,49.2175944],[13.1143694,49.2172816],[13.114384,49.2167479],[13.1143371,49.2164518],[13.114366,49.2162398],[13.1145066,49.2159131],[13.1147711,49.2155587],[13.1146932,49.2151246],[13.1146432,49.2147212],[13.1144299,49.2145136],[13.1141063,49.2143081],[13.1141388,49.2140358],[13.1144005,49.2139087],[13.1143839,49.2137498],[13.1143738,49.2135485],[13.1141017,49.2128453],[13.1138652,49.2125815],[13.1135924,49.2123692],[13.1136125,49.2122205],[13.1138065,49.2120761],[13.1137122,49.2117965],[13.1135967,49.2116697],[13.1133004,49.2108816],[13.1132614,49.2104322],[13.1130536,49.2098649],[13.1128223,49.2094741],[13.1124276,49.2091727],[13.1123887,49.2090148],[13.1123645,49.2089972],[13.1121304,49.2088038],[13.1119073,49.2087223],[13.1115671,49.208456],[13.1113679,49.2081996],[13.1113192,49.2080549],[13.1110916,49.2077896],[13.1110133,49.2076138],[13.1109176,49.2070332],[13.1108042,49.2065622],[13.1105572,49.2060072],[13.1102428,49.2055037],[13.110063,49.2050826],[13.1098741,49.2044545],[13.1098046,49.204323],[13.1096332,49.204221],[13.1097638,49.2039642],[13.1099654,49.203709],[13.1099547,49.2036117],[13.1099464,49.2034096],[13.1099181,49.2032751],[13.1098864,49.2031309],[13.1099279,49.2031049],[13.110313,49.2029238],[13.1110548,49.2025313],[13.1117671,49.2022978],[13.1122999,49.2019415],[13.1131091,49.2015876],[13.1137337,49.2012332],[13.1148877,49.2006987],[13.1151013,49.2006144],[13.1153749,49.2004012],[13.1155797,49.2003217],[13.1166699,49.1995481],[13.1171962,49.1991808],[13.1176853,49.1990754],[13.1189422,49.199051],[13.1192177,49.1990035],[13.1203018,49.198815],[13.121554,49.1985542],[13.1220962,49.1984609],[13.1226593,49.1982781],[13.122934,49.1980884],[13.1230049,49.1978346],[13.1229458,49.1976099],[13.1230009,49.1974738],[13.1231398,49.197313],[13.1235179,49.1971875],[13.1238103,49.1971644],[13.1243861,49.1972484],[13.1249102,49.1973072],[13.1256905,49.1971511],[13.1264632,49.197046],[13.1271235,49.1971172],[13.1278706,49.1971185],[13.1286006,49.1970518],[13.1293483,49.1968895],[13.1301717,49.1962675],[13.1306986,49.19599],[13.1312311,49.1956854],[13.1315587,49.195346],[13.1317856,49.1952247],[13.1324107,49.1949604],[13.1328191,49.1946264],[13.1326898,49.1944549],[13.1332299,49.1939758],[13.13373,49.193581],[13.1339913,49.1933376],[13.1344442,49.1931561],[13.1349233,49.1926287],[13.1353215,49.1924241],[13.1360447,49.191851],[13.1365722,49.1912927],[13.1372974,49.1907524],[13.1376011,49.1905975],[13.1379314,49.1905486],[13.1384814,49.1905269],[13.138921,49.1905283],[13.1396122,49.1903979],[13.1402876,49.1902989],[13.1410899,49.1899966],[13.1417939,49.1896681],[13.1420726,49.1891319],[13.1423613,49.1887232],[13.1424115,49.1883349],[13.1425764,49.1881092],[13.1433393,49.1875346],[13.1438833,49.1871435],[13.1444375,49.1866186],[13.1450863,49.1859906],[13.1452937,49.1858492],[13.1466543,49.1849237],[13.146861,49.1844588],[13.1469595,49.1842357],[13.1471866,49.183748],[13.1475126,49.1833292],[13.1478881,49.1829053],[13.1483033,49.182383],[13.1486242,49.1820199],[13.1498168,49.181789],[13.1511595,49.1813063],[13.1526713,49.1806007],[13.1536008,49.1801702],[13.1545854,49.1795825],[13.1560971,49.1785512],[13.156892,49.1781879],[13.1577679,49.1777359],[13.1589405,49.1770188],[13.1595636,49.176575],[13.160444,49.1757318],[13.1617498,49.1747891],[13.1624933,49.1744796],[13.1628675,49.1743812],[13.1641574,49.174185],[13.1650325,49.1739303],[13.1651831,49.1738865],[13.1666996,49.1738346],[13.1679096,49.1737628],[13.1689863,49.1738556],[13.1693014,49.1739231],[13.1697183,49.1739455],[13.1700427,49.1740103],[13.1708968,49.1736238],[13.1714377,49.1730961],[13.1716161,49.1729168],[13.1725249,49.1720113],[13.1736783,49.1708437],[13.1741716,49.1703583],[13.17465,49.1693703],[13.1751566,49.1681403],[13.1757172,49.16684],[13.176241,49.1656807],[13.176901,49.1642341],[13.1768217,49.1635654],[13.1767577,49.1630254],[13.1767591,49.163017],[13.1767863,49.1628389],[13.1767049,49.1619077],[13.176253,49.1610103],[13.1758496,49.1602997],[13.1757524,49.1601283],[13.1756956,49.1600089],[13.174946,49.1584309],[13.1745593,49.157756],[13.1744236,49.157446],[13.1740462,49.156585],[13.1738425,49.1553365],[13.1738312,49.1552675],[13.1738131,49.1551565],[13.1737828,49.1550123],[13.1737386,49.1548017],[13.1736805,49.1545786],[13.1736682,49.1544103],[13.1736518,49.1541856],[13.1736133,49.1539155],[13.1736115,49.1539022],[13.1735969,49.153799],[13.1735086,49.1532575],[13.173425,49.1527764],[13.1733873,49.1525615],[13.1732692,49.1519032],[13.1732439,49.1517269],[13.1732213,49.1515721],[13.1732065,49.1514763],[13.1730331,49.1504101],[13.1730035,49.1501952],[13.1729574,49.1498572],[13.1726938,49.1492909],[13.1725783,49.1490439],[13.1724863,49.1488467],[13.1723368,49.1485279],[13.1719981,49.1478105],[13.1712896,49.1462464],[13.1710476,49.1457352],[13.1709837,49.1456001],[13.1707021,49.1449886],[13.1702957,49.1440086],[13.1713928,49.1433397],[13.1715208,49.1432616],[13.1725801,49.1426153],[13.1737123,49.141866],[13.1749076,49.140913],[13.1751355,49.1407319],[13.176136,49.1399368],[13.1778015,49.1385904],[13.1785115,49.1380176],[13.179294,49.1373835],[13.179829,49.1369501],[13.1801522,49.1366782],[13.1814378,49.1356058],[13.1827775,49.1344886],[13.1837299,49.1340491],[13.1848281,49.133541],[13.1869087,49.1325698],[13.1874135,49.1323269],[13.1889291,49.1316266],[13.1900955,49.1310758],[13.1915376,49.130401],[13.1932708,49.1294836],[13.1945296,49.1287573],[13.1954466,49.1282175],[13.1962659,49.1277421],[13.1972715,49.1271439],[13.1993132,49.1259407],[13.2000581,49.1254873],[13.2025074,49.1240496],[13.2035808,49.1233199],[13.2044143,49.1228319],[13.2045343,49.1227619],[13.2050936,49.1224353],[13.2055344,49.122178],[13.2056652,49.122168],[13.2061285,49.1221329],[13.2080627,49.1219863],[13.2086673,49.121876],[13.2089815,49.1218188],[13.2091371,49.121756],[13.2092294,49.1217344],[13.2092884,49.1217193],[13.2093722,49.1216989],[13.2095522,49.1216553],[13.2096335,49.1216355],[13.2101156,49.1215185],[13.2106799,49.1213653],[13.2114615,49.1211543],[13.2135249,49.1205613],[13.2138659,49.1204675],[13.2152713,49.1200634],[13.2173001,49.1194545],[13.2181023,49.1192139],[13.219214,49.1188897],[13.2197237,49.1187391],[13.2210659,49.1183457],[13.2230566,49.1177441],[13.224798,49.117216],[13.225211,49.1170904],[13.2268003,49.1166075],[13.2279737,49.1162484],[13.2293163,49.115841],[13.230407,49.1155112],[13.2311093,49.1152986],[13.2317217,49.1150938],[13.2324522,49.1148455],[13.2342487,49.1142676],[13.2349417,49.1140459],[13.2355676,49.1138634],[13.235946,49.1137524],[13.2360558,49.1137199],[13.2361707,49.1137127],[13.2364078,49.1136979],[13.2375451,49.1138674],[13.2396589,49.1141806],[13.239847,49.1142085],[13.241661,49.1145208],[13.2443182,49.1149779],[13.2453061,49.1151771],[13.2455036,49.1152169],[13.2456293,49.1152423],[13.2470858,49.1156426],[13.2476735,49.1157718],[13.2480221,49.1158448],[13.2481434,49.115875],[13.2490303,49.1160795],[13.2506672,49.1164397],[13.2528644,49.1169473],[13.254869,49.117432],[13.2562803,49.1177528],[13.2575783,49.1180297],[13.2579262,49.1180681],[13.2593545,49.1182259],[13.2606951,49.1183742],[13.2619036,49.1185398],[13.2629439,49.1186975],[13.2639525,49.1187397],[13.2641414,49.1187476],[13.266291,49.1188372],[13.2679632,49.1190847],[13.2688954,49.1192294],[13.2702241,49.1194532],[13.2712139,49.1196354],[13.2714184,49.1196658],[13.2715662,49.1196875],[13.2725894,49.1198392],[13.2737812,49.1200246],[13.2745709,49.1201623],[13.2749702,49.1202319],[13.2764029,49.1204818],[13.2777926,49.1204848],[13.2779344,49.1204853],[13.2791123,49.1204894],[13.2791822,49.1204896],[13.2823205,49.1204971],[13.2828511,49.1203493],[13.2835879,49.1201441],[13.2848512,49.1197922],[13.2862969,49.1194072],[13.2865765,49.1193328],[13.2891826,49.1186381],[13.2911621,49.117417],[13.29244,49.1166275],[13.2939744,49.1156801],[13.2951853,49.1149332],[13.2959316,49.1144763],[13.2974741,49.1135505],[13.2981978,49.1131161],[13.2997366,49.1121623],[13.2998296,49.1121011],[13.3000126,49.111981],[13.3005265,49.1116438],[13.3008805,49.1114113],[13.3024784,49.110463],[13.3024951,49.1104556],[13.3043525,49.1093223],[13.305412,49.1087023],[13.3066865,49.1079547],[13.3068329,49.1078695],[13.3071672,49.1076753],[13.3090189,49.1065989],[13.3101548,49.1059705],[13.3107142,49.105639],[13.3111827,49.1053614],[13.3114162,49.1052231],[13.3127145,49.1044962],[13.3135616,49.1044745],[13.3137991,49.1044684],[13.3148139,49.1044423],[13.3162416,49.104281],[13.3165876,49.1042282],[13.3166585,49.1042175],[13.3173646,49.1039173],[13.3177197,49.1036656],[13.3186721,49.1026615],[13.319541,49.1017465],[13.3201265,49.1015303],[13.3203123,49.1014618],[13.3212999,49.1011373],[13.3222474,49.1008846],[13.3223566,49.1008555],[13.3235433,49.1005385],[13.3242784,49.1003368],[13.3250601,49.0998518],[13.3254698,49.099232],[13.3255591,49.0990564],[13.3255878,49.099],[13.3260109,49.0981679],[13.3261701,49.0978061],[13.326346,49.0974068],[13.3265792,49.0968772],[13.3266007,49.0968284],[13.3266271,49.0967993],[13.3267093,49.0967484],[13.326779,49.0967116],[13.32683,49.0966699],[13.3269033,49.0966319],[13.3270329,49.0966755],[13.327139,49.0966803],[13.3272002,49.0966657],[13.3272285,49.0966318],[13.3272303,49.0965582],[13.3272581,49.0965312],[13.327283,49.0965255],[13.327306,49.0964953],[13.3273013,49.0964673],[13.3273488,49.0964133],[13.3274092,49.0963852],[13.3274244,49.0963468],[13.3274466,49.0963278],[13.3274531,49.0962929],[13.327599,49.0962138],[13.3276792,49.0961607],[13.3277053,49.0961098],[13.3277979,49.0960792],[13.3278399,49.0960846],[13.3278771,49.0960742],[13.3279416,49.0960314],[13.3280423,49.0960126],[13.3282548,49.0960043],[13.328303,49.0959814],[13.3284298,49.0958875],[13.3285874,49.0958567],[13.3286412,49.0958505],[13.3286992,49.0958147],[13.3288553,49.0957491],[13.3289807,49.0957224],[13.3290475,49.095637],[13.3291265,49.095605],[13.329188,49.0956061],[13.3292107,49.0955946],[13.3293132,49.0955826],[13.3293616,49.0955583],[13.3294081,49.0955498],[13.3294307,49.0955158],[13.3294874,49.0954855],[13.3295468,49.0954949],[13.3296181,49.0954711],[13.3296748,49.0954365],[13.3297386,49.0954345],[13.3297613,49.0954182],[13.3298564,49.0954102],[13.3299744,49.0954095],[13.3300243,49.0954242],[13.3301385,49.095387],[13.3301285,49.0953131],[13.3303172,49.0952305],[13.3304494,49.0952227],[13.3305612,49.0953398],[13.3305925,49.0953418],[13.3306204,49.0953286],[13.3306544,49.0953423],[13.3306909,49.0953813],[13.3307375,49.0954045],[13.3308643,49.0954207],[13.3309215,49.0954045],[13.3309576,49.0953686],[13.331005,49.0953515],[13.3310118,49.0953221],[13.3311055,49.0952762],[13.3311318,49.095259],[13.3312529,49.0952338],[13.3313311,49.0952007],[13.331426,49.0952032],[13.3314647,49.0951837],[13.331598,49.0951696],[13.3316779,49.0951062],[13.3317413,49.0950557],[13.3319424,49.0950658],[13.3320361,49.0950354],[13.3321446,49.0950084],[13.3321975,49.0950081],[13.3322501,49.0949512],[13.332367,49.0949098],[13.33255,49.0947453],[13.3327324,49.0947293],[13.3327829,49.0947353],[13.3328854,49.094729],[13.332999,49.0947201],[13.3330715,49.0947376],[13.3331131,49.0947029],[13.3332225,49.0946719],[13.3332674,49.0946043],[13.3334076,49.094593],[13.3336077,49.0945335],[13.3336861,49.0945419],[13.3337599,49.0945691],[13.3338625,49.0945713],[13.3339417,49.0945313],[13.333971,49.0944759],[13.3338899,49.0943388],[13.3339214,49.09427],[13.3340076,49.0942414],[13.3340974,49.094258],[13.3341237,49.0942811],[13.3341987,49.0943019],[13.334238,49.0943164],[13.3342887,49.0942988],[13.3343468,49.0942346],[13.3344321,49.0941941],[13.3344483,49.0941674],[13.3344418,49.0941341],[13.3344685,49.094107],[13.3344897,49.0940632],[13.3345534,49.0940562],[13.3346102,49.0940352],[13.3346945,49.0940419],[13.3347599,49.0940307],[13.3348322,49.0939187],[13.3348889,49.0939047],[13.3349224,49.0939134],[13.3349894,49.0939774],[13.3350568,49.0939717],[13.3351655,49.0939901],[13.3352943,49.0939908],[13.3354655,49.0939683],[13.3355827,49.0939204],[13.3356353,49.0938832],[13.3357517,49.0938319],[13.3358659,49.093847],[13.3359483,49.0938097],[13.3360684,49.0937868],[13.3361148,49.0936735],[13.3362603,49.093594],[13.3363665,49.0935924],[13.3364139,49.0935556],[13.3364777,49.0934254],[13.3364659,49.0933798],[13.3364236,49.0933396],[13.3364369,49.0932757],[13.3365575,49.0932271],[13.3366296,49.0931552],[13.3367112,49.0931663],[13.33675,49.0931715],[13.3368247,49.093164],[13.336879,49.093139],[13.3370159,49.0930291],[13.337079,49.0929433],[13.3371783,49.0928958],[13.3372319,49.0928116],[13.3372934,49.0927698],[13.3373711,49.0927563],[13.337459,49.0927219],[13.33746,49.0926882],[13.3375629,49.0926495],[13.3376761,49.0925835],[13.3376946,49.0925568],[13.3378329,49.0924884],[13.3378979,49.0923773],[13.3378719,49.0923455],[13.3378724,49.0922969],[13.3378411,49.0922565],[13.3378694,49.0922264],[13.337951,49.0922183],[13.3379904,49.0921506],[13.3380335,49.0921061],[13.3380295,49.0920819],[13.3379502,49.0919985],[13.3379578,49.0919533],[13.3379949,49.091931],[13.3380303,49.0919396],[13.3381143,49.0919302],[13.3381499,49.0918874],[13.3382581,49.0918271],[13.3382921,49.0917548],[13.3383642,49.0916877],[13.3383583,49.0916677],[13.3383242,49.0916612],[13.3382396,49.091617],[13.3382529,49.0915822],[13.3382857,49.0915739],[13.3383218,49.091469],[13.338362,49.0914492],[13.3384356,49.0914921],[13.3385623,49.0914786],[13.3386156,49.0914485],[13.3385849,49.0913736],[13.3386734,49.0913163],[13.3387632,49.09124],[13.3389281,49.091219],[13.3389957,49.0911853],[13.3391609,49.091122],[13.3391906,49.0910769],[13.3392374,49.0910418],[13.339249,49.0910071],[13.3391786,49.0909885],[13.3390909,49.0909709],[13.3390066,49.0909405],[13.3389945,49.0908999],[13.3389492,49.0908385],[13.3389424,49.0907969],[13.3388924,49.090705],[13.3389264,49.0906459],[13.3389525,49.0906435],[13.3390297,49.090674],[13.3390983,49.090663],[13.3391624,49.0906206],[13.3391828,49.090548],[13.3391863,49.090535],[13.3391999,49.0904886],[13.3391696,49.0904281],[13.3391649,49.0903405],[13.3391952,49.0902686],[13.3392787,49.0902169],[13.3393026,49.0901912],[13.3394272,49.0901541],[13.3395754,49.0901254],[13.3396204,49.090124],[13.339674,49.0901036],[13.339692,49.0900711],[13.339722,49.090046],[13.339834,49.090059],[13.3399474,49.0900811],[13.3400843,49.0900605],[13.3401213,49.0900671],[13.3402812,49.0900212],[13.3405874,49.0899975],[13.3407363,49.0899573],[13.3408226,49.0899694],[13.3409791,49.0900229],[13.3411218,49.0900229],[13.3412125,49.089988],[13.3412998,49.0899165],[13.3412994,49.0898861],[13.3412086,49.0898473],[13.3412163,49.089781],[13.3413274,49.0896939],[13.3414783,49.0896695],[13.3415177,49.089653],[13.341585,49.0896566],[13.3416902,49.0896155],[13.3418814,49.0895705],[13.3419379,49.0895223],[13.3420528,49.0895056],[13.3421,49.0894709],[13.3423613,49.0893717],[13.3425125,49.0893406],[13.3428108,49.0891862],[13.3428667,49.089175],[13.3430026,49.0891039],[13.3430989,49.0891241],[13.3431232,49.0891291],[13.343251,49.0891083],[13.3433381,49.0891129],[13.3436191,49.0890767],[13.3438837,49.0890133],[13.3441582,49.0889065],[13.3442187,49.0888377],[13.3442605,49.0887109],[13.3445768,49.0885969],[13.3446791,49.0885367],[13.3447286,49.0884448],[13.3447294,49.0883785],[13.344699,49.0883014],[13.3447233,49.088196],[13.3447869,49.0881154],[13.3448465,49.0880904],[13.3450026,49.0879418],[13.3450725,49.0878974],[13.3451328,49.0878246],[13.3451314,49.0877706],[13.3450956,49.0877436],[13.3451422,49.0876406],[13.3451176,49.0875826],[13.3451999,49.0874725],[13.345425,49.0873227],[13.3454782,49.0872645],[13.3455173,49.0871483],[13.3456127,49.0870264],[13.3458334,49.0868662],[13.3458154,49.0867841],[13.3459703,49.0865791],[13.3461444,49.0864235],[13.3461879,49.0863512],[13.3461873,49.0862719],[13.346195,49.0862376],[13.3460888,49.0861649],[13.3460616,49.0860167],[13.3461146,49.0859498],[13.3462189,49.0859198],[13.3463428,49.0857653],[13.3464,49.085527],[13.3465468,49.0853862],[13.346537,49.0852554],[13.3464827,49.0851814],[13.3464766,49.0850754],[13.3465131,49.0850102],[13.346461,49.0847736],[13.3463959,49.0845562],[13.3463383,49.0844428],[13.3462866,49.0843247],[13.3462777,49.0842484],[13.3461371,49.0840224],[13.3461129,49.0839229],[13.3461362,49.0837814],[13.3462063,49.0836546],[13.3461795,49.0835439],[13.3460742,49.0834894],[13.3460097,49.0834135],[13.3459419,49.0832797],[13.345899,49.0832207],[13.3458589,49.0830624],[13.3458878,49.082995],[13.3459372,49.0829539],[13.3460039,49.0829376],[13.3461103,49.0829668],[13.3462705,49.0829481],[13.3463374,49.0828907],[13.3463305,49.0827834],[13.3463839,49.0826585],[13.3465716,49.0824829],[13.3465858,49.0824432],[13.3465843,49.0823535],[13.3464486,49.0822569],[13.3464179,49.0821895],[13.3464098,49.0821289],[13.3464025,49.0820737],[13.3464675,49.0820112],[13.3465562,49.0819873],[13.3467834,49.0819716],[13.3468278,49.0819318],[13.3468457,49.0818775],[13.3469127,49.0818207],[13.3473192,49.081652],[13.3474231,49.081621],[13.347476,49.0815448],[13.3474968,49.0814416],[13.3476058,49.0813152],[13.3477198,49.0812461],[13.3478701,49.0812201],[13.3481739,49.081183],[13.3482909,49.0811369],[13.3483703,49.0810683],[13.3483903,49.0810364],[13.3484601,49.0809249],[13.3485166,49.0808926],[13.3485667,49.0808641],[13.3486458,49.0808392],[13.3487567,49.0807765],[13.3489914,49.0806968],[13.3491635,49.0806733],[13.3493379,49.0805981],[13.3493576,49.080534],[13.3494645,49.0804328],[13.3496589,49.0802993],[13.3500112,49.0802022],[13.3503217,49.080173],[13.3504743,49.0801423],[13.3506522,49.0800681],[13.3508525,49.0799776],[13.3511076,49.0799061],[13.3512258,49.0798963],[13.3513143,49.0798684],[13.3514628,49.0797671],[13.3515848,49.0796566],[13.3516816,49.0796216],[13.3518403,49.0796058],[13.3520551,49.079573],[13.352167,49.0795741],[13.3525198,49.0795269],[13.3527994,49.0794747],[13.352972,49.0794311],[13.3530784,49.0793816],[13.3531452,49.0793082],[13.3532016,49.0791395],[13.3533094,49.0790555],[13.3534561,49.0789687],[13.3537807,49.0787755],[13.3540095,49.0787781],[13.35417,49.0787646],[13.3543815,49.0787324],[13.3544917,49.0787041],[13.3545087,49.0786731],[13.3545191,49.0786542],[13.3545812,49.0785725],[13.354661,49.0784687],[13.3548921,49.0781577],[13.3550916,49.0776572],[13.3553867,49.0768951],[13.3556979,49.0762374],[13.3559773,49.0757982],[13.356837,49.0749317],[13.3578901,49.0738047],[13.3587647,49.0732389],[13.3601489,49.072691],[13.3619656,49.0715378],[13.3624935,49.0710734],[13.3627685,49.0705232],[13.3635265,49.0698748],[13.3637963,49.0690689],[13.3641748,49.0691798],[13.3645311,49.0693886],[13.3648759,49.0694473],[13.3655252,49.0694466],[13.3661922,49.0693884],[13.3668753,49.0693288],[13.3676544,49.0686227],[13.3678801,49.0681852],[13.3682397,49.0680502],[13.368743,49.0678615],[13.3698864,49.067823],[13.3704935,49.0674607],[13.3707368,49.0672072],[13.3709539,49.0668835],[13.3713327,49.0665825],[13.37186,49.0661845],[13.3725116,49.0647702],[13.3732185,49.0638263],[13.3739801,49.0633236],[13.3742439,49.0628799],[13.3746558,49.0621679],[13.3744807,49.0611778],[13.3744769,49.060551],[13.3745572,49.0600069],[13.3749256,49.059466],[13.3754732,49.058854],[13.3757575,49.058588],[13.3762187,49.0582655],[13.3766067,49.0581215],[13.3767591,49.0580648],[13.3773384,49.0577803],[13.37783,49.0573695],[13.378087,49.0572324],[13.3790312,49.0569823],[13.38012,49.0569458],[13.3803279,49.0569728],[13.3805149,49.0570204],[13.3815684,49.0572886],[13.3825616,49.057517],[13.3827907,49.057553],[13.3835855,49.057359],[13.3846651,49.0566355],[13.3852835,49.0549554],[13.3858224,49.0537543],[13.3860963,49.0532252],[13.3863445,49.0528213],[13.387647,49.052763],[13.3885657,49.0528039],[13.389644,49.0530801],[13.3907216,49.0536351],[13.3909357,49.0538432],[13.3920158,49.0542808],[13.3921772,49.0543463],[13.3933206,49.0531854],[13.3937524,49.0528933],[13.3944198,49.0525301],[13.3956801,49.0518898],[13.3962904,49.0515461],[13.3973727,49.050664],[13.3977055,49.0497108],[13.3977559,49.0493265],[13.3979413,49.048949],[13.3980706,49.0487188],[13.3979965,49.0480113],[13.3979851,49.0464893],[13.397867,49.045795],[13.3970518,49.0443792],[13.3969592,49.0442183],[13.395899,49.0437609],[13.3951712,49.0434975],[13.3937333,49.0431708],[13.3931507,49.0429879],[13.3923638,49.042885],[13.3919,49.0426109],[13.3918225,49.0424527],[13.3916747,49.0421508],[13.3919741,49.0413326],[13.3921731,49.0410777],[13.3932279,49.0404183],[13.3937267,49.0401197],[13.3942065,49.0398356],[13.3946808,49.0398622],[13.3957701,49.0397564],[13.396211,49.0396296],[13.3972207,49.0389587],[13.3981698,49.0381758],[13.3983727,49.0378893],[13.3991915,49.0372684],[13.3996626,49.0370711],[13.3996088,49.0361816],[13.3994556,49.0359268],[13.3994576,49.0355777],[13.3997667,49.0350677],[13.4002939,49.0346919],[13.4006737,49.0342229],[13.4008137,49.0339395],[13.4010151,49.0336739],[13.4011169,49.033568],[13.4013388,49.0326332],[13.4016135,49.0321876],[13.4016616,49.0321098],[13.4020484,49.0314606],[13.4021603,49.0308599],[13.4022185,49.0300974],[13.4018706,49.0289654],[13.4026285,49.0278586],[13.403047,49.0273588],[13.4032404,49.0270503],[13.4031348,49.0266732],[13.4032632,49.026247],[13.4044959,49.0248987],[13.4048743,49.0246576],[13.4056178,49.024184],[13.4058312,49.0238492],[13.4058035,49.0233539],[13.405786,49.0228465],[13.4055749,49.0223146],[13.4050928,49.0219539],[13.4043204,49.0217679],[13.4026648,49.0214906],[13.4024536,49.0214171],[13.4018118,49.0209692],[13.4014532,49.0201071],[13.4016953,49.0195247],[13.4015832,49.0189277],[13.4015329,49.0186594],[13.4011722,49.018233],[13.4010189,49.0179028],[13.4006438,49.0172889],[13.400522,49.0170132],[13.4004126,49.01661],[13.4003642,49.0164314],[13.400249,49.016006],[13.4002881,49.0156746],[13.4007469,49.0148535],[13.4010232,49.0143275],[13.4010314,49.0137714],[13.4009528,49.0134501],[13.4009959,49.0130756],[13.401058,49.0129269],[13.401775,49.0121659],[13.4025815,49.0114095],[13.4029807,49.0106389],[13.4034411,49.0103559],[13.40411,49.0101235],[13.4044252,49.0098203],[13.4051776,49.009559],[13.4061582,49.0092147],[13.4072247,49.0086064],[13.4080059,49.0079729],[13.4083198,49.0075293],[13.4085684,49.0072553],[13.4086356,49.0068504],[13.4088724,49.0058721],[13.4092269,49.0041494],[13.4094137,49.0032276],[13.4094141,49.0032221],[13.4088216,49.0025029],[13.4082896,49.0018556],[13.408064,49.0015828],[13.4078801,49.001356],[13.4066447,48.9998209],[13.4064753,48.9996104],[13.4060248,48.9990364],[13.4059785,48.9989776],[13.4059758,48.9989743],[13.4058284,48.9987881],[13.4055919,48.9984894],[13.4050268,48.997776],[13.4040974,48.9966203],[13.403614,48.9960172],[13.4032947,48.9956504],[13.4027574,48.9950163],[13.402508,48.9947347],[13.4022638,48.9944394],[13.4023484,48.9938476],[13.4023252,48.9937335],[13.4022664,48.9934132],[13.402294,48.9927585],[13.4022976,48.9923253],[13.4024048,48.9917536],[13.4024343,48.9905994],[13.4024769,48.9901155],[13.402482,48.990055],[13.4025087,48.9896784],[13.4025575,48.9894221],[13.4026235,48.9884823],[13.4026527,48.9881167],[13.4027247,48.9872264],[13.4034278,48.9868333],[13.4055191,48.985722],[13.4058036,48.9855904],[13.4063534,48.9852939],[13.4074079,48.9847307],[13.4085873,48.9840485],[13.4094653,48.9836746],[13.409849,48.9834699],[13.4109725,48.9828557],[13.4117075,48.9824853],[13.4121037,48.9822523],[13.4133331,48.9816161],[13.4138495,48.9813952],[13.4144758,48.9810413],[13.4161657,48.9801502],[13.4164848,48.9799909],[13.4171054,48.9796766],[13.4174125,48.9795187],[13.4198259,48.9790611],[13.4213688,48.9787494],[13.4225698,48.9781965],[13.4228048,48.9780957],[13.4234591,48.9777933],[13.4243981,48.9774108],[13.4245843,48.9772793],[13.4249251,48.9767235],[13.4250959,48.9764888],[13.4255943,48.9751626],[13.4255237,48.9747535],[13.4255306,48.9738079],[13.4257633,48.9734689],[13.425875,48.9731437],[13.4260284,48.9727991],[13.4261946,48.9724925],[13.4269975,48.972155],[13.4272695,48.9720866],[13.4285837,48.9721667],[13.4292575,48.9721772],[13.4297974,48.972144],[13.4310284,48.9721776],[13.4321654,48.9720906],[13.4327431,48.9719434],[13.4327771,48.9719323],[13.4335358,48.9716851],[13.4338803,48.9715424],[13.4347392,48.9709909],[13.4352145,48.9707134],[13.4369031,48.9697306],[13.4377444,48.969224],[13.4390355,48.9683998],[13.439533,48.9680717],[13.440455,48.9673138],[13.4411509,48.9668112],[13.4414861,48.966621],[13.4428061,48.9659001],[13.4429843,48.9658334],[13.4436909,48.9657263],[13.4446015,48.9656201],[13.4455602,48.9655482],[13.4469405,48.9653415],[13.447944,48.9653365],[13.4490546,48.9652788],[13.4491766,48.9651494],[13.4494908,48.9645936],[13.4497525,48.9643945],[13.4502333,48.9640693],[13.4514038,48.9635892],[13.4518213,48.9634709],[13.4524155,48.9634201],[13.4530952,48.963376],[13.4533601,48.9633117],[13.4536929,48.963133],[13.454011,48.9630564],[13.4550075,48.9630447],[13.4560313,48.9630502],[13.4568059,48.963022],[13.4573467,48.9629594],[13.4586311,48.962853],[13.4592594,48.9626738],[13.4597332,48.962422],[13.4601268,48.9621346],[13.4607182,48.9614536],[13.4613059,48.9607091],[13.4614286,48.9604711],[13.4616728,48.9600048],[13.4619148,48.95935],[13.4623972,48.9590152],[13.4631836,48.9585728],[13.4639001,48.9581751],[13.4648951,48.9573753],[13.4656231,48.9563942],[13.4658637,48.9562231],[13.4662189,48.9560423],[13.4665385,48.9558327],[13.4687882,48.9546011],[13.4691373,48.9544291],[13.4696928,48.9542869],[13.4714792,48.9540997],[13.4724319,48.9538176],[13.4727434,48.9537107],[13.4731052,48.9535446],[13.4739977,48.9534481],[13.474708,48.9533461],[13.4753545,48.9531888],[13.4758073,48.9531315],[13.4766366,48.9531834],[13.4774253,48.9531173],[13.4778046,48.9530266],[13.478611,48.9525728],[13.4797082,48.9518787],[13.480864,48.9516535],[13.4818328,48.951445],[13.4827079,48.9513204],[13.4830377,48.9513342],[13.4834718,48.9513538],[13.4836948,48.9509626],[13.4837539,48.950313],[13.4838347,48.9494174],[13.4839605,48.949097],[13.4841209,48.9488414],[13.4843401,48.9483174],[13.4844537,48.948182],[13.4846171,48.9480552],[13.4853851,48.9477342],[13.4855809,48.9475864],[13.4860468,48.9470446],[13.4862985,48.94679],[13.486584,48.9465415],[13.4872213,48.9460789],[13.4875569,48.9457784],[13.4877756,48.9456728],[13.4885079,48.9453619],[13.4889936,48.9451319],[13.4896759,48.9448115],[13.4898291,48.9447392],[13.4899288,48.944691],[13.4904159,48.944456],[13.4910402,48.9440273],[13.4914484,48.9436323],[13.4918882,48.943235],[13.4921932,48.9429985],[13.4927825,48.9426442],[13.4933704,48.9424364],[13.4941019,48.9419994],[13.4943842,48.9418314],[13.4947906,48.94167],[13.4957744,48.9414872],[13.4964473,48.9414333],[13.4968625,48.9414425],[13.4978483,48.9412597],[13.4990537,48.9412888],[13.5008146,48.9418275],[13.5019542,48.9419601],[13.5028929,48.9420693],[13.5040125,48.9420756],[13.505091,48.94201],[13.5060942,48.941949],[13.506565,48.9419559],[13.5082771,48.9421362],[13.5082368,48.9421506],[13.5080083,48.9436641],[13.5077867,48.9451657],[13.507884,48.9465269],[13.5079998,48.9481582],[13.5080168,48.948326],[13.5081419,48.9495655],[13.5082932,48.9510564],[13.5072248,48.9532344],[13.5071982,48.9532832],[13.5069542,48.9537804],[13.5066822,48.9543402],[13.5065691,48.9550368],[13.5062623,48.9569444],[13.506044,48.9585887],[13.5058639,48.9599107],[13.5060368,48.9609527],[13.5063481,48.9628121],[13.5069232,48.9640976],[13.5075959,48.9655757],[13.5073833,48.9670221],[13.5071518,48.968583],[13.5070734,48.9691115],[13.5079422,48.969088],[13.5097204,48.9690266],[13.5106057,48.9689974],[13.5115391,48.968964],[13.515219,48.9687781],[13.5158917,48.9687407],[13.5188417,48.9700434],[13.5224494,48.9716675],[13.5246113,48.9724035],[13.526258,48.9729719],[13.5292768,48.9740476],[13.5322473,48.9739921],[13.5337385,48.9739586],[13.5370046,48.973398],[13.5370923,48.9730371],[13.5372287,48.9725101],[13.5388306,48.9714793],[13.5405121,48.9703979],[13.5421434,48.9690438],[13.5433668,48.9680225],[13.5462642,48.9673145],[13.5480557,48.9668786],[13.54939,48.9672335],[13.5508996,48.9676316],[13.5530681,48.9674334],[13.5538233,48.9673638],[13.5548431,48.9672713],[13.5554922,48.9672125],[13.5563698,48.9671317],[13.5571329,48.9670677],[13.5574527,48.9672258],[13.5585717,48.967793],[13.5595907,48.9683106],[13.55977,48.9684038],[13.5608881,48.9689807],[13.5609671,48.9690319],[13.5621028,48.9697659],[13.5629572,48.970318],[13.5632366,48.9704972],[13.5650331,48.969654],[13.5669113,48.9687711],[13.5680715,48.9677348],[13.5687541,48.9671251],[13.5694364,48.9665149],[13.5727226,48.9660185],[13.5734648,48.9664582],[13.5749952,48.9673621],[13.5759615,48.970148],[13.5759666,48.9701625],[13.5800783,48.9707391],[13.5839023,48.9692081],[13.5840063,48.9691331],[13.5840104,48.9691304],[13.5840424,48.9691058],[13.5841357,48.9690465],[13.5842043,48.9690109],[13.5843188,48.9689714],[13.5843476,48.9689347],[13.5843174,48.9687823],[13.5843863,48.9687384],[13.5844594,48.968737],[13.5845287,48.9687385],[13.5845945,48.96872],[13.5846323,48.9686861],[13.5847857,48.9686849],[13.5849286,48.9686009],[13.5849688,48.9685411],[13.5850289,48.9684919],[13.5850945,48.9684675],[13.5851348,48.9683996],[13.5852765,48.9683559],[13.5853529,48.9682899],[13.5853844,48.968224],[13.585459,48.9681541],[13.585547,48.9681316],[13.5856558,48.9680937],[13.5857662,48.9680724],[13.5858533,48.9680408],[13.5859114,48.9679397],[13.5859631,48.9679088],[13.5860106,48.9678479],[13.586018,48.967833],[13.5860968,48.9677843],[13.5861656,48.9677751],[13.586205,48.9677584],[13.5862637,48.967711],[13.5863165,48.9676805],[13.5863264,48.9676544],[13.5863796,48.9675767],[13.5864071,48.9675549],[13.5864142,48.967527],[13.5864354,48.967503],[13.5865111,48.9674682],[13.5865324,48.9674359],[13.5865397,48.967414],[13.5865269,48.96739],[13.5865347,48.9673768],[13.5865708,48.9673649],[13.5866119,48.9673398],[13.5866448,48.9673335],[13.5866615,48.9673365],[13.5867882,48.9672882],[13.5868049,48.9672694],[13.5868534,48.9672447],[13.5868952,48.9672042],[13.5868922,48.9671783],[13.5868678,48.9671462],[13.5868687,48.9671231],[13.5868572,48.9670989],[13.5868451,48.9670493],[13.5868252,48.9670108],[13.5868053,48.9669936],[13.5867916,48.9669484],[13.586812,48.9668669],[13.5868268,48.9668432],[13.5868328,48.9668133],[13.5868524,48.9667977],[13.5868273,48.966655],[13.5868534,48.9665873],[13.5869,48.9665561],[13.5869224,48.9665256],[13.5868897,48.9664704],[13.5869037,48.9663937],[13.5869263,48.9663656],[13.5869583,48.9662725],[13.5869425,48.9662446],[13.5868854,48.9661828],[13.5868664,48.9661451],[13.5868927,48.9661363],[13.5870214,48.9660469],[13.5870417,48.9660186],[13.5870712,48.9659998],[13.5872331,48.9659401],[13.5872608,48.9659074],[13.5872829,48.9658628],[13.5873378,48.9658514],[13.58737,48.9658272],[13.5874597,48.9658134],[13.5874928,48.9658127],[13.5875962,48.9657912],[13.5876222,48.9657781],[13.5876442,48.9657136],[13.5876611,48.9656962],[13.5877164,48.9656741],[13.587745,48.9656723],[13.5877544,48.9656388],[13.5877404,48.9655905],[13.5877594,48.9655714],[13.5878083,48.9655603],[13.5878495,48.9655095],[13.5878678,48.9654991],[13.5878778,48.96547],[13.5878984,48.9654434],[13.5879439,48.9654168],[13.587961,48.9653864],[13.5879775,48.9653092],[13.588004,48.9653067],[13.588031,48.9653125],[13.5880729,48.9653327],[13.5881433,48.9653388],[13.5881956,48.9653621],[13.5882228,48.9653877],[13.5882617,48.9653813],[13.5883026,48.9653678],[13.5883268,48.9653457],[13.5883297,48.9653173],[13.5883461,48.9653074],[13.5883989,48.9653021],[13.5884558,48.9652515],[13.5884854,48.9652146],[13.5884985,48.965193],[13.5885175,48.9651626],[13.5885788,48.9651117],[13.5885973,48.9650688],[13.5885867,48.9650557],[13.5885565,48.9650591],[13.5885366,48.9650507],[13.5885384,48.9650306],[13.5885565,48.9649984],[13.5885922,48.9649813],[13.5886462,48.9649799],[13.5886692,48.9649619],[13.588674,48.9649426],[13.5887081,48.9648978],[13.5887245,48.9648499],[13.588758,48.964804],[13.5887557,48.9647477],[13.5887448,48.9647248],[13.5887533,48.9646886],[13.5887837,48.9646588],[13.5888172,48.9646403],[13.5888492,48.9646108],[13.5888626,48.9645921],[13.5888599,48.9645681],[13.5888599,48.9645477],[13.5888422,48.9645182],[13.5888053,48.9644685],[13.5888028,48.9644229],[13.5887775,48.9644115],[13.588792,48.9643266],[13.5888237,48.964277],[13.5888604,48.9642297],[13.5888856,48.9642063],[13.5889111,48.9641897],[13.5889768,48.964116],[13.58902,48.9640742],[13.5890145,48.9640475],[13.5890386,48.9640322],[13.5891112,48.9640127],[13.5891558,48.9640112],[13.5891815,48.9640058],[13.5892482,48.9639732],[13.5892455,48.963961],[13.5892772,48.963947],[13.5893183,48.9638925],[13.5893476,48.9638462],[13.5893639,48.9638014],[13.5893575,48.9637738],[13.5893937,48.9637255],[13.5894673,48.9637034],[13.5894693,48.9636803],[13.5895057,48.9636498],[13.5895714,48.9636072],[13.5896613,48.9635792],[13.5897005,48.963571],[13.5897312,48.9635746],[13.5897759,48.9635559],[13.5898063,48.9635543],[13.5898483,48.9635433],[13.5898793,48.9635293],[13.5899263,48.9634824],[13.5899932,48.9634537],[13.590029,48.9634411],[13.5900465,48.9634052],[13.5900609,48.9633692],[13.5900574,48.9633574],[13.5900785,48.9633327],[13.5901045,48.9633209],[13.5901625,48.9633037],[13.5902131,48.9632989],[13.590251,48.9632944],[13.5903207,48.9632669],[13.5903694,48.9632651],[13.5904322,48.9632577],[13.590458,48.9632387],[13.5904782,48.9632326],[13.590502,48.9632008],[13.5905159,48.9631905],[13.5905598,48.9631852],[13.5905901,48.9631787],[13.5906268,48.9631841],[13.5906431,48.9631765],[13.5906577,48.9631572],[13.5906973,48.9631432],[13.5907764,48.9630869],[13.5907921,48.9630648],[13.5908527,48.9630083],[13.5908473,48.9629782],[13.5908612,48.9629531],[13.5908905,48.9629231],[13.5909417,48.9629016],[13.59097,48.9628621],[13.5909863,48.962845],[13.5910101,48.9628261],[13.5910612,48.9628046],[13.5910855,48.9627856],[13.5911083,48.9627844],[13.5911098,48.9627671],[13.591144,48.9627506],[13.5911752,48.9627304],[13.5911965,48.9627085],[13.5912094,48.9626839],[13.5912498,48.9626444],[13.5912721,48.9626372],[13.5912868,48.9626162],[13.591335,48.9626043],[13.5913936,48.9625824],[13.5914206,48.9625826],[13.5915029,48.9625534],[13.5915321,48.9625528],[13.5915509,48.9625431],[13.5915753,48.9625277],[13.5915859,48.9625161],[13.5916501,48.9624955],[13.5917039,48.9624813],[13.5918052,48.9624229],[13.5918528,48.9624],[13.5918935,48.9624005],[13.5920078,48.9623846],[13.5920457,48.9623486],[13.592091,48.9623471],[13.5921327,48.9623313],[13.5921964,48.9622684],[13.5922544,48.9621781],[13.5922622,48.9621383],[13.592318,48.9620612],[13.5922917,48.9619657],[13.592386,48.9618214],[13.5923881,48.9617761],[13.5924078,48.9617291],[13.5924479,48.9616901],[13.5924863,48.9616581],[13.5925163,48.9616385],[13.5925384,48.9615873],[13.5925443,48.9615348],[13.5925912,48.9614859],[13.5925842,48.9614492],[13.5925999,48.9614283],[13.5926491,48.9613705],[13.5927082,48.9613139],[13.592779,48.96129],[13.5927874,48.9612493],[13.5927758,48.9612317],[13.5928175,48.9611753],[13.5928836,48.9611368],[13.5929015,48.9611032],[13.5929414,48.9610074],[13.5929716,48.9608931],[13.5930013,48.9608858],[13.5929848,48.9608511],[13.592985,48.9607878],[13.5929964,48.9607352],[13.5930026,48.9606598],[13.5929724,48.9606452],[13.5929419,48.9606401],[13.5929121,48.9606152],[13.5928838,48.9605728],[13.5928784,48.9605455],[13.5928482,48.9605205],[13.592861,48.960482],[13.5928335,48.9604492],[13.592833,48.9604143],[13.5928077,48.9603887],[13.5927713,48.9603323],[13.5927131,48.9603004],[13.5926574,48.9602375],[13.5926668,48.960153],[13.5926585,48.9600799],[13.5926504,48.9600358],[13.5926243,48.9600007],[13.5926219,48.9599779],[13.5925869,48.9599547],[13.5925423,48.9598829],[13.5925057,48.959849],[13.5924868,48.9598184],[13.5924331,48.959796],[13.5924254,48.9597501],[13.5924457,48.9597016],[13.5924278,48.95965],[13.5923785,48.9596041],[13.5922918,48.9595528],[13.5923279,48.9594292],[13.5923089,48.9593699],[13.5922955,48.9593592],[13.5922311,48.9593197],[13.592157,48.9592045],[13.5921275,48.9591935],[13.5920394,48.9591752],[13.5919718,48.9591276],[13.5918602,48.9590674],[13.5918546,48.9590223],[13.5918023,48.9590018],[13.5917465,48.9589562],[13.5917073,48.958906],[13.59169,48.9588631],[13.5916885,48.9587999],[13.5917413,48.9587523],[13.591783,48.9587337],[13.5918033,48.9586905],[13.5917646,48.9586523],[13.5917073,48.958579],[13.5917011,48.958537],[13.5916696,48.9585206],[13.5916504,48.9584617],[13.5916446,48.9584342],[13.5916293,48.9584108],[13.5916385,48.9583978],[13.5915955,48.9583701],[13.5915177,48.9583318],[13.5914815,48.9582893],[13.5914647,48.9582438],[13.59143,48.9581954],[13.5914002,48.9581715],[13.5913641,48.9581671],[13.5913433,48.9581505],[13.5912899,48.9581355],[13.5912126,48.9581291],[13.5911413,48.9581283],[13.5910758,48.9581098],[13.5909993,48.9580969],[13.5909375,48.9580933],[13.5908857,48.9581069],[13.5908275,48.958124],[13.5907605,48.9581167],[13.5907001,48.9580882],[13.5906815,48.9580502],[13.5906797,48.9580336],[13.5906932,48.9580134],[13.5906669,48.957958],[13.5906674,48.9578488],[13.5906813,48.9577996],[13.5906542,48.9577595],[13.5906393,48.9576999],[13.590633,48.9576341],[13.5906141,48.9575931],[13.5906553,48.9573998],[13.5906446,48.9573594],[13.5906086,48.957281],[13.590573,48.9572274],[13.5905496,48.9572069],[13.5904847,48.9571777],[13.5904664,48.9571707],[13.5904036,48.9571339],[13.5903506,48.9571335],[13.5902921,48.9571254],[13.5902522,48.9571058],[13.590195,48.9570583],[13.5901508,48.9570412],[13.5901052,48.9570061],[13.5900743,48.9569905],[13.5900381,48.9569422],[13.5899977,48.9569505],[13.5899712,48.9569258],[13.5899365,48.9569203],[13.5899147,48.9569129],[13.5899068,48.9568937],[13.5897511,48.9568647],[13.5896887,48.9568412],[13.5896686,48.95682],[13.5896487,48.9567818],[13.5895853,48.9567573],[13.589563,48.9567243],[13.5895598,48.9566961],[13.5895178,48.956611],[13.5895488,48.9565201],[13.5895463,48.956486],[13.5895221,48.956472],[13.5894784,48.9564427],[13.5894326,48.956408],[13.5893652,48.9563844],[13.5893208,48.9563815],[13.5892566,48.9563334],[13.5892378,48.9562963],[13.5892591,48.9562103],[13.5892799,48.9561595],[13.5892852,48.9561288],[13.5892784,48.95611],[13.5892574,48.9560819],[13.5892406,48.9560493],[13.5892306,48.9560264],[13.5891852,48.9559378],[13.5891662,48.9558774],[13.589188,48.9558019],[13.5892071,48.9557588],[13.5892507,48.9557067],[13.589354,48.9555872],[13.5893796,48.9555343],[13.5893706,48.9554521],[13.5893303,48.9553391],[13.5892827,48.9552783],[13.5892333,48.9552274],[13.5892083,48.9551965],[13.5891632,48.9551284],[13.5891384,48.9550752],[13.589128,48.9550383],[13.589124,48.9549945],[13.5891169,48.9549465],[13.5891211,48.9548931],[13.5891211,48.954858],[13.5891461,48.95479],[13.5891649,48.9547543],[13.5891758,48.9547151],[13.5892353,48.9546254],[13.5892911,48.9545537],[13.5893181,48.9545284],[13.5893711,48.9544608],[13.5894691,48.9543405],[13.5895293,48.9542483],[13.5895692,48.9541789],[13.5895858,48.9541621],[13.5896349,48.9540758],[13.5896604,48.9540187],[13.589725,48.953895],[13.5897752,48.9538159],[13.5898042,48.9537537],[13.5898145,48.9537252],[13.5898193,48.9537159],[13.5898294,48.9536846],[13.5898433,48.9536662],[13.5899146,48.9535274],[13.5899437,48.9534963],[13.5899607,48.9534802],[13.58999,48.9534566],[13.5900654,48.9534025],[13.5901534,48.9533327],[13.5901774,48.9533117],[13.5902259,48.9532406],[13.59028,48.9530868],[13.5902984,48.9530433],[13.5903409,48.9529709],[13.5903712,48.9529433],[13.590418,48.9528918],[13.5904545,48.9528605],[13.5904884,48.9528374],[13.5905561,48.9527953],[13.59071,48.9527121],[13.5907925,48.9526626],[13.5910201,48.9525091],[13.5910855,48.9524455],[13.5911415,48.9524175],[13.5912186,48.952369],[13.591252,48.9523438],[13.591312,48.9523107],[13.5913629,48.952278],[13.5913995,48.9522292],[13.5914233,48.9521605],[13.5914107,48.9520754],[13.5914377,48.9520079],[13.5914991,48.9519474],[13.5915467,48.9519028],[13.5916278,48.9518081],[13.5916957,48.9517409],[13.5917666,48.9516859],[13.5918057,48.9516679],[13.5918305,48.9516629],[13.5919156,48.9516356],[13.5920625,48.951564],[13.5921265,48.9515167],[13.5921507,48.9514914],[13.5921773,48.9514466],[13.5921901,48.9514169],[13.5922053,48.9513655],[13.5922771,48.9512387],[13.5923255,48.9511721],[13.5923659,48.9511311],[13.5923713,48.951111],[13.5923953,48.9510915],[13.5924513,48.9510377],[13.5925267,48.9509619],[13.592614,48.9508434],[13.5926688,48.9507834],[13.5926856,48.9507576],[13.5927238,48.9507157],[13.5927815,48.9506382],[13.5927947,48.9506121],[13.5928439,48.950525],[13.5929096,48.9504313],[13.5929631,48.950343],[13.5930447,48.9501813],[13.5931156,48.9500766],[13.5931899,48.9500059],[13.5933552,48.9499044],[13.5935313,48.9498083],[13.5936408,48.9497539],[13.5937657,48.949698],[13.5939595,48.9496087],[13.5941161,48.9495187],[13.5942187,48.9494341],[13.5944171,48.9492609],[13.594452,48.9492359],[13.5945851,48.9491225],[13.594676,48.9490293],[13.5947181,48.9489822],[13.5948116,48.948825],[13.5948942,48.9486688],[13.5949048,48.948636],[13.5949605,48.9485726],[13.5950168,48.9485219],[13.5951177,48.948462],[13.5953769,48.9483225],[13.5954493,48.9482628],[13.5956049,48.9480913],[13.59582,48.9478749],[13.5959183,48.9477995],[13.5961202,48.9476592],[13.596261,48.947515],[13.5963344,48.9474115],[13.5963656,48.9473483],[13.5963817,48.9472891],[13.5964102,48.9471233],[13.5964612,48.9470504],[13.5965011,48.9470103],[13.5965778,48.9469513],[13.5966684,48.9468958],[13.5967673,48.9468454],[13.5968927,48.9467994],[13.597002,48.9467527],[13.5970489,48.946704],[13.5971015,48.9466186],[13.5971478,48.9465312],[13.5972061,48.9464557],[13.5972209,48.9464409],[13.5972866,48.9463938],[13.5973516,48.9463625],[13.5973852,48.9463497],[13.5974512,48.9463385],[13.5975776,48.9463006],[13.5975957,48.9462918],[13.5976661,48.9462335],[13.5976832,48.9462126],[13.5977137,48.9461099],[13.5977476,48.9460635],[13.5978157,48.946012],[13.5979515,48.945956],[13.5979759,48.9459532],[13.5980996,48.945906],[13.5981761,48.9458814],[13.5984534,48.9458246],[13.5985546,48.9457999],[13.5986049,48.9457889],[13.5987259,48.9457288],[13.5988151,48.9456911],[13.5989787,48.9456006],[13.599015,48.9455764],[13.5990874,48.9455423],[13.5991856,48.9454687],[13.5992607,48.945419],[13.5993331,48.9453835],[13.5994739,48.9453771],[13.5995849,48.9453595],[13.5996922,48.9453216],[13.5997656,48.9452908],[13.5998548,48.945254],[13.5999812,48.9452139],[13.6001069,48.9451985],[13.6002515,48.9451353],[13.600346,48.9450849],[13.6003939,48.9450655],[13.600513,48.9450239],[13.6005629,48.9450083],[13.6006897,48.9449768],[13.6008037,48.9449515],[13.6008774,48.9449272],[13.600979,48.9448918],[13.6010306,48.9448693],[13.6011155,48.9448279],[13.601146,48.9448116],[13.6012469,48.9447544],[13.6013046,48.9446813],[13.6013408,48.9446088],[13.6013676,48.9445787],[13.6014286,48.9445273],[13.6015178,48.9444851],[13.6015922,48.9444558],[13.6016284,48.9444457],[13.6016757,48.9444267],[13.6017599,48.9443869],[13.601785,48.9443701],[13.6018145,48.9443417],[13.601847,48.9442891],[13.6018534,48.9442677],[13.6018618,48.9441847],[13.6018621,48.944123],[13.601844,48.9440667],[13.6018051,48.9439918],[13.6017837,48.9439348],[13.601779,48.9438936],[13.6017917,48.9438562],[13.6018356,48.9437969],[13.6018967,48.9437295],[13.601955,48.943658],[13.6020371,48.9435893],[13.6020589,48.9435749],[13.6020961,48.9435485],[13.6021974,48.9434706],[13.6022406,48.9434358],[13.6022836,48.9433845],[13.602299,48.9433232],[13.6023003,48.9432178],[13.6023097,48.9431601],[13.6023318,48.9431171],[13.6023714,48.9430795],[13.6023969,48.9430581],[13.6024753,48.9430125],[13.6026289,48.9429403],[13.6027063,48.9429141],[13.6028089,48.9428919],[13.6029189,48.9428579],[13.6029997,48.9428093],[13.6030812,48.9427547],[13.6031821,48.9427095],[13.603273,48.9426934],[13.6033259,48.9426877],[13.6033933,48.9426675],[13.6034409,48.942634],[13.6034932,48.9425677],[13.6035593,48.9424939],[13.6036387,48.9424162],[13.6037779,48.9423739],[13.6040562,48.9423624],[13.6041993,48.9423455],[13.6042536,48.9423415],[13.604367,48.9423195],[13.6044364,48.9422946],[13.6045155,48.9422603],[13.6045644,48.9422438],[13.6048819,48.9421634],[13.6049554,48.9421251],[13.6049782,48.94209],[13.6050023,48.9419788],[13.6050244,48.9419042],[13.6050446,48.9418524],[13.6050653,48.9418205],[13.6051134,48.941764],[13.6051341,48.9417392],[13.6051616,48.9416941],[13.6051646,48.9416813],[13.6051391,48.9416311],[13.6051227,48.94161],[13.6049443,48.9414867],[13.6049483,48.9414234],[13.6049614,48.9413944],[13.6051485,48.9412046],[13.6052363,48.9411535],[13.6052699,48.9411407],[13.6053061,48.9411374],[13.6054134,48.9411396],[13.6055183,48.9411691],[13.6055984,48.9411832],[13.6057517,48.9411876],[13.6058848,48.941183],[13.6060088,48.9411563],[13.6062415,48.9411306],[13.6063592,48.941127],[13.6064028,48.9411224],[13.6064859,48.9411378],[13.6065117,48.9411623],[13.6066629,48.9412565],[13.60684,48.9413732],[13.6069466,48.9413898],[13.607021,48.9413662],[13.6070495,48.941353],[13.6070767,48.941329],[13.6071417,48.941216],[13.6072021,48.941162],[13.6072819,48.9411215],[13.6074133,48.9410825],[13.607483,48.941059],[13.6075206,48.9410513],[13.6075984,48.9410132],[13.607646,48.9409821],[13.6077097,48.9409158],[13.6077838,48.9408485],[13.6078642,48.9407529],[13.6079071,48.9406875],[13.607937,48.9406238],[13.6079527,48.9405774],[13.6079963,48.9403684],[13.6080061,48.9403356],[13.6080268,48.9402999],[13.6080597,48.9402668],[13.608117,48.9402395],[13.6082099,48.9402032],[13.6082944,48.940173],[13.6083953,48.9401411],[13.6084768,48.9401184],[13.6085777,48.9401076],[13.608686,48.9401085],[13.6087869,48.9401178],[13.6088546,48.9401178],[13.6089093,48.9401045],[13.6089452,48.940094],[13.6090511,48.9400549],[13.6093787,48.9399288],[13.6095091,48.9398729],[13.609557,48.9398603],[13.6095939,48.9398356],[13.6096231,48.9397993],[13.6096623,48.9397603],[13.6096769,48.9397409],[13.609724,48.9396473],[13.6097408,48.939617],[13.6097703,48.9395811],[13.6098477,48.9395137],[13.6099285,48.9394569],[13.6100217,48.9394051],[13.6101012,48.9393342],[13.6102571,48.9391686],[13.6102879,48.9391091],[13.6103081,48.9390574],[13.6103158,48.9390298],[13.6103141,48.9389609],[13.6102973,48.9388933],[13.6102688,48.9388208],[13.6102382,48.9387011],[13.6102442,48.9386671],[13.6102457,48.938637],[13.6102455,48.9386225],[13.6102957,48.938676],[13.6103425,48.9387324],[13.6104013,48.9387964],[13.6104542,48.9388318],[13.6104788,48.9388568],[13.610533,48.9388975],[13.6106728,48.938986],[13.6106829,48.9390021],[13.6106862,48.93908],[13.6106521,48.9391186],[13.6106474,48.9391448],[13.6106306,48.9391602],[13.6106329,48.93918],[13.6105964,48.9393082],[13.6105857,48.9393593],[13.6105719,48.9393928],[13.6105689,48.9394361],[13.6105622,48.9394892],[13.6105568,48.9395123],[13.6105404,48.9395593],[13.6105163,48.9395998],[13.6104412,48.9396678],[13.6103406,48.9397766],[13.6103121,48.939798],[13.610246,48.9398702],[13.6102095,48.93992],[13.6101984,48.9399495],[13.6101964,48.9399803],[13.6101833,48.9400713],[13.6101817,48.9400999],[13.6101827,48.9401497],[13.6101595,48.9402336],[13.6101428,48.9402596],[13.6100972,48.9402783],[13.6100405,48.9402851],[13.6099309,48.9402803],[13.6098585,48.9402679],[13.6098239,48.9402497],[13.6097039,48.9402268],[13.6096342,48.9402309],[13.6095946,48.9402431],[13.6095477,48.9402743],[13.6095218,48.9402849],[13.6094229,48.9403118],[13.6093555,48.9403483],[13.6092824,48.9404049],[13.6092647,48.9404386],[13.609261,48.940467],[13.6092194,48.9405064],[13.6091601,48.9405373],[13.6090675,48.9405672],[13.6089113,48.9405763],[13.608801,48.9406271],[13.6087336,48.9406606],[13.6086847,48.9406895],[13.6086079,48.9407353],[13.6085542,48.9407903],[13.6084664,48.9408264],[13.6083863,48.9408434],[13.6082052,48.9409641],[13.6081479,48.9410275],[13.6080738,48.9410947],[13.6080661,48.9411255],[13.6080664,48.9411422],[13.6080295,48.9412587],[13.6079866,48.9412909],[13.6079618,48.9412988],[13.6079206,48.9413301],[13.6078548,48.9413942],[13.6077911,48.9414563],[13.6077533,48.9415243],[13.607765,48.9415827],[13.6078046,48.9416562],[13.6078253,48.9417249],[13.6078404,48.9417538],[13.6078823,48.9417925],[13.6079551,48.9418253],[13.6079987,48.9418315],[13.6080389,48.9418441],[13.6080672,48.9418682],[13.6080818,48.9418808],[13.6080909,48.9419015],[13.6080808,48.941974],[13.6080828,48.9420031],[13.6080865,48.9420207],[13.6081086,48.9420652],[13.6081224,48.9421057],[13.6081469,48.9421334],[13.6081553,48.9421544],[13.6081425,48.9421577],[13.6081388,48.9421753],[13.6081368,48.9422358],[13.6081308,48.9422605],[13.6081244,48.9422713],[13.6081274,48.9422823],[13.6081365,48.9422957],[13.608174,48.9423263],[13.6081955,48.9423636],[13.6081948,48.9423986],[13.6081988,48.9424492],[13.6082079,48.9424642],[13.6082099,48.942486],[13.6082059,48.9425267],[13.6081948,48.9425618],[13.60817,48.942639],[13.6081506,48.9426771],[13.6081414,48.942717],[13.6081392,48.9427377],[13.6081435,48.9427544],[13.6080989,48.9427822],[13.6080641,48.9428121],[13.608058,48.9428264],[13.6080282,48.942848],[13.6078465,48.942922],[13.6077982,48.9429531],[13.6077365,48.9430132],[13.6076865,48.9430755],[13.6076527,48.9431321],[13.607644,48.9431711],[13.6076621,48.943199],[13.6076885,48.9432294],[13.6077254,48.9432556],[13.6077482,48.9432818],[13.6077794,48.9433318],[13.6077878,48.9433545],[13.6078394,48.9434162],[13.6078753,48.9434485],[13.6079209,48.9435065],[13.6079722,48.9435329],[13.6081043,48.9435672],[13.6081241,48.9435796],[13.6082166,48.9436031],[13.608234,48.9436029],[13.6082746,48.9436174],[13.6083906,48.9436679],[13.6084741,48.9437143],[13.6085868,48.9437681],[13.6087698,48.9438282],[13.6087993,48.9438333],[13.6088466,48.9438568],[13.6089458,48.9438894],[13.6091252,48.9439414],[13.6091795,48.9439658],[13.6092291,48.9439766],[13.6092596,48.943981],[13.6093022,48.9439938],[13.6093669,48.944024],[13.6094166,48.9440539],[13.6094558,48.9440702],[13.6095071,48.9441039],[13.6095537,48.9441407],[13.6095886,48.9441733],[13.6095969,48.9441942],[13.6096006,48.9442193],[13.6096003,48.944236],[13.609606,48.9442486],[13.6096258,48.9442787],[13.6096677,48.944319],[13.6097344,48.9443611],[13.6098108,48.9444027],[13.6098269,48.9444296],[13.6098511,48.9444597],[13.6099061,48.9444756],[13.6099305,48.9444833],[13.6100425,48.9445073],[13.6101408,48.9445025],[13.6102011,48.9444901],[13.6102299,48.9444932],[13.6102789,48.9445005],[13.6103537,48.9445249],[13.6105862,48.9445743],[13.6107453,48.9446172],[13.6107875,48.9446156],[13.6108029,48.9446238],[13.6108401,48.9446231],[13.6108998,48.9446075],[13.6109997,48.9445934],[13.6110225,48.9445773],[13.6110665,48.9445679],[13.6110882,48.9445685],[13.611162,48.9445754],[13.611219,48.9445877],[13.6112415,48.9445877],[13.6113042,48.9445681],[13.6113957,48.9445458],[13.6114376,48.9445366],[13.6114584,48.9445384],[13.6115291,48.9445287],[13.6116659,48.9445166],[13.6116948,48.9445031],[13.611793,48.9444974],[13.6118527,48.9444954],[13.6118815,48.944524],[13.6118999,48.9445278],[13.6119791,48.9445146],[13.612028,48.9444941],[13.6120703,48.9444641],[13.6120968,48.9444463],[13.6121611,48.9444137],[13.6122051,48.9443772],[13.6122255,48.9443655],[13.6123382,48.9443243],[13.6124069,48.9443069],[13.6125071,48.9442994],[13.6125259,48.9442946],[13.6125531,48.9442842],[13.6126044,48.9442772],[13.6127009,48.944279],[13.6127603,48.9442851],[13.6127941,48.9442596],[13.6128183,48.9442188],[13.6128669,48.9441686],[13.6128501,48.9441363],[13.6128726,48.9441004],[13.6128974,48.9440935],[13.6129517,48.9440953],[13.613061,48.9441297],[13.6131616,48.9441684],[13.6132236,48.9442102],[13.6132645,48.9442213],[13.6133319,48.9442448],[13.6134077,48.9442594],[13.6134955,48.9442684],[13.6136397,48.9442792],[13.6138211,48.9443131],[13.6139042,48.9443201],[13.6139384,48.9443316],[13.6140286,48.9443721],[13.6141315,48.9444575],[13.61416,48.944487],[13.6141533,48.9445738],[13.6141651,48.9445972],[13.6141818,48.9446198],[13.6141952,48.9446293],[13.6142211,48.944643],[13.6142636,48.9446584],[13.6143253,48.944661],[13.6143552,48.9446689],[13.61438,48.9446857],[13.6144527,48.9447114],[13.6145094,48.9447658],[13.6145215,48.9447898],[13.6145644,48.9448502],[13.6146187,48.9448636],[13.6146844,48.9448861],[13.6147803,48.9449473],[13.6147996,48.9449535],[13.6148752,48.9449915],[13.6149587,48.9450468],[13.6149878,48.9450803],[13.6150036,48.9450862],[13.6150368,48.9450964],[13.6150733,48.945127],[13.615138,48.945167],[13.6152769,48.9452452],[13.615305,48.9452765],[13.6153362,48.9453271],[13.6153751,48.9453635],[13.6154378,48.9454071],[13.6154767,48.9454286],[13.6155176,48.9454641],[13.6155571,48.9454905],[13.6155923,48.9455264],[13.6156212,48.9455449],[13.6156567,48.9455819],[13.6156795,48.9455978],[13.6157271,48.9456361],[13.6157643,48.945664],[13.6157865,48.94569],[13.615818,48.9457169],[13.6158428,48.9457561],[13.6158535,48.9457636],[13.6158891,48.9457957],[13.6159682,48.9458472],[13.6159839,48.9458543],[13.6159866,48.945877],[13.6160021,48.945884],[13.6160202,48.9459199],[13.6160624,48.9459833],[13.6161077,48.9460282],[13.6161372,48.9460542],[13.6161948,48.9460985],[13.6162488,48.9461348],[13.6162632,48.9461553],[13.6163068,48.9461716],[13.6163501,48.9462277],[13.6163802,48.9462491],[13.6164071,48.9462606],[13.6164188,48.9462716],[13.61646,48.9462914],[13.6164842,48.9463134],[13.6165328,48.9463458],[13.6165536,48.9463641],[13.6165918,48.946392],[13.616627,48.9464231],[13.6166716,48.9464361],[13.6166957,48.9464345],[13.6167296,48.9464515],[13.6167729,48.9464819],[13.6167957,48.9465215],[13.6168044,48.9465781],[13.6168043,48.9466226],[13.6167957,48.9466457],[13.6168235,48.9466763],[13.6168426,48.9467104],[13.6168557,48.9467291],[13.6168644,48.9467516],[13.6168694,48.9467776],[13.6168845,48.9468157],[13.6168919,48.9468366],[13.616919,48.9468775],[13.6169723,48.9469119],[13.6170099,48.9469383],[13.6170458,48.94697],[13.6170632,48.9469927],[13.6170917,48.9470449],[13.6171118,48.9470925],[13.617144,48.9471336],[13.6171437,48.9471601],[13.6171708,48.9471973],[13.6171836,48.9472085],[13.6172278,48.947229],[13.6172788,48.9472457],[13.6173452,48.9472677],[13.6173706,48.9472836],[13.6174065,48.9472825],[13.6174575,48.9472928],[13.6175088,48.9473052],[13.6175624,48.9473294],[13.6175755,48.9473371],[13.6176446,48.9473463],[13.6176865,48.947362],[13.6177227,48.9473952],[13.617777,48.9474111],[13.6178447,48.9474395],[13.6179024,48.9474553],[13.6179604,48.9474635],[13.6180134,48.9474681],[13.6181012,48.947487],[13.6181636,48.9475157],[13.6182041,48.94753],[13.6182427,48.9475366],[13.6182813,48.9475524],[13.6183279,48.9475934],[13.6183661,48.947624],[13.6184556,48.9476427],[13.6185206,48.9476432],[13.6185998,48.9476491],[13.6186383,48.9476502],[13.618692,48.9476724],[13.6187185,48.9476874],[13.6188143,48.9477169],[13.6188656,48.9477517],[13.6189317,48.9477742],[13.6189796,48.9477953],[13.6190132,48.9478006],[13.6190655,48.9477958],[13.6191013,48.9477839],[13.6191805,48.9477845],[13.6192405,48.9478076],[13.6192606,48.9478151],[13.6192878,48.9478464],[13.6193132,48.9478468],[13.6193394,48.9478427],[13.6193753,48.9478523],[13.6194101,48.9478576],[13.6194524,48.9478506],[13.6194916,48.9478361],[13.6195218,48.9478405],[13.6195801,48.9478444],[13.6196133,48.9478499],[13.6196978,48.947846],[13.6197323,48.9478475],[13.6197843,48.947864],[13.6198195,48.9478792],[13.619849,48.9479001],[13.6198772,48.9479288],[13.6198966,48.9479523],[13.6199094,48.9479607],[13.6199647,48.9479688],[13.6199774,48.9479666],[13.6200059,48.9479575],[13.6200319,48.9479586],[13.6200674,48.9479774],[13.620083,48.9479881],[13.620107,48.9480122],[13.6201147,48.9480507],[13.6201268,48.9480843],[13.6201561,48.9480982],[13.6202007,48.9481129],[13.6202153,48.9481225],[13.6202523,48.9481154],[13.6202812,48.9481481],[13.6203229,48.9481737],[13.6203744,48.9481859],[13.6204009,48.9481994],[13.6204544,48.9482482],[13.620477,48.9482662],[13.6205129,48.9482896],[13.6205467,48.948316],[13.6205699,48.9483288],[13.6206222,48.9483524],[13.6206404,48.9483714],[13.6206654,48.9483789],[13.6206969,48.9483741],[13.6207455,48.9483844],[13.6208056,48.9484113],[13.6208493,48.9484233],[13.6209061,48.9484429],[13.6209147,48.9484632],[13.620997,48.9485357],[13.6210392,48.9485573],[13.6210758,48.948586],[13.6210996,48.9486086],[13.6211316,48.948631],[13.6211455,48.9486382],[13.6211918,48.948689],[13.621226,48.9487089],[13.621264,48.9487543],[13.6212759,48.9487733],[13.6213425,48.9488202],[13.6213898,48.9488485],[13.621428,48.9488949],[13.621465,48.9489238],[13.6215048,48.9489503],[13.621575,48.9489853],[13.621634,48.9489806],[13.6216883,48.9489776],[13.6217532,48.9489697],[13.6218447,48.9489698],[13.6218744,48.9489761],[13.6219398,48.948988],[13.6219685,48.948965],[13.6219938,48.9489347],[13.6220337,48.9489131],[13.6221174,48.9489331],[13.622171,48.9489393],[13.622204,48.9489401],[13.6222573,48.9489227],[13.6222858,48.9489162],[13.6223524,48.9489336],[13.6223902,48.948933],[13.6224328,48.94892],[13.6225022,48.9489056],[13.6225847,48.9488997],[13.6226347,48.9488889],[13.622718,48.9488529],[13.622813,48.9488029],[13.6228444,48.9487837],[13.6228923,48.948767],[13.6229,48.948754],[13.6229114,48.9487091],[13.6229232,48.9486957],[13.6230095,48.9487091],[13.6231071,48.9487098],[13.623205,48.9487124],[13.6232722,48.9487202],[13.6233451,48.9487023],[13.6234028,48.9486915],[13.6235382,48.9486811],[13.623558,48.9486861],[13.6235751,48.9486971],[13.6236512,48.9487058],[13.6236797,48.9487029],[13.6237362,48.9486764],[13.6237971,48.9486643],[13.6238572,48.9486484],[13.6239134,48.948658],[13.6239283,48.9486677],[13.6239545,48.9487114],[13.6239959,48.9487212],[13.624046,48.9487268],[13.6241053,48.9487298],[13.6241248,48.9487519],[13.6241238,48.9487612],[13.6241139,48.9487728],[13.6240876,48.9487927],[13.6241288,48.9488259],[13.6241877,48.9488532],[13.6242584,48.948868],[13.6242725,48.9488752],[13.624306,48.9488757],[13.6243875,48.9488611],[13.6243999,48.9488553],[13.6244185,48.9488556],[13.6244267,48.9488716],[13.6244705,48.9488619],[13.6245031,48.9488368],[13.6245114,48.9488207],[13.6245332,48.9487923],[13.6246081,48.948781],[13.6246322,48.9487828],[13.6246822,48.9488037],[13.6247144,48.9488469],[13.6247735,48.9488413],[13.624846,48.9488094],[13.6248951,48.9487908],[13.6249943,48.9488],[13.6250097,48.9488049],[13.6250733,48.9487891],[13.625168,48.948792],[13.6251973,48.9487966],[13.6252473,48.948839],[13.6253001,48.9488468],[13.6253445,48.9488688],[13.6253906,48.9488545],[13.6254456,48.9488295],[13.6255348,48.9488353],[13.6256169,48.9488385],[13.6257153,48.9488289],[13.6257992,48.9488305],[13.62588,48.948823],[13.6258952,48.9488191],[13.6259619,48.9487899],[13.625982,48.9487884],[13.6260506,48.9488137],[13.6260898,48.9488345],[13.6261505,48.9488618],[13.6262189,48.9488887],[13.6262426,48.9488674],[13.62626,48.9488532],[13.6263333,48.9488546],[13.6263913,48.9488496],[13.6264079,48.9488437],[13.6264176,48.948823],[13.6264196,48.9487834],[13.6264404,48.9487736],[13.6264897,48.9487841],[13.626516,48.9488138],[13.6265389,48.9488469],[13.6265696,48.9488839],[13.6266087,48.9489909],[13.6266353,48.9490352],[13.6266843,48.949083],[13.6266987,48.9491022],[13.6266907,48.9491319],[13.6267145,48.9491535],[13.6267185,48.9491779],[13.6267817,48.949221],[13.6268316,48.9492429],[13.6268725,48.9492644],[13.6268868,48.9492746],[13.6269532,48.9493003],[13.6269931,48.9493111],[13.627014,48.9493236],[13.6270504,48.9493295],[13.6270967,48.9493295],[13.6271936,48.9493476],[13.6272227,48.949355],[13.6272682,48.949357],[13.6273037,48.94936],[13.6273651,48.9493516],[13.6273936,48.9493561],[13.6274402,48.9493829],[13.6274987,48.9494134],[13.6275677,48.9494319],[13.6276175,48.9494245],[13.6276499,48.9494114],[13.6276764,48.9494135],[13.6277669,48.9494526],[13.6278013,48.9494506],[13.6278271,48.9494351],[13.6278438,48.9494198],[13.6278663,48.9493527],[13.6279047,48.9493168],[13.6280021,48.9493055],[13.6280185,48.9493078],[13.6280423,48.9493049],[13.6281406,48.949277],[13.6281625,48.9492665],[13.628275,48.949257],[13.6283109,48.9492501],[13.6283372,48.9492593],[13.6284105,48.9492534],[13.6284903,48.9492214],[13.6285648,48.9492567],[13.6286031,48.9492428],[13.6286249,48.9491924],[13.6286254,48.9491771],[13.628617,48.9491473],[13.6286017,48.9491314],[13.628568,48.9490658],[13.6285855,48.9489832],[13.6286135,48.9489597],[13.6286344,48.94895],[13.6286614,48.9489187],[13.6287199,48.9488924],[13.6287591,48.9488824],[13.628815,48.9488463],[13.6288376,48.9488372],[13.6288808,48.9488444],[13.6289305,48.948833],[13.6289593,48.9488058],[13.6289673,48.9487652],[13.6289798,48.9487455],[13.6290245,48.94871],[13.6290391,48.9487044],[13.6290917,48.9486803],[13.6291216,48.94866],[13.6291382,48.9486249],[13.6291467,48.9485816],[13.62911,48.9485648],[13.6291013,48.9485542],[13.6291264,48.9485498],[13.6291404,48.9485305],[13.6291541,48.9485026],[13.6291502,48.9484603],[13.629166,48.9484285],[13.6292279,48.9483908],[13.6292424,48.948357],[13.6292879,48.9483256],[13.6292832,48.9482704],[13.6293033,48.9482228],[13.6292895,48.948207],[13.6292206,48.9482031],[13.6292158,48.9481833],[13.6292198,48.9481488],[13.6292114,48.9481388],[13.6292178,48.9481277],[13.6292455,48.9481139],[13.6292523,48.9480908],[13.6292716,48.9480829],[13.6293182,48.9480855],[13.6293712,48.9481148],[13.6294231,48.9481334],[13.6294565,48.9481202],[13.6294946,48.9481089],[13.6295271,48.9480958],[13.6295326,48.9480909],[13.629562,48.9480983],[13.6295735,48.9480974],[13.6296003,48.9480804],[13.6296143,48.948084],[13.6296185,48.948093],[13.6296424,48.9480983],[13.6296922,48.9480889],[13.6297075,48.9480724],[13.6297061,48.94806],[13.6297127,48.9480533],[13.6297304,48.9480506],[13.6297797,48.9480486],[13.6297889,48.9480409],[13.6298599,48.9480645],[13.6298875,48.9480524],[13.6299127,48.948056],[13.629938,48.948061],[13.629976,48.948049],[13.6299822,48.9480413],[13.6300023,48.9480047],[13.6300298,48.9479847],[13.6300394,48.9479531],[13.6300451,48.9479416],[13.6300377,48.9479226],[13.6300605,48.9479008],[13.6300904,48.9478877],[13.6301309,48.9478845],[13.6301777,48.9478779],[13.6302027,48.9478795],[13.630255,48.947864],[13.6302858,48.9478705],[13.6303049,48.9478637],[13.6303264,48.9478845],[13.6303541,48.947893],[13.6303668,48.9478793],[13.6303671,48.9478719],[13.6303787,48.9478696],[13.6303951,48.947863],[13.6304089,48.9478038],[13.6304169,48.9477928],[13.6304394,48.9477948],[13.6304613,48.9477736],[13.6304696,48.9477638],[13.6304598,48.9477596],[13.6304305,48.9477479],[13.6304171,48.9477391],[13.6303785,48.9477294],[13.6303541,48.9477274],[13.6303671,48.9477143],[13.6303512,48.9476925],[13.630342,48.9476682],[13.6303599,48.947629],[13.6303831,48.9476119],[13.6303966,48.9475989],[13.630397,48.947593],[13.630425,48.9475827],[13.6304261,48.9475642],[13.6304003,48.9475431],[13.6303864,48.947494],[13.6304057,48.9474633],[13.6304014,48.9474353],[13.6304035,48.9474145],[13.6304072,48.9474028],[13.6304355,48.9473969],[13.6304749,48.9474015],[13.6304991,48.94741],[13.630516,48.9474364],[13.6305284,48.9474365],[13.6305522,48.9474203],[13.6305711,48.9473973],[13.6305921,48.947381],[13.6305931,48.9473592],[13.6306047,48.9473482],[13.6306139,48.9473256],[13.6306172,48.9473079],[13.6306245,48.947304],[13.6306472,48.9473099],[13.630656,48.9473053],[13.63066,48.9472855],[13.630655,48.9472779],[13.6306077,48.9472445],[13.630597,48.9472315],[13.6306013,48.9472169],[13.6306218,48.9472005],[13.6306379,48.9471717],[13.6306706,48.947139],[13.6307366,48.9470997],[13.6307772,48.9471056],[13.6307881,48.947103],[13.6308047,48.947096],[13.6308489,48.947073],[13.6308783,48.9470664],[13.6308952,48.9470698],[13.6309054,48.947079],[13.6309354,48.9470894],[13.6309611,48.9470823],[13.6309726,48.9470703],[13.6309733,48.9470514],[13.6309889,48.9470367],[13.6310038,48.9470316],[13.6310083,48.9470232],[13.6310062,48.947018],[13.6310114,48.9470093],[13.6310394,48.9470015],[13.631065,48.947],[13.6310843,48.9470069],[13.6311205,48.9470056],[13.6311366,48.947001],[13.6311477,48.9469929],[13.6310513,48.9469448],[13.6297813,48.9460901],[13.6291067,48.9456726],[13.6289063,48.9455483],[13.6288607,48.9455201],[13.6280957,48.9450469],[13.627283,48.9445064],[13.6270266,48.9443359],[13.6265365,48.9440117],[13.6260463,48.9436876],[13.6258255,48.9435411],[13.6255341,48.9433485],[13.6248936,48.9429214],[13.6247876,48.942851],[13.6240482,48.9423585],[13.6238364,48.9422172],[13.6234806,48.9413155],[13.6230564,48.940242],[13.6229655,48.9400113],[13.6224888,48.9388052],[13.6239763,48.9374186],[13.6250318,48.9364346],[13.6267215,48.9349178],[13.6277314,48.9340123],[13.6284959,48.9332454],[13.6293431,48.9323963],[13.6301686,48.9315688],[13.631305,48.930436],[13.6320486,48.9305488],[13.6327955,48.9306633],[13.633679,48.9298044],[13.6344172,48.9290824],[13.635514,48.92801],[13.6370738,48.9265644],[13.6380208,48.9256898],[13.6375838,48.9254415],[13.6371466,48.9251933],[13.6374395,48.9243401],[13.6375617,48.9239835],[13.6377704,48.9233742],[13.637863,48.9217904],[13.6378986,48.9211792],[13.637908,48.9210165],[13.6379772,48.9198545],[13.6380187,48.9192256],[13.6388461,48.9179894],[13.6399046,48.9164074],[13.6414259,48.9168315],[13.6419822,48.9160781],[13.6428906,48.9147724],[13.6428925,48.9147696],[13.6438004,48.913463],[13.6441387,48.9129768],[13.6444771,48.9124907],[13.6452437,48.9113794],[13.6453348,48.9112471],[13.6453472,48.9112291],[13.645401,48.9111067],[13.64565,48.91054],[13.6466348,48.9083579],[13.6467554,48.9080908],[13.6472586,48.9069735],[13.6474889,48.9065843],[13.6475468,48.906486],[13.6482455,48.9053007],[13.6482546,48.9052852],[13.6484539,48.9049746],[13.6492202,48.9037807],[13.6494775,48.9033807],[13.6495646,48.9032447],[13.6496509,48.9031102],[13.6500811,48.9024396],[13.6501026,48.902406],[13.6510685,48.9008994],[13.6513771,48.9004182],[13.6520364,48.8993181],[13.6520508,48.8992939],[13.6522103,48.8990273],[13.6526833,48.8982362],[13.6529842,48.8977439],[13.6529855,48.8977417],[13.6532942,48.8972326],[13.6533399,48.8971573],[13.6537467,48.8964882],[13.6539886,48.8960904],[13.6542375,48.8956704],[13.6543019,48.8955618],[13.6545324,48.8951736],[13.6551455,48.8941386],[13.6554752,48.8935737],[13.655603,48.8935902],[13.6559967,48.893641],[13.6569158,48.8937603],[13.6570118,48.893773],[13.6586058,48.8939801],[13.6587723,48.8940075],[13.6590445,48.8940523],[13.6598646,48.8941873],[13.6612082,48.8944087],[13.6612403,48.8944143],[13.6615196,48.8943487],[13.66264,48.8940849],[13.6626862,48.894074],[13.6627291,48.894064],[13.6646597,48.89361],[13.6646803,48.8936054],[13.6649678,48.8934205],[13.6661632,48.8926523],[13.666632,48.8923499],[13.6666493,48.8923385],[13.6678739,48.8915913],[13.6686981,48.8910891],[13.6695217,48.8905854],[13.6695673,48.8905575],[13.6696397,48.8905131],[13.6692082,48.8898112],[13.6691728,48.8897539],[13.6688709,48.8892636],[13.6687145,48.8890096],[13.6684924,48.8886515],[13.6683965,48.8884974],[13.6680066,48.8878694],[13.6683583,48.8874654],[13.6687235,48.8870455],[13.6692597,48.8864291],[13.6695768,48.8860641],[13.6695476,48.8856577],[13.6695224,48.8853041],[13.6694838,48.8847686],[13.6694119,48.8837689],[13.6694086,48.8837232],[13.6694177,48.8837072],[13.6697719,48.8830812],[13.6699456,48.8827742],[13.6699556,48.8827572],[13.6702901,48.8821673],[13.6704826,48.8818278],[13.6707396,48.8813748],[13.6708384,48.8812006],[13.6709402,48.8810217],[13.6714328,48.8801409],[13.6719352,48.8799838],[13.6724377,48.8798267],[13.6725036,48.8798063],[13.673823,48.8793937],[13.6743947,48.8792152],[13.6749409,48.8790448],[13.675907,48.8787432],[13.6759378,48.8787335],[13.6769019,48.8787393],[13.6776931,48.8787439],[13.6779045,48.8787451],[13.679315,48.8787535],[13.6798196,48.8787565],[13.6804791,48.8787564],[13.6805265,48.8787562],[13.680521,48.8787646],[13.6805176,48.8787935],[13.6805569,48.8788086],[13.6806121,48.8788196],[13.6806354,48.8788374],[13.6806356,48.8788577],[13.6806588,48.8788711],[13.6806892,48.8788788],[13.6807243,48.8788842],[13.6807513,48.8788927],[13.6807925,48.8788728],[13.6808085,48.8788721],[13.6808275,48.8788867],[13.6808808,48.8789271],[13.680939,48.8789483],[13.6809622,48.8789676],[13.6810037,48.8789887],[13.6810298,48.8790159],[13.6810466,48.8790264],[13.6810626,48.879029],[13.6810953,48.8790649],[13.6811306,48.8790669],[13.6811566,48.8790835],[13.6811543,48.8791031],[13.6811743,48.8791408],[13.681149,48.879165],[13.6811554,48.8791893],[13.681147,48.8792161],[13.6811571,48.87924],[13.6811823,48.8792487],[13.6812189,48.8792537],[13.6812582,48.8792555],[13.6812693,48.8792657],[13.681256,48.8792761],[13.6812457,48.8792915],[13.6812606,48.8793144],[13.6812955,48.8793203],[13.6813403,48.8793319],[13.6813606,48.8793292],[13.6813918,48.8793173],[13.6814083,48.8793182],[13.6814206,48.8793258],[13.6814065,48.8793689],[13.6813982,48.8793795],[13.6814056,48.879389],[13.6814297,48.8793985],[13.6814577,48.8794186],[13.6814929,48.8794307],[13.6815185,48.8794332],[13.6815199,48.8794425],[13.6815021,48.8794558],[13.6815018,48.8794708],[13.6815184,48.8794978],[13.6815582,48.8795145],[13.6815752,48.8795185],[13.6815888,48.8795152],[13.6816099,48.8794984],[13.6816384,48.8794691],[13.6816688,48.8794274],[13.681682,48.8794205],[13.6816884,48.8794345],[13.681703,48.8794539],[13.6817293,48.879455],[13.6817726,48.8794144],[13.681794,48.8794173],[13.6818061,48.8794411],[13.6818081,48.8794639],[13.6817954,48.8794785],[13.6817999,48.8794949],[13.6818519,48.8795267],[13.6818838,48.8795444],[13.6818953,48.8795602],[13.6819129,48.8796057],[13.6819263,48.8796146],[13.6819721,48.8796233],[13.6819958,48.8796183],[13.6820081,48.8796142],[13.6820268,48.8796223],[13.6820288,48.8796368],[13.6820484,48.8796542],[13.6820763,48.8796543],[13.6821216,48.8796469],[13.6821385,48.8796381],[13.6821872,48.8796128],[13.6822047,48.8796008],[13.6822408,48.8796037],[13.6822739,48.8796237],[13.6823102,48.8796225],[13.6823312,48.8796022],[13.682346,48.8795969],[13.6823604,48.8795963],[13.6823685,48.8796137],[13.6823726,48.8796332],[13.6823894,48.8796367],[13.6824217,48.8796476],[13.6824288,48.8796579],[13.6824591,48.8796721],[13.6825011,48.8796697],[13.6825438,48.8796951],[13.6825644,48.8796964],[13.682617,48.8796975],[13.6826851,48.8797224],[13.6827016,48.8797204],[13.6827227,48.87971],[13.6827732,48.8797071],[13.682826,48.8797121],[13.6828647,48.8797201],[13.6829119,48.8796677],[13.6829365,48.8796632],[13.6829669,48.8796685],[13.6830081,48.8796757],[13.6830457,48.8796726],[13.6830581,48.87969],[13.6830448,48.8797097],[13.6830581,48.8797245],[13.6830881,48.8797259],[13.6831225,48.8797068],[13.683168,48.8796986],[13.6832002,48.8797063],[13.6832289,48.8797277],[13.6832684,48.8797293],[13.6832829,48.8797181],[13.6832842,48.8797073],[13.6833304,48.8797049],[13.6833776,48.8796958],[13.6834003,48.8796982],[13.6834106,48.8797504],[13.6834169,48.8797578],[13.6834698,48.8797661],[13.6835113,48.8797528],[13.6835365,48.8797438],[13.6835814,48.879768],[13.6836208,48.8797836],[13.6836398,48.8798018],[13.6836473,48.8798224],[13.6836765,48.8798585],[13.6836922,48.8798546],[13.6837117,48.8798324],[13.6837419,48.8798375],[13.6837771,48.8798611],[13.6838355,48.8798767],[13.6838771,48.8798753],[13.6838937,48.8798656],[13.683895,48.8798432],[13.6839478,48.8798357],[13.6840155,48.879852],[13.6840373,48.8798779],[13.6840249,48.8799074],[13.684037,48.8799247],[13.6840657,48.8799391],[13.6840993,48.8799468],[13.6841322,48.879937],[13.6841972,48.879949],[13.6842167,48.8799436],[13.6842318,48.8799205],[13.6842451,48.8799152],[13.6842819,48.8799237],[13.6843169,48.879917],[13.6843253,48.8799018],[13.6843347,48.8798418],[13.6843471,48.8798314],[13.6843816,48.879818],[13.6844015,48.8798023],[13.6844155,48.8797868],[13.6844786,48.8797588],[13.6845554,48.8797434],[13.6845787,48.8797437],[13.6846012,48.8797532],[13.6846274,48.8797377],[13.6846543,48.8797122],[13.6846809,48.8797125],[13.6847316,48.8797337],[13.6848115,48.8797358],[13.6848534,48.8797258],[13.6848782,48.8797354],[13.6849064,48.8797371],[13.6849417,48.8797187],[13.6849935,48.8796835],[13.6850358,48.8796877],[13.6850593,48.8796943],[13.6851607,48.8797008],[13.6852033,48.8796782],[13.6852134,48.87963],[13.6852584,48.8796011],[13.6853184,48.8795708],[13.6853644,48.8795626],[13.6854674,48.8795709],[13.6855458,48.8795738],[13.6856138,48.8795471],[13.6856676,48.8795322],[13.6857069,48.8795023],[13.6857085,48.8794879],[13.685739,48.8794546],[13.6857529,48.8794283],[13.6857659,48.8794113],[13.6858263,48.8793794],[13.6858696,48.8793629],[13.6859131,48.879335],[13.6859407,48.8793069],[13.6859614,48.8792965],[13.6859761,48.8793024],[13.685994,48.8793145],[13.6860157,48.8793193],[13.6860315,48.8793396],[13.6860689,48.8793471],[13.6861243,48.8793398],[13.6861781,48.8793307],[13.686233,48.8793156],[13.6862889,48.8793195],[13.6863332,48.8793029],[13.6863715,48.8792789],[13.6863849,48.8792559],[13.6864,48.8792467],[13.6863917,48.8792329],[13.686425,48.8792094],[13.6864373,48.8791904],[13.6864573,48.8791809],[13.6865071,48.8791822],[13.6865667,48.8791512],[13.686591,48.8791446],[13.686642,48.879112],[13.6866614,48.8790881],[13.6866842,48.8790325],[13.6867323,48.8790087],[13.6867747,48.878996],[13.6867934,48.87898],[13.686865,48.8789494],[13.6869049,48.8789452],[13.686933,48.8789443],[13.6869542,48.8789208],[13.6870395,48.8788985],[13.6871213,48.8788681],[13.6871796,48.8788409],[13.6872029,48.8788079],[13.687263,48.8787834],[13.6873315,48.8787381],[13.6873975,48.8786763],[13.6874269,48.8786611],[13.6874713,48.8785433],[13.6874815,48.8785341],[13.6875037,48.8785251],[13.6875225,48.8785249],[13.6875485,48.8785142],[13.6875758,48.8784994],[13.6876063,48.8784911],[13.687632,48.8784717],[13.6876431,48.8784627],[13.6876677,48.8784538],[13.6877133,48.8784395],[13.6877329,48.8784282],[13.6877798,48.8784221],[13.6878271,48.8784099],[13.6878651,48.8784111],[13.6879243,48.8784168],[13.6879485,48.8784153],[13.6879729,48.8784039],[13.6880408,48.8783755],[13.6881341,48.8783588],[13.6881732,48.8783566],[13.6881827,48.8783561],[13.6882108,48.8783562],[13.6882399,48.8783375],[13.6882634,48.8783311],[13.6882994,48.8783125],[13.6883204,48.878304],[13.6883298,48.8782931],[13.6883411,48.8782735],[13.6883453,48.8782564],[13.6883472,48.8782419],[13.6883627,48.8782325],[13.6883899,48.8782335],[13.6884143,48.8782414],[13.6884313,48.8782605],[13.6884484,48.878259],[13.68849,48.8782604],[13.6885144,48.8782601],[13.6885879,48.8782912],[13.6886005,48.8782982],[13.6886386,48.8783015],[13.6886854,48.8783009],[13.6887367,48.878311],[13.6887666,48.8783117],[13.6888472,48.8783325],[13.6889304,48.8783629],[13.6889617,48.8783663],[13.6889724,48.8783657],[13.6889783,48.878356],[13.6889995,48.8783404],[13.6890192,48.878335],[13.6890478,48.8783327],[13.6890886,48.8783231],[13.6891144,48.8783072],[13.6891511,48.8782705],[13.6891882,48.8782541],[13.6892283,48.8782367],[13.6892539,48.8782291],[13.6892806,48.8782346],[13.6893153,48.8782501],[13.6893565,48.8782595],[13.6893818,48.8782787],[13.6893982,48.8782878],[13.6894307,48.8782928],[13.6894717,48.8782869],[13.6895043,48.8782773],[13.6895423,48.8782865],[13.6895725,48.8783026],[13.6896435,48.8783267],[13.6896721,48.8783393],[13.6897044,48.8783458],[13.6897462,48.8783671],[13.6897873,48.8783774],[13.6898088,48.8783853],[13.6898426,48.8784039],[13.6898649,48.8784209],[13.6899011,48.8784377],[13.6899752,48.8784577],[13.6900233,48.8784629],[13.6900657,48.8784591],[13.6901444,48.8784635],[13.6901855,48.8784725],[13.6902409,48.8784852],[13.6902941,48.8784828],[13.6903511,48.8785003],[13.6904025,48.8785152],[13.6904341,48.8785341],[13.6905184,48.8785579],[13.6905415,48.8785627],[13.6905888,48.8785727],[13.6906395,48.878579],[13.6907071,48.8785785],[13.6908012,48.8785865],[13.6908308,48.8785972],[13.6908442,48.8786121],[13.6908266,48.8786188],[13.6908115,48.8786326],[13.690818,48.8786439],[13.690827,48.8786477],[13.6908664,48.8786401],[13.6909357,48.8786328],[13.6909935,48.8786335],[13.6910506,48.8786284],[13.6910922,48.8786371],[13.6911191,48.8786397],[13.6911956,48.8786612],[13.6912383,48.8786692],[13.6913223,48.8786997],[13.6913712,48.8787243],[13.6914328,48.8787227],[13.6914613,48.8787286],[13.6914802,48.8787207],[13.6915245,48.8787155],[13.6915754,48.8787214],[13.6915926,48.8787348],[13.6915942,48.8787551],[13.691607,48.8787922],[13.6916253,48.8788044],[13.6916725,48.8788389],[13.6917032,48.8788654],[13.6917133,48.8788833],[13.6917484,48.8789083],[13.6917938,48.8789464],[13.6918479,48.8789925],[13.6918699,48.8790034],[13.6919199,48.8790558],[13.6919223,48.8790787],[13.6919284,48.8791045],[13.6919658,48.8791058],[13.6920113,48.8791334],[13.6920355,48.879141],[13.6920686,48.8791344],[13.6920937,48.8791145],[13.6921149,48.8791076],[13.6922084,48.8791044],[13.6922921,48.8790941],[13.6923213,48.8791006],[13.6923568,48.8791248],[13.6924107,48.8791429],[13.6924722,48.8791533],[13.6925996,48.8792196],[13.6926338,48.8792311],[13.6926548,48.8792364],[13.6927165,48.8792411],[13.6927676,48.8792478],[13.6928356,48.879254],[13.6928729,48.8792474],[13.6929019,48.879241],[13.6929324,48.8792386],[13.6929643,48.8792261],[13.6929858,48.8792204],[13.6930637,48.8792253],[13.6932006,48.8792275],[13.6932793,48.8792414],[13.6933116,48.8792457],[13.6933676,48.8792461],[13.6934067,48.8792454],[13.693442,48.8792542],[13.6935619,48.8792633],[13.6936458,48.8792725],[13.6936872,48.879276],[13.6937477,48.8792716],[13.6937998,48.8792755],[13.6938599,48.8792638],[13.6939323,48.8792728],[13.6940082,48.8792834],[13.6940464,48.8792836],[13.6940736,48.8792932],[13.694131,48.8793169],[13.6942055,48.879356],[13.6942504,48.87937],[13.6942796,48.8793768],[13.6943655,48.8793691],[13.6944035,48.8793824],[13.6944793,48.8794096],[13.6945274,48.8794331],[13.6945677,48.8794525],[13.694591,48.8794787],[13.6946049,48.8794976],[13.6946313,48.879532],[13.6946557,48.8795461],[13.6946811,48.8795597],[13.6947102,48.8795963],[13.6947257,48.8796231],[13.694731,48.8796492],[13.694749,48.8796676],[13.6947605,48.8796752],[13.6947558,48.8796869],[13.6947442,48.8797165],[13.6947232,48.8797387],[13.6947222,48.8797613],[13.6946879,48.8798527],[13.6946741,48.8798844],[13.694649,48.8799097],[13.6946542,48.8799432],[13.6946694,48.8799608],[13.6946848,48.8799932],[13.6946949,48.8800284],[13.6947078,48.8800666],[13.6946989,48.8800954],[13.6946617,48.8801451],[13.6946455,48.8801614],[13.6946604,48.8801785],[13.694682,48.8801944],[13.6947113,48.880216],[13.6946857,48.8802584],[13.694682,48.8802783],[13.6946891,48.8802901],[13.6947106,48.8802974],[13.6947647,48.8802975],[13.6948037,48.8803092],[13.6948607,48.8803032],[13.6949229,48.8802838],[13.6949521,48.8802863],[13.6949687,48.8803004],[13.694973,48.8803113],[13.6949869,48.8803116],[13.6950027,48.8803167],[13.6950217,48.8803294],[13.695023,48.8803426],[13.6950428,48.8803433],[13.6950646,48.8803502],[13.6950973,48.880368],[13.6951302,48.8803665],[13.6951623,48.8803805],[13.6951919,48.8804036],[13.6952434,48.8804302],[13.6953202,48.8804604],[13.6953699,48.8804723],[13.6954079,48.8804956],[13.6954397,48.8805029],[13.6954939,48.8805068],[13.6955687,48.8805454],[13.6956151,48.8806005],[13.6956456,48.8806145],[13.695667,48.8806376],[13.6957019,48.880655],[13.6957359,48.8806639],[13.6957628,48.8806593],[13.6957681,48.8806328],[13.6958159,48.8806277],[13.6958378,48.8806353],[13.695866,48.8806928],[13.695875,48.8806912],[13.6959095,48.8806924],[13.6959707,48.8807166],[13.696003,48.8807305],[13.6960308,48.8807519],[13.6960517,48.8807541],[13.6960519,48.8807397],[13.6960851,48.8807015],[13.6960872,48.8806754],[13.6961054,48.880659],[13.6961133,48.8806441],[13.6961338,48.8806361],[13.6961604,48.8806251],[13.6962115,48.8806185],[13.6962376,48.8806209],[13.696266,48.880628],[13.6963172,48.8806315],[13.6963628,48.8806438],[13.6963877,48.8806627],[13.6964011,48.8806634],[13.6964297,48.8806786],[13.6964444,48.8806953],[13.6964569,48.8807067],[13.6964786,48.8807024],[13.6965215,48.8807028],[13.6965634,48.8807002],[13.6965889,48.8806812],[13.6966171,48.8806703],[13.6966435,48.8806512],[13.6966684,48.8806509],[13.6967251,48.8806374],[13.6967575,48.8806385],[13.6967886,48.8806335],[13.6968193,48.8806443],[13.6968555,48.8806777],[13.6969207,48.8807098],[13.6969456,48.8807127],[13.6970131,48.8807028],[13.6970597,48.8806757],[13.6970858,48.8806718],[13.6971188,48.880654],[13.6971848,48.8806304],[13.697296,48.8806405],[13.6973609,48.8806268],[13.6973921,48.880623],[13.6974437,48.8806261],[13.6975177,48.8806429],[13.6975529,48.8806425],[13.6975905,48.8806519],[13.697621,48.8806538],[13.6976814,48.8806713],[13.6977046,48.8806709],[13.6977587,48.8806579],[13.6978053,48.8806523],[13.6978641,48.8806666],[13.6979155,48.8806919],[13.6979573,48.8806938],[13.6980414,48.8806773],[13.6980686,48.8806709],[13.6980961,48.8806727],[13.6981392,48.8806745],[13.6981888,48.8806702],[13.6982274,48.8806735],[13.6982546,48.8806823],[13.6982558,48.8806969],[13.6982708,48.8807283],[13.6983047,48.8807367],[13.6983298,48.8807505],[13.6983859,48.8807769],[13.6984953,48.8807836],[13.6985402,48.8807883],[13.6986283,48.8807745],[13.6986564,48.8807786],[13.6987101,48.8807865],[13.6987587,48.880808],[13.6987822,48.8808258],[13.6988027,48.8808429],[13.6988305,48.880867],[13.6988673,48.8808987],[13.698941,48.8809604],[13.698945,48.8809691],[13.6989156,48.88099],[13.6989131,48.8810017],[13.698936,48.881022],[13.6989468,48.8810524],[13.6989632,48.8810643],[13.6989965,48.881062],[13.6990255,48.8810723],[13.6990502,48.8810751],[13.6990809,48.881084],[13.6991035,48.8810964],[13.6991173,48.881103],[13.6991294,48.8810987],[13.6991922,48.8810904],[13.6992605,48.8810625],[13.6992829,48.8810462],[13.6993393,48.8810257],[13.6993862,48.8810195],[13.6994271,48.8810405],[13.6994259,48.881066],[13.6994096,48.8810915],[13.6994076,48.8811132],[13.6994234,48.8811348],[13.6994443,48.881144],[13.6994601,48.8811599],[13.6994811,48.8811749],[13.6994854,48.8811876],[13.6994673,48.881206],[13.6994814,48.8812377],[13.699503,48.8812491],[13.6995619,48.8812482],[13.6996398,48.8812463],[13.6996965,48.8812431],[13.6997373,48.881249],[13.6997738,48.8812446],[13.6998123,48.8812521],[13.6998137,48.8812661],[13.69984,48.8812799],[13.699854,48.8812901],[13.6998734,48.8813186],[13.6999005,48.8813419],[13.6999103,48.8813487],[13.6999698,48.8813499],[13.7000585,48.8813446],[13.7000937,48.8813502],[13.7001096,48.8813572],[13.7001296,48.8813733],[13.7001442,48.881394],[13.7001779,48.881415],[13.7002023,48.8814608],[13.700228,48.8815015],[13.7002477,48.8815151],[13.7002595,48.8815346],[13.700289,48.8815769],[13.700317,48.8815858],[13.7003531,48.8816106],[13.7003784,48.8816194],[13.7004324,48.8816266],[13.7005686,48.8816352],[13.7005944,48.8816456],[13.7006146,48.8816481],[13.7006396,48.8816607],[13.7006421,48.881677],[13.7006791,48.8816745],[13.700697,48.8816645],[13.7007387,48.8816502],[13.7007553,48.8816239],[13.700785,48.8816186],[13.7008284,48.8815745],[13.7008566,48.8815678],[13.7008699,48.8815695],[13.7008769,48.8815863],[13.7009261,48.8815808],[13.7009377,48.8815709],[13.7009764,48.881553],[13.7010255,48.8815364],[13.7010745,48.8815074],[13.7011092,48.8814924],[13.7011386,48.8814801],[13.7011506,48.8814686],[13.7011825,48.8814575],[13.7012296,48.8814467],[13.7013545,48.8814295],[13.7013721,48.881425],[13.7014247,48.8813974],[13.7014382,48.8813805],[13.7014183,48.8813417],[13.7014308,48.8813259],[13.7014554,48.8813213],[13.7015065,48.8813262],[13.7015133,48.8813268],[13.7015337,48.8813425],[13.7015337,48.8813748],[13.7015361,48.8813974],[13.7015258,48.8814279],[13.7015301,48.8814568],[13.7015448,48.8814792],[13.7015844,48.8814987],[13.7016028,48.8815012],[13.7016749,48.881487],[13.7017059,48.8814835],[13.7017233,48.8814845],[13.7017577,48.8814823],[13.7017792,48.8814835],[13.7018182,48.8814935],[13.7018479,48.8814996],[13.701868,48.8815124],[13.7018765,48.8815232],[13.701884,48.881544],[13.7018835,48.881555],[13.7018921,48.881573],[13.7019126,48.8816074],[13.7019389,48.8816423],[13.70198,48.8816668],[13.7020441,48.8816883],[13.7020645,48.8816961],[13.7021066,48.8817004],[13.7021919,48.8817121],[13.7022334,48.8817161],[13.7022711,48.8817139],[13.7023511,48.8816941],[13.7023674,48.8816673],[13.7024107,48.8816535],[13.7024478,48.8816475],[13.7024903,48.8816549],[13.7025539,48.8816479],[13.7026771,48.8816147],[13.7027797,48.8816113],[13.702814,48.8815972],[13.7028625,48.8815814],[13.7029063,48.8815625],[13.7029587,48.8815524],[13.7030083,48.8815358],[13.7030701,48.8815428],[13.7030965,48.8815344],[13.7030955,48.8815072],[13.7030666,48.8814967],[13.7030652,48.8814808],[13.7030892,48.8814644],[13.7031014,48.8814458],[13.7031419,48.8814285],[13.7031826,48.8814157],[13.7032307,48.8813902],[13.7032606,48.8813587],[13.7032926,48.8813489],[13.7033669,48.8813329],[13.7034194,48.8813106],[13.7034461,48.8812782],[13.703499,48.8812638],[13.7035587,48.8812567],[13.7035947,48.8812594],[13.7036428,48.8812614],[13.7037274,48.8812916],[13.7037672,48.8812939],[13.7038132,48.8812867],[13.7038499,48.8812696],[13.7038493,48.88125],[13.7038264,48.8812242],[13.7039068,48.8812029],[13.7039441,48.8811783],[13.7039941,48.8811682],[13.7040151,48.8811567],[13.7040232,48.8811318],[13.7040159,48.8811103],[13.7040202,48.8810895],[13.7040301,48.8810858],[13.7040709,48.8810905],[13.7040829,48.8810989],[13.704119,48.8811099],[13.7041384,48.8811308],[13.7041496,48.8811357],[13.704163,48.8811408],[13.7041853,48.8811413],[13.7042141,48.8811124],[13.704232,48.8810762],[13.7042252,48.8809957],[13.7042315,48.8809812],[13.7042594,48.8809715],[13.7042834,48.8809759],[13.7043197,48.8810035],[13.7043591,48.8810163],[13.7043836,48.8810156],[13.7044626,48.8810134],[13.7044667,48.8810047],[13.7044613,48.880994],[13.7044545,48.8809741],[13.7044665,48.8809624],[13.704491,48.8809589],[13.7045352,48.8809527],[13.704592,48.8809587],[13.7046609,48.8809673],[13.704807,48.8809383],[13.7049519,48.8809063],[13.7050069,48.8809075],[13.7050352,48.8809319],[13.7050585,48.8809257],[13.7050766,48.8809048],[13.7051002,48.8808911],[13.7051593,48.8808787],[13.7051693,48.880858],[13.7051966,48.8808456],[13.7051919,48.880829],[13.705157,48.8807946],[13.7050874,48.8807796],[13.7050801,48.8807673],[13.7051345,48.8807118],[13.7051987,48.8806998],[13.7052439,48.8807015],[13.7052696,48.8807085],[13.7053319,48.8807418],[13.7053804,48.8807216],[13.7053912,48.8806958],[13.705394,48.8806762],[13.7054101,48.8806586],[13.7054397,48.8806517],[13.7054556,48.8806543],[13.7055286,48.8806905],[13.7055528,48.8806878],[13.7055687,48.8806801],[13.7055609,48.8806631],[13.7055658,48.8806349],[13.7056047,48.8805952],[13.7056306,48.8805911],[13.7057041,48.8806031],[13.7057257,48.8806062],[13.7057572,48.8806018],[13.705774,48.880593],[13.7057859,48.8805504],[13.7058501,48.8805379],[13.706105,48.8805002],[13.7074718,48.8802452],[13.7077928,48.8802332],[13.7081337,48.8801802],[13.7084127,48.8800812],[13.7086696,48.8799432],[13.7089486,48.8798483],[13.7092706,48.8797943],[13.7096095,48.8798103],[13.7100134,48.8799513],[13.7103944,48.8800272],[13.7106514,48.8799703],[13.7108893,48.8797073],[13.7110593,48.8796383],[13.7114233,48.8795963],[13.7116182,48.8794743],[13.7119802,48.8794053],[13.7123651,48.8793783],[13.7127491,48.8792984],[13.713135,48.8790894],[13.713435,48.8790774],[13.7137549,48.8789664],[13.7138649,48.8788144],[13.7138049,48.8785894],[13.7138909,48.8784905],[13.7140829,48.8785474],[13.7146138,48.8786354],[13.7151687,48.8785545],[13.7160676,48.8782115],[13.7168135,48.8782155],[13.7170475,48.8782455],[13.7177854,48.8786995],[13.7180833,48.8788295],[13.7191872,48.8788945],[13.7194651,48.8789934],[13.720104,48.8790085],[13.72044,48.8792524],[13.7209509,48.8793254],[13.7212249,48.8794814],[13.7215028,48.8795654],[13.7218598,48.8797374],[13.7221337,48.8799354],[13.7225567,48.8801643],[13.7224907,48.8803053],[13.7226147,48.8805153],[13.7229726,48.8807563],[13.7232466,48.8808703],[13.7234815,48.8808743],[13.7236515,48.8809013],[13.7241347,48.8811482],[13.7241789,48.8811496],[13.724245,48.881133],[13.7242971,48.8811254],[13.7243206,48.8811331],[13.7243715,48.8811494],[13.7244155,48.8812037],[13.7244107,48.8812411],[13.7243993,48.8812668],[13.7244076,48.8812934],[13.7244443,48.8813041],[13.7244992,48.8812975],[13.7245521,48.8812685],[13.7246317,48.8812418],[13.7246835,48.8812418],[13.724732,48.8812578],[13.7247366,48.8812802],[13.7247256,48.8813048],[13.7247418,48.8813231],[13.7247869,48.8813281],[13.7248964,48.8813107],[13.7249423,48.8812966],[13.7250098,48.8812959],[13.7250559,48.8813029],[13.7250813,48.8813176],[13.7251036,48.8813563],[13.7251083,48.881381],[13.7251003,48.881416],[13.7251092,48.88144],[13.725137,48.8814497],[13.7252363,48.8814639],[13.7252802,48.8814814],[13.7253495,48.8815207],[13.7254017,48.8815796],[13.7254336,48.8816251],[13.7255007,48.8817109],[13.7255212,48.8817359],[13.7255631,48.8817873],[13.7255686,48.8818163],[13.7255386,48.8818413],[13.7254976,48.8818575],[13.7254961,48.8818581],[13.7254471,48.8818805],[13.7253877,48.8818919],[13.725334,48.881901],[13.7253134,48.8819162],[13.7252941,48.8819533],[13.725296,48.8819919],[13.7252703,48.8820111],[13.7252085,48.8820345],[13.7251883,48.8820479],[13.7251917,48.8820697],[13.7252253,48.8820987],[13.7253164,48.8821278],[13.7254317,48.8821718],[13.7254611,48.8821764],[13.7256221,48.8821475],[13.7256995,48.8821393],[13.7257488,48.8821455],[13.7257817,48.8821723],[13.7257904,48.8822081],[13.7258222,48.8822357],[13.7258826,48.8822677],[13.7259094,48.8822942],[13.7259135,48.882317],[13.7259093,48.8823502],[13.725987,48.882539],[13.72602,48.8825754],[13.7260687,48.882625],[13.7261045,48.8826416],[13.7261439,48.8826584],[13.7261893,48.8826799],[13.7262777,48.8827357],[13.7263233,48.8827622],[13.7263566,48.8827697],[13.7263922,48.8827678],[13.726459,48.8827659],[13.7265182,48.8827724],[13.7265912,48.8827655],[13.7267229,48.8827451],[13.726766,48.8827452],[13.7268386,48.8827507],[13.7268889,48.8827687],[13.7269113,48.8827799],[13.7269181,48.8828196],[13.7269051,48.8828466],[13.7268962,48.8828869],[13.726912,48.8829093],[13.7269445,48.8829113],[13.7269743,48.8828983],[13.7270853,48.8828745],[13.7271933,48.8828753],[13.7272878,48.8828923],[13.7273344,48.8829177],[13.7273426,48.8829784],[13.7273557,48.8829994],[13.72741,48.8830227],[13.7275058,48.8830353],[13.7276036,48.8830526],[13.7276807,48.883079],[13.7277683,48.8831301],[13.7277904,48.8831639],[13.7277895,48.8831845],[13.7277776,48.8832273],[13.7277882,48.8832687],[13.7278175,48.8833196],[13.7278597,48.8833411],[13.7279035,48.8833552],[13.7279274,48.8833646],[13.7279453,48.8833962],[13.7279802,48.8834524],[13.7280163,48.8835143],[13.7280313,48.883571],[13.7280526,48.8835972],[13.7280729,48.8836353],[13.7280869,48.8836994],[13.7281023,48.8837224],[13.7281473,48.8837737],[13.7281608,48.8838199],[13.7281538,48.8838498],[13.7281173,48.883904],[13.7280811,48.8839328],[13.7280143,48.8839414],[13.7279733,48.8839599],[13.7279623,48.8839823],[13.72797,48.884019],[13.7279853,48.8840379],[13.7280374,48.884061],[13.7280771,48.8840721],[13.7281005,48.8840899],[13.7281031,48.8841664],[13.7281176,48.884247],[13.7281271,48.8843157],[13.7281213,48.8843556],[13.7281381,48.8844004],[13.7281682,48.8844288],[13.7282069,48.884436],[13.7282365,48.8844204],[13.7282616,48.8844083],[13.7283066,48.8844137],[13.7283728,48.8843935],[13.728409,48.8843949],[13.7284783,48.8844319],[13.7285644,48.8844722],[13.728594,48.8845009],[13.728601,48.8845287],[13.7286361,48.8845782],[13.7286854,48.8846482],[13.7287012,48.8846967],[13.7286841,48.8847163],[13.7286616,48.884753],[13.7286162,48.8848153],[13.7285414,48.8848689],[13.7285242,48.8848873],[13.7285265,48.8849087],[13.7285413,48.8849457],[13.7285603,48.8849787],[13.7286298,48.8850387],[13.7287042,48.8850855],[13.7287974,48.8851244],[13.7288722,48.8851599],[13.728904,48.8851817],[13.7289639,48.8852226],[13.7289973,48.8852549],[13.7290139,48.8852839],[13.7290065,48.8853182],[13.7289835,48.8853988],[13.7289849,48.8854561],[13.72896,48.8854875],[13.7289491,48.8855295],[13.7289195,48.8855797],[13.7289037,48.8856067],[13.7288815,48.8856194],[13.7288445,48.8856134],[13.7288163,48.8856087],[13.7287909,48.8856227],[13.7287398,48.8856599],[13.7287287,48.8857135],[13.7287191,48.8857469],[13.728727,48.885777],[13.7287669,48.8858102],[13.7287992,48.885843],[13.7288307,48.8858735],[13.7288797,48.8858824],[13.7289372,48.8858665],[13.7289857,48.8858325],[13.7290222,48.885828],[13.7290712,48.8858362],[13.7290988,48.8858579],[13.7291217,48.8858909],[13.7291241,48.885921],[13.7291141,48.8859967],[13.7291165,48.8860299],[13.729105,48.886058],[13.7290506,48.8860692],[13.728996,48.886062],[13.7289882,48.8860861],[13.7290073,48.8861145],[13.7290639,48.8861478],[13.7291104,48.8861773],[13.7291752,48.8862118],[13.7292073,48.8862396],[13.7292127,48.8862691],[13.7292336,48.8863167],[13.7293045,48.8863498],[13.7293774,48.8863685],[13.7294353,48.8863659],[13.7294985,48.8863689],[13.7295593,48.8863812],[13.7295843,48.886404],[13.7295754,48.8864347],[13.7295468,48.8864554],[13.7294906,48.8864686],[13.7294526,48.8864904],[13.729448,48.8865146],[13.7294771,48.8865482],[13.7294986,48.8865571],[13.7295388,48.8865627],[13.7295632,48.8865842],[13.7296414,48.8866135],[13.7296847,48.8866206],[13.7297283,48.8866583],[13.7297259,48.8866979],[13.7297167,48.8867345],[13.7297468,48.8867588],[13.7297913,48.8867651],[13.7298485,48.886746],[13.7298916,48.8867516],[13.7299463,48.8867279],[13.7299793,48.8867259],[13.7300448,48.8867486],[13.7300987,48.886776],[13.7302115,48.8868293],[13.7303652,48.8868943],[13.7304377,48.8869583],[13.7305036,48.8870464],[13.7305344,48.8870923],[13.7305717,48.8871084],[13.7306214,48.8871015],[13.7306887,48.8870826],[13.7307814,48.887077],[13.7309131,48.8870511],[13.7309736,48.8870548],[13.7310185,48.8870747],[13.731052,48.8871047],[13.7311059,48.8871298],[13.7311429,48.8871227],[13.7311799,48.8870882],[13.7312305,48.8870753],[13.7312465,48.8870538],[13.731275,48.8870294],[13.7313579,48.8869812],[13.7314047,48.8869441],[13.7314446,48.8868886],[13.7314395,48.8868554],[13.7314343,48.8868121],[13.7314657,48.8867658],[13.7315122,48.8867408],[13.7315687,48.8867334],[13.7316418,48.8867385],[13.7318111,48.8867526],[13.7318916,48.8867758],[13.7319945,48.8868346],[13.7320644,48.8868929],[13.7320983,48.886919],[13.7321559,48.8869407],[13.73226,48.8869588],[13.7323195,48.8869533],[13.7323655,48.8869491],[13.732537,48.8869732],[13.7325852,48.8869811],[13.7326809,48.8869393],[13.7328137,48.886887],[13.7328675,48.8868746],[13.7330406,48.8867992],[13.7330765,48.8867754],[13.7331417,48.8866802],[13.733192,48.8866551],[13.7331983,48.8866553],[13.7332475,48.886657],[13.7333035,48.8866751],[13.7333995,48.8866753],[13.7335287,48.8866984],[13.7336023,48.886702],[13.7336579,48.886691],[13.7336917,48.8866585],[13.7336977,48.8866329],[13.7337332,48.8866013],[13.7337758,48.8865686],[13.7338174,48.8865102],[13.7338516,48.8864753],[13.7338983,48.8864501],[13.7339932,48.8864251],[13.7340564,48.886392],[13.7341256,48.8863619],[13.7341861,48.8863478],[13.7342532,48.886358],[13.7342907,48.8863773],[13.7343248,48.88641],[13.7343693,48.8864206],[13.7348106,48.8864794],[13.734848,48.8864792],[13.7348881,48.8864685],[13.7349433,48.8864468],[13.7350264,48.8863956],[13.7351194,48.886333],[13.7351784,48.886286],[13.7351922,48.886254],[13.7351772,48.8862175],[13.7351594,48.8861736],[13.7350956,48.8860743],[13.7350713,48.8860382],[13.7350661,48.8859981],[13.7350762,48.8859867],[13.735095,48.8859655],[13.7351586,48.885951],[13.7352505,48.8859601],[13.7353059,48.8859748],[13.7353572,48.8859821],[13.7353879,48.8860068],[13.7354407,48.8860362],[13.7354839,48.886043],[13.7355473,48.8860408],[13.7356607,48.8860255],[13.7357587,48.8860093],[13.7358095,48.8859869],[13.7358511,48.8859417],[13.7358889,48.8858463],[13.7359399,48.885705],[13.7359417,48.8856088],[13.7359999,48.8855279],[13.7360979,48.8854823],[13.7361631,48.8854732],[13.7362362,48.8854833],[13.7362875,48.8854998],[13.7363218,48.8855044],[13.736362,48.8854969],[13.7365662,48.8854732],[13.7367771,48.8854472],[13.7368117,48.8854579],[13.7368375,48.8855013],[13.7368343,48.8855339],[13.7368274,48.8855727],[13.7368348,48.8856213],[13.736839,48.8856534],[13.7368764,48.8857234],[13.7368936,48.8858086],[13.7369375,48.8858723],[13.7369456,48.8859101],[13.7369352,48.8859501],[13.7369391,48.8859881],[13.7369773,48.8860123],[13.7370367,48.8860172],[13.7371416,48.8860299],[13.7371913,48.8860214],[13.7372788,48.8859787],[13.7372932,48.8859591],[13.7373288,48.8859287],[13.7373493,48.8858928],[13.7373629,48.88585],[13.7374027,48.8858173],[13.7374457,48.8858112],[13.7374993,48.8858146],[13.7375787,48.885839],[13.7377007,48.88591],[13.7377394,48.8859385],[13.7377698,48.8859608],[13.7377795,48.8859866],[13.7377679,48.886023],[13.7377954,48.8860318],[13.7378878,48.8860381],[13.7379384,48.8860115],[13.737972,48.8859557],[13.7379646,48.8859268],[13.7379419,48.8859057],[13.7378531,48.8858466],[13.7378323,48.8858295],[13.7378283,48.8858093],[13.7378283,48.8857038],[13.7378464,48.8856718],[13.737843,48.885646],[13.7378533,48.8856223],[13.7378858,48.8855876],[13.7378926,48.8855557],[13.7378658,48.885463],[13.7378443,48.8853694],[13.7378371,48.8853369],[13.7378155,48.8853216],[13.7377276,48.8853101],[13.7376604,48.8853153],[13.7376339,48.8853011],[13.7376082,48.8852831],[13.7376116,48.8852575],[13.7376255,48.8852342],[13.7376511,48.8852112],[13.7376642,48.8851842],[13.737665,48.8851413],[13.7376634,48.8851066],[13.7376517,48.8850684],[13.7376134,48.8850429],[13.7375692,48.8850336],[13.7375192,48.8850331],[13.7374773,48.8850171],[13.7374592,48.8849816],[13.7374515,48.8849329],[13.7374668,48.8848905],[13.7374908,48.8848658],[13.7375495,48.8848463],[13.7376272,48.884832],[13.7376631,48.8848163],[13.7376644,48.8847996],[13.7376372,48.8847767],[13.7376126,48.884723],[13.7375906,48.8846966],[13.7375889,48.8846713],[13.7376025,48.8846336],[13.7376397,48.8845855],[13.7376806,48.8845645],[13.737741,48.8845454],[13.7377578,48.8845325],[13.7377601,48.8845077],[13.7377468,48.8844814],[13.7377218,48.8844279],[13.7376993,48.8844104],[13.7376231,48.8844154],[13.7375568,48.8843996],[13.7375161,48.8843762],[13.7375134,48.8843584],[13.7375379,48.8843183],[13.7375262,48.8842791],[13.7375357,48.8842521],[13.7375219,48.8842335],[13.7374864,48.8842],[13.7374777,48.8841681],[13.7374654,48.8841318],[13.7374388,48.8841067],[13.7373887,48.8840893],[13.7373357,48.8840766],[13.737287,48.8840467],[13.7372683,48.8840241],[13.7372434,48.8840072],[13.737199,48.8839917],[13.7371628,48.8839712],[13.7371513,48.883951],[13.7371597,48.8839297],[13.7371577,48.883896],[13.7371217,48.8838557],[13.737108,48.8838278],[13.7370844,48.8838066],[13.7370314,48.8837959],[13.7370066,48.8837729],[13.7370138,48.8837493],[13.7370526,48.8837204],[13.7370783,48.8837022],[13.7371436,48.8836722],[13.7371507,48.8836465],[13.7371416,48.8836134],[13.7371288,48.8835824],[13.7370928,48.8835534],[13.7370624,48.8835305],[13.7370421,48.8834834],[13.7370032,48.8834463],[13.737002,48.8834447],[13.7369695,48.8834042],[13.7369442,48.8833768],[13.7369241,48.8833168],[13.7369291,48.8832745],[13.7369735,48.8832317],[13.7369838,48.883207],[13.7369767,48.8831719],[13.7369481,48.8831323],[13.7368987,48.8831092],[13.736841,48.8830937],[13.7367889,48.8830794],[13.7367601,48.8830602],[13.7367571,48.8830345],[13.7367523,48.8829864],[13.7367215,48.8829496],[13.7367132,48.8829197],[13.7366762,48.8828849],[13.7366241,48.8828593],[13.7366058,48.8828376],[13.736637,48.8828068],[13.7366938,48.8827739],[13.7367293,48.8827629],[13.7367566,48.8827457],[13.7367559,48.8827237],[13.7367338,48.8826979],[13.7367277,48.8826691],[13.736753,48.8826413],[13.7367696,48.8826232],[13.736806,48.882616],[13.7368773,48.8825891],[13.7369399,48.8825832],[13.7370384,48.882571],[13.7370656,48.8825511],[13.7370666,48.8825312],[13.7369851,48.8824825],[13.7369303,48.8824498],[13.7369147,48.8824332],[13.7369417,48.882406],[13.7370174,48.8823773],[13.7370567,48.8823507],[13.7370889,48.8823213],[13.7371086,48.88227],[13.7371263,48.8822511],[13.7371867,48.8822212],[13.7372304,48.8822014],[13.7373071,48.8821683],[13.7373314,48.8821468],[13.7373234,48.8821203],[13.7373061,48.8821062],[13.7372084,48.8820857],[13.7371573,48.8820842],[13.7371115,48.8820762],[13.7370596,48.8820534],[13.7369968,48.8820146],[13.7369915,48.882008],[13.7369696,48.8819796],[13.7369697,48.8819573],[13.7370059,48.8819431],[13.7370446,48.881946],[13.7370712,48.8819612],[13.7371014,48.8819719],[13.7371414,48.8819592],[13.7371565,48.8819353],[13.7371707,48.8818853],[13.737193,48.8818467],[13.7372168,48.8817982],[13.7372167,48.8817518],[13.7371952,48.8817174],[13.7372103,48.8816891],[13.7372023,48.881668],[13.737157,48.8816515],[13.7370808,48.8816405],[13.7370442,48.8816343],[13.7369972,48.881609],[13.7369823,48.8815879],[13.736987,48.8815638],[13.7369709,48.8815349],[13.7369594,48.8815007],[13.7369686,48.8814787],[13.7369975,48.8814697],[13.7370881,48.8814739],[13.7371697,48.8814672],[13.7372194,48.8814628],[13.7372724,48.8814564],[13.7372955,48.8814318],[13.7372969,48.8813785],[13.7373034,48.8813393],[13.7372839,48.8813003],[13.7372505,48.8812707],[13.7371929,48.8812558],[13.7371522,48.8812618],[13.7371382,48.8812812],[13.7371374,48.8813074],[13.7371159,48.8813422],[13.7370828,48.8813531],[13.7370449,48.8813393],[13.7370141,48.8813054],[13.7370125,48.881261],[13.7370447,48.8812331],[13.7370606,48.8811736],[13.7370796,48.8811433],[13.7370705,48.8811139],[13.7370235,48.8810895],[13.7369387,48.8810747],[13.7368821,48.8810565],[13.7368485,48.88102],[13.7368514,48.8809959],[13.7368825,48.8809724],[13.7369612,48.8809439],[13.7369903,48.8809521],[13.7370192,48.8809663],[13.7370587,48.880956],[13.7370757,48.8809409],[13.7371005,48.8809306],[13.7371017,48.8809083],[13.7370756,48.880866],[13.7370366,48.8808395],[13.7370208,48.880809],[13.7369573,48.8807727],[13.7369334,48.8807265],[13.7369372,48.8806855],[13.7369649,48.8806671],[13.7370014,48.8806763],[13.7370489,48.8806962],[13.7370684,48.880716],[13.7370963,48.8807175],[13.7371363,48.8806946],[13.7371471,48.88066],[13.7371318,48.8806354],[13.7371802,48.8806059],[13.7372721,48.8805862],[13.7373225,48.880564],[13.7373814,48.8805361],[13.7373796,48.8805183],[13.737348,48.8804912],[13.737299,48.8804602],[13.7372301,48.8804292],[13.737212,48.8803907],[13.7371924,48.8803472],[13.7373312,48.8802079],[13.7373668,48.8801644],[13.7373966,48.8801541],[13.7374286,48.8800985],[13.7374622,48.8800819],[13.7375099,48.8800643],[13.737543,48.8800287],[13.7375883,48.8800115],[13.7375977,48.8799709],[13.737587,48.8799505],[13.7375472,48.8799416],[13.7375065,48.8799201],[13.737495,48.8798876],[13.7375101,48.879853],[13.7374903,48.8798192],[13.7374602,48.8798037],[13.7374165,48.8797985],[13.7373794,48.8797769],[13.7373381,48.8797464],[13.7372654,48.8797325],[13.7371914,48.8797262],[13.7371756,48.8797004],[13.7372269,48.8796834],[13.7372462,48.8796626],[13.7372477,48.879614],[13.7372726,48.879587],[13.7373043,48.8795637],[13.7373476,48.8795489],[13.7373752,48.8795179],[13.7373797,48.8794825],[13.7373595,48.8794436],[13.7373717,48.8794253],[13.737356,48.879389],[13.7373155,48.8793678],[13.7372959,48.879347],[13.7373075,48.8793225],[13.7373463,48.8793026],[13.7374259,48.8792971],[13.7374934,48.8793083],[13.7375289,48.8793239],[13.737561,48.8793483],[13.7376127,48.8793564],[13.7376579,48.8793358],[13.7376961,48.879298],[13.7377782,48.8792482],[13.7378204,48.8792046],[13.7378162,48.8791828],[13.7377693,48.8791423],[13.7377289,48.8790949],[13.7376882,48.8790721],[13.7376481,48.8790779],[13.7376287,48.8790618],[13.7376443,48.8790408],[13.7376861,48.879019],[13.7377193,48.8789918],[13.7377631,48.8789648],[13.737799,48.878962],[13.737843,48.8789741],[13.73792,48.8790111],[13.7379519,48.8790201],[13.738001,48.879012],[13.7380506,48.8789925],[13.7380782,48.878968],[13.7381082,48.8789144],[13.7381436,48.8788531],[13.738169,48.8788163],[13.7382103,48.8787824],[13.738228,48.8787299],[13.7382579,48.8786967],[13.7383115,48.8786777],[13.7383694,48.8786895],[13.7384256,48.8786982],[13.7384828,48.8786933],[13.7385132,48.8786684],[13.7385497,48.8786498],[13.7385848,48.8786416],[13.738602,48.8786187],[13.7385767,48.8785682],[13.7385715,48.8785445],[13.7385909,48.8785257],[13.7386247,48.8784928],[13.7386691,48.8784681],[13.7388203,48.878433],[13.7389057,48.8784356],[13.7389567,48.8784422],[13.7389912,48.878458],[13.7390201,48.8784715],[13.7391234,48.8784952],[13.7392033,48.8784903],[13.739248,48.8784763],[13.7392838,48.8784603],[13.7393207,48.87843],[13.7393424,48.8783987],[13.7393389,48.8783687],[13.7393241,48.8783347],[13.7393033,48.878275],[13.7393085,48.8782393],[13.739331,48.878215],[13.7393958,48.8782031],[13.7394433,48.8781899],[13.7394816,48.8781794],[13.7395669,48.8781427],[13.7396051,48.8781262],[13.7396394,48.8781371],[13.7396584,48.8781718],[13.7396913,48.8781865],[13.7397433,48.87818],[13.7397947,48.8781546],[13.7398292,48.8781213],[13.7398331,48.8780859],[13.7398169,48.878056],[13.7397806,48.8780384],[13.7397247,48.8780339],[13.7396793,48.8780219],[13.7396704,48.8779974],[13.7396993,48.8779469],[13.7397644,48.8778897],[13.7397734,48.8778126],[13.7397828,48.8777849],[13.7398014,48.8777437],[13.7398325,48.8777219],[13.7399482,48.8777018],[13.7399881,48.8776865],[13.7400196,48.8776538],[13.7400651,48.8776181],[13.7401026,48.8775835],[13.7401589,48.8775842],[13.7401859,48.8776009],[13.7402416,48.8776304],[13.7402725,48.8776465],[13.7403163,48.877683],[13.7403692,48.8776967],[13.74044,48.8776797],[13.7404604,48.8776582],[13.7404576,48.877635],[13.740427,48.877597],[13.7403626,48.8775541],[13.7403038,48.8775138],[13.7402982,48.8774811],[13.7403355,48.8774408],[13.7403734,48.8774167],[13.7404306,48.8773938],[13.7404582,48.8773675],[13.7404521,48.8773399],[13.7404336,48.8773218],[13.7403955,48.8773179],[13.740328,48.8772901],[13.7403036,48.8772548],[13.7403089,48.8772224],[13.740364,48.8771909],[13.7403923,48.8771681],[13.7404406,48.8771465],[13.7404894,48.8770997],[13.740535,48.8770721],[13.7405658,48.877035],[13.7406111,48.8769958],[13.7406624,48.876969],[13.7407103,48.8769469],[13.7407793,48.8769228],[13.740807,48.8769053],[13.7408223,48.876875],[13.7408095,48.8768494],[13.7407905,48.8768205],[13.7407985,48.8767752],[13.7408342,48.8767362],[13.7408764,48.8767202],[13.740901,48.8767044],[13.7409266,48.8766613],[13.7409628,48.8766429],[13.7410145,48.8766392],[13.7410554,48.8766324],[13.7410772,48.8766075],[13.7410804,48.8765821],[13.7410506,48.876554],[13.7410355,48.8765302],[13.7410457,48.8764909],[13.7410809,48.8764623],[13.7410929,48.8764358],[13.7411301,48.8764167],[13.7411656,48.876394],[13.7412417,48.8763889],[13.7412874,48.8763966],[13.7413155,48.8764121],[13.7413542,48.876413],[13.7413864,48.8763989],[13.7414164,48.8763657],[13.7414579,48.8763429],[13.7415003,48.8763322],[13.7415418,48.8763454],[13.7415526,48.8763716],[13.7415548,48.8764222],[13.7415673,48.8764492],[13.741596,48.876471],[13.7416194,48.8764978],[13.7416511,48.8765048],[13.7416937,48.8765016],[13.7417519,48.8765072],[13.7418012,48.8765184],[13.7418803,48.8765509],[13.7419177,48.8765596],[13.7419683,48.8765578],[13.7420032,48.8765318],[13.741993,48.8765102],[13.7419666,48.8764886],[13.7420022,48.8764533],[13.7420535,48.8764372],[13.7421288,48.8764348],[13.7421791,48.8764239],[13.7422429,48.8764072],[13.7422964,48.8763757],[13.7423591,48.8763682],[13.7424109,48.8763752],[13.7424514,48.8763592],[13.7425132,48.8763195],[13.742549,48.8762384],[13.7425871,48.8762006],[13.742635,48.876177],[13.7427621,48.8761123],[13.7428397,48.8760851],[13.7428881,48.876061],[13.7429756,48.8760562],[13.7430128,48.8760339],[13.7430684,48.8760042],[13.7431264,48.8759738],[13.7431844,48.8759755],[13.743373,48.8759736],[13.7433895,48.8759563],[13.7434769,48.8759435],[13.7435228,48.8759299],[13.7435756,48.8758993],[13.7436337,48.8758486],[13.7436676,48.8757835],[13.7437055,48.8757242],[13.7437061,48.8757031],[13.7436654,48.8756923],[13.7436102,48.8757033],[13.7435758,48.8756862],[13.7435429,48.8756167],[13.7435494,48.8755816],[13.7435859,48.8755417],[13.7436789,48.8755179],[13.7437482,48.8754933],[13.7438358,48.8754289],[13.7439215,48.8753601],[13.7439227,48.8753335],[13.7438895,48.8753101],[13.743863,48.8753151],[13.7438193,48.8753471],[13.7437731,48.8753475],[13.7437111,48.8752876],[13.7436796,48.8752537],[13.7436311,48.8752154],[13.7436095,48.8751878],[13.743603,48.8751489],[13.7436385,48.8751015],[13.7436809,48.8750492],[13.7437704,48.8749518],[13.7437966,48.8749211],[13.7438405,48.8748865],[13.7438273,48.8748654],[13.7437774,48.8748408],[13.7437439,48.8748287],[13.7437293,48.8748006],[13.7437231,48.8747213],[13.7436989,48.874669],[13.7436676,48.8746229],[13.7437074,48.8745632],[13.7437403,48.8745087],[13.7437586,48.8744714],[13.7437774,48.8744141],[13.7437469,48.8743639],[13.7437431,48.8743007],[13.7437316,48.874272],[13.7437378,48.8742273],[13.7437632,48.8741659],[13.7437669,48.8741128],[13.7437859,48.8740859],[13.7437882,48.8740566],[13.7437695,48.8740251],[13.743697,48.8739625],[13.7436952,48.8739005],[13.743727,48.8738532],[13.7437653,48.8738151],[13.7437907,48.8737795],[13.743844,48.8737382],[13.7438957,48.8736836],[13.7439219,48.8736353],[13.7439506,48.8736135],[13.7439849,48.8735994],[13.7440352,48.8735644],[13.744094,48.8735276],[13.7441234,48.8734946],[13.7441472,48.8734609],[13.7442022,48.8734467],[13.7442394,48.8734489],[13.7442797,48.8734726],[13.7442805,48.8734926],[13.7442713,48.8735151],[13.7442494,48.8735398],[13.7442594,48.8735681],[13.7442987,48.8735705],[13.74438,48.8735446],[13.7444512,48.873524],[13.7445152,48.8735075],[13.7445391,48.873485],[13.7445674,48.8734712],[13.7446227,48.8734319],[13.7445865,48.8733973],[13.744541,48.8733895],[13.7445029,48.8733946],[13.7444691,48.8733849],[13.7444538,48.8733558],[13.7444551,48.8733178],[13.7444366,48.8732783],[13.7444484,48.8732402],[13.7444757,48.8732073],[13.7445147,48.8731969],[13.7445821,48.8731936],[13.7446464,48.8731877],[13.7446947,48.8731527],[13.7447486,48.8730457],[13.7447774,48.8730145],[13.7447945,48.8729795],[13.7447698,48.8729447],[13.7447288,48.8729221],[13.7446893,48.8728763],[13.7446806,48.8728465],[13.7447568,48.8728098],[13.7448036,48.8727913],[13.7448307,48.8727103],[13.7448384,48.8726681],[13.7448641,48.8726296],[13.7448812,48.87259],[13.7448777,48.8725697],[13.7448884,48.8725327],[13.7448816,48.8725085],[13.7449086,48.8724957],[13.7449741,48.8725004],[13.745041,48.8725398],[13.7450793,48.8725512],[13.7451398,48.8725458],[13.7451906,48.8725113],[13.7451796,48.8724603],[13.7451321,48.8724053],[13.7451256,48.872378],[13.7451316,48.8723454],[13.7451831,48.87232],[13.7452768,48.8722956],[13.7453572,48.8722902],[13.7454684,48.8722872],[13.7455101,48.8722824],[13.7455569,48.8722623],[13.7456344,48.8722311],[13.7456782,48.8722153],[13.7457199,48.8721755],[13.7458274,48.8721468],[13.7458706,48.8721377],[13.7459776,48.8720905],[13.7460804,48.8720448],[13.7461229,48.8720354],[13.7461649,48.8720263],[13.746192,48.872049],[13.7462458,48.872063],[13.7463004,48.8720667],[13.7463891,48.8720502],[13.7464376,48.8720339],[13.7464855,48.8719989],[13.7464897,48.8719713],[13.7464486,48.871934],[13.74643,48.8718814],[13.7464651,48.8718243],[13.74657,48.8717753],[13.7466143,48.8717328],[13.7465985,48.8716571],[13.746619,48.8716339],[13.7466704,48.8716142],[13.7467447,48.8715963],[13.7468095,48.8715864],[13.7468454,48.8715717],[13.7468288,48.8715432],[13.7468365,48.8715251],[13.7469098,48.8714987],[13.74695,48.871483],[13.7469769,48.8714189],[13.7470176,48.8713269],[13.7470359,48.8712915],[13.7470553,48.8712732],[13.7470743,48.8712456],[13.7470861,48.8711951],[13.7471251,48.8711375],[13.7471421,48.8710735],[13.7471533,48.8710335],[13.7472002,48.8709772],[13.7471923,48.870934],[13.7471418,48.8708804],[13.7471172,48.8708408],[13.747087,48.8708021],[13.7470875,48.8707765],[13.7471212,48.8707512],[13.7471658,48.8707002],[13.747171,48.8706677],[13.7471453,48.8706389],[13.7471542,48.8705875],[13.747191,48.8705442],[13.7472052,48.8705125],[13.747265,48.8704688],[13.7472639,48.8704153],[13.7472154,48.8703366],[13.747205,48.8702592],[13.7471774,48.8702083],[13.7471788,48.8701692],[13.7471388,48.8701567],[13.7470595,48.8701837],[13.7469612,48.870119],[13.7469244,48.8700825],[13.746869,48.8700291],[13.7468485,48.8699931],[13.7468313,48.8699418],[13.7469074,48.8698801],[13.7469541,48.8698708],[13.7469747,48.86982],[13.7469123,48.8697113],[13.7468981,48.8696644],[13.746943,48.8696074],[13.7470307,48.8695837],[13.7472197,48.8695712],[13.7472343,48.8695405],[13.7471766,48.8694991],[13.7471844,48.869459],[13.747177,48.8694458],[13.7471393,48.8693786],[13.7471225,48.8693095],[13.7471414,48.8692689],[13.7471794,48.8692604],[13.7472124,48.8692664],[13.7473055,48.8692685],[13.7473867,48.8692758],[13.7474273,48.869272],[13.7474913,48.8692527],[13.7475544,48.869243],[13.7475915,48.8692228],[13.7476235,48.8691778],[13.7476255,48.869146],[13.7476377,48.8690785],[13.7476644,48.8690581],[13.7477812,48.8690327],[13.7478406,48.8690074],[13.7478796,48.8689799],[13.747921,48.8689553],[13.7479715,48.8689159],[13.7480128,48.8689106],[13.7480613,48.8688831],[13.7481184,48.86878],[13.7481286,48.8687507],[13.7481383,48.8687126],[13.7481811,48.8686459],[13.7482072,48.8686228],[13.7482345,48.8686209],[13.7482654,48.8686385],[13.7483014,48.8686387],[13.7483627,48.8686162],[13.748441,48.86858],[13.7485513,48.8685714],[13.7485738,48.8685517],[13.7485881,48.8684952],[13.7485726,48.8684513],[13.7485217,48.8683894],[13.7485229,48.8683639],[13.748545,48.8683158],[13.7486197,48.8682836],[13.7486605,48.8682847],[13.7487292,48.868306],[13.7488086,48.8682986],[13.7488494,48.8682873],[13.7489013,48.8682904],[13.7489239,48.868309],[13.7489532,48.8683239],[13.7490493,48.8682877],[13.7490674,48.8682651],[13.7490381,48.8682066],[13.7490607,48.8681822],[13.7490988,48.8681751],[13.7491294,48.8681563],[13.7491325,48.8681237],[13.7491748,48.8680749],[13.7492101,48.8680384],[13.7492723,48.8679859],[13.7493363,48.8679447],[13.7493593,48.8679223],[13.7493993,48.8678995],[13.7494118,48.8678473],[13.74944,48.8678198],[13.7494811,48.8677613],[13.7495043,48.8676983],[13.7495105,48.867631],[13.749453,48.8675403],[13.7494786,48.8674959],[13.7495571,48.867446],[13.7496037,48.8674128],[13.7497314,48.8673667],[13.7497987,48.8673614],[13.7498516,48.8673252],[13.7499154,48.8673374],[13.7499507,48.8673146],[13.7499624,48.8672862],[13.7499757,48.8672373],[13.7499988,48.867213],[13.7500163,48.8671792],[13.7499924,48.8671245],[13.7499628,48.8670926],[13.749975,48.8670625],[13.7500135,48.8670383],[13.7500926,48.8670309],[13.7501632,48.8670378],[13.7502226,48.8670309],[13.7502976,48.867001],[13.7503946,48.8669733],[13.7504752,48.8669281],[13.7505231,48.8668925],[13.7505939,48.8668271],[13.7506023,48.866804],[13.7506172,48.8667618],[13.7505812,48.8667299],[13.7505066,48.8667114],[13.7504558,48.8666697],[13.7504131,48.8665929],[13.7503961,48.8665381],[13.7504065,48.8664962],[13.7504947,48.8664525],[13.7505958,48.8663939],[13.7506762,48.8663674],[13.7507438,48.8663616],[13.7507698,48.866351],[13.7508323,48.8662708],[13.75087,48.866231],[13.750938,48.8662121],[13.7509297,48.8661642],[13.7509259,48.8661388],[13.750882,48.8660582],[13.7508392,48.8660033],[13.7508635,48.8659515],[13.7509183,48.8658863],[13.7509313,48.8658487],[13.750918,48.8657921],[13.7508539,48.8657269],[13.7508288,48.8656929],[13.7507726,48.865634],[13.7507669,48.8655933],[13.7507534,48.8655409],[13.7507415,48.8654538],[13.7507513,48.8653895],[13.7507299,48.8653457],[13.750723,48.8653099],[13.7507011,48.8652763],[13.7506723,48.8652188],[13.7506837,48.8651537],[13.7507158,48.8650644],[13.7507499,48.8650398],[13.7507677,48.8649878],[13.7507726,48.8649655],[13.7507343,48.8649233],[13.750727,48.8648892],[13.7506565,48.8648077],[13.7506285,48.8647477],[13.7506239,48.864713],[13.7506034,48.8646932],[13.7505832,48.8646258],[13.7505714,48.8646004],[13.7505775,48.864557],[13.7505928,48.8645258],[13.7505987,48.864489],[13.7506104,48.8644684],[13.7506034,48.8644216],[13.7506141,48.8643989],[13.750606,48.8643761],[13.7506318,48.8643225],[13.7506656,48.8642912],[13.7506705,48.8642859],[13.7506912,48.8642627],[13.7507748,48.8642062],[13.7507338,48.8641723],[13.7507038,48.8641871],[13.7506831,48.8641802],[13.7506944,48.8641515],[13.7507212,48.8641195],[13.7508703,48.8639801],[13.7508447,48.8639301],[13.7508452,48.8639088],[13.7508281,48.86385],[13.7508212,48.8638154],[13.7507703,48.8637619],[13.7507261,48.8637206],[13.7507246,48.8637033],[13.7508041,48.8636746],[13.7508039,48.8636508],[13.7507583,48.8636302],[13.7507133,48.8636206],[13.750667,48.8636012],[13.7506115,48.8635928],[13.7505466,48.8635738],[13.7505082,48.8635545],[13.7504541,48.8635436],[13.750432,48.863529],[13.7504237,48.8635148],[13.75043,48.8634739],[13.7504266,48.8634537],[13.7504029,48.8634399],[13.7503802,48.8634417],[13.7503388,48.8634513],[13.7503178,48.8634491],[13.7502972,48.8634284],[13.7503039,48.863391],[13.7502812,48.8633508],[13.7502651,48.8633073],[13.7502776,48.8632667],[13.7502568,48.8632354],[13.750209,48.8632159],[13.7501929,48.8631756],[13.7501898,48.8631349],[13.7502144,48.8630847],[13.7502049,48.8630466],[13.7501817,48.8630246],[13.7501516,48.862972],[13.7501352,48.8628998],[13.7501183,48.8628637],[13.7501411,48.8628423],[13.7501404,48.8628168],[13.750124,48.8627912],[13.7501222,48.8627613],[13.750116,48.8627305],[13.7501245,48.8626852],[13.7501172,48.8626509],[13.7500713,48.8625797],[13.7500477,48.8625598],[13.7499725,48.8625295],[13.7499453,48.8625125],[13.7498999,48.8625056],[13.7498894,48.862483],[13.7498306,48.8624498],[13.7497809,48.8624395],[13.7497383,48.862413],[13.7496571,48.8623867],[13.7496399,48.8623691],[13.7496316,48.8623403],[13.7495729,48.8623099],[13.7495113,48.862287],[13.7493972,48.8622291],[13.7493897,48.8622032],[13.7493992,48.86217],[13.7493641,48.8621359],[13.7492936,48.8621133],[13.7492471,48.862046],[13.7492462,48.862021],[13.7491667,48.8619687],[13.7491252,48.8619385],[13.749096,48.861882],[13.7490995,48.8618449],[13.7491374,48.8617911],[13.7492538,48.8617414],[13.7492983,48.8617086],[13.7493821,48.8616962],[13.7494049,48.8616505],[13.7494045,48.8616032],[13.749436,48.8615565],[13.7494507,48.8615174],[13.7494417,48.8614941],[13.7493927,48.8614223],[13.7493382,48.8614],[13.7492581,48.8613378],[13.7491901,48.8613024],[13.7491329,48.8612658],[13.7491277,48.8612243],[13.7491441,48.8611969],[13.7491622,48.8611779],[13.7491615,48.8611178],[13.7492453,48.8610707],[13.7492617,48.861035],[13.7492228,48.8609656],[13.7492094,48.860925],[13.7492088,48.8608992],[13.7491875,48.8608651],[13.7491914,48.8608274],[13.7492266,48.8607245],[13.7492265,48.8606961],[13.7492404,48.8606675],[13.7492944,48.8606073],[13.7493025,48.8605606],[13.749283,48.8605174],[13.7492507,48.860474],[13.7492638,48.8604352],[13.7492845,48.8604072],[13.749292,48.8603762],[13.7493439,48.8603332],[13.7493562,48.8602984],[13.7493535,48.8602725],[13.7493418,48.8602537],[13.7493322,48.8601684],[13.7493781,48.8600828],[13.7493878,48.8600462],[13.7493266,48.8599382],[13.7493498,48.8599101],[13.7494156,48.859914],[13.749415,48.8598603],[13.7493975,48.8598275],[13.7494139,48.8597992],[13.749446,48.8597816],[13.7494457,48.8597424],[13.7494318,48.8596931],[13.7494211,48.859635],[13.7494303,48.8596154],[13.7494799,48.8596027],[13.7494893,48.8595944],[13.7495067,48.8595795],[13.7495079,48.8595774],[13.749548,48.859513],[13.7495596,48.8594824],[13.7495661,48.8594649],[13.7495761,48.8594389],[13.749585,48.8593692],[13.7496349,48.8593304],[13.7496612,48.8593094],[13.7496617,48.8592934],[13.7496311,48.8592574],[13.7496262,48.8592179],[13.7496354,48.8592083],[13.7496704,48.859172],[13.7497173,48.8590933],[13.7496976,48.8590707],[13.7497134,48.8590587],[13.7498026,48.8590416],[13.7498495,48.8590209],[13.7498842,48.8589812],[13.7499169,48.8589585],[13.7499452,48.8589456],[13.7499851,48.8588662],[13.7499907,48.8588178],[13.7500221,48.858782],[13.7500015,48.858716],[13.7499767,48.8586785],[13.7499805,48.858661],[13.750044,48.8586253],[13.7500405,48.8586108],[13.7500852,48.8585595],[13.7500962,48.858515],[13.750111,48.8584863],[13.7500931,48.8584558],[13.7500967,48.8584281],[13.7501089,48.8584067],[13.750154,48.8583729],[13.7501955,48.858368],[13.7502051,48.8583345],[13.7502067,48.8583091],[13.7502486,48.8582766],[13.7502898,48.8582754],[13.7503201,48.8582822],[13.7503345,48.8582755],[13.750348,48.8582361],[13.750322,48.8582215],[13.7503154,48.8581843],[13.7503293,48.8581475],[13.750355,48.8581302],[13.7503853,48.8581297],[13.7503797,48.8581014],[13.7503661,48.8580919],[13.7503098,48.8580759],[13.7502767,48.8580378],[13.7502835,48.8580187],[13.7503143,48.8580261],[13.7503326,48.8580176],[13.7503285,48.8579654],[13.7503397,48.8579107],[13.7503567,48.8578988],[13.7503981,48.8579039],[13.7504221,48.8578694],[13.7504423,48.8578517],[13.7504245,48.8578259],[13.7503731,48.8578125],[13.7503674,48.8577999],[13.750381,48.8577712],[13.7504117,48.857767],[13.7504308,48.857738],[13.7504637,48.8577213],[13.7505264,48.8577162],[13.7505431,48.8577218],[13.7505989,48.8577068],[13.7506293,48.8576629],[13.7506617,48.8576404],[13.7507522,48.857615],[13.7507828,48.8576245],[13.750797,48.8576517],[13.7508448,48.8576469],[13.7508958,48.8576009],[13.7509002,48.8575739],[13.7509256,48.8575611],[13.7509538,48.8575691],[13.7509794,48.8575496],[13.7510168,48.8575361],[13.7510437,48.8574943],[13.7510326,48.8574482],[13.7510659,48.8573301],[13.7510409,48.8572995],[13.7510781,48.8572361],[13.7510957,48.8572241],[13.7511173,48.8571623],[13.7511514,48.8571429],[13.7511792,48.8571672],[13.7511993,48.8571415],[13.751219,48.8570618],[13.7512378,48.8570371],[13.7512526,48.8569918],[13.7512781,48.8569808],[13.7513408,48.8569626],[13.7513786,48.8569489],[13.7514134,48.8569275],[13.7514579,48.8569119],[13.7515733,48.856905],[13.751579,48.8568906],[13.7515693,48.8568781],[13.7515774,48.8568636],[13.7516377,48.8568329],[13.7516582,48.8568406],[13.7516984,48.8568303],[13.7517161,48.8568101],[13.7517921,48.8567683],[13.7518255,48.8567884],[13.7518884,48.8567676],[13.751906,48.8567499],[13.7519632,48.856768],[13.7519947,48.8567501],[13.752033,48.8567476],[13.7520694,48.8567314],[13.7520834,48.856708],[13.7521265,48.8567176],[13.7521749,48.8567029],[13.7522184,48.8566658],[13.7522466,48.8566614],[13.7522718,48.8566684],[13.7522758,48.856642],[13.7522525,48.8566228],[13.7522107,48.8566158],[13.7521872,48.8566001],[13.7521715,48.8565091],[13.7521818,48.8564912],[13.752208,48.856476],[13.7522375,48.8564143],[13.7523055,48.8563936],[13.7523666,48.8563622],[13.7523662,48.856342],[13.7523763,48.8563231],[13.7524293,48.8562893],[13.7524632,48.8562755],[13.7524768,48.8562453],[13.7526201,48.8561846],[13.7526702,48.8562023],[13.7526906,48.8561819],[13.7527088,48.8561807],[13.7527242,48.8561646],[13.7527183,48.8561431],[13.7527139,48.8561022],[13.7527851,48.8560591],[13.7527966,48.8560423],[13.7528413,48.8560379],[13.7528496,48.8559942],[13.7528896,48.8559855],[13.7529071,48.8559947],[13.7529539,48.8559668],[13.7529427,48.8559204],[13.7529136,48.855901],[13.7529167,48.855845],[13.752951,48.8557948],[13.7530079,48.8557813],[13.7530302,48.8557876],[13.7530386,48.8558037],[13.7530693,48.8558068],[13.7530983,48.8557962],[13.7531466,48.855805],[13.7531487,48.8558175],[13.7531413,48.855826],[13.7531795,48.8558376],[13.7532085,48.8558153],[13.7532475,48.8557679],[13.7532758,48.8557423],[13.7532811,48.8557221],[13.7532786,48.8557062],[13.7532912,48.8556794],[13.7533299,48.8556529],[13.7533581,48.8556516],[13.7533813,48.8556437],[13.7534219,48.8556461],[13.7534858,48.8556136],[13.7535116,48.8555899],[13.7535705,48.8555944],[13.7536256,48.8555576],[13.7536706,48.8555862],[13.753696,48.8555916],[13.7537357,48.8556274],[13.753773,48.8556123],[13.7538221,48.855615],[13.7538527,48.8556232],[13.753873,48.8556173],[13.7539221,48.8556165],[13.7539557,48.8556045],[13.7539982,48.8555263],[13.7540024,48.8554959],[13.754029,48.8554485],[13.7540275,48.8554278],[13.7540478,48.8554069],[13.7540664,48.855378],[13.7541246,48.8553522],[13.7541698,48.8553626],[13.7542171,48.8553404],[13.7542426,48.8552412],[13.7542878,48.8552455],[13.7543164,48.8552275],[13.7543284,48.8552271],[13.7543685,48.8552259],[13.7544189,48.855241],[13.7544757,48.8552279],[13.7545036,48.8552114],[13.7545154,48.8551991],[13.7545618,48.8551788],[13.7545952,48.8551542],[13.7546808,48.8551151],[13.7548129,48.8550425],[13.7548304,48.8550197],[13.7548687,48.8550008],[13.7549194,48.8549333],[13.7549488,48.854875],[13.7549647,48.8548114],[13.7550004,48.8547385],[13.7550121,48.8546914],[13.7550346,48.8546122],[13.7550458,48.8545939],[13.7550483,48.8545616],[13.7550626,48.8545297],[13.7550673,48.8544808],[13.7550829,48.8544618],[13.7550949,48.8544561],[13.7551005,48.854443],[13.7551095,48.8544213],[13.7556649,48.8530608],[13.7561915,48.851781],[13.7562307,48.8516858],[13.7564728,48.8511541],[13.7565604,48.8509097],[13.7566098,48.8507793],[13.7567509,48.8504419],[13.7568066,48.850309],[13.7568154,48.8502873],[13.7573393,48.8490127],[13.7573708,48.848936],[13.758117,48.8471125],[13.7581374,48.8470629],[13.7581563,48.8470566],[13.7582174,48.8470226],[13.7582528,48.8469942],[13.7583523,48.8469334],[13.7583994,48.8469155],[13.7584398,48.8468666],[13.7584737,48.8468721],[13.7585044,48.8468633],[13.7585217,48.8468423],[13.7585245,48.8467967],[13.7585289,48.8467656],[13.7585528,48.8467327],[13.7586089,48.8467353],[13.7586505,48.8467063],[13.7586529,48.8466868],[13.7586741,48.8466564],[13.7586601,48.8466277],[13.7586212,48.8466107],[13.7586033,48.8465827],[13.7586019,48.8465562],[13.7586856,48.846519],[13.7587688,48.8464958],[13.7587826,48.8464892],[13.7588591,48.8464459],[13.758936,48.8464128],[13.7589894,48.8463921],[13.7590163,48.8464129],[13.7590384,48.8464182],[13.7590751,48.8463986],[13.7591439,48.8463673],[13.7591821,48.8463598],[13.7591836,48.8463483],[13.7591519,48.846343],[13.7591584,48.846315],[13.7591878,48.8463006],[13.759187,48.8462834],[13.7592181,48.8462445],[13.7592082,48.8462164],[13.7592045,48.8462064],[13.7592193,48.8461916],[13.7592305,48.8461567],[13.7592311,48.8461378],[13.7592126,48.8461122],[13.7592077,48.8460843],[13.7592283,48.8460703],[13.7592538,48.846026],[13.7592538,48.8460157],[13.7592979,48.8459701],[13.7593117,48.8459481],[13.7593055,48.8459412],[13.7593175,48.8459189],[13.7593145,48.8458782],[13.7593216,48.8458512],[13.7593427,48.8458364],[13.7593626,48.8458308],[13.7593774,48.8458269],[13.7593746,48.845769],[13.7594044,48.8457606],[13.7594152,48.8457227],[13.7594254,48.8457196],[13.7594313,48.8456824],[13.7594388,48.8456547],[13.7594617,48.8456309],[13.7594589,48.8455912],[13.7594664,48.8455566],[13.759458,48.8455214],[13.7594715,48.8455011],[13.7594727,48.8454808],[13.7594547,48.8454646],[13.7594495,48.8454388],[13.759477,48.8454143],[13.7594952,48.845385],[13.7595145,48.8453764],[13.7595363,48.8453145],[13.7595458,48.8453013],[13.7595385,48.8452778],[13.7595576,48.8452403],[13.759613,48.8452009],[13.7596167,48.8451719],[13.7596281,48.845151],[13.7596299,48.8451204],[13.7596426,48.8451086],[13.759639,48.8450883],[13.7596064,48.8450655],[13.7596069,48.8450443],[13.7596172,48.8450381],[13.7596136,48.8450161],[13.7596245,48.8449983],[13.7596247,48.8449781],[13.7596438,48.8449748],[13.7596818,48.8449152],[13.7597086,48.844886],[13.7597104,48.8448619],[13.7597214,48.8448544],[13.7597264,48.8448324],[13.7597443,48.8448215],[13.7597591,48.8447963],[13.7597573,48.8447589],[13.7597892,48.8446895],[13.7597887,48.8446756],[13.7598167,48.8446395],[13.7598273,48.844629],[13.7598232,48.8446203],[13.7598294,48.844599],[13.7598521,48.8445866],[13.7598446,48.8445792],[13.7598571,48.8445488],[13.7598598,48.8445191],[13.7598651,48.844514],[13.759853,48.8444968],[13.7598543,48.8444567],[13.7598448,48.8444372],[13.7598461,48.8444116],[13.7598254,48.8444131],[13.7598124,48.8443874],[13.7598061,48.844364],[13.7598187,48.8443516],[13.7598215,48.8443289],[13.7598278,48.8443081],[13.7598632,48.844283],[13.7599013,48.8442969],[13.7599272,48.8442463],[13.7599478,48.8442305],[13.759984,48.8441872],[13.7599979,48.8441513],[13.7600433,48.8440755],[13.7600491,48.8440419],[13.7601117,48.844002],[13.760132,48.8439821],[13.7601589,48.8439339],[13.7601929,48.8439063],[13.7602156,48.8438661],[13.7602742,48.8438471],[13.7602985,48.8438228],[13.7603068,48.8437906],[13.7603186,48.8437858],[13.7603301,48.8437683],[13.7603149,48.8437171],[13.76033,48.843699],[13.760356,48.8436489],[13.7603641,48.8436335],[13.7603857,48.843617],[13.7604196,48.8435603],[13.760487,48.8435393],[13.7604999,48.8435188],[13.7605517,48.8434899],[13.7606018,48.8434446],[13.7606596,48.8433562],[13.7606723,48.8433178],[13.7607098,48.8432975],[13.7607273,48.8432635],[13.7607773,48.8432404],[13.7607927,48.8432418],[13.7608073,48.8432286],[13.7608614,48.8432009],[13.7608884,48.8432001],[13.7609363,48.8431813],[13.7609718,48.8431594],[13.7609958,48.8431077],[13.7610074,48.8431021],[13.761028,48.8430846],[13.7610602,48.8430431],[13.7610709,48.8430186],[13.7610433,48.8429918],[13.7610736,48.842949],[13.7611052,48.8429432],[13.7611215,48.8429292],[13.7611519,48.8429152],[13.7611811,48.8428875],[13.7611793,48.8428498],[13.7612156,48.8427775],[13.7612825,48.8427765],[13.761311,48.8427376],[13.761294,48.8427255],[13.7612771,48.8426989],[13.7612891,48.842676],[13.7613298,48.84266],[13.7613421,48.842639],[13.7613947,48.8426057],[13.7613995,48.8425885],[13.7613823,48.842566],[13.7613923,48.8425544],[13.7614342,48.8425549],[13.7614445,48.8425472],[13.7614523,48.8425203],[13.7615027,48.8424842],[13.7615143,48.8424356],[13.7615378,48.8424227],[13.7615664,48.8424223],[13.7615863,48.8424306],[13.761609,48.8424276],[13.7616469,48.8423941],[13.7616657,48.8423881],[13.7616846,48.8423575],[13.7617617,48.8423616],[13.7618179,48.8423419],[13.7618245,48.84231],[13.7618967,48.842294],[13.7619113,48.8422694],[13.7619079,48.8422434],[13.7619507,48.8422407],[13.7620551,48.8422006],[13.7621043,48.8421521],[13.7621471,48.8421342],[13.7622552,48.8420577],[13.7622898,48.8420316],[13.7622881,48.8420036],[13.7623062,48.8419805],[13.7623118,48.841948],[13.7623304,48.8419234],[13.762339,48.8419003],[13.7623566,48.8418799],[13.7623857,48.8418722],[13.7624295,48.8418451],[13.7624446,48.8418236],[13.7624514,48.8417915],[13.7624409,48.8417684],[13.7624923,48.8417153],[13.7625315,48.8416299],[13.7625723,48.8416074],[13.7626147,48.8416001],[13.7626145,48.8415336],[13.7626345,48.841519],[13.7626717,48.8415212],[13.7627319,48.8415166],[13.7627843,48.8414659],[13.7628182,48.8414447],[13.7628441,48.8414191],[13.762911,48.8413266],[13.7629103,48.8412574],[13.7628495,48.8412014],[13.7628842,48.8411725],[13.7629112,48.8411624],[13.7628718,48.8411266],[13.7627999,48.8410815],[13.7627465,48.8410034],[13.7627251,48.8409847],[13.7627287,48.8409634],[13.7627563,48.8409559],[13.7627919,48.8409653],[13.7628284,48.8409566],[13.7628685,48.8409393],[13.7628866,48.8409073],[13.762886,48.8409004],[13.7628397,48.8408962],[13.7628122,48.8408893],[13.7628057,48.8408424],[13.7628543,48.8408256],[13.762841,48.8407632],[13.7628573,48.8407503],[13.7628827,48.840759],[13.7629628,48.8407428],[13.7629602,48.840727],[13.7629353,48.840714],[13.7629195,48.8406916],[13.7629352,48.8406816],[13.7629569,48.8406794],[13.7629891,48.8406593],[13.7630176,48.8406476],[13.7630333,48.8406195],[13.7630561,48.8405991],[13.7631047,48.8406058],[13.7631628,48.8405832],[13.763149,48.8405213],[13.7631815,48.8405],[13.7631817,48.8404592],[13.7631624,48.8404278],[13.7631147,48.840441],[13.7630933,48.8404625],[13.7630519,48.84045],[13.7630133,48.8403742],[13.7630459,48.8403429],[13.7629985,48.8402944],[13.7629435,48.8403031],[13.7629319,48.8402791],[13.7628504,48.8402214],[13.7628542,48.840202],[13.7628905,48.8401901],[13.7629067,48.8401446],[13.7629152,48.8400739],[13.7629605,48.8399998],[13.7629838,48.8399937],[13.7630109,48.8399771],[13.7630289,48.8399747],[13.763069,48.8399341],[13.7630505,48.8399105],[13.7630302,48.8398704],[13.7630002,48.8398674],[13.762976,48.8398352],[13.7629674,48.8398154],[13.7629164,48.8397702],[13.7629006,48.8397409],[13.7629192,48.8397274],[13.762927,48.8397081],[13.7628812,48.8396857],[13.7628464,48.839677],[13.7627982,48.8396598],[13.7628166,48.8396272],[13.7627931,48.8396007],[13.7628318,48.8395616],[13.762807,48.8395386],[13.7627923,48.8395111],[13.7629175,48.8394957],[13.7628535,48.8394634],[13.762824,48.8394684],[13.7627894,48.8394361],[13.7627982,48.8394075],[13.7628335,48.8393859],[13.7628696,48.839354],[13.7628861,48.8393572],[13.7629381,48.8393551],[13.7629723,48.8393747],[13.7629999,48.8393765],[13.7630162,48.8393498],[13.7630673,48.8393029],[13.7630911,48.8393047],[13.7631175,48.839268],[13.7631044,48.839258],[13.7631067,48.8392461],[13.7631346,48.839235],[13.7631333,48.8392177],[13.7631512,48.8392096],[13.7631866,48.8391736],[13.7631848,48.8391425],[13.7631712,48.8391136],[13.7632732,48.8390718],[13.7633419,48.8390569],[13.7633653,48.8390313],[13.7633403,48.8390178],[13.7633624,48.8389872],[13.7633933,48.8389868],[13.7634281,48.8389702],[13.7634301,48.8389177],[13.7634613,48.8388851],[13.7634991,48.8388917],[13.7635688,48.8388493],[13.7636063,48.8387952],[13.7636274,48.8387879],[13.7636354,48.8387654],[13.7636593,48.8387501],[13.763722,48.8387418],[13.7637623,48.8387051],[13.7637895,48.8387111],[13.763847,48.8386921],[13.7638823,48.8386577],[13.7639145,48.8386424],[13.763983,48.8386431],[13.7640402,48.838598],[13.7640406,48.8385841],[13.7640758,48.8385867],[13.7641804,48.8385421],[13.7641846,48.8385115],[13.7642627,48.8384594],[13.7642697,48.8384243],[13.7642906,48.8384162],[13.7643537,48.8384421],[13.7643722,48.8384397],[13.7644155,48.8384058],[13.7645178,48.8383325],[13.7645748,48.8382954],[13.7646226,48.8382844],[13.7647062,48.8382963],[13.7647843,48.8382826],[13.7648461,48.8382521],[13.7649169,48.8381664],[13.7649481,48.8380897],[13.7650093,48.8380553],[13.7650837,48.837994],[13.7651612,48.8379249],[13.7651752,48.8378155],[13.7652015,48.8377861],[13.7652619,48.8377753],[13.7653682,48.8377441],[13.7654303,48.8377321],[13.7655136,48.8376763],[13.7655631,48.8376578],[13.7656405,48.8375918],[13.7656278,48.8375451],[13.7655598,48.8375052],[13.7655428,48.8374442],[13.7655042,48.8373869],[13.7654824,48.8373628],[13.7654977,48.8373367],[13.7655069,48.8373129],[13.7654965,48.8373012],[13.765482,48.8372894],[13.765441,48.8372655],[13.765449,48.8372481],[13.7654594,48.8372295],[13.7654555,48.8372147],[13.7654371,48.8371885],[13.7654536,48.8371645],[13.7654829,48.8371394],[13.7654915,48.8371096],[13.7654821,48.8370791],[13.7654601,48.8370317],[13.7654155,48.8369468],[13.7654572,48.8369124],[13.7654945,48.8368893],[13.7655114,48.8368829],[13.7655867,48.8368903],[13.7656178,48.8368836],[13.7656309,48.8368695],[13.7656319,48.8368542],[13.7656416,48.8368389],[13.7656517,48.8368188],[13.7656493,48.8368051],[13.7655752,48.8367945],[13.765551,48.8367742],[13.7655329,48.8367593],[13.7654975,48.836712],[13.7654785,48.8366792],[13.7654785,48.8366498],[13.7654562,48.8366195],[13.7654432,48.8366102],[13.7654383,48.8365885],[13.7654679,48.83655],[13.7654039,48.8364778],[13.7654291,48.8364156],[13.7654642,48.836391],[13.7654586,48.8363678],[13.7654413,48.836362],[13.7653892,48.8363287],[13.7653745,48.8363045],[13.7653721,48.8362852],[13.7653488,48.8362551],[13.7652708,48.8362218],[13.7652414,48.8361913],[13.7652317,48.8361452],[13.7652061,48.8361252],[13.7651668,48.8360976],[13.7651706,48.836059],[13.7651906,48.8360207],[13.7651474,48.8360095],[13.7651056,48.8359914],[13.7650808,48.8359677],[13.7650301,48.835926],[13.7650023,48.8358919],[13.7649884,48.8358555],[13.7649831,48.8357642],[13.7649337,48.8357535],[13.7649106,48.8357699],[13.7648529,48.8357677],[13.7647875,48.8357883],[13.7647483,48.8357767],[13.7647079,48.8357655],[13.7646675,48.8357542],[13.7646519,48.835709],[13.7646654,48.8356837],[13.7646593,48.8356683],[13.7646594,48.8356474],[13.7645705,48.8356091],[13.7645423,48.8355815],[13.7645639,48.8355426],[13.7645581,48.8355291],[13.7644743,48.8354963],[13.7644484,48.8354835],[13.7644435,48.8354047],[13.764375,48.8353785],[13.7643617,48.835369],[13.7643595,48.8353281],[13.7643715,48.8352855],[13.7643836,48.8352751],[13.7643951,48.8352521],[13.7643592,48.8352316],[13.7642605,48.835146],[13.7642165,48.8351289],[13.7641938,48.835118],[13.7641977,48.8350944],[13.7642062,48.8350565],[13.7642153,48.8350329],[13.7642412,48.8350071],[13.7643021,48.8349941],[13.7643238,48.8349823],[13.7643347,48.8349737],[13.7643625,48.83496],[13.7643657,48.8349448],[13.7643692,48.8349242],[13.7643728,48.834899],[13.7643713,48.8348768],[13.7642834,48.8348321],[13.7642849,48.8348184],[13.7643399,48.834802],[13.7643504,48.834763],[13.7643875,48.8347276],[13.7644252,48.8347042],[13.7643929,48.8346641],[13.764385,48.8346539],[13.7643728,48.8346303],[13.7643875,48.8345818],[13.7644121,48.8345695],[13.7644591,48.8345291],[13.7644673,48.8345117],[13.7644354,48.8344975],[13.7644284,48.8344708],[13.7644658,48.8344528],[13.7645021,48.8344293],[13.7645493,48.8344108],[13.7645779,48.8344127],[13.7646039,48.834428],[13.7646253,48.8344035],[13.7646741,48.8343797],[13.7647194,48.8343651],[13.7647628,48.8343632],[13.764753,48.8343521],[13.7647872,48.8343088],[13.7648825,48.834253],[13.7648905,48.8342281],[13.7649488,48.8341761],[13.7649821,48.8341619],[13.7649627,48.8341221],[13.7650035,48.8339405],[13.7650435,48.8338822],[13.7650986,48.8338725],[13.7651446,48.8338677],[13.7651763,48.8338585],[13.7651985,48.8338368],[13.7651925,48.8338148],[13.7652009,48.8337859],[13.7652269,48.8337425],[13.7652643,48.833704],[13.7653172,48.8336788],[13.765424,48.8336273],[13.7655119,48.8336229],[13.7655705,48.8336062],[13.7656321,48.833645],[13.7657392,48.8336442],[13.7657753,48.8336518],[13.7659459,48.8336702],[13.7659856,48.8336423],[13.7661533,48.8336272],[13.7662517,48.8335871],[13.7663227,48.833574],[13.7663702,48.8335662],[13.7663952,48.8335414],[13.7664253,48.8335352],[13.7664566,48.8335747],[13.7665649,48.8335987],[13.7666298,48.8336131],[13.7667479,48.8335868],[13.7668487,48.8335878],[13.7668861,48.833587],[13.7669314,48.8336016],[13.7669768,48.8335912],[13.7670233,48.8335385],[13.7670397,48.8334789],[13.7670729,48.8334353],[13.7670976,48.8333782],[13.7671468,48.833321],[13.7671571,48.8332952],[13.767218,48.833259],[13.7672359,48.8332006],[13.7672978,48.8331406],[13.7673027,48.8330919],[13.7673152,48.833067],[13.7673317,48.8330412],[13.7673063,48.8329697],[13.7673119,48.8329504],[13.7673216,48.8329295],[13.7673349,48.8329198],[13.7673671,48.8329092],[13.7674486,48.8328818],[13.7675021,48.8328532],[13.7675588,48.8328446],[13.7676396,48.832826],[13.767676,48.8327757],[13.7676699,48.8327396],[13.767702,48.832709],[13.7677422,48.8327021],[13.7678096,48.8326348],[13.767834,48.8326247],[13.7679338,48.8326153],[13.7680044,48.8325843],[13.7680546,48.8325094],[13.768072,48.8324297],[13.7680407,48.8323382],[13.7680205,48.8323124],[13.7679838,48.8322823],[13.7680044,48.8322408],[13.7680148,48.8322191],[13.7680249,48.8321954],[13.7681611,48.8320894],[13.7681956,48.8320535],[13.768246,48.832039],[13.7682828,48.8320732],[13.7683231,48.8320783],[13.7683557,48.832049],[13.7683764,48.8320115],[13.7684244,48.831972],[13.7684704,48.831931],[13.768477,48.8318778],[13.768463,48.831842],[13.7684341,48.8317996],[13.7684597,48.8317757],[13.7685004,48.8317479],[13.7686245,48.8317385],[13.7687207,48.8316918],[13.7687346,48.8316692],[13.7687319,48.831596],[13.7687542,48.8315401],[13.7687459,48.8315096],[13.7687825,48.8314474],[13.7688252,48.8314346],[13.768877,48.8314108],[13.7689246,48.8313867],[13.7689455,48.8313696],[13.7689918,48.8313037],[13.7690111,48.831286],[13.7690814,48.8312782],[13.769146,48.8312995],[13.7691745,48.8313261],[13.7691982,48.8313317],[13.7692624,48.8312999],[13.7692863,48.8313028],[13.7692956,48.8313759],[13.7693251,48.8313788],[13.7693518,48.8313718],[13.7693871,48.8313389],[13.7694329,48.8312946],[13.7694845,48.8312895],[13.7695068,48.8312561],[13.7695584,48.8312538],[13.7696159,48.8312494],[13.7696723,48.8312526],[13.769744,48.8312475],[13.7697626,48.8311635],[13.7697818,48.8311397],[13.769877,48.8311294],[13.7698959,48.831106],[13.769893,48.831088],[13.7698188,48.8310191],[13.7697481,48.8310256],[13.7696497,48.8309883],[13.7696467,48.8309668],[13.7697891,48.8309015],[13.769813,48.8308774],[13.7698034,48.8308516],[13.7698036,48.8308191],[13.7698163,48.8307965],[13.7698422,48.830781],[13.7698951,48.830778],[13.7699238,48.830783],[13.7699635,48.8308047],[13.7699678,48.8308223],[13.7699948,48.8308402],[13.7700242,48.8308707],[13.7700523,48.8308908],[13.7700773,48.8308872],[13.7700996,48.8308607],[13.77013,48.830847],[13.7701611,48.8308638],[13.7701866,48.8308716],[13.7702092,48.8308912],[13.7702239,48.8309269],[13.7701943,48.8309711],[13.7701805,48.8310059],[13.770156,48.8310179],[13.7701655,48.8310417],[13.7702147,48.8310719],[13.7702615,48.8310871],[13.770306,48.8310913],[13.7703884,48.8310991],[13.7704165,48.8311055],[13.770465,48.8311186],[13.7705184,48.8311077],[13.7705531,48.8311073],[13.7706293,48.8311143],[13.7706833,48.8311044],[13.7707146,48.8311113],[13.7707301,48.8311264],[13.7707373,48.831156],[13.7707639,48.8311623],[13.7707858,48.8311523],[13.770794,48.8311097],[13.7708311,48.8310875],[13.7708461,48.8310644],[13.7708634,48.8310438],[13.7709056,48.8310069],[13.7709389,48.8309906],[13.7709796,48.830969],[13.7709982,48.8309534],[13.7710381,48.8309105],[13.7710554,48.8308773],[13.7710864,48.830865],[13.7711219,48.8308684],[13.7711669,48.830878],[13.7712387,48.8308848],[13.7713379,48.830888],[13.7713952,48.8308927],[13.7714535,48.8308848],[13.771489,48.8308567],[13.7715579,48.8308433],[13.7716129,48.8308494],[13.7716865,48.8308736],[13.7717338,48.8308835],[13.7717792,48.8308968],[13.7718357,48.83091],[13.7719229,48.830918],[13.772031,48.8309193],[13.7720772,48.8309105],[13.7721085,48.8308964],[13.7721277,48.8308604],[13.7721512,48.8308366],[13.7722491,48.8307703],[13.7723221,48.830718],[13.7723589,48.8306993],[13.772392,48.8306933],[13.7724244,48.8307073],[13.7724526,48.8307297],[13.7725083,48.8307483],[13.7725533,48.8307893],[13.7726147,48.8308023],[13.772655,48.830804],[13.7727109,48.8308067],[13.7727276,48.8308209],[13.7727016,48.8308423],[13.7727094,48.8308662],[13.7727497,48.8308765],[13.7728762,48.8308455],[13.7729269,48.830824],[13.7729617,48.8308009],[13.7729689,48.8307804],[13.772993,48.8307662],[13.7730462,48.8307533],[13.7731093,48.8307417],[13.7731365,48.8307301],[13.7731745,48.8306975],[13.7732183,48.8306838],[13.7732434,48.8306938],[13.7732513,48.8307303],[13.773272,48.8307526],[13.7733406,48.830729],[13.7733777,48.8306886],[13.7733829,48.8306692],[13.773373,48.8306364],[13.7733692,48.8306155],[13.7733886,48.8305985],[13.7734174,48.8305912],[13.7734697,48.8305952],[13.7735746,48.8306073],[13.7736127,48.8306529],[13.7736378,48.830669],[13.773667,48.8306731],[13.7737008,48.83066],[13.7737101,48.8306366],[13.7737108,48.8305639],[13.7737194,48.8304807],[13.7737402,48.8304552],[13.7737695,48.8304383],[13.773825,48.8304383],[13.7738552,48.8304884],[13.7738842,48.8305191],[13.7739332,48.8305137],[13.773977,48.8305171],[13.7741507,48.8305997],[13.7742721,48.8306442],[13.7743324,48.8306849],[13.7744056,48.8307821],[13.7744484,48.8308793],[13.7745098,48.8309684],[13.7745604,48.8310092],[13.7746469,48.8310787],[13.7747837,48.8311562],[13.7749425,48.8312494],[13.7750969,48.8313163],[13.7752367,48.8313557],[13.7753002,48.8313797],[13.7753783,48.8313862],[13.7754461,48.8313809],[13.7756894,48.8314126],[13.7757701,48.8314411],[13.7758532,48.8314905],[13.7759564,48.8315296],[13.7760729,48.831537],[13.7762358,48.8315198],[13.7763622,48.8314756],[13.7764469,48.8314438],[13.7764923,48.8314133],[13.776521,48.8313608],[13.7765494,48.8313077],[13.7765679,48.8312486],[13.7765905,48.8312059],[13.7765913,48.8311795],[13.7766298,48.8311554],[13.7767159,48.8311389],[13.7768269,48.8311455],[13.7769888,48.8311693],[13.7770583,48.8311648],[13.7772584,48.8311839],[13.7773278,48.8311772],[13.7773857,48.8311951],[13.7774479,48.83126],[13.7774526,48.8313167],[13.7773989,48.8314153],[13.77735,48.8314472],[13.7772737,48.8314622],[13.7771842,48.8314636],[13.7770949,48.8314636],[13.7769995,48.8315185],[13.7769837,48.831606],[13.7769218,48.8317505],[13.7769251,48.8318197],[13.7769997,48.8318831],[13.7771742,48.8319324],[13.7772662,48.831933],[13.7773743,48.8319064],[13.777461,48.8319085],[13.7775241,48.8319227],[13.7777583,48.8319712],[13.7779415,48.832019],[13.7780583,48.8320601],[13.7781866,48.832124],[13.7782705,48.8321934],[13.7783455,48.8322421],[13.7784694,48.8322797],[13.7785268,48.8323377],[13.7785943,48.8323762],[13.7786925,48.8323948],[13.7788007,48.8323973],[13.7789709,48.8323822],[13.7790268,48.8323459],[13.7791195,48.8322641],[13.7791391,48.8322098],[13.7791472,48.8321854],[13.77932,48.8320934],[13.7795349,48.8319965],[13.7796897,48.8319261],[13.7798357,48.8318844],[13.7799456,48.8318348],[13.7800537,48.8317791],[13.7801373,48.8317418],[13.7802163,48.8317031],[13.7803645,48.8316205],[13.7804246,48.8315481],[13.7804863,48.8314459],[13.7805705,48.8313802],[13.7807759,48.8313195],[13.7809825,48.8312969],[13.7811338,48.8313043],[13.7813808,48.8313357],[13.7815354,48.8314082],[13.7815892,48.8314137],[13.7816083,48.8315221],[13.7816549,48.8316012],[13.7817301,48.8316285],[13.7819256,48.8316205],[13.7820453,48.831645],[13.7823319,48.8317092],[13.7823996,48.8317539],[13.7825295,48.8318122],[13.7826541,48.8318442],[13.7828533,48.8318661],[13.7830963,48.8318624],[13.7832031,48.8318448],[13.7833181,48.831811],[13.7834357,48.8317982],[13.7835562,48.8317721],[13.7836165,48.8317309],[13.7836522,48.8316763],[13.7836526,48.8315391],[13.7836638,48.831403],[13.7836397,48.8313258],[13.7836081,48.8312418],[13.7836158,48.831182],[13.7836767,48.8311346],[13.783775,48.831106],[13.7838966,48.8311125],[13.7839596,48.8311227],[13.7840211,48.8310891],[13.7841867,48.8310719],[13.7843942,48.8310514],[13.7845473,48.8310311],[13.7847214,48.8310435],[13.7849702,48.8310813],[13.7850579,48.831109],[13.7851867,48.8311071],[13.7852323,48.8310869],[13.7852968,48.8310125],[13.785364,48.8309427],[13.7853735,48.8308837],[13.7854199,48.8308567],[13.785619,48.8307961],[13.7857578,48.8307759],[13.785868,48.8307368],[13.7860049,48.8307131],[13.7861263,48.8307064],[13.7864832,48.8306371],[13.7865681,48.8306344],[13.7866713,48.8306453],[13.7867704,48.830693],[13.7869254,48.8307745],[13.7870413,48.8307983],[13.7871324,48.8307893],[13.7871753,48.8308177],[13.787189,48.8308742],[13.7871567,48.8310232],[13.7871023,48.83113],[13.7870995,48.8311979],[13.7871516,48.8312533],[13.7872551,48.8312996],[13.78742,48.8313122],[13.7876612,48.8312822],[13.7880596,48.8312974],[13.7882851,48.8312787],[13.788381,48.8312842],[13.7885068,48.8312781],[13.7885912,48.8312608],[13.7886693,48.8312679],[13.7887996,48.8312908],[13.7889994,48.8312774],[13.7891136,48.8312457],[13.7892699,48.8311616],[13.7893157,48.8311235],[13.7894373,48.8310189],[13.789542,48.8309493],[13.7897145,48.8308974],[13.789883,48.8308588],[13.7900032,48.8308453],[13.7902011,48.8308566],[13.7903036,48.8308461],[13.7903963,48.8307864],[13.7904667,48.8307555],[13.7905771,48.8306941],[13.7906998,48.8305966],[13.7907087,48.8305459],[13.7906364,48.8304985],[13.7905137,48.8304893],[13.7904632,48.8304533],[13.7904385,48.8304128],[13.7904395,48.8303665],[13.7904738,48.8303264],[13.7905693,48.8302728],[13.7906288,48.8302636],[13.7908987,48.8301845],[13.7910434,48.8301823],[13.791145,48.8302167],[13.7911716,48.8302458],[13.7912146,48.83026],[13.7913238,48.8302468],[13.7915243,48.8301749],[13.7916952,48.8301431],[13.7918929,48.8301437],[13.7924132,48.8300836],[13.7926056,48.8300795],[13.7928502,48.8300943],[13.7929153,48.8300498],[13.7929718,48.829996],[13.792977,48.8299096],[13.7930072,48.8298696],[13.7930186,48.8298533],[13.7930358,48.8298048],[13.7930035,48.8297944],[13.7929856,48.8297913],[13.7929821,48.8297912],[13.7929384,48.8297907],[13.7928897,48.8297925],[13.7928477,48.8298019],[13.7928103,48.8297798],[13.7928077,48.8297619],[13.7927926,48.8297451],[13.7927496,48.8297437],[13.7927299,48.8297254],[13.7927111,48.829721],[13.7926482,48.8297137],[13.7926191,48.8297027],[13.7926266,48.8296678],[13.7926249,48.8296492],[13.7926111,48.8296353],[13.792578,48.8296357],[13.792593,48.8296135],[13.7925911,48.8295982],[13.7925494,48.8295968],[13.7925028,48.8295886],[13.7924812,48.8295754],[13.7924757,48.8295681],[13.792479,48.8295395],[13.7924782,48.8295035],[13.7924821,48.8294834],[13.7924973,48.8294659],[13.7924994,48.8294552],[13.7924891,48.829437],[13.7924265,48.8294312],[13.792419,48.8294153],[13.7924266,48.8293923],[13.7924362,48.8293741],[13.7924,48.8293608],[13.7923996,48.8293276],[13.7923745,48.8293205],[13.7923597,48.8293009],[13.7923484,48.82928],[13.792332,48.8292651],[13.792338,48.8292427],[13.7923012,48.8292141],[13.7922642,48.829209],[13.7922233,48.8291561],[13.7922319,48.8291438],[13.7922636,48.8291438],[13.7922895,48.82914],[13.7923217,48.8291373],[13.7923429,48.8291272],[13.7923416,48.8291076],[13.7923307,48.829073],[13.7923479,48.829056],[13.7923951,48.829042],[13.7924064,48.8290261],[13.7924005,48.8289918],[13.7923464,48.828988],[13.792281,48.828992],[13.7922623,48.8289849],[13.7922435,48.8289553],[13.7922584,48.8289241],[13.7923132,48.8289269],[13.7923308,48.8289122],[13.792333,48.8288976],[13.7924122,48.8288804],[13.7924362,48.8288846],[13.7924748,48.8288896],[13.792499,48.8288832],[13.7925265,48.8288622],[13.7925285,48.8288605],[13.7925327,48.8288406],[13.7925237,48.8288089],[13.7925271,48.8287815],[13.7925279,48.8287736],[13.7924898,48.8287267],[13.7924732,48.828684],[13.7924664,48.8286373],[13.7924311,48.8286264],[13.7924041,48.8286171],[13.7923786,48.8285601],[13.7923431,48.8285111],[13.7923173,48.8284412],[13.7923035,48.8284037],[13.7922255,48.8283495],[13.7921977,48.8282889],[13.7922086,48.8282696],[13.7922235,48.8282436],[13.7922113,48.828232],[13.7921879,48.828177],[13.7921224,48.8281761],[13.7921169,48.8281722],[13.7920954,48.8281616],[13.7920641,48.8281607],[13.7920511,48.8281592],[13.7920107,48.8281544],[13.7919802,48.8281471],[13.7919849,48.8281322],[13.7920061,48.8281218],[13.7920425,48.828107],[13.7920342,48.8280892],[13.7920134,48.8280697],[13.7919658,48.8280592],[13.7920034,48.8280039],[13.7920023,48.8279873],[13.7919913,48.8279767],[13.7919595,48.827969],[13.7919254,48.8279491],[13.791896,48.827925],[13.791876,48.8279189],[13.7918367,48.8279228],[13.7917935,48.8279371],[13.7917816,48.827926],[13.7917728,48.827908],[13.7917752,48.8278961],[13.7917929,48.8278894],[13.7918086,48.8278649],[13.7918078,48.8278519],[13.7917972,48.8278423],[13.7917878,48.8278345],[13.7917595,48.8278209],[13.7917091,48.8278094],[13.7916792,48.8278043],[13.7916496,48.827819],[13.7915835,48.8278045],[13.7915406,48.8277879],[13.7914444,48.8276924],[13.7913945,48.8276642],[13.7909127,48.8275148],[13.7908484,48.8275007],[13.7904502,48.8274467],[13.7904024,48.8274218],[13.7903459,48.8273421],[13.7902975,48.8273198],[13.7901513,48.8273113],[13.7900904,48.8272958],[13.7898417,48.8271689],[13.7898058,48.8271535],[13.7897869,48.8271246],[13.7897463,48.8271045],[13.7897081,48.8270714],[13.7896868,48.8270399],[13.7896567,48.8270251],[13.7896329,48.8270028],[13.7896282,48.8269682],[13.789609,48.8269516],[13.7895842,48.8269454],[13.7895602,48.826946],[13.7895491,48.8269382],[13.7895512,48.826914],[13.7895304,48.8268839],[13.7895147,48.8268785],[13.7895113,48.8268589],[13.7894851,48.8268513],[13.7894475,48.8268591],[13.7894271,48.8268589],[13.7893986,48.8268455],[13.7893929,48.8268126],[13.7893802,48.826794],[13.7893517,48.8267908],[13.7893427,48.826779],[13.7893212,48.8267649],[13.789322,48.8267498],[13.7893152,48.8267128],[13.7893161,48.8266777],[13.7893059,48.826662],[13.7892523,48.8266251],[13.7892498,48.826612],[13.7892613,48.8265988],[13.7892525,48.8265652],[13.7892433,48.8265504],[13.7892274,48.8265436],[13.7892204,48.8265016],[13.7891897,48.8264777],[13.7891668,48.8264734],[13.7891275,48.8264757],[13.7890892,48.8264659],[13.7890256,48.8264773],[13.7890128,48.8264762],[13.7889945,48.8264562],[13.7889649,48.8264342],[13.7889087,48.8263614],[13.7888637,48.8263168],[13.7888425,48.826286],[13.7888118,48.8262613],[13.7887731,48.8262412],[13.7887619,48.8262397],[13.7887519,48.8262534],[13.7887426,48.8262602],[13.7887256,48.8262583],[13.7887064,48.826243],[13.7886408,48.8261877],[13.7885929,48.8261628],[13.7885902,48.8261392],[13.788608,48.8261153],[13.7886068,48.8260679],[13.7886174,48.8260398],[13.7886267,48.8260271],[13.7886183,48.8260065],[13.7886089,48.8259848],[13.7885812,48.8259763],[13.7885533,48.8259395],[13.7885395,48.8259265],[13.7884992,48.8259243],[13.7884677,48.8259095],[13.7884533,48.8258872],[13.7884215,48.8258874],[13.7883505,48.8258815],[13.7883226,48.8258615],[13.7882867,48.8258473],[13.7882557,48.8258267],[13.7881932,48.8258169],[13.788185,48.8257996],[13.7881727,48.8257921],[13.7881372,48.825783],[13.7881089,48.8257593],[13.7881086,48.8257593],[13.7880602,48.8257539],[13.788023,48.8257635],[13.7879625,48.8257546],[13.787951,48.8257373],[13.7879827,48.8257086],[13.7879891,48.8256853],[13.7880042,48.8256709],[13.7880142,48.8256459],[13.7879954,48.8256004],[13.788006,48.8255438],[13.7879955,48.8255158],[13.7879758,48.8254908],[13.7879473,48.8254817],[13.7879194,48.8254652],[13.7878861,48.8254304],[13.7878837,48.8254064],[13.7878974,48.8253949],[13.7879588,48.8253852],[13.7879768,48.8253671],[13.7879712,48.8253423],[13.787956,48.825326],[13.787918,48.8253162],[13.7879101,48.8252919],[13.7879262,48.8252595],[13.7879593,48.8252445],[13.787988,48.8251968],[13.7880077,48.8251783],[13.788001,48.8251231],[13.7880284,48.8251024],[13.7880691,48.8250574],[13.7880912,48.8250433],[13.7881263,48.8249967],[13.7881339,48.8249679],[13.7881329,48.8249385],[13.7881294,48.8249082],[13.7881835,48.8248477],[13.7881982,48.8248188],[13.7882025,48.8248165],[13.7882311,48.8248012],[13.7883709,48.8247522],[13.788441,48.8247253],[13.7885371,48.824684],[13.7885812,48.8247159],[13.7886316,48.8247382],[13.7886698,48.8247448],[13.7887769,48.8247337],[13.7888576,48.8247427],[13.7889094,48.824726],[13.7889642,48.8247031],[13.788977,48.8246737],[13.7890234,48.8246279],[13.7890612,48.8246109],[13.789089,48.8246357],[13.7891221,48.8246224],[13.7891335,48.8246076],[13.7891816,48.824577],[13.7892488,48.8245933],[13.7892674,48.8246076],[13.7893063,48.824604],[13.7893946,48.8246067],[13.7894351,48.82462],[13.7894724,48.8246192],[13.7894792,48.824612],[13.7895493,48.8246176],[13.789601,48.8246054],[13.7896516,48.8245691],[13.789675,48.8245429],[13.7897113,48.8245492],[13.7897514,48.8245347],[13.7897988,48.8244793],[13.7898359,48.824483],[13.7898649,48.8245021],[13.7899124,48.8245063],[13.7899662,48.824466],[13.7899657,48.8244412],[13.7899729,48.8244009],[13.7900104,48.8243823],[13.7899916,48.8243436],[13.7900115,48.82434],[13.7900213,48.8243078],[13.790003,48.8242834],[13.7899877,48.8242165],[13.790023,48.8241704],[13.7900066,48.8241613],[13.7899911,48.8241528],[13.789962,48.8241551],[13.7899539,48.8241379],[13.7899698,48.8241018],[13.7900152,48.8240854],[13.7900216,48.8240426],[13.7900395,48.8240196],[13.7900593,48.8239567],[13.7900963,48.8239227],[13.7901209,48.823905],[13.7902295,48.8238649],[13.7902677,48.8238615],[13.7903119,48.8238446],[13.7903674,48.8238128],[13.7904431,48.823797],[13.7904817,48.8238056],[13.7904988,48.8238286],[13.7905167,48.8238339],[13.7905803,48.8238241],[13.7905875,48.8237996],[13.7906373,48.823828],[13.7906891,48.8238347],[13.790726,48.823827],[13.7907552,48.8238171],[13.7907619,48.8237989],[13.7907497,48.8237805],[13.790774,48.8237816],[13.790833,48.8237656],[13.790891,48.8237354],[13.7909199,48.8237311],[13.791002,48.8237277],[13.7910383,48.8237339],[13.7910898,48.8237328],[13.7911075,48.8237328],[13.7911514,48.8237579],[13.7911998,48.8237714],[13.7912644,48.8237603],[13.7913013,48.8237711],[13.791365,48.8237376],[13.791419,48.8237268],[13.791449,48.8237035],[13.7914635,48.8237],[13.7914952,48.8237112],[13.7915449,48.8237459],[13.7915487,48.8237698],[13.7915732,48.823781],[13.7916052,48.8237861],[13.7916401,48.8237811],[13.7916775,48.8237458],[13.7917002,48.8237032],[13.7917603,48.8236725],[13.7918836,48.8236385],[13.7919098,48.8236393],[13.7919591,48.8236772],[13.7919823,48.8236785],[13.7920005,48.8236625],[13.7920344,48.8236064],[13.7920534,48.8235967],[13.7920824,48.8235999],[13.7921028,48.8235852],[13.7920902,48.8235375],[13.79209,48.8235006],[13.7921057,48.8234722],[13.7921579,48.823447],[13.7922084,48.8234281],[13.7922375,48.8234057],[13.7922825,48.8234238],[13.7922731,48.8234355],[13.7922993,48.8234471],[13.7923168,48.8234505],[13.7924182,48.8234212],[13.7924358,48.8234056],[13.7924334,48.8233743],[13.7924256,48.8233559],[13.7924094,48.8233426],[13.7924044,48.8233275],[13.7924273,48.8233145],[13.7924324,48.8232996],[13.7924855,48.823288],[13.7925404,48.8232944],[13.7925534,48.8232869],[13.7925525,48.823276],[13.792535,48.8232626],[13.7925301,48.8232484],[13.7925231,48.8232224],[13.7925078,48.8232101],[13.792513,48.8231985],[13.7925471,48.8231833],[13.7925732,48.823171],[13.7926052,48.8231431],[13.7926071,48.8231227],[13.792585,48.82311],[13.7925705,48.8231128],[13.7925494,48.8231045],[13.7926333,48.8230568],[13.7926619,48.8230482],[13.7926811,48.8230473],[13.7927308,48.8230721],[13.7927765,48.8230641],[13.7928046,48.8230771],[13.7928796,48.8230569],[13.7929032,48.8230379],[13.792907,48.8230221],[13.7929024,48.8230039],[13.7929129,48.8229776],[13.792926,48.8229739],[13.7929424,48.8229574],[13.7929594,48.8229268],[13.7929723,48.8228978],[13.7929987,48.8228563],[13.7930346,48.8228253],[13.7930555,48.8227999],[13.7930636,48.8227877],[13.7930857,48.8227746],[13.7931094,48.8227564],[13.793137,48.8227498],[13.7931713,48.8227512],[13.793206,48.822742],[13.7932475,48.8227152],[13.7932514,48.8226978],[13.793322,48.8226703],[13.7933446,48.8226503],[13.7933612,48.8226024],[13.7933399,48.8225635],[13.7933202,48.82254],[13.7932967,48.8225236],[13.7932899,48.8225016],[13.7933135,48.8224817],[13.7933156,48.8224624],[13.7933233,48.8224501],[13.7933653,48.8224405],[13.7934056,48.8224326],[13.7934156,48.8224175],[13.793441,48.8223967],[13.7934527,48.8223756],[13.7934593,48.8223543],[13.7935021,48.8223074],[13.7935235,48.8222946],[13.7935506,48.8222894],[13.7935759,48.8222948],[13.7936067,48.8222924],[13.7936265,48.8222288],[13.7936588,48.8222084],[13.7937012,48.8221816],[13.7937284,48.8221521],[13.7937681,48.8221382],[13.7937847,48.822131],[13.793803,48.8221057],[13.7938564,48.8220853],[13.7939308,48.8220727],[13.7940058,48.8220454],[13.7940352,48.8220084],[13.7940591,48.8219973],[13.7940767,48.8219891],[13.794102,48.8219914],[13.7941525,48.8219701],[13.7941701,48.8219382],[13.7941666,48.8219217],[13.7941687,48.8218867],[13.7941851,48.8218707],[13.7942228,48.8218646],[13.7942537,48.8218253],[13.794294,48.8217884],[13.7943422,48.8217723],[13.7943717,48.8217346],[13.7943716,48.8216972],[13.7943975,48.8216873],[13.7945188,48.8216694],[13.7945594,48.8216516],[13.7946116,48.821606],[13.7946227,48.8215785],[13.7946308,48.8215522],[13.7946171,48.821538],[13.7946243,48.8214505],[13.7946668,48.8214038],[13.7946606,48.8213777],[13.794692,48.8213192],[13.794663,48.8212774],[13.7946399,48.821263],[13.7946299,48.8212169],[13.7946514,48.821157],[13.7946621,48.8211275],[13.7946644,48.8210886],[13.7946842,48.8210625],[13.7946968,48.8210315],[13.7946962,48.821015],[13.7947056,48.8209843],[13.7947458,48.8209401],[13.7947841,48.8209231],[13.7948375,48.8209006],[13.7948753,48.8208744],[13.7948881,48.8208396],[13.7949258,48.8207995],[13.7949436,48.8207928],[13.7949817,48.8207545],[13.7950056,48.8207309],[13.7950287,48.8207137],[13.7950234,48.8206952],[13.7950225,48.8206691],[13.7950505,48.8206212],[13.795074,48.8206009],[13.7951654,48.8205898],[13.7952348,48.8205744],[13.7952625,48.820558],[13.7952764,48.8205439],[13.7953273,48.8205126],[13.7953612,48.8205056],[13.7954753,48.8204859],[13.7954898,48.8204807],[13.795492,48.820462],[13.7955095,48.8204222],[13.7955235,48.8204021],[13.7955354,48.8203414],[13.7955921,48.8203254],[13.7956529,48.820303],[13.7957072,48.820297],[13.7957312,48.8202799],[13.7957561,48.8202396],[13.7957612,48.820214],[13.7957739,48.8201964],[13.7958191,48.8201658],[13.7958758,48.8201513],[13.7958928,48.8201155],[13.7958887,48.8200827],[13.7959223,48.8200457],[13.7959471,48.8200129],[13.7959339,48.8199947],[13.7959139,48.8199508],[13.7959171,48.8199298],[13.7959366,48.8199178],[13.795985,48.819875],[13.7960063,48.8198609],[13.7960337,48.8198226],[13.7960417,48.8198184],[13.796049,48.8198129],[13.7960663,48.8197791],[13.7960557,48.81977],[13.7960938,48.8197322],[13.7961059,48.8197251],[13.7961027,48.8197133],[13.7961146,48.8196952],[13.7961105,48.8196773],[13.796097,48.8196678],[13.7960835,48.8196431],[13.7960503,48.8196257],[13.7960333,48.819599],[13.7960371,48.8195903],[13.7960517,48.8195841],[13.7960627,48.8195514],[13.7960741,48.8195381],[13.7961013,48.8195317],[13.7961305,48.8195295],[13.7961526,48.8195212],[13.7961656,48.8195015],[13.7961497,48.8194794],[13.7961624,48.8194426],[13.7961834,48.8194236],[13.7962199,48.8194275],[13.7962277,48.8194195],[13.7962639,48.8194044],[13.7963414,48.8193441],[13.7963416,48.8193315],[13.7963675,48.819323],[13.7963956,48.8193201],[13.7964118,48.8193267],[13.7964418,48.8193217],[13.7964855,48.8192745],[13.7965174,48.8192661],[13.796516,48.8192432],[13.7964936,48.8191664],[13.7965031,48.8191614],[13.7965276,48.8191687],[13.7965419,48.8191621],[13.7965738,48.8191376],[13.7965751,48.8191273],[13.7966,48.819112],[13.7966213,48.8190816],[13.7966648,48.819078],[13.796749,48.8190871],[13.7967579,48.8190748],[13.7968,48.8190535],[13.7968152,48.819038],[13.7968656,48.819021],[13.7968702,48.8190075],[13.7969148,48.8189922],[13.7969418,48.81899],[13.7969709,48.8190069],[13.7969863,48.8189863],[13.7969931,48.8189675],[13.7969456,48.8189052],[13.796959,48.818877],[13.7969893,48.8188613],[13.7969939,48.8188308],[13.7970241,48.8188121],[13.7970913,48.8187968],[13.7971494,48.8187965],[13.7971634,48.8187813],[13.7971443,48.8187401],[13.7971418,48.8187126],[13.7971642,48.8187003],[13.7971915,48.8186678],[13.797171,48.8186347],[13.7971965,48.8186088],[13.7972182,48.8186054],[13.7972428,48.8185609],[13.7972919,48.8185254],[13.797317,48.8185158],[13.7973214,48.8185026],[13.7972984,48.8184887],[13.797323,48.8184649],[13.7973891,48.8184507],[13.7973897,48.8184432],[13.7974472,48.8184127],[13.7974693,48.8183899],[13.7974509,48.8183716],[13.7974474,48.8183544],[13.797459,48.8183192],[13.7975473,48.8182591],[13.7975765,48.8182632],[13.797607,48.8182648],[13.7976691,48.8182564],[13.7977209,48.8182386],[13.7977636,48.8182143],[13.7977811,48.8181823],[13.7978124,48.8181565],[13.7978456,48.8181227],[13.7978338,48.8180817],[13.7978486,48.8180739],[13.7978572,48.81801],[13.7978732,48.8179987],[13.7978775,48.8179782],[13.7978959,48.8179613],[13.7978999,48.8179231],[13.7979231,48.8178993],[13.7979393,48.8178541],[13.7979517,48.8178348],[13.7979498,48.817801],[13.7979552,48.817767],[13.7979925,48.8177244],[13.7979866,48.8176942],[13.7980134,48.8176793],[13.7980298,48.8176586],[13.7980836,48.8176323],[13.7981281,48.8175977],[13.7981238,48.8175591],[13.7981168,48.8175495],[13.7981197,48.8175243],[13.7981459,48.8175065],[13.7981859,48.8175043],[13.7982086,48.8174837],[13.7982307,48.8174288],[13.798272,48.8174224],[13.7983098,48.8173861],[13.7982933,48.8173689],[13.7983241,48.8173122],[13.7983398,48.8172729],[13.7983155,48.8172485],[13.798309,48.8172309],[13.798323,48.817197],[13.7983155,48.8171831],[13.7983136,48.8171597],[13.7982841,48.8171492],[13.7982787,48.8171101],[13.7983003,48.817077],[13.7982758,48.8170542],[13.7982693,48.8170185],[13.7982747,48.8169533],[13.7982647,48.8169389],[13.7982631,48.8169262],[13.7982234,48.8168774],[13.7982323,48.8168511],[13.7981956,48.8168327],[13.798191,48.8168119],[13.7981699,48.8167935],[13.7981502,48.816767],[13.7981149,48.8167597],[13.7980833,48.81673],[13.7980736,48.8166827],[13.7980514,48.8166639],[13.7980315,48.8166596],[13.7980134,48.8166402],[13.7979885,48.8166203],[13.7980018,48.816594],[13.7979556,48.8165538],[13.7979378,48.8165272],[13.7978719,48.816509],[13.7978368,48.8164943],[13.7978041,48.8164738],[13.7977912,48.8164591],[13.7977896,48.8164358],[13.7977782,48.8164328],[13.797768,48.8164171],[13.7977712,48.8164082],[13.7977609,48.8164033],[13.7977585,48.8163805],[13.7977696,48.8163663],[13.7977426,48.8163327],[13.7977245,48.8163227],[13.7977145,48.8163076],[13.7976934,48.8162985],[13.7976827,48.8162856],[13.7976582,48.8162751],[13.7976382,48.8162717],[13.7975843,48.8162447],[13.7975502,48.8162503],[13.7974994,48.8162232],[13.797453,48.8162067],[13.7974339,48.8161973],[13.7974217,48.8161834],[13.7973381,48.8161779],[13.7973199,48.8161661],[13.7973201,48.8161557],[13.7972923,48.8161438],[13.7972816,48.8161247],[13.7972869,48.8161156],[13.7972814,48.8161005],[13.7972602,48.8160907],[13.7972696,48.8160761],[13.7972329,48.816054],[13.797213,48.8160249],[13.7971483,48.8160207],[13.7971331,48.8160146],[13.7971304,48.8160036],[13.797113,48.8159963],[13.797071,48.8159935],[13.7970393,48.8159998],[13.7969817,48.8159646],[13.7969492,48.8159366],[13.796932,48.8159033],[13.7969401,48.8158787],[13.7969244,48.815863],[13.7969185,48.8158373],[13.7969049,48.81582],[13.7968883,48.8158097],[13.796837,48.8158051],[13.7968106,48.8157973],[13.796806,48.8157674],[13.7967692,48.8157587],[13.7967619,48.8157527],[13.7967064,48.8157525],[13.7966787,48.8157378],[13.7966522,48.815732],[13.7966256,48.8157166],[13.7965871,48.8156999],[13.7965642,48.8156706],[13.796534,48.8156666],[13.7964853,48.8156482],[13.7964626,48.8156371],[13.7964401,48.8156393],[13.7963821,48.8156222],[13.7963494,48.8156051],[13.7963223,48.8155752],[13.7963181,48.8155465],[13.7963091,48.8155256],[13.7962902,48.8155282],[13.7962736,48.8155207],[13.7962786,48.8155126],[13.7962624,48.8155011],[13.7962242,48.8155046],[13.7962177,48.8154938],[13.7961948,48.815497],[13.7961717,48.8155019],[13.7961513,48.8154922],[13.7961215,48.8154882],[13.7960902,48.8154517],[13.7959142,48.8152434],[13.7955816,48.8148464],[13.7956202,48.814813],[13.797199,48.8134228],[13.797234,48.8133917],[13.7988428,48.8119417],[13.7988879,48.8119017],[13.8000131,48.8108993],[13.800366,48.8105843],[13.800464,48.8104972],[13.8012053,48.8098385],[13.8012582,48.8097917],[13.80207,48.8090704],[13.8029064,48.8083199],[13.8030954,48.8081501],[13.8036515,48.8076501],[13.8036858,48.8076194],[13.8042212,48.8071334],[13.8042609,48.8070973],[13.8050219,48.8063932],[13.8052195,48.8062112],[13.8052781,48.8061568],[13.8055951,48.8058694],[13.8056269,48.8058397],[13.8063402,48.8051977],[13.806571,48.8049886],[13.8068693,48.8047194],[13.8078399,48.8038427],[13.8084875,48.803257],[13.8092457,48.8025602],[13.810106,48.8017696],[13.8108496,48.8010964],[13.8117218,48.8003062],[13.8118068,48.8002295],[13.812739,48.7993824],[13.8127955,48.799331],[13.8130687,48.7990827],[13.8133419,48.7988347],[13.8135398,48.7986558],[13.8136764,48.7985316],[13.814547,48.797746],[13.8145765,48.7977191],[13.8146511,48.7976524],[13.8146176,48.7976319],[13.8145708,48.7975937],[13.8145801,48.7975736],[13.8146098,48.7975467],[13.8146568,48.7975096],[13.8147462,48.7974754],[13.8149891,48.7973571],[13.8149628,48.797282],[13.8149665,48.7972731],[13.8150239,48.7972424],[13.8150489,48.7972438],[13.8150768,48.7972388],[13.8151542,48.7971657],[13.8151582,48.79715],[13.8151736,48.7971312],[13.8152377,48.7970878],[13.8152281,48.7970468],[13.8152358,48.7970239],[13.8152262,48.796992],[13.8152026,48.7969782],[13.815172,48.7969451],[13.8151595,48.7969244],[13.8151476,48.7969171],[13.8151473,48.7969103],[13.81513,48.7968996],[13.8151289,48.7968861],[13.8150598,48.7968516],[13.8150468,48.7968318],[13.8150061,48.7967996],[13.8149772,48.7967668],[13.814979,48.7967591],[13.8149878,48.7967502],[13.8149811,48.7967325],[13.8149798,48.7967094],[13.8149657,48.7967019],[13.8149346,48.796695],[13.8149219,48.7966973],[13.8149096,48.7966921],[13.8149152,48.7966807],[13.8149102,48.796666],[13.8149171,48.7966474],[13.8148823,48.7965837],[13.8148905,48.7965665],[13.8148796,48.7965229],[13.8148389,48.7964755],[13.814831,48.7964508],[13.814866,48.7964347],[13.8148668,48.7964177],[13.8148509,48.7964026],[13.8148432,48.7963685],[13.8148182,48.7963389],[13.8148302,48.796331],[13.8148602,48.7963026],[13.8148413,48.7962592],[13.8148142,48.7962359],[13.8148054,48.7962203],[13.8147629,48.7962009],[13.8147594,48.7961919],[13.8147278,48.7961928],[13.8147217,48.7961748],[13.8147036,48.7961601],[13.8147065,48.7961345],[13.8147278,48.7961238],[13.8147145,48.7960928],[13.8147225,48.7960848],[13.8147334,48.7960624],[13.8147244,48.7960522],[13.8147124,48.7960198],[13.8146486,48.796007],[13.8145941,48.7959379],[13.8145787,48.7959256],[13.8145779,48.7959123],[13.8145295,48.7958858],[13.8144917,48.7958848],[13.8144832,48.795871],[13.8144843,48.795833],[13.8144705,48.7958254],[13.8144543,48.795803],[13.8144375,48.7957487],[13.814442,48.7957125],[13.8144069,48.7956806],[13.8144194,48.7956664],[13.8144173,48.7956349],[13.8143838,48.7956235],[13.814382,48.7955973],[13.8143697,48.7955829],[13.81434,48.7955442],[13.8142948,48.7954966],[13.8142998,48.7954769],[13.8142998,48.7954463],[13.8142916,48.7954185],[13.8142972,48.7954018],[13.8143147,48.7953945],[13.8142988,48.7953642],[13.8142985,48.7953458],[13.8142887,48.7953321],[13.8142953,48.7953066],[13.8143089,48.7952841],[13.8142804,48.7952461],[13.814278,48.7952299],[13.8142897,48.7952162],[13.8142663,48.7951847],[13.8142655,48.7951626],[13.8142881,48.79514],[13.8142581,48.7951092],[13.8142437,48.7950225],[13.8142459,48.7949383],[13.8142078,48.7948956],[13.8141773,48.7948738],[13.8141656,48.7948602],[13.8141629,48.7948423],[13.8141789,48.7948309],[13.8142015,48.79479],[13.8141935,48.7947204],[13.8141746,48.7947031],[13.8141541,48.7946961],[13.8141443,48.7946866],[13.8141502,48.7946698],[13.8141427,48.79465],[13.8141334,48.7946464],[13.8141305,48.7946108],[13.8141103,48.7945894],[13.8141095,48.7945649],[13.8140965,48.7945523],[13.8140866,48.7945387],[13.8140829,48.794512],[13.8140571,48.7944691],[13.814063,48.7944569],[13.8140465,48.7944402],[13.8140382,48.7944289],[13.8140598,48.7943592],[13.8140117,48.794329],[13.8139829,48.7943219],[13.8139766,48.7943122],[13.8139782,48.7942881],[13.8139383,48.7942751],[13.8139197,48.794259],[13.8139117,48.7942424],[13.8139335,48.7942114],[13.8139407,48.7941886],[13.8139258,48.7941585],[13.8139199,48.7941271],[13.8138755,48.7941138],[13.8138631,48.7940634],[13.8138623,48.7940487],[13.8137719,48.7940222],[13.8137745,48.793987],[13.8137623,48.7939737],[13.8136804,48.7939298],[13.8136796,48.7939144],[13.813669,48.7938988],[13.813674,48.7938709],[13.8136456,48.7938508],[13.8136326,48.7938208],[13.8136129,48.7938147],[13.8135882,48.7937926],[13.8135733,48.793793],[13.8135488,48.7937846],[13.8135124,48.7937809],[13.8134877,48.793762],[13.8134826,48.7937483],[13.8134561,48.793749],[13.8134056,48.7937349],[13.8133864,48.7937405],[13.8133649,48.7937359],[13.8133449,48.7937373],[13.8133101,48.7937321],[13.8133024,48.7937214],[13.8132702,48.7937159],[13.8132498,48.793699],[13.8132285,48.7936946],[13.8132184,48.7936711],[13.8131876,48.7936497],[13.8131836,48.7936307],[13.8131634,48.7936124],[13.8131379,48.7935643],[13.8131442,48.7935461],[13.8130751,48.7934853],[13.8130581,48.7934822],[13.8130248,48.793467],[13.813031,48.7934385],[13.8130052,48.7934263],[13.8129906,48.793414],[13.8129284,48.7934058],[13.8129164,48.7933986],[13.8129005,48.7933972],[13.8128816,48.7934053],[13.8128712,48.7934004],[13.812855,48.7934026],[13.812844,48.7933928],[13.8128308,48.793386],[13.8128314,48.7933731],[13.8128189,48.7933699],[13.8127918,48.7933484],[13.8127891,48.7933333],[13.8127625,48.793303],[13.8127622,48.7932899],[13.8127479,48.7932795],[13.8127125,48.7932703],[13.8126846,48.793271],[13.8126705,48.7932617],[13.8126538,48.7932566],[13.8126591,48.7932358],[13.8126556,48.7932226],[13.8126562,48.7932042],[13.8126219,48.7931795],[13.8126163,48.793158],[13.8126025,48.7931506],[13.8125972,48.7931366],[13.8125488,48.7931088],[13.8125307,48.7931065],[13.812502,48.7930927],[13.8124767,48.7930965],[13.8124541,48.7930857],[13.8123991,48.7930892],[13.8123398,48.793051],[13.8123283,48.7930362],[13.8123162,48.7930281],[13.8122569,48.7930125],[13.8122444,48.7929951],[13.8122524,48.7929816],[13.8122588,48.7929599],[13.8122468,48.7929249],[13.8121997,48.792902],[13.8121801,48.7929035],[13.8121588,48.7928773],[13.8121382,48.7928656],[13.8117423,48.7920084],[13.8114818,48.7914472],[13.8107468,48.7899262],[13.8100607,48.7885134],[13.8100021,48.7880646],[13.8099532,48.7876874],[13.809881,48.7870937],[13.8098708,48.787004],[13.8098532,48.7868765],[13.8097066,48.7858993],[13.8096821,48.7857484],[13.8096411,48.7854911],[13.8090502,48.7846271],[13.8082268,48.7834232],[13.8059659,48.782065],[13.8048208,48.7815108],[13.8043242,48.7812708],[13.8041098,48.7811668],[13.803792,48.7810135],[13.8036829,48.7809616],[13.8036497,48.7809293],[13.8038659,48.7808979],[13.8043237,48.78086],[13.8043656,48.7808375],[13.8057766,48.7800777],[13.8067337,48.7795588],[13.8070184,48.7793925],[13.8076309,48.7790382],[13.8085021,48.778529],[13.8099845,48.7770933],[13.8109483,48.776265],[13.8115876,48.775725],[13.8125014,48.7747243],[13.8131798,48.7739964],[13.8144596,48.7738233],[13.8157259,48.7736449],[13.8182406,48.77308],[13.8208749,48.7724013],[13.8234718,48.7723592],[13.8244818,48.7722551],[13.8269343,48.7720021],[13.8270879,48.7719863],[13.8271899,48.7719763],[13.8290586,48.7712982],[13.8302004,48.7710504],[13.831396,48.7707911],[13.8343063,48.7706747],[13.835222,48.7707243],[13.8368716,48.7708163],[13.8394804,48.7715947],[13.8395515,48.7716206],[13.8393569,48.7708726],[13.8392648,48.7705617],[13.8392796,48.7701801],[13.8392854,48.7699431],[13.8393465,48.7694546],[13.8394891,48.7689534],[13.8394758,48.7687874],[13.8394443,48.7686295],[13.8395016,48.7679352],[13.8395204,48.7677192],[13.8396373,48.7672267],[13.8396097,48.7670787],[13.8396009,48.7670539],[13.8395404,48.7668519],[13.8395409,48.7663617],[13.8392754,48.7661486],[13.8389222,48.7656838],[13.8387293,48.7653987],[13.8384447,48.7650776],[13.8380328,48.7648418],[13.8378336,48.7647591],[13.8376426,48.764678],[13.8371722,48.7643695],[13.836975,48.7640619],[13.836937,48.7639999],[13.8366058,48.7637773],[13.8365605,48.763574],[13.8364429,48.7631235],[13.8362566,48.7628744],[13.8361347,48.7627378],[13.8357845,48.762544],[13.8354923,48.7625239],[13.8353233,48.7624058],[13.8350989,48.7623635],[13.8347809,48.7622124],[13.8345711,48.7620354],[13.8340944,48.7617465],[13.8338156,48.7615738],[13.8334455,48.7614012],[13.8330831,48.7611219],[13.8328899,48.7609917],[13.8322591,48.7607713],[13.8321447,48.7608051],[13.8318027,48.7606272],[13.8314478,48.7602978],[13.8313537,48.7602616],[13.8312386,48.7602371],[13.8310884,48.7602282],[13.8308966,48.7601663],[13.8307829,48.7601006],[13.830611,48.7600143],[13.8304286,48.7599648],[13.8304259,48.7599064],[13.8303025,48.7599224],[13.8301622,48.7598541],[13.8300933,48.7598693],[13.8299544,48.7598404],[13.8298814,48.7597951],[13.8298532,48.7597508],[13.8297661,48.7597155],[13.8296923,48.7597102],[13.8296333,48.7596456],[13.8295381,48.759605],[13.8294603,48.7595183],[13.8292706,48.7594474],[13.8292068,48.7594582],[13.8290942,48.7593901],[13.829007,48.7593654],[13.8289668,48.7593122],[13.828899,48.7592841],[13.8288584,48.7592354],[13.8287508,48.7591651],[13.8286717,48.7591629],[13.8286422,48.759128],[13.8285946,48.7591057],[13.8285432,48.7590456],[13.8284519,48.7590098],[13.828422,48.7589534],[13.8282375,48.758894],[13.8281264,48.7588811],[13.8281088,48.7588337],[13.8279343,48.7587834],[13.8278947,48.7587424],[13.8277917,48.7587017],[13.8277592,48.758652],[13.827737,48.7586086],[13.8276709,48.7585506],[13.827607,48.7585336],[13.8275823,48.7585421],[13.8274862,48.7585197],[13.8274479,48.7585213],[13.8273405,48.758493],[13.8272049,48.7585117],[13.8271053,48.7585009],[13.8270134,48.7584728],[13.8269712,48.7584433],[13.8269417,48.7584353],[13.8268979,48.7583981],[13.82688,48.7583258],[13.8268484,48.7582484],[13.8268623,48.7581766],[13.8268474,48.7581635],[13.826835,48.758132],[13.8267599,48.7581026],[13.8266373,48.7581489],[13.8265469,48.7581439],[13.8265378,48.7581305],[13.8263935,48.7580884],[13.82632,48.7580642],[13.8262185,48.7580648],[13.8261335,48.7579957],[13.8261448,48.7579789],[13.8261982,48.7579764],[13.8262013,48.7578815],[13.8261988,48.7578466],[13.826081,48.757839],[13.8259972,48.7578361],[13.8259211,48.7577908],[13.8259181,48.7577729],[13.8258948,48.7577534],[13.825797,48.7577066],[13.825778,48.7576845],[13.8257729,48.7576401],[13.8258182,48.7576152],[13.8258013,48.7576028],[13.8258431,48.7575123],[13.8258085,48.7574771],[13.8257369,48.7574678],[13.8256266,48.7574158],[13.8256105,48.7573575],[13.8256151,48.7573143],[13.8255972,48.7572729],[13.8255637,48.7572725],[13.8255195,48.7572002],[13.8253947,48.757114],[13.8253585,48.7570448],[13.8251665,48.7568764],[13.8251105,48.7568696],[13.825085,48.7568739],[13.8250491,48.7568542],[13.8250075,48.7568634],[13.8249843,48.7568452],[13.8249507,48.7568529],[13.8248602,48.7568378],[13.8248019,48.756819],[13.8247409,48.7567971],[13.8247017,48.7568077],[13.8246793,48.7567732],[13.8246381,48.7567655],[13.8245657,48.756775],[13.8244692,48.756746],[13.8243693,48.7567616],[13.8243074,48.7567116],[13.8242443,48.7567204],[13.8242161,48.7567019],[13.8241453,48.7567237],[13.8240865,48.7567236],[13.8240275,48.7566786],[13.8239042,48.7566802],[13.823766,48.7566874],[13.8237001,48.756702],[13.8235951,48.7567024],[13.8235471,48.756664],[13.8235075,48.7566512],[13.8234173,48.7565997],[13.8232823,48.756539],[13.8232595,48.7565155],[13.823211,48.7565312],[13.8231997,48.7565465],[13.8231834,48.7565833],[13.8231146,48.7565853],[13.823078,48.7566052],[13.8230458,48.7566291],[13.8229855,48.7566458],[13.8229264,48.7566299],[13.8228594,48.7566299],[13.8228305,48.7565861],[13.8228169,48.7565335],[13.8227436,48.756484],[13.8225821,48.7564056],[13.8225829,48.7563841],[13.8225483,48.7563418],[13.8225389,48.7562982],[13.8225061,48.7562172],[13.8225442,48.7561932],[13.8225594,48.7561756],[13.8225387,48.7561282],[13.8224986,48.7560924],[13.8224566,48.7560366],[13.8224517,48.7559916],[13.822331,48.755929],[13.8222679,48.755912],[13.8222321,48.7558799],[13.8221742,48.7558739],[13.8221897,48.7558608],[13.8221828,48.7558118],[13.8221446,48.7557789],[13.822161,48.7556979],[13.8221342,48.7556451],[13.8220464,48.7555856],[13.8220277,48.7555408],[13.8221033,48.7554741],[13.8221369,48.7553721],[13.8220724,48.7553095],[13.8220509,48.7552718],[13.8219986,48.7552332],[13.8219786,48.7551811],[13.8219195,48.7551407],[13.8219095,48.7550909],[13.8218592,48.7549971],[13.8217998,48.7549473],[13.8217513,48.754936],[13.8216641,48.7549384],[13.8216097,48.7548823],[13.8215382,48.7548374],[13.8214622,48.7547586],[13.8214491,48.7547193],[13.8212948,48.7546808],[13.8211522,48.7545523],[13.821102,48.7545325],[13.8210577,48.7544759],[13.8209748,48.7543887],[13.8209311,48.754258],[13.8209617,48.7542162],[13.820983,48.754154],[13.8210395,48.7540022],[13.8210433,48.7539662],[13.8210621,48.7539106],[13.8211203,48.7538881],[13.821132,48.7538475],[13.8210836,48.7538124],[13.8210619,48.753766],[13.8209994,48.7536995],[13.8210321,48.7535853],[13.8210181,48.7535459],[13.821026,48.7535116],[13.8210074,48.7534724],[13.8210302,48.7534459],[13.821118,48.7534124],[13.8212177,48.7532939],[13.8211897,48.7532728],[13.8211401,48.7531967],[13.8210808,48.7531484],[13.8209995,48.7530985],[13.8209866,48.7530603],[13.8210301,48.7530055],[13.8210451,48.7529666],[13.8211422,48.7529076],[13.8211629,48.7528484],[13.8212048,48.7527906],[13.8212058,48.7527538],[13.8212273,48.7527066],[13.8211682,48.7526547],[13.8211345,48.7526464],[13.8210453,48.7526394],[13.8209389,48.7525894],[13.8208743,48.7525676],[13.8208514,48.7525384],[13.8208768,48.7525123],[13.8209215,48.7525035],[13.8209872,48.7525079],[13.821014,48.7524935],[13.8210736,48.7524817],[13.8211417,48.7524462],[13.8211702,48.7524279],[13.8211961,48.7524215],[13.8212742,48.7524022],[13.8213095,48.7523496],[13.8213252,48.7523408],[13.8213042,48.7522449],[13.8212766,48.7522167],[13.8212143,48.7522022],[13.8212372,48.7521741],[13.8212923,48.7521485],[13.8212713,48.7521185],[13.8212673,48.7520661],[13.8212791,48.7520199],[13.8212569,48.7519455],[13.8212319,48.7519182],[13.8212766,48.7518648],[13.8212852,48.7518238],[13.821279,48.7517825],[13.8212379,48.7517398],[13.8212763,48.7516733],[13.8213361,48.7516366],[13.8213883,48.751594],[13.8214118,48.7515169],[13.8214351,48.7515011],[13.8215195,48.7514906],[13.8215529,48.7514588],[13.8215618,48.7514184],[13.8214486,48.7514037],[13.8213924,48.751294],[13.8213436,48.7512423],[13.821307,48.7511786],[13.8213144,48.7510723],[13.8214004,48.7510224],[13.8214351,48.7509655],[13.8215094,48.7509186],[13.8214824,48.7508578],[13.8215036,48.7508261],[13.82158,48.7507999],[13.8216125,48.7508046],[13.8216243,48.7507887],[13.8217016,48.7507693],[13.82176,48.7506204],[13.8218879,48.7505811],[13.8218669,48.7505285],[13.8218313,48.7505016],[13.8218167,48.7504477],[13.8218106,48.7504017],[13.8218007,48.7503679],[13.8218416,48.7503174],[13.8218437,48.7502855],[13.8218676,48.7502487],[13.8218456,48.7502045],[13.8218675,48.7501605],[13.8218304,48.7500732],[13.8218497,48.7499871],[13.8218272,48.7499455],[13.8218334,48.7499255],[13.8218199,48.7499053],[13.8218321,48.7498704],[13.8218661,48.749758],[13.8218416,48.7497197],[13.8218586,48.749692],[13.8218839,48.749676],[13.8219414,48.7496739],[13.8219943,48.74964],[13.8219984,48.7495767],[13.8220212,48.7495334],[13.8220252,48.7494865],[13.8219944,48.7494547],[13.8219817,48.7494134],[13.8220511,48.749372],[13.8220587,48.7493079],[13.8220226,48.7492627],[13.8219628,48.7492173],[13.8218919,48.7491307],[13.8218905,48.7490875],[13.8218648,48.7489805],[13.8217432,48.7488947],[13.821706,48.748738],[13.8216219,48.7486814],[13.8215927,48.7486567],[13.8215634,48.7486319],[13.8215082,48.7485896],[13.821467,48.7485191],[13.8214082,48.748519],[13.8213377,48.7484874],[13.8213037,48.7484455],[13.8211676,48.7483723],[13.8211398,48.7483305],[13.8211299,48.7482944],[13.8209839,48.748168],[13.8210066,48.7481204],[13.8210449,48.7480854],[13.8211206,48.7480602],[13.8211808,48.7479844],[13.8211815,48.7479726],[13.821126,48.7479387],[13.8210172,48.7479056],[13.8209505,48.7478754],[13.8208472,48.74785],[13.8206967,48.7477099],[13.8206794,48.7476625],[13.8206202,48.747597],[13.8206167,48.747567],[13.8206787,48.7475359],[13.8207075,48.7475384],[13.8208082,48.7474948],[13.8208115,48.7474845],[13.8207944,48.7474537],[13.8207656,48.7473603],[13.8207149,48.7472881],[13.8206472,48.7472418],[13.8206601,48.7472036],[13.8207011,48.7471251],[13.8207479,48.7470652],[13.8207608,48.7469756],[13.8209777,48.7467878],[13.8211525,48.7467619],[13.8212145,48.7467091],[13.8212484,48.7465939],[13.8213064,48.7464587],[13.8213429,48.7463035],[13.8213435,48.7462032],[13.8211676,48.7460166],[13.8211931,48.745963],[13.8211319,48.7459284],[13.8211683,48.7458045],[13.821165,48.7457681],[13.8211575,48.745737],[13.8211436,48.7456982],[13.8211603,48.7456675],[13.8212553,48.7456331],[13.8214123,48.745527],[13.8214953,48.7454378],[13.8215084,48.7453894],[13.8214721,48.7453161],[13.8213854,48.7452687],[13.8213484,48.7452084],[13.8213687,48.7451707],[13.8213749,48.7450466],[13.8214232,48.744965],[13.821459,48.744755],[13.8213794,48.7446605],[13.8213257,48.7446406],[13.8212595,48.7445486],[13.8211872,48.7445083],[13.8211667,48.7444812],[13.8211754,48.7444492],[13.8211538,48.7443799],[13.8210135,48.7442564],[13.8209413,48.7441175],[13.8209324,48.7440291],[13.8208829,48.7439443],[13.8208876,48.7438463],[13.8207883,48.7437556],[13.8207604,48.7437005],[13.8207657,48.7436238],[13.8206869,48.7434279],[13.8206734,48.7434171],[13.8206831,48.743374],[13.8207076,48.7433529],[13.8206648,48.7432324],[13.8206939,48.7431858],[13.8206605,48.7430877],[13.8206412,48.7430715],[13.8206107,48.7429841],[13.8207807,48.7429735],[13.8208447,48.7429534],[13.8208872,48.7429319],[13.8209119,48.7428681],[13.820928,48.7428224],[13.8209014,48.7427162],[13.8208738,48.7426543],[13.8208541,48.7426482],[13.8208657,48.7426036],[13.8208604,48.7425433],[13.8208914,48.7424907],[13.8208443,48.7424364],[13.8208036,48.7423814],[13.8207726,48.7423769],[13.8207285,48.7423838],[13.8206948,48.7423599],[13.8206664,48.7423091],[13.8206592,48.7422454],[13.82068,48.7421798],[13.8206365,48.7421261],[13.820505,48.742041],[13.8204363,48.742024],[13.8203229,48.7419724],[13.8203248,48.7419448],[13.8203428,48.7419293],[13.8203616,48.7419237],[13.8203624,48.7419182],[13.8203215,48.7418483],[13.8203409,48.7418263],[13.8203159,48.7417893],[13.8203148,48.7417236],[13.820333,48.7416806],[13.8203906,48.7416349],[13.8204558,48.7415629],[13.8205132,48.741483],[13.8204876,48.7413458],[13.8205105,48.7413098],[13.8205442,48.7412088],[13.8205784,48.7411252],[13.820495,48.7410533],[13.8204855,48.7410329],[13.8204367,48.7410051],[13.8204204,48.7409699],[13.8204285,48.7408964],[13.8204602,48.7408763],[13.8204581,48.7408328],[13.8204367,48.7407864],[13.8204245,48.74069],[13.820384,48.7406247],[13.820386,48.74051],[13.8203572,48.7404694],[13.8203689,48.7404026],[13.8203633,48.7403327],[13.8204335,48.740301],[13.8204955,48.7402898],[13.8205171,48.7402418],[13.8205526,48.7401995],[13.820559,48.7400234],[13.8205285,48.739994],[13.8205135,48.7399388],[13.8205098,48.7398905],[13.82048,48.7397426],[13.8204874,48.7397213],[13.8204701,48.7396835],[13.820432,48.7396464],[13.8204213,48.7396129],[13.8204282,48.7395521],[13.8205329,48.7393483],[13.8205235,48.7393045],[13.8204286,48.7391995],[13.8203053,48.7391396],[13.8202561,48.7390807],[13.8201081,48.739003],[13.8200317,48.7389894],[13.8199464,48.7389552],[13.8198989,48.7388905],[13.8198808,48.7388393],[13.8198486,48.7388097],[13.8197742,48.7387621],[13.8196597,48.7387209],[13.8196412,48.7387008],[13.8196565,48.7386223],[13.8196819,48.7385485],[13.8196725,48.738513],[13.8197049,48.7383335],[13.8197239,48.7382556],[13.8197045,48.7382128],[13.8196828,48.7381924],[13.8195842,48.7380869],[13.8195073,48.7380336],[13.8194456,48.7380068],[13.8194087,48.7379739],[13.8193658,48.7379637],[13.8192808,48.7379581],[13.8191784,48.7379377],[13.819139,48.7379162],[13.8190305,48.7378863],[13.8189621,48.7378377],[13.8188286,48.7378252],[13.8185142,48.7375945],[13.8185151,48.7375824],[13.8183821,48.7375388],[13.8183462,48.7374832],[13.8183653,48.7374176],[13.8184308,48.7373638],[13.8186305,48.7373126],[13.8187443,48.7372296],[13.8187567,48.7372002],[13.8187726,48.7370723],[13.8187894,48.7370524],[13.8187975,48.7370225],[13.8188218,48.7369849],[13.8188191,48.7369337],[13.8187597,48.7368764],[13.8186954,48.7368554],[13.8186202,48.7368163],[13.8185605,48.7367182],[13.8185464,48.7365897],[13.8184941,48.7365702],[13.8185315,48.7365061],[13.8184817,48.7364729],[13.818415,48.7363863],[13.8183212,48.7363116],[13.8182544,48.7361782],[13.818132,48.7360776],[13.8180701,48.7360376],[13.8180406,48.7360254],[13.8179516,48.7359688],[13.8178698,48.735929],[13.8178303,48.7358761],[13.8178202,48.7358188],[13.8178362,48.7357975],[13.8178346,48.7356574],[13.8178202,48.7356389],[13.8178396,48.735607],[13.8178548,48.7355438],[13.8179005,48.7354681],[13.8178802,48.7354116],[13.8179138,48.735253],[13.8179927,48.7351075],[13.8180103,48.7350444],[13.8180032,48.7350211],[13.8179923,48.734932],[13.8179786,48.7348502],[13.8179214,48.7347623],[13.817889,48.7346805],[13.8179051,48.734616],[13.8179818,48.7344797],[13.8180127,48.7343284],[13.8181265,48.7341185],[13.8182117,48.7340585],[13.8183273,48.7340268],[13.8185238,48.7340295],[13.818671,48.7340338],[13.8186945,48.7340038],[13.8187571,48.733988],[13.8187625,48.7339713],[13.8187974,48.7339771],[13.8189392,48.7339194],[13.8190911,48.7338477],[13.8191846,48.7337716],[13.819204,48.7337182],[13.8191404,48.7335083],[13.8192642,48.7333495],[13.8193163,48.7332443],[13.8193231,48.733197],[13.8192906,48.7330558],[13.819294,48.7329161],[13.8192172,48.7328543],[13.8192072,48.7328116],[13.8192041,48.7327492],[13.819236,48.732664],[13.819265,48.7326217],[13.8193725,48.7325819],[13.8193749,48.7325431],[13.8193025,48.7324273],[13.8191129,48.7322665],[13.8189973,48.7321779],[13.8189803,48.7321374],[13.8190077,48.7320016],[13.8190524,48.731933],[13.8190703,48.7318726],[13.819069,48.7318246],[13.8190481,48.7317973],[13.8189809,48.7317301],[13.8187542,48.7315818],[13.8184965,48.7314646],[13.8184219,48.7314088],[13.8183656,48.7313155],[13.8183486,48.7312216],[13.8181975,48.7310519],[13.8181147,48.7309486],[13.8179778,48.7308577],[13.8177466,48.7309206],[13.8176212,48.7309273],[13.8173806,48.7308236],[13.8169938,48.7307115],[13.8169231,48.7306398],[13.8167817,48.7305537],[13.8165312,48.7304668],[13.816461,48.7304491],[13.8162857,48.7304486],[13.8161113,48.7304843],[13.8160627,48.7305067],[13.8159745,48.7305083],[13.8159282,48.7304939],[13.8157994,48.7304808],[13.8157483,48.7304658],[13.815611,48.7304037],[13.8154955,48.7303154],[13.8154744,48.7303175],[13.8154364,48.7301946],[13.8153658,48.730174],[13.8152348,48.7301642],[13.8151146,48.7301554],[13.8148997,48.73014],[13.8147317,48.7300821],[13.814643,48.7300594],[13.8145862,48.729986],[13.8144897,48.729905],[13.8143449,48.7297555],[13.814268,48.7296742],[13.8142054,48.7295467],[13.814144,48.7293689],[13.8140598,48.7291984],[13.8140167,48.729145],[13.8137226,48.7291826],[13.8136246,48.7291854],[13.8132088,48.7292792],[13.8130855,48.7292792],[13.8127599,48.7292251],[13.8122856,48.7292209],[13.8118463,48.7291526],[13.8116649,48.7291409],[13.8114047,48.7291292],[13.8111732,48.7291088],[13.811124,48.7290941],[13.8108933,48.7290611],[13.8105774,48.7290238],[13.8103868,48.728937],[13.8102928,48.7288238],[13.8102389,48.7287312],[13.8101725,48.7286402],[13.8101356,48.7286237],[13.8100962,48.7285821],[13.8100555,48.7284788],[13.8100438,48.728381],[13.810055,48.7282765],[13.81008,48.728176],[13.8101028,48.7280911],[13.809975,48.7278948],[13.8099864,48.7278708],[13.8099706,48.7278005],[13.8099923,48.7276893],[13.8099282,48.7276027],[13.8098093,48.7275104],[13.8097206,48.7274089],[13.8095676,48.7272975],[13.8095853,48.7272798],[13.8095484,48.7271574],[13.8094962,48.7270768],[13.8093576,48.7269288],[13.8092563,48.7268651],[13.8091411,48.7268075],[13.8090207,48.7267879],[13.8089512,48.7267883],[13.8088377,48.7267477],[13.8086795,48.7266798],[13.8085775,48.7266059],[13.8085141,48.7265416],[13.8084464,48.7263908],[13.8084087,48.7263212],[13.8082737,48.726176],[13.8081515,48.7261048],[13.8081208,48.7260645],[13.8081346,48.7260333],[13.8082281,48.7259342],[13.8082608,48.7258974],[13.8083354,48.7258447],[13.8084346,48.7258158],[13.8085725,48.725776],[13.8085707,48.7257117],[13.8083424,48.7256261],[13.8082927,48.7255786],[13.8082159,48.7254333],[13.8081475,48.7253094],[13.8081409,48.7252089],[13.808153,48.7250812],[13.8081984,48.7249837],[13.808358,48.7247963],[13.8084304,48.724692],[13.8084432,48.7246322],[13.8084232,48.7245836],[13.8083734,48.724582],[13.8081979,48.7244856],[13.8081023,48.7244217],[13.807888,48.7243778],[13.8076986,48.7243724],[13.8075619,48.7242939],[13.8074461,48.7242841],[13.8073231,48.7243223],[13.8073036,48.7243495],[13.8070791,48.724426],[13.8069787,48.7244407],[13.8069523,48.7244218],[13.8069109,48.7243455],[13.8068121,48.7240822],[13.806797,48.7239647],[13.8067644,48.7239018],[13.8067293,48.723871],[13.8066388,48.7238674],[13.8064716,48.7239203],[13.8064359,48.7239737],[13.8064456,48.723985],[13.8064818,48.7239974],[13.8064449,48.7240253],[13.8063784,48.7240442],[13.8063266,48.724032],[13.8062582,48.7239935],[13.8061943,48.7238621],[13.8061944,48.7236239],[13.8062511,48.7234498],[13.8062463,48.7233766],[13.8062149,48.7233323],[13.8061499,48.7232595],[13.8061055,48.7232271],[13.8060728,48.7232171],[13.8059873,48.7232383],[13.8058922,48.7232381],[13.8058009,48.7232216],[13.8056673,48.7231455],[13.8055824,48.7231018],[13.8055502,48.7230927],[13.8055065,48.7230805],[13.8053615,48.7230027],[13.8052517,48.7229084],[13.8051494,48.7228546],[13.8051014,48.7227639],[13.8050311,48.7226596],[13.804994,48.7226107],[13.8049904,48.7225664],[13.8048723,48.7224383],[13.8047676,48.7223041],[13.8046869,48.7221456],[13.804644,48.7220857],[13.8045622,48.7220222],[13.8044432,48.7219468],[13.8043383,48.7218827],[13.8042504,48.7217908],[13.8041783,48.7217574],[13.8041053,48.7217467],[13.8040375,48.7217534],[13.8039335,48.7217484],[13.8037662,48.7217007],[13.8037239,48.7216678],[13.8035876,48.7215808],[13.803554,48.7214884],[13.8034926,48.721257],[13.8034418,48.721136],[13.803367,48.7210315],[13.8032909,48.7209536],[13.8032861,48.7208535],[13.8033057,48.7207182],[13.8033047,48.7206538],[13.8032652,48.720569],[13.8032429,48.7203616],[13.8031859,48.720307],[13.8031319,48.7202181],[13.8029325,48.7200047],[13.8028421,48.7199667],[13.8027493,48.7199627],[13.802637,48.7199651],[13.8026028,48.7200262],[13.8026091,48.7201015],[13.8026262,48.7201499],[13.802594,48.7202119],[13.8025858,48.7202362],[13.8024835,48.7202414],[13.8023946,48.720231],[13.8021857,48.7201663],[13.8020525,48.7201576],[13.8020157,48.7200843],[13.8020616,48.7200497],[13.8021021,48.7200298],[13.8023089,48.7199029],[13.8023223,48.7198668],[13.8022872,48.719817],[13.8021933,48.7197569],[13.8020921,48.7196334],[13.8018781,48.7194784],[13.8018279,48.7194305],[13.8018055,48.7193658],[13.8018265,48.7193181],[13.8019536,48.7192978],[13.8020343,48.7193007],[13.8020739,48.7193231],[13.8022369,48.7193679],[13.8023283,48.7192871],[13.8023458,48.7192373],[13.8023351,48.719186],[13.8022256,48.7190545],[13.8022027,48.718922],[13.8021898,48.7188208],[13.8021621,48.7187606],[13.8021219,48.7187101],[13.8021138,48.7186535],[13.8020991,48.7186058],[13.802109,48.7184809],[13.8022051,48.718235],[13.802188,48.7180779],[13.8021049,48.7180461],[13.8021087,48.7179735],[13.8020665,48.717899],[13.8019122,48.7178121],[13.8017183,48.7177254],[13.801629,48.717671],[13.8015786,48.7176312],[13.8015865,48.7175412],[13.8016635,48.7174799],[13.8017266,48.7174663],[13.8018216,48.717465],[13.8018531,48.7174523],[13.8018877,48.7173986],[13.8018776,48.7172993],[13.8017402,48.7172133],[13.8017011,48.7172008],[13.8016163,48.7171484],[13.801519,48.7171101],[13.8014237,48.7170323],[13.8013802,48.7169635],[13.8013016,48.7168742],[13.8012062,48.7167315],[13.8011392,48.7166563],[13.801053,48.7166013],[13.8009609,48.7165841],[13.8007346,48.716577],[13.8006605,48.7165793],[13.800555,48.7165529],[13.8003902,48.7165242],[13.8003342,48.7164768],[13.8002121,48.7164335],[13.7999702,48.7163926],[13.799863,48.7163805],[13.799578,48.7164063],[13.7994666,48.7164225],[13.799234,48.7165109],[13.7992095,48.7165212],[13.7990483,48.716532],[13.7989904,48.7165193],[13.7989434,48.7164889],[13.7989154,48.7164289],[13.7988576,48.7163406],[13.7988171,48.7163285],[13.7987889,48.7163018],[13.7986916,48.7162999],[13.798616,48.7163166],[13.7984236,48.7163764],[13.7983478,48.7163731],[13.7983146,48.7163089],[13.7982214,48.7162532],[13.7980633,48.7161431],[13.7979737,48.7160896],[13.7978492,48.7160468],[13.7977735,48.7160424],[13.7976391,48.7160453],[13.7975222,48.7160223],[13.7973584,48.7159521],[13.7970862,48.7158403],[13.7970111,48.7157674],[13.7969692,48.7156317],[13.796925,48.7155839],[13.7968515,48.7155421],[13.7967457,48.7155287],[13.7966666,48.7155577],[13.796694,48.7156233],[13.7966529,48.7157114],[13.7965981,48.7157863],[13.7964928,48.7158724],[13.7964054,48.7158855],[13.7963478,48.7158682],[13.7961565,48.7158378],[13.795955,48.7157757],[13.7958044,48.7157156],[13.7957007,48.7157123],[13.7955692,48.7156831],[13.7955059,48.7156286],[13.7955077,48.7155706],[13.7955778,48.7154264],[13.7955221,48.7153443],[13.7954017,48.7153142],[13.7952418,48.7152646],[13.7950899,48.7152338],[13.7949678,48.7151865],[13.7948962,48.7151393],[13.7948787,48.7150361],[13.79493,48.7148848],[13.7949168,48.7147425],[13.794921,48.7146454],[13.795065,48.714514],[13.7952028,48.7144503],[13.7953466,48.7143449],[13.7953911,48.7142898],[13.7954324,48.7141548],[13.7955052,48.7140646],[13.7955963,48.7139083],[13.7956308,48.7138451],[13.7957201,48.7137408],[13.7959555,48.7136074],[13.7960359,48.7135238],[13.7960475,48.7134772],[13.7961005,48.7134279],[13.7961296,48.713398],[13.7964693,48.7134257],[13.7966905,48.7134107],[13.7969021,48.7133506],[13.7971097,48.71322],[13.7974663,48.7130363],[13.7975312,48.712982],[13.7976591,48.7128319],[13.7978494,48.7125999],[13.7979977,48.7125041],[13.7980598,48.7124872],[13.7983008,48.7124215],[13.7986124,48.7123029],[13.7989552,48.712153],[13.7992538,48.7120493],[13.7995362,48.7119609],[13.7996481,48.7118795],[13.799656,48.7117429],[13.7996872,48.71143],[13.7997274,48.7113295],[13.8000803,48.7109545],[13.8001638,48.710843],[13.8003141,48.7107144],[13.8003983,48.7106778],[13.8007301,48.710414],[13.8009015,48.7102206],[13.8009537,48.7101415],[13.801209,48.7099125],[13.8016251,48.7095465],[13.8019173,48.7092769],[13.8020534,48.7091523],[13.8022203,48.7089636],[13.8024383,48.7086923],[13.8025892,48.7085721],[13.8027298,48.7084742],[13.8029053,48.7083121],[13.8029897,48.7082289],[13.8030258,48.7081547],[13.8031807,48.708054],[13.8034257,48.7079723],[13.8037361,48.707928],[13.8039747,48.7079209],[13.8041276,48.7079397],[13.804383,48.7079427],[13.8045827,48.7079271],[13.8048732,48.7079355],[13.8049924,48.7079821],[13.8052359,48.7081162],[13.8054664,48.7081973],[13.8056096,48.7082877],[13.805756,48.7084444],[13.8059045,48.708642],[13.8059697,48.7087279],[13.8061491,48.7088481],[13.8064015,48.7089122],[13.8065127,48.7089193],[13.8066186,48.708895],[13.8069973,48.7088407],[13.8074349,48.708884],[13.8077609,48.7089078],[13.8080549,48.7089675],[13.8083215,48.7089983],[13.8085553,48.7090222],[13.8087215,48.7090171],[13.8089967,48.7089903],[13.8091313,48.7089757],[13.8092525,48.7089943],[13.8093903,48.709067],[13.8095897,48.7092106],[13.809683,48.7092507],[13.8098052,48.7092633],[13.8099061,48.7092208],[13.810055,48.7091515],[13.8102632,48.7090383],[13.8104767,48.7089138],[13.8107986,48.7088255],[13.8108688,48.7088366],[13.811194,48.7087786],[13.8114075,48.7086967],[13.8114682,48.7085247],[13.8114175,48.7083645],[13.811456,48.7082171],[13.8114275,48.7081851],[13.8114848,48.7079607],[13.8115773,48.7076435],[13.8116807,48.7074281],[13.8117535,48.7073515],[13.8119336,48.7072531],[13.8120395,48.7072467],[13.8122862,48.7073],[13.8123915,48.7073305],[13.8124668,48.7073051],[13.8125262,48.7071995],[13.8125495,48.7069756],[13.8125576,48.7067445],[13.8125932,48.706536],[13.812829,48.7063286],[13.8128848,48.7061851],[13.8128302,48.7060528],[13.812536,48.7055697],[13.8125596,48.705434],[13.812637,48.7053321],[13.8127434,48.7052691],[13.8128526,48.7051605],[13.8128909,48.7050921],[13.812867,48.7050021],[13.8128065,48.7049388],[13.8126187,48.7049363],[13.812503,48.7049833],[13.8124296,48.7049735],[13.812384,48.7049744],[13.8123001,48.7049346],[13.8121963,48.7048779],[13.8121507,48.7048664],[13.812152,48.7048478],[13.8119784,48.7047809],[13.8117081,48.704723],[13.8114493,48.7046451],[13.8113182,48.7046207],[13.8111944,48.7045672],[13.8111473,48.7045073],[13.811047,48.7043192],[13.81103,48.7041209],[13.8110724,48.7039831],[13.8111613,48.7038444],[13.8112079,48.7037855],[13.8113044,48.7037397],[13.8113802,48.7037147],[13.8115136,48.7036539],[13.8115472,48.7035884],[13.8115434,48.7035246],[13.8115364,48.7034113],[13.8114988,48.7033032],[13.8114095,48.7032031],[13.8111583,48.7029334],[13.8111603,48.702813],[13.8111872,48.7026601],[13.8111944,48.7025776],[13.8112686,48.70238],[13.8113393,48.7022731],[13.8114367,48.7022121],[13.8115488,48.7021794],[13.8116732,48.7021784],[13.8117916,48.7022096],[13.8119489,48.7022991],[13.8120685,48.7023229],[13.812191,48.7023097],[13.8123241,48.7022227],[13.8124678,48.7020724],[13.8125235,48.7020014],[13.8126666,48.7018723],[13.8129098,48.7016602],[13.8129822,48.701558],[13.8130646,48.70138],[13.8130921,48.7013809],[13.8130961,48.7013553],[13.8131402,48.7013068],[13.813283,48.7012381],[13.813418,48.7012314],[13.8135544,48.701248],[13.8136686,48.7012361],[13.8137132,48.7011658],[13.813755,48.7011054],[13.813759,48.7010997],[13.8138393,48.7009929],[13.8140747,48.7009038],[13.8142171,48.7008994],[13.8144033,48.700914],[13.8147216,48.7010121],[13.8148436,48.7010552],[13.8149442,48.701111],[13.8149631,48.7011118],[13.8149891,48.7011723],[13.8151063,48.7012534],[13.8152488,48.7013079],[13.8154935,48.7012952],[13.8156727,48.7013038],[13.8158707,48.7013415],[13.8161855,48.7014626],[13.8162302,48.7014681],[13.8163108,48.701535],[13.8164331,48.7015915],[13.8166179,48.7015925],[13.8167993,48.7015454],[13.8169451,48.7014963],[13.817052,48.7014433],[13.8171222,48.7013994],[13.8172557,48.7012059],[13.8173357,48.7011252],[13.8175196,48.7010395],[13.8177754,48.7009735],[13.8180593,48.7008804],[13.8181512,48.7008323],[13.8183443,48.7007386],[13.8184528,48.7006623],[13.8185162,48.7006211],[13.8187269,48.70035],[13.8188312,48.7002083],[13.8190383,48.6998337],[13.8192574,48.6995789],[13.8195799,48.6993352],[13.8199313,48.6991594],[13.8200728,48.6991205],[13.8204387,48.6990708],[13.8206863,48.6990724],[13.8208066,48.6990949],[13.8209837,48.6990897],[13.8211079,48.699177],[13.8212375,48.6991941],[13.8214471,48.6992026],[13.8216385,48.6992549],[13.821989,48.6993886],[13.8222537,48.6994587],[13.8227224,48.6996557],[13.8230375,48.6997197],[13.8234049,48.699745],[13.823883,48.6997536],[13.8241428,48.6997966],[13.8242394,48.6997948],[13.8244264,48.6998461],[13.8246453,48.6998718],[13.8249982,48.6999816],[13.8250829,48.7000258],[13.8251862,48.7001046],[13.8252135,48.7001626],[13.8252055,48.7002243],[13.8251124,48.7003578],[13.8250857,48.7004812],[13.8251017,48.7005665],[13.8252141,48.7006175],[13.8254259,48.7006328],[13.8255998,48.700587],[13.8257857,48.7005549],[13.8260816,48.7004475],[13.8263217,48.7004334],[13.8265706,48.7004238],[13.8268915,48.7003399],[13.8270624,48.7002843],[13.8272108,48.7002017],[13.8274096,48.7000614],[13.8274956,48.7000241],[13.8275801,48.7000205],[13.8276717,48.6999953],[13.8278334,48.6999825],[13.8279033,48.7000205],[13.8279398,48.7000641],[13.8279226,48.7001061],[13.8279455,48.7002744],[13.8279288,48.7003126],[13.8278587,48.7003738],[13.8277747,48.7003981],[13.8277143,48.7004243],[13.8276787,48.7004966],[13.827682,48.7005932],[13.8277258,48.700691],[13.8279242,48.7006961],[13.8279971,48.7006759],[13.8281145,48.7005498],[13.8281758,48.7005041],[13.8283508,48.7004226],[13.8283841,48.7003919],[13.8284592,48.7002383],[13.828498,48.7001967],[13.8285188,48.7001621],[13.8285691,48.7001351],[13.8285824,48.7001402],[13.8286567,48.7001259],[13.8286846,48.7001541],[13.8287542,48.7001878],[13.8287522,48.7002064],[13.8288698,48.7003312],[13.82901,48.7004054],[13.8290625,48.7004205],[13.829188,48.7004002],[13.829309,48.7003594],[13.8294648,48.7002088],[13.8295051,48.700064],[13.8294307,48.6999318],[13.8294205,48.6998436],[13.8294644,48.6998006],[13.8295461,48.6997736],[13.8297486,48.6997461],[13.8299328,48.6997432],[13.8301776,48.6997645],[13.8303432,48.6998011],[13.8304366,48.699855],[13.8305388,48.6999446],[13.8305146,48.6999972],[13.8303286,48.7001154],[13.8300081,48.7002548],[13.8298664,48.700307],[13.82975,48.7003781],[13.8296929,48.7004594],[13.8298238,48.7006092],[13.8299396,48.7006733],[13.8303074,48.700723],[13.830417,48.7006957],[13.8305526,48.7006169],[13.830703,48.700617],[13.8311092,48.7006823],[13.8312399,48.7006844],[13.8315473,48.7005976],[13.831629,48.7006168],[13.8317164,48.7006744],[13.8317404,48.7007503],[13.8316071,48.7008853],[13.8316145,48.7009212],[13.8317627,48.7009761],[13.8319001,48.7009813],[13.8321812,48.70105],[13.8324145,48.700951],[13.8326541,48.7008519],[13.8328188,48.7007306],[13.832803,48.700646],[13.8328385,48.7005613],[13.8328298,48.7004939],[13.8328577,48.7003974],[13.832927,48.7003431],[13.8330395,48.7003169],[13.8331947,48.7003731],[13.833276,48.7004561],[13.8332775,48.7005691],[13.8332321,48.700664],[13.8332402,48.700699],[13.8332617,48.700714],[13.8332831,48.7007477],[13.833311,48.7007546],[13.8333425,48.7007583],[13.8334862,48.7007353],[13.8336249,48.7006495],[13.8337173,48.7005607],[13.8338128,48.700503],[13.8338717,48.7004879],[13.8339289,48.7004976],[13.8339875,48.7005682],[13.8339931,48.7006053],[13.833961,48.7006764],[13.8339543,48.7007335],[13.8339105,48.7008188],[13.8338479,48.7008713],[13.8337813,48.7008906],[13.8336626,48.7009141],[13.8336585,48.7009064],[13.8336177,48.7009149],[13.8335351,48.7009086],[13.833438,48.7008968],[13.8333602,48.7008747],[13.833279,48.7008734],[13.8332637,48.7008846],[13.8332167,48.7009012],[13.8330826,48.7009999],[13.8330902,48.7010355],[13.8331376,48.7011089],[13.8331716,48.7011158],[13.8331845,48.7011075],[13.8332462,48.7011154],[13.8333552,48.7011506],[13.8335699,48.7012288],[13.8336466,48.7012429],[13.833787,48.7012222],[13.8338252,48.7011946],[13.8338861,48.701064],[13.8339128,48.7010119],[13.8339685,48.7009796],[13.83403,48.7009667],[13.834215,48.7009466],[13.8345138,48.700912],[13.8346965,48.7008258],[13.8347476,48.7007398],[13.8347577,48.7006791],[13.8347461,48.7006168],[13.834649,48.7005419],[13.8345646,48.7004993],[13.8344839,48.7005132],[13.8344143,48.7005512],[13.8342967,48.7005083],[13.8342016,48.7003973],[13.8341922,48.7003167],[13.8342104,48.7002807],[13.8343298,48.7002197],[13.8344354,48.7001859],[13.8347373,48.7002117],[13.8349289,48.7003074],[13.835156,48.7003215],[13.8352266,48.7002796],[13.8352177,48.700271],[13.8353081,48.7000742],[13.8353683,48.7000509],[13.835526,48.700061],[13.8355744,48.7000807],[13.8356211,48.700158],[13.835708,48.7002522],[13.8358458,48.7003316],[13.8360329,48.7003937],[13.8361122,48.7004755],[13.8361425,48.7004924],[13.8361846,48.7005312],[13.8363205,48.7005735],[13.8364441,48.7005767],[13.8364729,48.7005675],[13.8366932,48.70059],[13.836884,48.7006131],[13.8370718,48.7006692],[13.8372659,48.7006418],[13.8373909,48.7005826],[13.8374192,48.7005462],[13.8374083,48.7005216],[13.8372984,48.7004351],[13.8372084,48.7004011],[13.8371348,48.7003427],[13.8371121,48.7003016],[13.837118,48.7002409],[13.8372255,48.7001947],[13.8373024,48.7001398],[13.837378,48.7001105],[13.8372341,48.7000801],[13.8371802,48.7000194],[13.8371649,48.699932],[13.8371762,48.6998771],[13.8371576,48.6997969],[13.8371129,48.6997853],[13.8370774,48.6997163],[13.8371087,48.6996888],[13.8370964,48.6996296],[13.8370198,48.6995676],[13.8369269,48.6995097],[13.8368998,48.6994401],[13.8368482,48.6994399],[13.8368633,48.6993895],[13.8368458,48.6993221],[13.8367979,48.6992969],[13.8367392,48.6992346],[13.8367278,48.6991786],[13.8367035,48.6991266],[13.836701,48.6991013],[13.8367245,48.6990663],[13.8367542,48.6990489],[13.8367706,48.6990405],[13.8368162,48.6989645],[13.8368131,48.6989365],[13.8367975,48.6989094],[13.8368137,48.6988668],[13.8368216,48.6988088],[13.8368001,48.69879],[13.8367509,48.6987748],[13.8366916,48.6987208],[13.836654,48.6985954],[13.8366296,48.6985751],[13.8365735,48.6985512],[13.8365177,48.6985393],[13.8364202,48.6984863],[13.8364001,48.6984228],[13.8363663,48.6983989],[13.8363719,48.6983618],[13.8364191,48.6983407],[13.8364255,48.6982693],[13.8364458,48.6982427],[13.8364018,48.6982157],[13.8363665,48.6981695],[13.8363237,48.6981387],[13.8363044,48.6980514],[13.8363196,48.6980387],[13.8363155,48.697989],[13.8362691,48.6979599],[13.8362555,48.6979179],[13.8362398,48.6979031],[13.8362261,48.6978511],[13.8362265,48.6978038],[13.83619,48.6977775],[13.8361546,48.6977638],[13.8360508,48.6977011],[13.8360144,48.6976417],[13.8359627,48.6975837],[13.8359557,48.6975351],[13.8359776,48.6975074],[13.8359768,48.6974823],[13.8359925,48.6974121],[13.835955,48.6973287],[13.8359011,48.6973152],[13.8358762,48.69729],[13.8357554,48.6972849],[13.8357311,48.697289],[13.8357004,48.6972718],[13.8356267,48.697188],[13.835564,48.6971342],[13.8354678,48.6970849],[13.8354637,48.6970676],[13.8353802,48.697024],[13.8352834,48.6970296],[13.8352574,48.6970157],[13.8351984,48.6969523],[13.8352104,48.6969087],[13.8351887,48.6968955],[13.835119,48.6968987],[13.8350916,48.6969101],[13.8350693,48.6969035],[13.8350466,48.6968812],[13.8350286,48.696849],[13.835015,48.6968507],[13.8350351,48.6967764],[13.8349964,48.6967383],[13.8350131,48.6966946],[13.8350429,48.6966711],[13.8350902,48.6965949],[13.835113,48.6965945],[13.8351627,48.6965401],[13.8351514,48.6965124],[13.8350937,48.6964779],[13.8350581,48.6964275],[13.8350216,48.6964099],[13.8350917,48.6963648],[13.8351238,48.696278],[13.8351503,48.6962581],[13.8351153,48.6962361],[13.8351034,48.6961953],[13.8351315,48.6961452],[13.8351736,48.6961159],[13.8349966,48.6960226],[13.8349933,48.6959747],[13.8350208,48.6959294],[13.835057,48.6958978],[13.8351872,48.6958677],[13.8352654,48.6958002],[13.8352532,48.6957592],[13.8353203,48.6957054],[13.8353181,48.6956343],[13.8352237,48.6955942],[13.8351049,48.6955918],[13.8350024,48.695517],[13.8349389,48.6955222],[13.8348901,48.6955073],[13.8348877,48.695484],[13.8349109,48.6954609],[13.8350016,48.6954478],[13.8350547,48.6954003],[13.8350494,48.6953172],[13.8349468,48.695276],[13.8348217,48.695251],[13.8347827,48.6952569],[13.8347428,48.6952406],[13.834728,48.6951974],[13.8346312,48.6951046],[13.8346072,48.6950657],[13.8345652,48.6950292],[13.8345539,48.695001],[13.8345731,48.6949822],[13.8346468,48.6949464],[13.8347454,48.6948702],[13.8347477,48.6948089],[13.8348106,48.6947273],[13.8348277,48.6947282],[13.8348033,48.6946679],[13.834708,48.6946316],[13.8347123,48.6946036],[13.8345902,48.6945753],[13.8345026,48.694575],[13.8344632,48.6945651],[13.8344505,48.6944961],[13.8343946,48.6944491],[13.8343584,48.6943835],[13.8343751,48.6943516],[13.8343396,48.6942912],[13.8343588,48.6942579],[13.8344814,48.6942429],[13.8345058,48.6942145],[13.8345172,48.6941755],[13.8344645,48.6941381],[13.8343775,48.6941278],[13.8343475,48.6940616],[13.8343929,48.6940202],[13.8343998,48.693973],[13.8344253,48.6939235],[13.8345548,48.6939076],[13.8346382,48.693893],[13.8346847,48.6938066],[13.8346524,48.6937199],[13.8345211,48.6936843],[13.8344926,48.6936571],[13.83444,48.6936833],[13.8343861,48.6936717],[13.8343057,48.6936082],[13.8342696,48.6935619],[13.8342897,48.6935369],[13.8344682,48.6935247],[13.8345126,48.6935062],[13.8345216,48.6934365],[13.834486,48.6934104],[13.8344277,48.6934135],[13.8343931,48.69338],[13.8343774,48.6933373],[13.8344689,48.6932706],[13.8344201,48.6931306],[13.8344637,48.6931004],[13.834469,48.6930602],[13.8344237,48.6930151],[13.8344017,48.6930099],[13.8343916,48.6929397],[13.8343165,48.6929025],[13.834278,48.6928481],[13.8341368,48.6927651],[13.8341207,48.6926865],[13.8340656,48.6926504],[13.8340313,48.6925992],[13.8340253,48.6925434],[13.8339313,48.6924565],[13.8338087,48.6924209],[13.8337667,48.6923587],[13.8337022,48.6923512],[13.8336647,48.692275],[13.8336087,48.6922279],[13.8336164,48.6921825],[13.833655,48.6921477],[13.8336379,48.6921079],[13.8336058,48.69209],[13.833601,48.6920388],[13.8336302,48.6919724],[13.8335921,48.6918985],[13.8335227,48.6918616],[13.8334766,48.6918745],[13.8333656,48.6918722],[13.8333414,48.691859],[13.8333294,48.6918634],[13.8332307,48.6918726],[13.8331881,48.6918452],[13.8331499,48.6917938],[13.8330273,48.691808],[13.8328973,48.6918033],[13.832839,48.6918146],[13.8327887,48.691821],[13.8326841,48.69184],[13.832557,48.6918214],[13.8325305,48.6918757],[13.8324644,48.6919209],[13.8324018,48.6919255],[13.8322852,48.6920038],[13.8322538,48.6920593],[13.8321741,48.6920934],[13.8321383,48.6921414],[13.832064,48.6922059],[13.8319997,48.6922277],[13.8318728,48.6921725],[13.8317886,48.6921825],[13.831667,48.6921464],[13.8316422,48.6921111],[13.8316157,48.6920993],[13.8315945,48.69209],[13.8315091,48.6920932],[13.8314228,48.6920655],[13.8313747,48.6920771],[13.8313464,48.6921065],[13.8313097,48.6921178],[13.8312078,48.6921688],[13.8310651,48.6922076],[13.8310126,48.6921951],[13.8310057,48.6921706],[13.830977,48.6921347],[13.8309324,48.6921286],[13.8309324,48.6921113],[13.8309592,48.6920622],[13.8309321,48.6920312],[13.8308938,48.692018],[13.8308022,48.6920025],[13.8307551,48.692041],[13.8307587,48.6920662],[13.8307371,48.6920773],[13.8306752,48.6920798],[13.8306502,48.6921218],[13.8305142,48.6921808],[13.8305058,48.6922353],[13.830446,48.6923175],[13.8303426,48.6924264],[13.8302868,48.6924536],[13.8302335,48.6924498],[13.8301964,48.6924195],[13.8301215,48.6923892],[13.8300596,48.6923894],[13.8299772,48.6923965],[13.8299516,48.6923677],[13.8299698,48.6923429],[13.8300277,48.6923309],[13.830049,48.6923128],[13.8300153,48.6922734],[13.8299016,48.6922408],[13.829817,48.6921989],[13.8297679,48.6921389],[13.829641,48.692111],[13.8295998,48.6920898],[13.8295703,48.6920121],[13.8295763,48.6919624],[13.8295449,48.6919427],[13.8295033,48.6919341],[13.8294623,48.6919563],[13.8293919,48.6919572],[13.8293289,48.6919794],[13.8291994,48.6919935],[13.829106,48.6919695],[13.8290208,48.6919096],[13.8289792,48.6919011],[13.8289353,48.6919325],[13.8289361,48.6919972],[13.8288032,48.6920296],[13.8287978,48.6919971],[13.8287631,48.6919889],[13.8286961,48.6920125],[13.8286944,48.6920844],[13.8286421,48.6921346],[13.8285391,48.6921749],[13.8284577,48.6921704],[13.828298,48.6921139],[13.8282294,48.6921262],[13.828079,48.6920962],[13.8280025,48.6920882],[13.8279307,48.6920685],[13.8278901,48.6920314],[13.8278385,48.6920333],[13.8276989,48.6920828],[13.8276711,48.6920714],[13.8275861,48.6921243],[13.8273695,48.6921219],[13.8273146,48.6920923],[13.827281,48.692088],[13.8271771,48.6921052],[13.8270999,48.6921077],[13.8270183,48.6921311],[13.8270003,48.6921712],[13.8270326,48.6922152],[13.8270208,48.6922438],[13.8269658,48.6922644],[13.8268901,48.6922783],[13.8268636,48.6922657],[13.8268359,48.692295],[13.826799,48.6923504],[13.8267296,48.6923945],[13.8265541,48.6924211],[13.8264555,48.6923875],[13.8263486,48.6923674],[13.8262377,48.6924022],[13.8260981,48.6923609],[13.8260319,48.6923639],[13.8259923,48.6924148],[13.8259374,48.6924529],[13.8258753,48.6924581],[13.8257741,48.6924186],[13.8257424,48.6924318],[13.8256852,48.6925139],[13.8256009,48.6925689],[13.8255532,48.6925715],[13.8255426,48.692542],[13.8254651,48.692517],[13.8253664,48.6925435],[13.8253821,48.6925605],[13.8254203,48.6925628],[13.8254083,48.6926021],[13.8252707,48.6926938],[13.8252372,48.6926593],[13.825177,48.6926707],[13.8251668,48.6927196],[13.8251207,48.692732],[13.8250907,48.6927084],[13.8250388,48.6926918],[13.824998,48.6927734],[13.8249177,48.6927864],[13.8249654,48.6928421],[13.8250436,48.6928512],[13.8251207,48.6929042],[13.8251098,48.6929371],[13.8250591,48.6929447],[13.8250023,48.6929363],[13.8249099,48.6929711],[13.824911,48.6930048],[13.8248669,48.6930306],[13.8248207,48.6930331],[13.8247094,48.6929987],[13.8246636,48.6930095],[13.8246404,48.6930389],[13.8245746,48.6930539],[13.8245019,48.6930531],[13.8244302,48.6930787],[13.8243822,48.693123],[13.8244019,48.6931805],[13.8243782,48.6932095],[13.8243466,48.6932219],[13.8242823,48.6932922],[13.8242756,48.6933249],[13.8241993,48.6933634],[13.8241354,48.6934175],[13.8241444,48.6934725],[13.824115,48.6935109],[13.8240328,48.6935415],[13.8239825,48.6935598],[13.8239436,48.6936167],[13.8239207,48.6936827],[13.8238567,48.693711],[13.8239048,48.693801],[13.8238889,48.6938363],[13.8238234,48.6939084],[13.8238254,48.6939337],[13.8238519,48.6939555],[13.8237333,48.6940727],[13.8236419,48.6941085],[13.823391,48.6941775],[13.8232879,48.6941813],[13.8231592,48.6942372],[13.8230835,48.6942271],[13.8230073,48.6941812],[13.822935,48.6941754],[13.8228396,48.694205],[13.8227534,48.6942177],[13.8226368,48.6942511],[13.8225778,48.6942275],[13.8225321,48.6941628],[13.8225293,48.6941439],[13.8225087,48.6941341],[13.8224679,48.6941544],[13.822474,48.6941861],[13.8222335,48.6942255],[13.8221312,48.6943315],[13.82212,48.6943693],[13.8220212,48.6944174],[13.8219617,48.6944227],[13.8219036,48.6943984],[13.8218625,48.694382],[13.8218029,48.6943862],[13.8216085,48.6944359],[13.8214464,48.6945301],[13.8212592,48.6946441],[13.8211633,48.6946391],[13.8210985,48.6946041],[13.8209134,48.6945448],[13.8208327,48.6945265],[13.8207903,48.694534],[13.8206651,48.6945271],[13.8206368,48.6945552],[13.8205379,48.6945714],[13.8204868,48.6945282],[13.8204685,48.6944948],[13.8203415,48.6945065],[13.8200902,48.6945301],[13.819819,48.6945141],[13.8196883,48.6945485],[13.8194865,48.6945424],[13.8194149,48.6945236],[13.819354,48.6945327],[13.8192517,48.6945241],[13.8189936,48.6945531],[13.8188573,48.6945758],[13.8187772,48.6945501],[13.818695,48.6945458],[13.8185816,48.6945657],[13.8185294,48.694564],[13.8184077,48.6945789],[13.8184038,48.6945694],[13.8182614,48.6946054],[13.8181819,48.6946383],[13.8179218,48.694656],[13.8178481,48.6946254],[13.8177676,48.6946086],[13.8176891,48.6946383],[13.8176454,48.6946508],[13.8176086,48.6946765],[13.8175517,48.6946942],[13.8174327,48.6947481],[13.817165,48.6947971],[13.8171443,48.694794],[13.8171222,48.6948042],[13.8171014,48.6948403],[13.8169727,48.6948246],[13.8169414,48.6947979],[13.8167905,48.6947979],[13.8167038,48.6947937],[13.816668,48.6947731],[13.8166246,48.6947882],[13.8165835,48.6947834],[13.8165868,48.6947549],[13.8165319,48.6947175],[13.8165219,48.6946944],[13.8164548,48.6946948],[13.8164168,48.6947181],[13.8163791,48.6947166],[13.816338,48.6946805],[13.8163508,48.6946365],[13.8163286,48.6946268],[13.8162843,48.6946226],[13.8162558,48.6946003],[13.8162631,48.6945731],[13.8162353,48.6945439],[13.8161918,48.6945431],[13.8161198,48.6945922],[13.8160002,48.6945576],[13.815995,48.6945259],[13.8158998,48.6944582],[13.8158695,48.6944129],[13.815825,48.6943948],[13.8157802,48.6943922],[13.81576,48.6943656],[13.8157744,48.6943472],[13.8157879,48.6943131],[13.8158187,48.6942731],[13.8158022,48.6942492],[13.815857,48.6941889],[13.815903,48.6941806],[13.8159298,48.69416],[13.8159851,48.694179],[13.8159974,48.6941668],[13.8159047,48.6940309],[13.8158524,48.6940197],[13.8158366,48.6939843],[13.8157763,48.6939841],[13.8157156,48.6940217],[13.8156496,48.6939774],[13.8156074,48.6939671],[13.8155638,48.6939933],[13.8154951,48.6939965],[13.815448,48.6939568],[13.8154178,48.6939413],[13.8152924,48.6939027],[13.8152513,48.6938539],[13.8152499,48.6938216],[13.8152233,48.6937814],[13.8150963,48.6936432],[13.814965,48.6934719],[13.8148407,48.6933428],[13.8147251,48.6932402],[13.8147306,48.6932111],[13.8146304,48.6931441],[13.8144797,48.6931836],[13.8143683,48.6930814],[13.8143434,48.6930407],[13.8142568,48.6930191],[13.8141451,48.692946],[13.81419,48.6928547],[13.8142924,48.6928177],[13.8143207,48.6927974],[13.8143003,48.6927535],[13.8142617,48.6927471],[13.8142379,48.6927016],[13.8143396,48.6926379],[13.8142895,48.6925971],[13.8142093,48.6925846],[13.8141355,48.6925371],[13.8141422,48.6925108],[13.8141048,48.692504],[13.813993,48.692508],[13.8139834,48.6924882],[13.8140013,48.6923805],[13.8140078,48.6923493],[13.8140696,48.6922982],[13.8140326,48.6922741],[13.8139742,48.6922693],[13.8139021,48.6922237],[13.8138467,48.6921732],[13.8138452,48.6920786],[13.8138272,48.6920655],[13.8138096,48.6920192],[13.8137704,48.6919726],[13.8137151,48.6919712],[13.8136374,48.6919428],[13.8136138,48.6918998],[13.8135685,48.6918668],[13.813517,48.6918637],[13.8134888,48.6918328],[13.8135779,48.6917862],[13.8136095,48.6917365],[13.8136771,48.6917158],[13.8136634,48.6916733],[13.813646,48.6916624],[13.813713,48.6916438],[13.8138316,48.6916524],[13.8138648,48.6916665],[13.8139189,48.6916587],[13.8139611,48.6916147],[13.8140198,48.6915204],[13.8140366,48.6914754],[13.8139635,48.6914209],[13.8139235,48.6913698],[13.8139329,48.6913239],[13.8139426,48.6912916],[13.8139407,48.6912299],[13.8138203,48.6911853],[13.8136912,48.6911625],[13.8136195,48.6911096],[13.8135682,48.6910613],[13.8135937,48.6910177],[13.813662,48.6909586],[13.8136847,48.6908928],[13.81377,48.6908367],[13.813743,48.6907451],[13.8136889,48.6907471],[13.8135859,48.6907013],[13.8135395,48.6906392],[13.8135771,48.6905194],[13.8135773,48.6904764],[13.8135927,48.6904478],[13.8135356,48.6903772],[13.8135481,48.6903466],[13.8135296,48.6902293],[13.8135206,48.6901805],[13.8135786,48.6901258],[13.8136198,48.6900757],[13.8135964,48.690006],[13.8136217,48.689962],[13.8136222,48.689926],[13.8137059,48.6899038],[13.8138047,48.6898633],[13.8138076,48.6898362],[13.813824,48.6897769],[13.813769,48.6897271],[13.8137072,48.6897073],[13.8136913,48.6896387],[13.8136593,48.6895963],[13.8136696,48.689544],[13.8136505,48.6894863],[13.8136093,48.6894622],[13.8135832,48.6894262],[13.8136066,48.6893944],[13.8136821,48.689362],[13.8137267,48.6893495],[13.8137427,48.6893184],[13.8138267,48.6893014],[13.8138176,48.6891986],[13.8138388,48.6891562],[13.8137843,48.6890959],[13.8137784,48.6890617],[13.8138212,48.6890202],[13.8139185,48.6890355],[13.8139391,48.6889989],[13.8139966,48.6889798],[13.8141199,48.6889832],[13.8141542,48.6889639],[13.81417,48.6889097],[13.8141434,48.688879],[13.8141301,48.6888507],[13.8141694,48.6888007],[13.8140779,48.6886985],[13.8139919,48.688672],[13.8139418,48.6886143],[13.8140099,48.6885079],[13.8140325,48.6885019],[13.8140732,48.6883803],[13.8140625,48.6883161],[13.8141319,48.6882575],[13.8141393,48.6882268],[13.814184,48.688194],[13.8141455,48.6881198],[13.8141677,48.6880929],[13.8141691,48.6880565],[13.8141021,48.687956],[13.8141286,48.6878692],[13.8141206,48.687829],[13.814173,48.6877564],[13.8142549,48.6877517],[13.814281,48.6877554],[13.8143058,48.6877256],[13.8143372,48.6876598],[13.8143556,48.6876353],[13.8143071,48.6876136],[13.8142763,48.6875783],[13.8143009,48.6874915],[13.8142952,48.6874538],[13.8143071,48.6874268],[13.8142558,48.6873961],[13.8142986,48.6873571],[13.8143899,48.6873136],[13.8143637,48.6872418],[13.8143218,48.6872115],[13.8143886,48.6871794],[13.8143394,48.6871392],[13.8142849,48.6870611],[13.8143054,48.6870047],[13.8142612,48.6869609],[13.8142807,48.6869164],[13.8142178,48.6869076],[13.8142,48.686831],[13.8141791,48.6868145],[13.8141613,48.6867508],[13.8142076,48.6867239],[13.8141668,48.6866775],[13.8141965,48.6866319],[13.8142526,48.6866139],[13.8142698,48.6865842],[13.8142511,48.6865615],[13.8142013,48.686562],[13.814191,48.6865361],[13.8142485,48.6865224],[13.8142706,48.6864905],[13.8142959,48.6864825],[13.8143227,48.6864723],[13.8143279,48.6864083],[13.8144059,48.6863782],[13.8144077,48.6863461],[13.8143779,48.6863212],[13.8143115,48.6863196],[13.8143293,48.6862508],[13.814368,48.6862067],[13.8143195,48.6861839],[13.8142763,48.6861274],[13.8142484,48.6861099],[13.8142522,48.6860584],[13.8142771,48.6860378],[13.8142702,48.6859931],[13.8142364,48.6859702],[13.8142366,48.6859213],[13.8142082,48.6859131],[13.8142035,48.6858798],[13.8143614,48.6858517],[13.814374,48.6858158],[13.814321,48.6857668],[13.8143829,48.6857101],[13.8143736,48.6856959],[13.8143154,48.6856777],[13.8143172,48.6856674],[13.8144064,48.685601],[13.8144039,48.6855881],[13.814346,48.6855762],[13.8143107,48.6855468],[13.8143163,48.6854837],[13.8143264,48.685462],[13.8143162,48.6854327],[13.8143367,48.6854115],[13.8143534,48.6853664],[13.8143302,48.6853369],[13.8143501,48.685311],[13.814346,48.6852886],[13.814359,48.6852726],[13.8143566,48.6852302],[13.8142893,48.6852138],[13.8142373,48.685162],[13.814177,48.6851569],[13.8141436,48.6851194],[13.8141516,48.6850702],[13.8140966,48.6850362],[13.8140179,48.685021],[13.8139586,48.6850333],[13.8138769,48.6850222],[13.8138439,48.6849785],[13.813788,48.6849243],[13.8137358,48.6848542],[13.8137318,48.6848074],[13.8137459,48.6847944],[13.8137388,48.6847794],[13.813716,48.684773],[13.8136661,48.6847674],[13.8136908,48.6847349],[13.8137118,48.6846888],[13.8137163,48.6846518],[13.8137056,48.6846266],[13.8136464,48.68461],[13.8135895,48.6846184],[13.8135276,48.6845935],[13.8135029,48.6845783],[13.8134817,48.6844978],[13.8135097,48.6844843],[13.8135406,48.6844479],[13.8135486,48.6844153],[13.8135579,48.6844005],[13.8135592,48.6843415],[13.8135906,48.6843191],[13.8135529,48.6842542],[13.8134981,48.6841347],[13.8135199,48.6840994],[13.8135083,48.6840013],[13.8134451,48.6839359],[13.8134632,48.6838867],[13.8134048,48.6837925],[13.8133613,48.6837737],[13.8133768,48.6837151],[13.8133379,48.6837117],[13.8132505,48.6837314],[13.8132104,48.6837359],[13.813155,48.6837159],[13.8131345,48.6836709],[13.8131472,48.6836324],[13.8131267,48.6835868],[13.8131378,48.6835421],[13.8131791,48.6835158],[13.8132183,48.6834275],[13.8132748,48.6833075],[13.8133157,48.6832544],[13.8134264,48.6831819],[13.8134642,48.6831483],[13.8135428,48.6831173],[13.8136036,48.6831087],[13.8136783,48.6830606],[13.8139013,48.6829464],[13.8140459,48.6829286],[13.8140927,48.6829046],[13.8141221,48.6828503],[13.8142147,48.6828013],[13.8142146,48.6827765],[13.8141336,48.6827533],[13.8140886,48.6826654],[13.8140743,48.6826258],[13.8140157,48.6826182],[13.8140187,48.6826046],[13.8140329,48.6825592],[13.8140863,48.6825403],[13.8141007,48.6824953],[13.8141597,48.6824641],[13.8141683,48.6824817],[13.8142415,48.6825114],[13.8143023,48.6825017],[13.8143009,48.6824544],[13.8143419,48.6824125],[13.8144257,48.682401],[13.8144619,48.6823627],[13.8144925,48.6823244],[13.8145638,48.6823357],[13.8145983,48.6823627],[13.8146797,48.6823554],[13.8147061,48.6823227],[13.8147095,48.6822983],[13.8146534,48.682255],[13.814625,48.682218],[13.8145825,48.6821752],[13.8145453,48.6821108],[13.8145604,48.6820666],[13.8146547,48.6820602],[13.8147024,48.6820752],[13.8147578,48.6821165],[13.8148384,48.6821459],[13.8149024,48.6821461],[13.8149354,48.6821556],[13.8150042,48.6821484],[13.8151102,48.6821097],[13.8152467,48.6820338],[13.8152642,48.6819873],[13.8153278,48.6819389],[13.8153738,48.6819467],[13.815549,48.6818977],[13.8155999,48.6818739],[13.8156838,48.6818628],[13.8157177,48.6819344],[13.8157533,48.6819538],[13.8157598,48.6819984],[13.8159117,48.6819631],[13.8160676,48.681947],[13.816085,48.6818722],[13.8160794,48.6818455],[13.8161255,48.681824],[13.8160959,48.6817867],[13.8160012,48.6817637],[13.8159886,48.6817479],[13.8160285,48.6817051],[13.8160885,48.6817111],[13.8161143,48.6816986],[13.8161053,48.6816429],[13.8161856,48.6816379],[13.8162242,48.6816049],[13.8162092,48.6815785],[13.816225,48.68155],[13.8162539,48.6815378],[13.816311,48.6815379],[13.8163294,48.6815033],[13.8163018,48.6814737],[13.8163111,48.6814599],[13.8164076,48.6814711],[13.8166096,48.6813751],[13.8166173,48.681348],[13.8166601,48.6813207],[13.8166508,48.6812994],[13.816625,48.6812974],[13.8166186,48.6812507],[13.8166481,48.6812364],[13.816659,48.6812012],[13.816638,48.6811832],[13.8165787,48.6811933],[13.8165493,48.6811228],[13.8165158,48.6811187],[13.8162864,48.6810547],[13.8161791,48.6809762],[13.8162308,48.680894],[13.8162244,48.6808402],[13.8164439,48.6807604],[13.8164923,48.6806738],[13.81652,48.680655],[13.8165012,48.6805827],[13.8164282,48.6805486],[13.8164817,48.6804893],[13.8165819,48.6804614],[13.8167026,48.6804564],[13.8167167,48.6803869],[13.8167702,48.6803624],[13.8168022,48.6803233],[13.8167386,48.68025],[13.8167651,48.6801819],[13.8168427,48.6801738],[13.8168401,48.6801016],[13.8168575,48.680077],[13.8169496,48.6800668],[13.8169494,48.6800458],[13.8169225,48.6800094],[13.8169426,48.6799754],[13.8170362,48.6799411],[13.8170457,48.6799223],[13.8169713,48.6798757],[13.8169169,48.6797292],[13.8170269,48.6797186],[13.8170859,48.6797661],[13.8171306,48.6797706],[13.8171767,48.6797513],[13.8171699,48.6797127],[13.8171741,48.6796671],[13.8172806,48.6796257],[13.8172702,48.6795888],[13.8171832,48.679567],[13.8170659,48.6795409],[13.8169909,48.6794602],[13.8170226,48.6794166],[13.8169008,48.6793573],[13.8168286,48.6793964],[13.8167829,48.6794069],[13.816699,48.6793818],[13.8166615,48.6793476],[13.8166876,48.6793188],[13.8166714,48.6791981],[13.816671,48.679183],[13.8166253,48.6791466],[13.8166391,48.6791182],[13.8167345,48.6791041],[13.8166875,48.679067],[13.8166258,48.6790783],[13.8165792,48.6790599],[13.8165098,48.6790227],[13.8164883,48.6789618],[13.81654,48.6789225],[13.8165814,48.6789026],[13.8166541,48.6788632],[13.816755,48.6788498],[13.8167706,48.6788339],[13.8168148,48.678825],[13.8168858,48.6787914],[13.8168557,48.6786936],[13.8167774,48.6786333],[13.8167848,48.6786044],[13.8168194,48.6785741],[13.8169553,48.6785342],[13.8170032,48.6784443],[13.8170832,48.67837],[13.8171184,48.6783559],[13.8171008,48.6783181],[13.8170209,48.6782908],[13.8170228,48.678244],[13.817102,48.6781929],[13.8170993,48.6781687],[13.8170669,48.678135],[13.817034,48.6780718],[13.8170254,48.6780119],[13.8170622,48.6779638],[13.8171165,48.6779481],[13.8171543,48.6778838],[13.8171206,48.677842],[13.8170881,48.6778366],[13.8170411,48.6777985],[13.817056,48.6777603],[13.8171215,48.6777322],[13.8171542,48.6777454],[13.8171608,48.6777191],[13.8172117,48.677662],[13.8173135,48.6776354],[13.8173422,48.6776369],[13.8174109,48.6776139],[13.8174446,48.6775965],[13.8174223,48.6775453],[13.8174366,48.6775283],[13.8174386,48.6774935],[13.817411,48.6774695],[13.8174251,48.6774414],[13.8174681,48.677434],[13.8174939,48.6774503],[13.8175597,48.6774437],[13.8176273,48.6774453],[13.817645,48.6773976],[13.8176773,48.6773997],[13.8177366,48.6773832],[13.81775,48.6773556],[13.8176966,48.6773012],[13.8176661,48.6772931],[13.8176528,48.6772649],[13.8177204,48.6772198],[13.8177534,48.6771482],[13.81773,48.6771384],[13.8177398,48.6771104],[13.8176761,48.6770748],[13.8176858,48.6770308],[13.8177283,48.6769867],[13.8176639,48.6769652],[13.8176542,48.6769385],[13.8176695,48.6769032],[13.8177886,48.6769142],[13.8177981,48.6768894],[13.8177496,48.6768613],[13.8177216,48.6768221],[13.817775,48.6767626],[13.8177915,48.676729],[13.8177636,48.6767129],[13.8176784,48.6767167],[13.8176612,48.6766634],[13.8177009,48.6766196],[13.8177331,48.6766195],[13.8177582,48.6766062],[13.817746,48.6765829],[13.8177931,48.6765769],[13.8178164,48.6765836],[13.8178922,48.6765799],[13.8178917,48.6765535],[13.8178496,48.676563],[13.8178246,48.6765498],[13.817815,48.6764936],[13.8179491,48.6764841],[13.8179559,48.6764507],[13.8179117,48.6764456],[13.8178639,48.6763919],[13.8178721,48.6763322],[13.817995,48.6763058],[13.8181299,48.6763128],[13.8181375,48.6762689],[13.8181764,48.6762331],[13.818167,48.6762137],[13.8181163,48.676186],[13.8181263,48.6761661],[13.8181772,48.6761607],[13.8181809,48.6761113],[13.8182303,48.6760551],[13.8182192,48.6760131],[13.8181839,48.6759696],[13.8181456,48.6759677],[13.8181432,48.6759472],[13.8181947,48.675915],[13.8181443,48.6758922],[13.8181504,48.6758478],[13.8181372,48.6758153],[13.8181754,48.6757912],[13.8182005,48.6757748],[13.8181748,48.6757453],[13.8181394,48.6757404],[13.8181145,48.6757654],[13.8180673,48.6757747],[13.8180874,48.6757274],[13.8181107,48.6757073],[13.8181461,48.6757049],[13.8181797,48.6756909],[13.8182223,48.6756177],[13.8182616,48.6755916],[13.8183315,48.6755984],[13.8183762,48.6756],[13.8184011,48.6756168],[13.8184994,48.6756301],[13.8185874,48.6756564],[13.8186593,48.6756449],[13.8186712,48.6756137],[13.8186496,48.6755555],[13.8186425,48.675536],[13.8186588,48.6755167],[13.8186614,48.6754823],[13.818701,48.6754615],[13.8187433,48.6754422],[13.818693,48.6753662],[13.8187225,48.6753224],[13.8187698,48.675303],[13.8187971,48.6753092],[13.8187973,48.6752783],[13.8188669,48.6752511],[13.8189203,48.6752648],[13.8189477,48.6752585],[13.8189255,48.6752227],[13.8190208,48.6752221],[13.8190485,48.6752501],[13.8191274,48.6752534],[13.8191696,48.6751981],[13.8191303,48.6751744],[13.819195,48.6750919],[13.8191539,48.6750147],[13.8191971,48.6749882],[13.819251,48.6749865],[13.8192973,48.674924],[13.8192423,48.6748987],[13.8191843,48.6748948],[13.8191677,48.6748814],[13.8191326,48.6748648],[13.8191922,48.6747975],[13.8191858,48.6747673],[13.8191841,48.6746975],[13.8191074,48.6747],[13.8191076,48.6746631],[13.8190098,48.6746685],[13.8190009,48.6746465],[13.8189916,48.6746117],[13.8188858,48.6746028],[13.8188835,48.6745405],[13.8189391,48.6745133],[13.8190324,48.6744715],[13.8190167,48.6744353],[13.8189553,48.6744233],[13.8189493,48.6744002],[13.8189876,48.6743681],[13.8189876,48.6743233],[13.8188901,48.6742812],[13.8188727,48.6742573],[13.8188833,48.6742266],[13.8188511,48.6741662],[13.8188735,48.6741116],[13.8188313,48.6740595],[13.8187885,48.6740367],[13.8187755,48.6739395],[13.8187527,48.6739277],[13.8186821,48.6738093],[13.8186587,48.6737627],[13.8186616,48.6736308],[13.8187693,48.6735618],[13.8189066,48.673547],[13.818939,48.6735138],[13.8189983,48.673499],[13.8190683,48.6734508],[13.819054,48.6734229],[13.8190157,48.6733927],[13.819008,48.6733708],[13.8190497,48.6733451],[13.819051,48.6733117],[13.819145,48.6732667],[13.819132,48.6732433],[13.8191469,48.6732133],[13.8192048,48.6732031],[13.8192125,48.673177],[13.8192445,48.6731339],[13.8193256,48.6730922],[13.8193523,48.6730689],[13.819406,48.6730661],[13.8194209,48.6730304],[13.8193966,48.6730006],[13.8194381,48.6729657],[13.8194763,48.672933],[13.8194882,48.6729054],[13.8194644,48.6728736],[13.8194757,48.6728465],[13.819488,48.6728139],[13.8195017,48.672764],[13.8195073,48.672734],[13.8194871,48.6726764],[13.8194619,48.6726224],[13.8194322,48.6725795],[13.8194629,48.6725582],[13.8194908,48.6725643],[13.819521,48.6725231],[13.8194846,48.6724596],[13.8194352,48.6724187],[13.8194895,48.6723757],[13.8194747,48.6723485],[13.8194214,48.672328],[13.819429,48.6722529],[13.8194055,48.6722224],[13.8194053,48.6721832],[13.8194411,48.6721437],[13.8194476,48.672127],[13.8194815,48.672096],[13.8194728,48.6720766],[13.8194244,48.6720466],[13.8194335,48.6720191],[13.8194516,48.672005],[13.8194539,48.6719694],[13.8194201,48.6719483],[13.8193915,48.6719251],[13.8194135,48.6719089],[13.8194113,48.6718935],[13.8194176,48.67187],[13.819404,48.671827],[13.8194052,48.6717925],[13.8194229,48.6717826],[13.819394,48.6717588],[13.8193886,48.6717346],[13.8194289,48.6717268],[13.8194723,48.671684],[13.8194516,48.6716556],[13.8194586,48.6716278],[13.8194426,48.6716056],[13.8194827,48.6715761],[13.8194761,48.6715227],[13.8194484,48.6715152],[13.8194467,48.6714951],[13.8194791,48.6714881],[13.8194819,48.6714703],[13.8195107,48.6714496],[13.8195135,48.6714327],[13.8195338,48.6714179],[13.8195661,48.6714086],[13.819609,48.6713584],[13.8196633,48.6713287],[13.8196783,48.671308],[13.8196703,48.671273],[13.8196858,48.6712355],[13.8196856,48.6711805],[13.8196924,48.6711585],[13.8196818,48.6711203],[13.8196898,48.6710799],[13.8196452,48.6710507],[13.8196247,48.6710438],[13.8196503,48.670996],[13.8196386,48.6709706],[13.8196716,48.6709055],[13.8196885,48.6708909],[13.8196835,48.6708733],[13.8197013,48.6708532],[13.8197079,48.6707854],[13.8197287,48.6707473],[13.8197058,48.67072],[13.8197453,48.6707018],[13.819748,48.6706858],[13.819735,48.6706687],[13.8197401,48.6706411],[13.8197182,48.6706168],[13.819733,48.6706081],[13.8197367,48.6705773],[13.8197486,48.6705628],[13.8197334,48.6705134],[13.8197435,48.670496],[13.8197378,48.6704763],[13.8197648,48.6704478],[13.8197575,48.6703778],[13.8197182,48.6703549],[13.8196902,48.6703024],[13.8196699,48.6702831],[13.8196826,48.6702664],[13.8196816,48.6702332],[13.8196581,48.6702109],[13.8196603,48.6701701],[13.8197029,48.6701571],[13.8197354,48.6701313],[13.819731,48.6701119],[13.8197503,48.6700713],[13.8197025,48.6700465],[13.8196619,48.6700129],[13.8196148,48.6699881],[13.8195807,48.6699465],[13.8195486,48.6699374],[13.8195107,48.6699565],[13.8194553,48.6699767],[13.8194331,48.6699649],[13.8194223,48.6699305],[13.8193616,48.6699121],[13.8193111,48.669882],[13.8192367,48.6698567],[13.8192495,48.6698173],[13.8192272,48.66977],[13.8192391,48.6697501],[13.8192652,48.6697249],[13.8192627,48.66971],[13.8192243,48.6696908],[13.8192184,48.6696708],[13.8192026,48.6696438],[13.8191826,48.669628],[13.8192109,48.6696054],[13.8191888,48.6695525],[13.8192185,48.6695291],[13.8191989,48.6695003],[13.8192278,48.6694795],[13.8192552,48.6694171],[13.8192444,48.6693979],[13.8192111,48.6693855],[13.8191846,48.6693576],[13.8192039,48.6693422],[13.8191807,48.6693263],[13.8191692,48.6693018],[13.8191452,48.6692909],[13.8191432,48.6692705],[13.819156,48.6692543],[13.8192088,48.6692372],[13.8192108,48.6692053],[13.8191965,48.6691875],[13.8192416,48.6691247],[13.8193068,48.669064],[13.8193288,48.6690269],[13.819334,48.6689872],[13.8193007,48.6689399],[13.819327,48.6689142],[13.819298,48.6688958],[13.8192804,48.6688794],[13.8192417,48.6688686],[13.8192118,48.6688551],[13.8191478,48.6688462],[13.8191101,48.6688173],[13.819098,48.6687895],[13.8190455,48.6687645],[13.8190445,48.6687482],[13.8190079,48.6687294],[13.819013,48.668705],[13.8190077,48.6686616],[13.8189879,48.6686639],[13.8189635,48.6686556],[13.8188977,48.6686495],[13.8188336,48.6686471],[13.8187798,48.6686445],[13.8186538,48.6686744],[13.8186257,48.6686729],[13.8186074,48.6686449],[13.8185544,48.6686314],[13.8184916,48.6686465],[13.8185188,48.6685909],[13.8185078,48.6685509],[13.8184805,48.6685173],[13.8184782,48.6685028],[13.818507,48.6684662],[13.8184873,48.6684409],[13.8184449,48.6684276],[13.8184205,48.6683964],[13.8183621,48.668373],[13.8183782,48.6683573],[13.8183636,48.6682879],[13.818305,48.668213],[13.8182902,48.6681741],[13.8182553,48.668163],[13.8182175,48.6681273],[13.8181897,48.6680637],[13.8181515,48.6679834],[13.8181321,48.6678905],[13.8181611,48.6678159],[13.8181555,48.667737],[13.8181339,48.6677092],[13.8180912,48.6676758],[13.8180693,48.6676514],[13.8180057,48.6676225],[13.8179182,48.6675287],[13.8179496,48.6674083],[13.817928,48.6673027],[13.8178383,48.6671105],[13.8178022,48.6670912],[13.8177934,48.6669821],[13.8177545,48.6669715],[13.8177644,48.6669302],[13.8177609,48.6669076],[13.8176921,48.666904],[13.8176637,48.6668842],[13.8176822,48.6668517],[13.8176453,48.6668157],[13.8176631,48.6667727],[13.8176361,48.6667234],[13.817594,48.6667023],[13.8176047,48.6666523],[13.8175643,48.6666095],[13.817563,48.666574],[13.8175308,48.6665346],[13.8175225,48.6664905],[13.8175567,48.6664517],[13.8175587,48.666407],[13.8174948,48.6663704],[13.8174923,48.6663691],[13.8175504,48.6662725],[13.8175397,48.6662274],[13.8175512,48.6661767],[13.8175134,48.6661191],[13.8175964,48.6660942],[13.817604,48.6660719],[13.8176779,48.6659924],[13.81768,48.6659568],[13.8177023,48.6659348],[13.8176827,48.6659095],[13.8176954,48.6658981],[13.817698,48.6658539],[13.8177331,48.6658218],[13.8177442,48.6657886],[13.8177707,48.6657818],[13.8177949,48.6657547],[13.8177913,48.6657174],[13.8177592,48.6657047],[13.8177664,48.6656598],[13.8177844,48.6656285],[13.8177805,48.6655977],[13.8178061,48.6656046],[13.8178539,48.6656086],[13.8179109,48.6655804],[13.8179165,48.665554],[13.8179334,48.6655357],[13.8179059,48.6654484],[13.8179279,48.6653571],[13.8179103,48.6653095],[13.8179017,48.6652554],[13.8179193,48.6652367],[13.8179417,48.6651921],[13.817981,48.6651642],[13.8180418,48.6651438],[13.81812,48.6651245],[13.8181401,48.6650799],[13.8181462,48.6650319],[13.8181094,48.6650066],[13.8180732,48.6649936],[13.8180337,48.6649791],[13.8180318,48.6649504],[13.8179771,48.6649165],[13.8179391,48.6648992],[13.8179706,48.6648606],[13.8180081,48.664817],[13.8179724,48.6648039],[13.8179485,48.6647736],[13.817947,48.6647322],[13.8179813,48.6646852],[13.8179707,48.6646439],[13.8180117,48.6645945],[13.8180304,48.6645387],[13.8180776,48.6645209],[13.8181731,48.6644709],[13.8181807,48.6643695],[13.818203,48.6642592],[13.8181853,48.664154],[13.8181578,48.6640061],[13.8181699,48.6639555],[13.8182415,48.6637581],[13.8182706,48.6636588],[13.8183292,48.6636221],[13.8183655,48.6635815],[13.8182406,48.6634254],[13.8180697,48.6632142],[13.817679,48.6627366],[13.8175782,48.6625672],[13.8173796,48.6622334],[13.8174722,48.6619326],[13.8176177,48.6614598],[13.8177034,48.6611516],[13.8177611,48.6609443],[13.8177854,48.6608611],[13.8177963,48.6608241],[13.8178113,48.6607729],[13.8178117,48.660771],[13.8178189,48.6607463],[13.8178281,48.6607148],[13.8178364,48.6606863],[13.8178137,48.6605609],[13.8177349,48.660125],[13.8177238,48.6598432],[13.8177171,48.6596783],[13.8177063,48.6594111],[13.8176541,48.6592032],[13.8175782,48.6589106],[13.8175726,48.6588699],[13.8173481,48.6587122],[13.8170973,48.6585456],[13.8167856,48.6582307],[13.8166699,48.6577392],[13.8166549,48.6577174],[13.8164688,48.6577333],[13.8162556,48.6576818],[13.8162552,48.65758],[13.816299,48.6575201],[13.8163414,48.6573837],[13.8163996,48.6573058],[13.816469,48.6572686],[13.8165329,48.6572061],[13.8165409,48.6571696],[13.8163401,48.6569816],[13.816305,48.6569325],[13.8163309,48.6568723],[13.8164021,48.6568172],[13.8164778,48.6567744],[13.816462,48.6567413],[13.8165366,48.6566089],[13.8165295,48.6564908],[13.8165541,48.6564413],[13.8165533,48.6564041],[13.8165737,48.656386],[13.8165934,48.6562534],[13.8165643,48.6561979],[13.816469,48.6561231],[13.8164344,48.6560272],[13.8163868,48.6559635],[13.816365,48.6559448],[13.8163256,48.6559127],[13.8160331,48.6557625],[13.8159836,48.6557227],[13.8159223,48.6555979],[13.8159116,48.6554902],[13.8158848,48.6554281],[13.8158794,48.6554218],[13.8158414,48.6553778],[13.8156683,48.6552532],[13.8155053,48.6547643],[13.8152817,48.6545705],[13.8152646,48.6544228],[13.8152193,48.6542118],[13.8151985,48.6538979],[13.8151668,48.6538819],[13.8151182,48.6538899],[13.8150446,48.653827],[13.8150139,48.6537538],[13.8150069,48.6536938],[13.8150298,48.6535999],[13.8149796,48.6534953],[13.8149236,48.6533934],[13.8149087,48.6533011],[13.8148879,48.6532668],[13.814782,48.6532235],[13.8147437,48.6531928],[13.8147186,48.6531196],[13.8146419,48.6531009],[13.8146596,48.6530763],[13.8146282,48.6530342],[13.8147031,48.6530103],[13.8147634,48.6529517],[13.8147631,48.6529343],[13.8147488,48.6529267],[13.8147263,48.6529364],[13.814678,48.6529199],[13.8147001,48.6528581],[13.8147429,48.6528622],[13.8147812,48.6528774],[13.8147821,48.652856],[13.8147618,48.6528238],[13.8147595,48.6527967],[13.8147238,48.6527723],[13.8147365,48.6527572],[13.8147295,48.6527136],[13.8146701,48.6527143],[13.8146414,48.6527074],[13.8145717,48.6527236],[13.8145273,48.6527046],[13.8144997,48.6527122],[13.8144809,48.6526829],[13.8144581,48.6526795],[13.8144569,48.6526016],[13.8144917,48.6525502],[13.814574,48.6525407],[13.8146451,48.6525162],[13.8146773,48.652521],[13.8146856,48.6524958],[13.8147196,48.6524977],[13.8147372,48.6524536],[13.8147286,48.6524305],[13.8146641,48.6524167],[13.8146393,48.6523716],[13.8147092,48.6523738],[13.8147478,48.6523291],[13.81469,48.6522381],[13.8147163,48.6521994],[13.8146405,48.6521215],[13.814696,48.6521003],[13.8147031,48.6520748],[13.8146122,48.6520302],[13.8146281,48.6519688],[13.8147001,48.6519585],[13.8147491,48.6519796],[13.8147618,48.6519642],[13.8147328,48.6519213],[13.8146691,48.6519014],[13.8146257,48.6518588],[13.8145752,48.6518365],[13.8145647,48.6518079],[13.8146516,48.6517878],[13.8146267,48.6517585],[13.8146412,48.6517352],[13.8145982,48.6517109],[13.8145773,48.6516793],[13.8145075,48.6516823],[13.8144954,48.6517141],[13.8144673,48.6517113],[13.8144788,48.6516649],[13.8144626,48.6516374],[13.8143951,48.6516052],[13.8144854,48.6515522],[13.8145361,48.6514854],[13.8144645,48.6514481],[13.8144116,48.6514603],[13.8143945,48.651441],[13.8144251,48.6514078],[13.8143785,48.6513497],[13.814423,48.6513462],[13.814448,48.6513711],[13.8144661,48.6513706],[13.8144568,48.6513368],[13.8144315,48.6513084],[13.8144849,48.6513073],[13.8144397,48.6512551],[13.8144012,48.6512494],[13.8144084,48.6512207],[13.814389,48.651208],[13.8143451,48.6512406],[13.814283,48.6512171],[13.8142601,48.6511972],[13.8142822,48.6511573],[13.8143369,48.651174],[13.8143688,48.6511615],[13.8143758,48.6510127],[13.814402,48.6509544],[13.8144009,48.6509138],[13.8144651,48.6508653],[13.8145057,48.6508609],[13.8145472,48.6508218],[13.8145194,48.6507946],[13.8145605,48.6507119],[13.8145018,48.6506843],[13.8144665,48.6506408],[13.8145114,48.6506132],[13.8145106,48.6505553],[13.8145565,48.6505486],[13.8146085,48.650571],[13.8146974,48.6505113],[13.814664,48.6504104],[13.8146117,48.6503783],[13.8145753,48.6503799],[13.8145616,48.6503646],[13.8145928,48.650354],[13.8145883,48.6503218],[13.8145293,48.6503113],[13.8144812,48.6503235],[13.8143364,48.650288],[13.8143074,48.6502399],[13.8143254,48.6502116],[13.8142765,48.6501712],[13.8142027,48.6501767],[13.8141565,48.6501097],[13.8142611,48.6499883],[13.8141616,48.6499437],[13.8141399,48.6499089],[13.8141586,48.6498757],[13.8140734,48.6498402],[13.8141296,48.6497816],[13.8141791,48.6497768],[13.8142443,48.6498099],[13.8142636,48.6497986],[13.8142346,48.6497547],[13.8142353,48.6497179],[13.8141824,48.6496838],[13.8140767,48.6496636],[13.8140973,48.6495949],[13.8142184,48.649511],[13.8142214,48.6494791],[13.814177,48.6494663],[13.8141996,48.6494294],[13.8143307,48.6494385],[13.8144264,48.6494006],[13.8144612,48.6494176],[13.8145493,48.6494375],[13.8145803,48.6494203],[13.814541,48.649365],[13.8144934,48.6493302],[13.8143468,48.6493405],[13.8143673,48.6492968],[13.814404,48.6492956],[13.8144433,48.6492689],[13.8143853,48.6492458],[13.814377,48.6492172],[13.8144095,48.6491469],[13.8145152,48.6491314],[13.8145354,48.6490885],[13.814487,48.649071],[13.8144901,48.6490688],[13.8145628,48.6490151],[13.814663,48.6489447],[13.8147583,48.6489448],[13.8147768,48.6489266],[13.8148258,48.6489631],[13.8148806,48.6489506],[13.8148871,48.6489362],[13.81487,48.6489269],[13.8149147,48.6488897],[13.8149196,48.6488417],[13.8149444,48.6488192],[13.8149733,48.648822],[13.8150343,48.6487867],[13.8151119,48.6487693],[13.8151816,48.648723],[13.8152513,48.6486689],[13.8153053,48.6486659],[13.8153267,48.6486693],[13.8154181,48.6486273],[13.8154208,48.6485782],[13.8154813,48.648554],[13.8155117,48.6485307],[13.8155611,48.6485042],[13.8155184,48.6484731],[13.815552,48.6484133],[13.8156873,48.6483155],[13.8156809,48.6482951],[13.8156904,48.6482813],[13.8157523,48.6482783],[13.8158154,48.6481979],[13.8157894,48.6481908],[13.8157978,48.6481654],[13.8158322,48.6481415],[13.8158406,48.6481265],[13.8158069,48.648097],[13.8158223,48.6480733],[13.8159162,48.648076],[13.8159993,48.6480109],[13.8160297,48.6480242],[13.8161371,48.6480179],[13.8161619,48.6479998],[13.8160972,48.6479553],[13.8161238,48.647931],[13.816194,48.6479477],[13.8162343,48.6479111],[13.8162218,48.6478793],[13.8161516,48.6478669],[13.8161886,48.6478392],[13.8162549,48.6478217],[13.8162597,48.6477533],[13.816266,48.6477078],[13.81625,48.6476441],[13.8162829,48.6475879],[13.8163202,48.6475831],[13.8164506,48.6475034],[13.8165564,48.6475101],[13.8165809,48.6474837],[13.8165437,48.6474625],[13.8166871,48.6473464],[13.8167811,48.6473537],[13.8168472,48.6473977],[13.8168844,48.6473955],[13.8169581,48.6473709],[13.8170275,48.6473785],[13.8170654,48.6473592],[13.817137,48.647357],[13.8174432,48.6471907],[13.8175625,48.6470286],[13.8176099,48.6469771],[13.8177032,48.6469192],[13.8177293,48.6468768],[13.8177724,48.6468437],[13.8177558,48.6467554],[13.8177751,48.6466583],[13.8177982,48.64664],[13.817902,48.6466215],[13.8180004,48.6465916],[13.818116,48.6465859],[13.818207,48.6465285],[13.818265,48.6465128],[13.8183079,48.6464697],[13.8184111,48.6464457],[13.8184825,48.6464457],[13.8185074,48.6464172],[13.8185477,48.6463951],[13.818585,48.6463567],[13.8185671,48.6463188],[13.818539,48.6463181],[13.8184766,48.6462871],[13.8184784,48.646249],[13.8184123,48.6462148],[13.8183257,48.6462023],[13.8182649,48.6461547],[13.8182793,48.6460645],[13.8183247,48.6460049],[13.8184036,48.6459807],[13.8183888,48.645941],[13.8184324,48.645894],[13.8184212,48.6457698],[13.818359,48.6456853],[13.8184027,48.6456648],[13.818373,48.6456468],[13.8182841,48.6456308],[13.8182898,48.6455949],[13.8183326,48.6455818],[13.8183845,48.6455448],[13.8185636,48.6455803],[13.8186514,48.64549],[13.8187047,48.645463],[13.8187506,48.6454003],[13.81871,48.6453411],[13.8187012,48.6452678],[13.8186329,48.6452299],[13.8186116,48.6451963],[13.818618,48.645162],[13.8186693,48.6451484],[13.8186802,48.6451348],[13.8186456,48.6451167],[13.8186733,48.6450833],[13.8186805,48.6450535],[13.818771,48.6450141],[13.818756,48.6449691],[13.8187369,48.6449547],[13.8187742,48.6448565],[13.8188304,48.6448346],[13.8188432,48.6448034],[13.818832,48.6447504],[13.8189337,48.6446735],[13.8190803,48.6447424],[13.8190897,48.6447671],[13.8190619,48.6447803],[13.8190606,48.644796],[13.8191215,48.6448549],[13.8192345,48.6449189],[13.8192241,48.6449469],[13.8192478,48.6449636],[13.8192873,48.6449718],[13.8193388,48.6449673],[13.819417,48.644975],[13.8194582,48.6449693],[13.8194631,48.6449632],[13.8195465,48.6449578],[13.819566,48.6449447],[13.8195627,48.6449223],[13.8195789,48.6449132],[13.8196138,48.6449135],[13.8196433,48.6448543],[13.8196898,48.6448268],[13.819688,48.6448002],[13.8196215,48.6447746],[13.8195774,48.6447326],[13.8196216,48.6446604],[13.8196305,48.644618],[13.8197521,48.6445456],[13.8197723,48.6445173],[13.8198379,48.6444913],[13.8198803,48.6444521],[13.8198794,48.6444325],[13.8199254,48.6444072],[13.8200222,48.6444062],[13.8200701,48.6443908],[13.8201042,48.6443963],[13.8202096,48.6443859],[13.8202467,48.6443432],[13.820309,48.6443312],[13.8203295,48.6443067],[13.820263,48.6442419],[13.8202649,48.6442064],[13.8202787,48.6442028],[13.8202949,48.6442208],[13.8203413,48.644214],[13.8203646,48.6441761],[13.8203554,48.6441544],[13.8202777,48.6440868],[13.8202505,48.6440515],[13.8202471,48.6440256],[13.8202842,48.6440206],[13.8203073,48.644009],[13.8204063,48.643996],[13.8204039,48.6439564],[13.820449,48.6439446],[13.8204839,48.6439201],[13.8203781,48.6438849],[13.8203428,48.6438972],[13.8203113,48.6438954],[13.8203014,48.6438648],[13.8202865,48.6438626],[13.8202891,48.6438458],[13.8203193,48.6438348],[13.8203415,48.6438126],[13.8203715,48.6438081],[13.8203986,48.6438216],[13.8204578,48.6438131],[13.8205003,48.6438254],[13.820487,48.6438494],[13.8205104,48.6438612],[13.8205963,48.6437966],[13.820612,48.6437741],[13.8207783,48.6436994],[13.8208191,48.6436554],[13.820793,48.6436145],[13.8208005,48.6435954],[13.8208629,48.643578],[13.8209104,48.6436157],[13.8209645,48.6436267],[13.8210629,48.6435865],[13.8210927,48.643628],[13.8211004,48.6436638],[13.8211647,48.6436794],[13.8212042,48.643651],[13.8212547,48.6436362],[13.8212801,48.6435947],[13.8213722,48.6435575],[13.8214071,48.6435595],[13.8214395,48.6435117],[13.8214955,48.6434839],[13.8215595,48.6434913],[13.8215788,48.6435259],[13.8215961,48.6435331],[13.8216777,48.643505],[13.8216896,48.6434689],[13.821721,48.643445],[13.8216968,48.6434055],[13.8217219,48.6433694],[13.8217641,48.6433042],[13.8218579,48.6432487],[13.8218868,48.6432671],[13.8219082,48.6433024],[13.8219538,48.6432999],[13.821983,48.6433399],[13.8220107,48.6433429],[13.8220584,48.6432992],[13.8220614,48.6432671],[13.8221204,48.6432422],[13.822194,48.643261],[13.8222859,48.643269],[13.8223322,48.6432507],[13.82236,48.6432097],[13.8223935,48.6431891],[13.8224159,48.6431582],[13.8224755,48.6431393],[13.8225048,48.6431113],[13.8225413,48.6431074],[13.822559,48.643094],[13.8226078,48.6430989],[13.8225703,48.6430658],[13.8226048,48.6430346],[13.8226765,48.6430288],[13.8227052,48.6430664],[13.8227381,48.6430626],[13.8228107,48.6430258],[13.8228321,48.6430343],[13.8228603,48.6430232],[13.8228707,48.6429757],[13.8229243,48.6430283],[13.8229698,48.6430354],[13.8229953,48.6429796],[13.8230181,48.6429706],[13.8230465,48.6429438],[13.8230952,48.642929],[13.8231241,48.6428896],[13.8231642,48.6428921],[13.8232139,48.6428613],[13.823226,48.6428402],[13.8232619,48.642836],[13.8232804,48.6427871],[13.823307,48.6427669],[13.8233429,48.6427685],[13.8233588,48.6427292],[13.8234058,48.6427385],[13.8234179,48.6427152],[13.8233734,48.6426895],[13.8233704,48.6426609],[13.8233364,48.6426478],[13.8233345,48.6426226],[13.8233734,48.6425952],[13.8233741,48.6425669],[13.8234002,48.6425597],[13.8234404,48.6426],[13.8235401,48.6425615],[13.8235775,48.6426107],[13.8236477,48.6426161],[13.8236807,48.6425999],[13.8236884,48.6425579],[13.8237125,48.6425522],[13.8236927,48.6425313],[13.8236652,48.6425251],[13.8236616,48.6425066],[13.823745,48.6424637],[13.8237096,48.6424485],[13.8236591,48.6423776],[13.8236705,48.6423611],[13.8236577,48.6423298],[13.8237263,48.6423025],[13.8237312,48.6423198],[13.8237624,48.642326],[13.823811,48.6423076],[13.8237965,48.6422565],[13.8237792,48.6422416],[13.8237985,48.6422082],[13.8238536,48.6422029],[13.8238899,48.6421886],[13.8239047,48.6421671],[13.8239369,48.6421546],[13.8239337,48.6421267],[13.8238917,48.6421293],[13.8238634,48.6421145],[13.8238225,48.642022],[13.8238369,48.6419892],[13.8238721,48.6419918],[13.8239314,48.6419514],[13.8239311,48.6419241],[13.8238479,48.641919],[13.8238325,48.6418662],[13.8238533,48.6418504],[13.8238944,48.6418527],[13.8239169,48.6418471],[13.8239557,48.6418136],[13.8239901,48.641832],[13.8240734,48.6417897],[13.8240635,48.6417383],[13.8240832,48.6417144],[13.824096,48.6416989],[13.8240761,48.6416556],[13.8240799,48.6416388],[13.8240276,48.6416282],[13.8239267,48.6416372],[13.8238696,48.6415859],[13.8239641,48.6415661],[13.8239572,48.6415173],[13.8239226,48.6415081],[13.8238541,48.641498],[13.8238199,48.6414489],[13.8237459,48.6414031],[13.8237365,48.6413661],[13.8237891,48.6413611],[13.8238069,48.641329],[13.8237974,48.641313],[13.8237494,48.6413024],[13.8237294,48.6412604],[13.8237652,48.6412185],[13.8237117,48.641172],[13.8237285,48.6411378],[13.8236785,48.6409913],[13.8236337,48.6409908],[13.823476,48.6409143],[13.8234447,48.6408879],[13.823369,48.6408936],[13.823347,48.6408384],[13.823319,48.6408076],[13.8232421,48.640782],[13.8231891,48.6407546],[13.8231368,48.640745],[13.8230754,48.640694],[13.8229692,48.6407131],[13.8229425,48.6406818],[13.8228964,48.6406524],[13.8228619,48.6406567],[13.8228538,48.6406251],[13.8229089,48.6405701],[13.8229565,48.640573],[13.822961,48.6405556],[13.8229074,48.6405026],[13.8226406,48.6404931],[13.8226039,48.6404711],[13.8226459,48.6404243],[13.8226885,48.6404086],[13.8226437,48.6403605],[13.822554,48.6403459],[13.8224741,48.6402872],[13.8225497,48.6402384],[13.8226091,48.6402367],[13.8225363,48.6401045],[13.8225987,48.6400818],[13.8225257,48.6400339],[13.8224277,48.6400135],[13.8223841,48.6399973],[13.8223297,48.6399967],[13.8222694,48.6399679],[13.8222398,48.6399666],[13.822213,48.6399781],[13.8220868,48.6399533],[13.8220041,48.6398995],[13.8219392,48.6397754],[13.8219711,48.6397457],[13.8220486,48.6397193],[13.8221134,48.6397308],[13.8221358,48.6397042],[13.8220275,48.6396433],[13.8219583,48.6396046],[13.8220137,48.6395377],[13.821974,48.6395059],[13.8218824,48.639525],[13.8218554,48.6395016],[13.821827,48.6394798],[13.8218362,48.6394447],[13.8219005,48.6394589],[13.8219065,48.6394452],[13.8218503,48.6393699],[13.8218053,48.6393537],[13.8218112,48.6393309],[13.8218808,48.6392813],[13.8218846,48.6392654],[13.8217744,48.6392555],[13.8217347,48.6392223],[13.8217813,48.6391146],[13.8219158,48.6390485],[13.82191,48.6390267],[13.8218385,48.6390189],[13.8217644,48.6389167],[13.821825,48.6388739],[13.8218214,48.6388611],[13.8218175,48.6388587],[13.8217622,48.638833],[13.8217751,48.6388168],[13.8217728,48.6387593],[13.8217429,48.6387291],[13.8217433,48.6387142],[13.8216795,48.6387218],[13.8216388,48.6387115],[13.8216509,48.6386877],[13.8217052,48.6386514],[13.8216459,48.6386214],[13.8217704,48.6385133],[13.8218288,48.6384851],[13.8218776,48.6385209],[13.821927,48.6385265],[13.8219659,48.6385067],[13.8219442,48.6384206],[13.8219674,48.6384059],[13.8219879,48.6383027],[13.8219646,48.6382826],[13.8219434,48.6382414],[13.8219197,48.6382269],[13.8217945,48.6382143],[13.8217342,48.6381268],[13.8218023,48.6381249],[13.8218127,48.6381457],[13.8218679,48.6381539],[13.8219185,48.6381354],[13.8219249,48.6380818],[13.8218955,48.6380534],[13.8218877,48.6379761],[13.8219226,48.6379645],[13.8219453,48.6379407],[13.8219442,48.6378859],[13.822078,48.6378771],[13.8221283,48.6378329],[13.8221005,48.637808],[13.8220691,48.6378105],[13.8220435,48.6377545],[13.8220144,48.6377327],[13.8220407,48.6376952],[13.8221162,48.6376834],[13.8221905,48.6376907],[13.8222064,48.6376537],[13.8221489,48.6376038],[13.8221739,48.6375767],[13.8222218,48.6375692],[13.8222298,48.6374911],[13.8222494,48.6374664],[13.8222948,48.637467],[13.8223526,48.6375302],[13.8223178,48.6375467],[13.8223244,48.6375755],[13.8223621,48.6375752],[13.8223879,48.6375492],[13.8224255,48.6375435],[13.8224673,48.6375815],[13.8224635,48.6376162],[13.8224917,48.6376161],[13.8225764,48.6375203],[13.8226197,48.6375123],[13.8227054,48.6374576],[13.8226881,48.6374201],[13.8226765,48.6373953],[13.8226774,48.6373523],[13.8226562,48.6373238],[13.8226759,48.6373025],[13.8227676,48.6373199],[13.8228031,48.6373526],[13.8227855,48.6373732],[13.8228411,48.6374253],[13.8228994,48.6374181],[13.822973,48.6374238],[13.8230908,48.6373916],[13.8231859,48.637336],[13.8232094,48.6372726],[13.823259,48.6372628],[13.8233088,48.6372726],[13.8234816,48.6372814],[13.8235655,48.6372541],[13.823601,48.6372178],[13.8236332,48.6371071],[13.8236704,48.6371077],[13.8236959,48.6371123],[13.8237664,48.6371027],[13.8237673,48.6370586],[13.8238461,48.6369926],[13.8238353,48.6369606],[13.8238639,48.636933],[13.8240378,48.6369413],[13.8240614,48.6369531],[13.8241458,48.636953],[13.8242066,48.636971],[13.8242489,48.6369433],[13.824258,48.6369195],[13.8243105,48.6369066],[13.8243915,48.6369156],[13.8244329,48.6369401],[13.8244918,48.6369347],[13.8245222,48.6368889],[13.8244867,48.6368572],[13.8245,48.6368193],[13.8244862,48.6367591],[13.8245184,48.6367015],[13.8245813,48.636676],[13.8246561,48.6366684],[13.8246613,48.6367012],[13.8248243,48.636647],[13.8248268,48.6366717],[13.8248575,48.6366679],[13.8248858,48.6367373],[13.8249257,48.6367482],[13.8250162,48.636733],[13.8250325,48.636716],[13.825095,48.6367151],[13.8251124,48.6366968],[13.8250554,48.6366692],[13.8250483,48.6366221],[13.825089,48.6365804],[13.825186,48.6365282],[13.8251882,48.6364739],[13.8252269,48.6364531],[13.8252335,48.636427],[13.8252106,48.6364043],[13.8252101,48.6363684],[13.82526,48.636353],[13.8253048,48.6363034],[13.8252881,48.6362447],[13.8253153,48.6362177],[13.8253536,48.6362245],[13.8254062,48.6362222],[13.8255237,48.6361897],[13.8255523,48.6361712],[13.8256634,48.6361534],[13.8256996,48.6361316],[13.8256516,48.6360177],[13.8256034,48.6359848],[13.8256066,48.6359659],[13.825741,48.6358878],[13.8258065,48.6359011],[13.8258805,48.635888],[13.8259346,48.6359178],[13.8260418,48.6359231],[13.8260647,48.6358947],[13.8260561,48.6357999],[13.8260208,48.6357874],[13.8259254,48.6357984],[13.8258924,48.6357456],[13.8259081,48.6357259],[13.8258551,48.6356208],[13.8259195,48.6355565],[13.825868,48.6355401],[13.8258901,48.6355115],[13.8259396,48.6355058],[13.8259756,48.6355371],[13.8260465,48.6355394],[13.8261236,48.635498],[13.8261158,48.6354724],[13.8260613,48.6354549],[13.8260718,48.6354258],[13.8260941,48.6354221],[13.8261438,48.6353448],[13.8262373,48.6353181],[13.8262416,48.6352998],[13.8262021,48.6352448],[13.8261821,48.6352344],[13.8261733,48.6351979],[13.8262037,48.6351622],[13.8262672,48.6351294],[13.8263269,48.63512],[13.8263014,48.6350649],[13.8262577,48.6350383],[13.8261759,48.6350118],[13.826168,48.6349949],[13.8261777,48.6349556],[13.8263302,48.6349072],[13.826413,48.6348705],[13.8264591,48.634872],[13.826491,48.6348513],[13.8264815,48.6347528],[13.826398,48.6346707],[13.826363,48.6346189],[13.8263095,48.6345703],[13.8263378,48.6345364],[13.8263547,48.6344992],[13.82636,48.6344874],[13.8264729,48.6344618],[13.8264795,48.6344297],[13.82646,48.6344033],[13.8264358,48.6343034],[13.8264315,48.6342813],[13.8263499,48.6342431],[13.8263399,48.6342102],[13.8263483,48.6341718],[13.8263397,48.6341409],[13.8262298,48.6340261],[13.8261812,48.6339984],[13.8261522,48.633926],[13.8261799,48.6338428],[13.8261317,48.6338046],[13.8260953,48.6337886],[13.826091,48.6337694],[13.826023,48.6337114],[13.8259703,48.6336783],[13.8259653,48.6336569],[13.8258374,48.6335838],[13.8257821,48.6335713],[13.8257298,48.6335145],[13.8256199,48.6334517],[13.8255913,48.6334227],[13.8254981,48.6333848],[13.8254847,48.6333129],[13.8254934,48.6332963],[13.8254495,48.6332459],[13.8254554,48.6332153],[13.8254282,48.6331802],[13.8254607,48.6331026],[13.8253878,48.6330677],[13.8253337,48.6329974],[13.8253477,48.6329723],[13.8253826,48.6329579],[13.825395,48.6329072],[13.8254243,48.6328754],[13.8254115,48.6328319],[13.8253715,48.6327906],[13.8254162,48.6327301],[13.8254807,48.6326832],[13.8254702,48.6326631],[13.8254214,48.6326502],[13.8253994,48.6326056],[13.8254152,48.632553],[13.8253943,48.6325268],[13.8254442,48.6324571],[13.825402,48.6324277],[13.8254255,48.6323934],[13.82543,48.6323681],[13.8254496,48.6323439],[13.8254445,48.6323152],[13.8255308,48.6322445],[13.8255548,48.6322369],[13.825557,48.6322057],[13.8255448,48.6321956],[13.8255461,48.6321849],[13.8255279,48.6321738],[13.8255286,48.6321435],[13.8256965,48.6320469],[13.8257574,48.6320311],[13.8257594,48.6319125],[13.8257893,48.6318827],[13.8257745,48.6318618],[13.8257327,48.6318642],[13.8256749,48.6318518],[13.8256414,48.6318259],[13.8256663,48.6317719],[13.8257849,48.6317029],[13.8257771,48.6315803],[13.8256092,48.6313421],[13.8255772,48.631204],[13.8255383,48.6311791],[13.825501,48.6310999],[13.8254692,48.631091],[13.8254265,48.6310205],[13.8254539,48.6309053],[13.8254904,48.63087],[13.82542,48.630786],[13.8254311,48.6307275],[13.8254279,48.6306955],[13.8254902,48.6306766],[13.8255703,48.6306086],[13.8257414,48.6305669],[13.825882,48.6304974],[13.8259336,48.6305091],[13.8259524,48.6305212],[13.8260024,48.6305174],[13.8260642,48.6304536],[13.8260804,48.6303845],[13.82612,48.6303069],[13.82612,48.6302079],[13.8261617,48.6301263],[13.8261666,48.630032],[13.8262007,48.6299624],[13.8261903,48.6298945],[13.8262178,48.6297949],[13.8262473,48.6297246],[13.8262271,48.6296643],[13.8262489,48.6295314],[13.8263657,48.629492],[13.8263668,48.6294624],[13.8264036,48.6294438],[13.8264318,48.6294],[13.8264356,48.6293644],[13.826504,48.6293218],[13.8265386,48.6293003],[13.8265732,48.6292788],[13.8266053,48.629259],[13.8266288,48.6292237],[13.8266373,48.6291858],[13.8266747,48.6291597],[13.8266877,48.6290979],[13.8267509,48.6290538],[13.8267492,48.6290155],[13.8266714,48.6289516],[13.826663,48.6289234],[13.8266117,48.6288459],[13.8265655,48.628837],[13.8264831,48.6288007],[13.8265022,48.6287709],[13.8265399,48.6287594],[13.8265539,48.6287401],[13.8265472,48.6287125],[13.826556,48.6286226],[13.8265164,48.6285518],[13.8265502,48.6284885],[13.8267913,48.6283593],[13.8268569,48.628388],[13.8268807,48.6283876],[13.8269132,48.6283686],[13.8269391,48.628325],[13.8270175,48.6282817],[13.8270323,48.6282628],[13.8271023,48.6282523],[13.8271013,48.6282355],[13.8270095,48.6281966],[13.8269877,48.6281691],[13.8269835,48.6281387],[13.8270271,48.6281076],[13.8270839,48.6281397],[13.8271022,48.6281363],[13.8271726,48.6280662],[13.8271725,48.6280356],[13.8271383,48.6280329],[13.8271259,48.6280035],[13.827128,48.6279753],[13.8270664,48.6279738],[13.8269958,48.6279655],[13.826965,48.6279501],[13.8269516,48.6279138],[13.8269551,48.6278921],[13.8270101,48.6278865],[13.8270355,48.6278978],[13.8270414,48.6278467],[13.8270112,48.627817],[13.8270033,48.6278162],[13.8269798,48.6278137],[13.8269326,48.627874],[13.8268618,48.6278745],[13.8268062,48.6278556],[13.8267298,48.6278571],[13.8267035,48.6278774],[13.8266288,48.6278142],[13.8266509,48.6277771],[13.8267611,48.6277524],[13.8268316,48.6277875],[13.8268811,48.6277782],[13.8269372,48.6277825],[13.8269655,48.6277184],[13.8269018,48.6276273],[13.8268317,48.6276159],[13.8268212,48.6275673],[13.8267887,48.6275587],[13.8267463,48.6275137],[13.8267594,48.6274875],[13.8267177,48.6274886],[13.8266718,48.6275106],[13.8266261,48.6275153],[13.8265234,48.6274915],[13.8264695,48.6275077],[13.8264118,48.6274848],[13.826385,48.6274402],[13.8264248,48.6274119],[13.8264351,48.627358],[13.8263683,48.6272878],[13.8263209,48.627268],[13.8262689,48.6272354],[13.8262409,48.6272208],[13.8261895,48.6272328],[13.8261665,48.6272226],[13.8261431,48.6271028],[13.8261528,48.6270759],[13.8261101,48.6269977],[13.826085,48.6269857],[13.8260279,48.6269878],[13.8259798,48.6270262],[13.8259685,48.6270632],[13.8259903,48.6270765],[13.8259795,48.6271049],[13.825931,48.6271033],[13.825884,48.6270808],[13.8258697,48.6270522],[13.8258049,48.6270385],[13.8258489,48.6269451],[13.825913,48.626915],[13.8259104,48.6269034],[13.8259053,48.6268797],[13.8257832,48.626843],[13.8257595,48.6268147],[13.8257115,48.6267971],[13.8256734,48.6267695],[13.8256493,48.626752],[13.8256147,48.6266973],[13.8256449,48.6266592],[13.8256091,48.6265954],[13.8255733,48.6265866],[13.8254607,48.6266037],[13.8253234,48.62665],[13.8252566,48.626588],[13.8252714,48.6265371],[13.8252252,48.6265174],[13.8251931,48.6264889],[13.8251408,48.6264976],[13.8250766,48.6264802],[13.8250645,48.6263847],[13.8248865,48.6263098],[13.8247838,48.6263047],[13.8246089,48.6262413],[13.824497,48.6261639],[13.8244811,48.6260979],[13.8245115,48.62609],[13.8245159,48.6259514],[13.8244334,48.6258864],[13.8243166,48.6258047],[13.8239229,48.6257041],[13.8239041,48.6256882],[13.8237177,48.6256575],[13.8234533,48.6254602],[13.82344,48.6253854],[13.8234741,48.6253325],[13.8235677,48.6253035],[13.8236465,48.625178],[13.8236099,48.6251455],[13.8235972,48.6250493],[13.8235803,48.6249733],[13.8235044,48.6249686],[13.8234808,48.624938],[13.8234749,48.6248797],[13.8234952,48.6248234],[13.8235489,48.6247238],[13.8235352,48.6246421],[13.823608,48.62453],[13.8237202,48.6244472],[13.8238204,48.6244208],[13.8240166,48.6242953],[13.8241924,48.6242143],[13.8243112,48.6240848],[13.824437,48.6239096],[13.8244494,48.6238923],[13.8244115,48.6235136],[13.8245245,48.6233272],[13.8245216,48.6232847],[13.8243986,48.6231929],[13.8242099,48.6231458],[13.8241859,48.6231119],[13.8241956,48.6230736],[13.8243102,48.6229733],[13.8243249,48.6229217],[13.8244947,48.6227911],[13.8245596,48.6225043],[13.8245076,48.622426],[13.8244742,48.6223134],[13.8245733,48.6221287],[13.8245559,48.6221122],[13.8245364,48.6221215],[13.824512,48.6221049],[13.8245889,48.621982],[13.8248501,48.6219216],[13.8248804,48.621903],[13.8250977,48.6218746],[13.8251667,48.621857],[13.8252304,48.6217766],[13.8252616,48.62169],[13.825245,48.6216821],[13.8253331,48.6216735],[13.8254167,48.621536],[13.8254648,48.6214857],[13.8254245,48.62144],[13.8253051,48.6213961],[13.8253001,48.6213654],[13.8253418,48.6213366],[13.8253721,48.6212751],[13.8253381,48.6212509],[13.8252408,48.6212004],[13.8251373,48.6211746],[13.825099,48.6210667],[13.8250437,48.6209819],[13.8251071,48.6209086],[13.8251847,48.6208039],[13.8253133,48.6207812],[13.825357,48.6207374],[13.8253552,48.6206742],[13.8252647,48.6206448],[13.8251733,48.6206347],[13.8250976,48.6205346],[13.8251317,48.6203612],[13.8251961,48.6202339],[13.8251555,48.6201428],[13.825117,48.6199364],[13.8251039,48.6198888],[13.8250604,48.6198523],[13.8250272,48.6197937],[13.8249776,48.6198129],[13.8249774,48.6198871],[13.8249049,48.6199312],[13.8247759,48.6199337],[13.8247378,48.619846],[13.8247741,48.6197901],[13.8247951,48.6197461],[13.8248493,48.6197226],[13.8249381,48.619755],[13.8251134,48.6196944],[13.8252138,48.619685],[13.8252587,48.6197183],[13.8252734,48.6196809],[13.8252725,48.6196311],[13.8252325,48.6195806],[13.8252343,48.6194983],[13.8252937,48.6194665],[13.8253165,48.6193918],[13.825294,48.6193675],[13.8252125,48.6193513],[13.8251435,48.6193607],[13.8251074,48.6193545],[13.8250199,48.6193948],[13.8249633,48.6194015],[13.8249287,48.6194135],[13.8248662,48.6193973],[13.8248542,48.6192711],[13.8247941,48.6192097],[13.8247948,48.6191833],[13.8249748,48.6191536],[13.8250559,48.6191205],[13.8251149,48.6191196],[13.8251481,48.6191673],[13.8251883,48.6191822],[13.825231,48.6191615],[13.8252829,48.6190667],[13.8253913,48.6190176],[13.8255401,48.6190364],[13.8255578,48.6189585],[13.8254637,48.6189116],[13.8253468,48.6189174],[13.8252764,48.6189515],[13.8252253,48.618934],[13.8251506,48.6188829],[13.8250655,48.6188718],[13.8250008,48.6188196],[13.8249508,48.6187235],[13.825009,48.6186774],[13.8250518,48.618682],[13.8252248,48.6187984],[13.8253142,48.6188073],[13.8253696,48.6187921],[13.8254734,48.6186825],[13.8255638,48.6186505],[13.8256961,48.6186554],[13.8257377,48.6186389],[13.8257622,48.6186212],[13.8257853,48.6186035],[13.8257897,48.6185762],[13.8257673,48.6185497],[13.8256453,48.6184479],[13.825636,48.6184216],[13.8256569,48.6183618],[13.8256168,48.6182729],[13.8255064,48.6182208],[13.8255067,48.6181698],[13.8255358,48.6181464],[13.8255591,48.6181017],[13.8255184,48.6180633],[13.825392,48.6180208],[13.8252469,48.6180558],[13.8251841,48.6180155],[13.8251494,48.617885],[13.8250971,48.6178411],[13.8250052,48.6178169],[13.8248909,48.6178181],[13.8247812,48.6178387],[13.8246753,48.6177996],[13.8242756,48.6178207],[13.824152,48.6178572],[13.8240957,48.6178469],[13.8240208,48.6178337],[13.8239982,48.6178115],[13.8239113,48.6177763],[13.8238858,48.6177906],[13.8237444,48.6176755],[13.8237521,48.6176317],[13.8237671,48.6175725],[13.823718,48.6175477],[13.8236902,48.617518],[13.8236273,48.6174858],[13.8234788,48.6175016],[13.8233866,48.6174912],[13.8232906,48.6175043],[13.8232371,48.6175307],[13.8231777,48.6175423],[13.8231386,48.6175652],[13.8230118,48.6175284],[13.8229691,48.6174734],[13.8229939,48.6173706],[13.8231128,48.6172984],[13.8232011,48.6173159],[13.8232428,48.6173047],[13.8232109,48.6172011],[13.8232918,48.6171127],[13.8233826,48.6170988],[13.8234356,48.6170617],[13.8234773,48.6169414],[13.8233753,48.6168343],[13.8232883,48.616743],[13.8231343,48.6167466],[13.8230807,48.6167734],[13.8230573,48.616759],[13.8230581,48.6167247],[13.8230283,48.6166875],[13.8230669,48.6166127],[13.8230494,48.6165576],[13.823065,48.6165115],[13.8230353,48.6164447],[13.8230131,48.6164037],[13.8229468,48.6163851],[13.8228886,48.6163896],[13.8227352,48.61634],[13.822642,48.6163423],[13.8225355,48.6163672],[13.8225062,48.6163614],[13.8222966,48.6162857],[13.8223804,48.616205],[13.8224481,48.616147],[13.8224534,48.616116],[13.8225507,48.6160653],[13.8226291,48.6160567],[13.8227466,48.615995],[13.8227545,48.6159476],[13.8225884,48.6158548],[13.8223397,48.6157494],[13.8222423,48.6157044],[13.8221666,48.6156693],[13.822093,48.6155865],[13.8221126,48.615552],[13.8223102,48.6154459],[13.8224018,48.6154484],[13.8224859,48.6155262],[13.8225405,48.6155654],[13.8226247,48.6155685],[13.8227065,48.615541],[13.8227471,48.6155414],[13.8228087,48.6155247],[13.8228782,48.6154681],[13.8228685,48.6154073],[13.8228267,48.6153553],[13.822743,48.6153293],[13.8227113,48.615335],[13.8225486,48.6152612],[13.8225165,48.6152153],[13.8223773,48.6151022],[13.8223544,48.6150204],[13.8223874,48.6149722],[13.8225388,48.6149347],[13.8226372,48.6149582],[13.8227648,48.6149216],[13.8227634,48.614841],[13.8227688,48.6147803],[13.8226867,48.6146865],[13.8225823,48.61465],[13.8225498,48.6146045],[13.8226161,48.6145501],[13.8225907,48.6144481],[13.8226434,48.6143632],[13.8225958,48.6142318],[13.8224392,48.6142134],[13.8224025,48.6141834],[13.8222981,48.6141719],[13.8221056,48.6141164],[13.8220396,48.6140845],[13.8217293,48.6140387],[13.8215214,48.6139622],[13.8214827,48.6139491],[13.821446,48.6139223],[13.8214062,48.6139129],[13.8213392,48.6138625],[13.8212054,48.6138083],[13.8210622,48.6137463],[13.8209198,48.6136493],[13.8207856,48.6135954],[13.8206828,48.6135333],[13.8205813,48.6135013],[13.820405,48.6134517],[13.8203583,48.613429],[13.8202179,48.6134263],[13.8199714,48.6133823],[13.8197286,48.6133177],[13.8195758,48.6133053],[13.8193182,48.6133298],[13.8191181,48.6133526],[13.8190064,48.6133776],[13.8188841,48.6134263],[13.8187302,48.6134536],[13.8186222,48.6134698],[13.8184425,48.6134937],[13.8183102,48.6135301],[13.8182674,48.6135603],[13.8181678,48.6136035],[13.8180288,48.6137079],[13.8180172,48.6137254],[13.8179945,48.613782],[13.817912,48.6138339],[13.8178193,48.6138609],[13.8177141,48.6138751],[13.81768,48.6138972],[13.8176464,48.6139666],[13.8175987,48.6140809],[13.8175614,48.6141953],[13.8175324,48.6143205],[13.8175508,48.6144201],[13.8175509,48.6145345],[13.8175312,48.6145968],[13.8174789,48.6146524],[13.8174253,48.6146771],[13.8173651,48.6146819],[13.8172607,48.6146573],[13.8171979,48.6146296],[13.8171916,48.6146138],[13.8171426,48.6145564],[13.8171375,48.6144978],[13.8171162,48.6144366],[13.8170858,48.6144012],[13.817042,48.6143904],[13.8169883,48.6144054],[13.8168542,48.6144565],[13.8169284,48.6145028],[13.816935,48.6145523],[13.8169023,48.6145857],[13.8168176,48.6146115],[13.8167503,48.6146083],[13.8165949,48.6145975],[13.8165214,48.6145638],[13.8164253,48.6145053],[13.816419,48.6144872],[13.8163738,48.6144711],[13.8162828,48.6144811],[13.8162183,48.6145113],[13.8162095,48.6145298],[13.8162187,48.6145585],[13.8161914,48.614591],[13.8161573,48.6145917],[13.8160826,48.6145952],[13.816008,48.6145734],[13.8159798,48.6145238],[13.8159641,48.6144563],[13.8159809,48.6143755],[13.8160049,48.6143232],[13.8159784,48.6142889],[13.8159112,48.6142563],[13.8156939,48.6141851],[13.8156103,48.6141843],[13.815509,48.6140688],[13.8155209,48.6140195],[13.8156475,48.6139281],[13.8157242,48.6138683],[13.8157271,48.6137824],[13.8156717,48.6137379],[13.8155621,48.6137292],[13.8154475,48.6136518],[13.8152737,48.6134802],[13.8152389,48.6134683],[13.8151354,48.6134622],[13.8150379,48.6134198],[13.8148697,48.6134334],[13.8148229,48.6134523],[13.8147879,48.613424],[13.8148145,48.6132638],[13.8147944,48.6131832],[13.8147393,48.6131489],[13.8147074,48.613108],[13.8145722,48.6130722],[13.8145481,48.613042],[13.8144748,48.6128367],[13.8144885,48.6127726],[13.8144115,48.6125341],[13.8143796,48.6124972],[13.8143601,48.6124086],[13.8143907,48.6123638],[13.8144752,48.612311],[13.8145672,48.612208],[13.8145585,48.6121697],[13.8144703,48.6120855],[13.8143757,48.6120785],[13.8143158,48.6121576],[13.8142462,48.6121994],[13.814215,48.6122555],[13.8141595,48.6122641],[13.8141012,48.6122463],[13.8141009,48.6121406],[13.8141729,48.611959],[13.8142515,48.6119147],[13.8143662,48.6119226],[13.8144351,48.6118912],[13.814416,48.6118781],[13.8144426,48.6118381],[13.8145771,48.6117816],[13.814634,48.6117968],[13.8146823,48.6118531],[13.8147619,48.6118949],[13.8148173,48.6118832],[13.8148832,48.6118181],[13.8148889,48.6117738],[13.8148493,48.611692],[13.8147415,48.6116342],[13.8145932,48.6115682],[13.8145353,48.6115824],[13.8144228,48.6115584],[13.814365,48.6114948],[13.8144538,48.6114178],[13.8144745,48.6113772],[13.8145658,48.611344],[13.8147322,48.6113147],[13.8148426,48.6112826],[13.8149837,48.6111877],[13.8150106,48.6111343],[13.8149701,48.6109609],[13.8150194,48.6107809],[13.8149982,48.6106992],[13.8149352,48.6106621],[13.8148386,48.6106591],[13.8147446,48.6106974],[13.8146973,48.6106666],[13.814656,48.6106044],[13.8146813,48.6105274],[13.8147364,48.610409],[13.8147042,48.61024],[13.8147136,48.6101958],[13.8148053,48.6101349],[13.8148374,48.6100854],[13.8148173,48.6100341],[13.8147342,48.6099884],[13.8144859,48.6098917],[13.8144442,48.6098301],[13.8144827,48.6097433],[13.8145561,48.6097112],[13.8146572,48.6096901],[13.8147424,48.6097],[13.8147967,48.6097002],[13.8148893,48.6096389],[13.8148191,48.6095766],[13.814725,48.6095573],[13.814331,48.6093503],[13.8143464,48.6093181],[13.8143011,48.6092206],[13.8142785,48.6090845],[13.8142268,48.6090306],[13.814171,48.6090146],[13.8140908,48.6090114],[13.8140732,48.608984],[13.8140515,48.6089144],[13.8137017,48.608811],[13.8134322,48.6087354],[13.8133483,48.6087145],[13.8132951,48.6087295],[13.8132128,48.6087296],[13.8130393,48.6087694],[13.8129434,48.6088075],[13.8127775,48.608861],[13.8126208,48.6088982],[13.8125772,48.6088906],[13.8125606,48.6088575],[13.812581,48.608825],[13.8126358,48.6087983],[13.8126563,48.6087528],[13.8126254,48.6087388],[13.8125545,48.6087538],[13.812549,48.6087748],[13.8125101,48.6087837],[13.8124751,48.6088185],[13.8124548,48.6088863],[13.8124273,48.6089765],[13.8123545,48.6090328],[13.8123152,48.6090946],[13.8122643,48.609103],[13.8122188,48.6091041],[13.8121704,48.6090558],[13.812122,48.6089885],[13.8121297,48.6089452],[13.812175,48.6089467],[13.8121962,48.608886],[13.8122136,48.6088457],[13.8121654,48.6087756],[13.8121,48.608698],[13.8120561,48.6086847],[13.8120174,48.6086957],[13.8119875,48.608744],[13.811976,48.6087793],[13.8119247,48.6088568],[13.8119403,48.6089167],[13.8119533,48.6089454],[13.8118814,48.6090589],[13.8117722,48.6090407],[13.8117666,48.608984],[13.811722,48.6089511],[13.8115907,48.6089153],[13.811565,48.6088804],[13.8115957,48.6087919],[13.8115024,48.608701],[13.8114184,48.6087242],[13.8113943,48.6087544],[13.8113547,48.6087629],[13.8113334,48.6086816],[13.811297,48.6086416],[13.8110836,48.6086484],[13.8109224,48.6086446],[13.8108454,48.6086297],[13.8107598,48.6086493],[13.8106897,48.6086518],[13.8106339,48.6086187],[13.810535,48.608597],[13.810444,48.6086097],[13.8103563,48.6086011],[13.8102228,48.6084949],[13.8101264,48.6084452],[13.8101119,48.6083824],[13.8101718,48.6083211],[13.8102442,48.6083207],[13.8103443,48.6083569],[13.8103938,48.6083607],[13.8104279,48.6083365],[13.8104064,48.6082647],[13.8104563,48.6082257],[13.8105574,48.6081842],[13.8107127,48.6081486],[13.8108424,48.6081124],[13.8109386,48.6081451],[13.8109811,48.6081296],[13.8109813,48.6080609],[13.8109354,48.6080102],[13.8109652,48.6079305],[13.811033,48.6079004],[13.8111495,48.6079208],[13.8112314,48.6079505],[13.8112961,48.6079873],[13.8113379,48.6079856],[13.8113755,48.6079577],[13.8113628,48.607947],[13.8113686,48.6078888],[13.8113448,48.6078153],[13.8113126,48.6077759],[13.8111627,48.6076505],[13.811095,48.6076],[13.8108898,48.6075167],[13.8107805,48.6074718],[13.810699,48.6073976],[13.8107185,48.6072643],[13.8107095,48.6072272],[13.8106571,48.6071897],[13.8106224,48.6071423],[13.8106306,48.6070741],[13.8105873,48.6070171],[13.8105264,48.6069498],[13.8104492,48.6069642],[13.8104252,48.6070119],[13.8104412,48.6070572],[13.8103765,48.6070668],[13.8103099,48.6069827],[13.810289,48.6069254],[13.8103019,48.6068549],[13.8103447,48.6068114],[13.8103544,48.6067589],[13.8103687,48.6067011],[13.8103577,48.6066683],[13.8103376,48.6066389],[13.8102877,48.6066258],[13.8102535,48.6066277],[13.8101674,48.6066488],[13.8101129,48.6066489],[13.810052,48.6066103],[13.8100227,48.6065498],[13.8100513,48.6065412],[13.8101442,48.6065534],[13.8102235,48.6065453],[13.8102683,48.6065171],[13.8102906,48.6063768],[13.8102451,48.6062302],[13.8101916,48.6061389],[13.8101471,48.6061256],[13.8101117,48.6060925],[13.8101317,48.6060445],[13.8101711,48.6059883],[13.8101341,48.6059109],[13.8100764,48.6058976],[13.809957,48.605752],[13.809873,48.6056702],[13.8097968,48.6056214],[13.809689,48.60561],[13.809654,48.6055452],[13.8096549,48.605499],[13.809584,48.6054656],[13.8094053,48.605397],[13.8092957,48.6054316],[13.8092527,48.6055296],[13.8091749,48.6055729],[13.8091122,48.6055663],[13.8090839,48.6055333],[13.8091082,48.6054675],[13.8091124,48.6054066],[13.8092076,48.6053185],[13.8090299,48.6053004],[13.8090136,48.6052879],[13.8089384,48.6052819],[13.8088744,48.6052654],[13.8088354,48.6052056],[13.8087818,48.6051683],[13.8087556,48.6051162],[13.8086328,48.6050627],[13.808589,48.6050719],[13.8085545,48.6050914],[13.8085519,48.6051526],[13.8084858,48.6051783],[13.8083695,48.6051986],[13.8082507,48.605155],[13.8082009,48.6051076],[13.8080928,48.6050427],[13.808071,48.6050513],[13.8080239,48.6050419],[13.8079614,48.6050489],[13.807957,48.6050685],[13.8079731,48.6050765],[13.8079262,48.6051204],[13.8078891,48.6051888],[13.8078359,48.6052138],[13.8077914,48.6052332],[13.8077,48.6052224],[13.8076047,48.6051616],[13.8074775,48.605068],[13.8073709,48.6049653],[13.8073658,48.6048749],[13.807324,48.6048401],[13.8072642,48.6047241],[13.8072766,48.6046536],[13.8073085,48.6045821],[13.8073307,48.6045431],[13.8074286,48.6044943],[13.8074857,48.6044804],[13.8075115,48.6044597],[13.8077114,48.6044087],[13.8077879,48.6044125],[13.807843,48.6043533],[13.8078403,48.6043303],[13.8078847,48.6042531],[13.8079032,48.6042485],[13.8080523,48.604098],[13.8081333,48.6040664],[13.8082957,48.6039302],[13.8083344,48.6038933],[13.8083422,48.6037781],[13.8083625,48.6036991],[13.8084043,48.6036909],[13.8084436,48.6036584],[13.8084559,48.6035774],[13.8083836,48.6035295],[13.8083463,48.6035173],[13.8082074,48.6034057],[13.8081351,48.6032867],[13.8081056,48.6032478],[13.8081506,48.6031832],[13.8082299,48.6031943],[13.8083873,48.6033283],[13.8084809,48.6033699],[13.8085486,48.6033695],[13.808668,48.6033169],[13.8087189,48.6032382],[13.8087229,48.6030994],[13.8087231,48.6030899],[13.8086669,48.6029579],[13.8086425,48.6028842],[13.8087083,48.6028064],[13.8086931,48.6027959],[13.8087129,48.6027432],[13.8087459,48.6025927],[13.8088167,48.602405],[13.8087821,48.6023928],[13.8087751,48.6022462],[13.8087693,48.6020922],[13.8087513,48.6018382],[13.8087764,48.6016556],[13.8088051,48.601585],[13.8088519,48.6015696],[13.8089093,48.6015592],[13.8089983,48.6015713],[13.8090142,48.6016164],[13.8090554,48.6016521],[13.8091144,48.6016771],[13.8092518,48.6016703],[13.8092766,48.6016391],[13.8092497,48.6015217],[13.809208,48.6014218],[13.8091343,48.6013104],[13.8091014,48.6012325],[13.8090731,48.6012078],[13.8090167,48.601179],[13.8089538,48.6011715],[13.8089266,48.6011822],[13.8089008,48.6012175],[13.8088799,48.6012697],[13.8088356,48.6013171],[13.8087833,48.6013712],[13.8087286,48.6013451],[13.8085903,48.601339],[13.8084889,48.6014033],[13.8084619,48.6014863],[13.808392,48.6014486],[13.8083487,48.6013974],[13.8084112,48.6013007],[13.80843,48.6011456],[13.8083975,48.6010825],[13.8084611,48.6010275],[13.8085992,48.6009303],[13.8086354,48.6008768],[13.8086089,48.6008429],[13.8085926,48.6007671],[13.8084316,48.6006636],[13.8083084,48.6006443],[13.8081663,48.600591],[13.8080873,48.6004809],[13.8080599,48.6004231],[13.808086,48.6003025],[13.8081355,48.6002688],[13.8083192,48.600187],[13.8083379,48.6002047],[13.8084291,48.6002091],[13.8085161,48.600194],[13.8085655,48.6001453],[13.8085937,48.6000564],[13.8086712,48.5999876],[13.8086569,48.5999322],[13.808604,48.5999419],[13.8084573,48.5998809],[13.8083411,48.5998423],[13.8081049,48.5997946],[13.8078865,48.5997621],[13.8077637,48.5997268],[13.8076438,48.5996391],[13.8075118,48.5995296],[13.8074243,48.5995001],[13.8072107,48.5994564],[13.8070025,48.5994203],[13.8067733,48.5994376],[13.8066843,48.5994286],[13.806628,48.599371],[13.8065261,48.5993191],[13.8063292,48.5992377],[13.8061264,48.5991776],[13.8060903,48.5991454],[13.8059808,48.5991164],[13.8058467,48.599072],[13.8057288,48.59904],[13.8056699,48.5990532],[13.8056489,48.5990722],[13.8056131,48.5991043],[13.8055801,48.599164],[13.805536,48.5991638],[13.8053996,48.5991274],[13.8053271,48.5991289],[13.8052227,48.5991514],[13.8051768,48.5992006],[13.8051344,48.5992054],[13.8050778,48.5991767],[13.8050399,48.5990759],[13.805025,48.5989935],[13.8050458,48.5989303],[13.8051142,48.5988503],[13.8051692,48.5987536],[13.8051701,48.5986757],[13.8050824,48.5985856],[13.8049611,48.5985864],[13.8047645,48.598615],[13.8045466,48.5986113],[13.8044416,48.5986277],[13.8043663,48.5986722],[13.8042518,48.5986994],[13.8040465,48.5986914],[13.803802,48.598657],[13.8037354,48.5986186],[13.8035973,48.598583],[13.8034246,48.5985538],[13.8032415,48.5985514],[13.8030937,48.5985785],[13.8030104,48.598615],[13.8030003,48.5986082],[13.8029841,48.5986157],[13.8029102,48.5986176],[13.8028179,48.5985639],[13.8027851,48.5985754],[13.802769,48.5985588],[13.8025743,48.5984745],[13.8023817,48.598351],[13.8022386,48.5982535],[13.802202,48.5982337],[13.8020313,48.598212],[13.8019422,48.5981887],[13.8019274,48.5982082],[13.8018791,48.5981917],[13.8018032,48.5981417],[13.8017477,48.5980575],[13.8017355,48.5979905],[13.8016833,48.5978672],[13.8016203,48.5977355],[13.801622,48.5976601],[13.8015769,48.5975779],[13.8015781,48.5975586],[13.8015452,48.5975533],[13.8014908,48.5975145],[13.8014453,48.5975014],[13.801368,48.5974723],[13.8013473,48.5974573],[13.8013061,48.5974271],[13.8012712,48.5973938],[13.8012489,48.5973292],[13.8013601,48.5972801],[13.8013697,48.5972215],[13.8015117,48.5971563],[13.8015173,48.5971377],[13.8016739,48.5970558],[13.8018367,48.5970125],[13.8018426,48.5969752],[13.80181,48.5969263],[13.8017353,48.5968867],[13.80167,48.5968354],[13.8016947,48.596797],[13.801745,48.5967971],[13.8018222,48.5967799],[13.8018456,48.5968007],[13.8019344,48.5968065],[13.8020772,48.5967942],[13.8021456,48.5967526],[13.8021641,48.5967228],[13.8021429,48.5966567],[13.8021487,48.5966251],[13.8022028,48.5966056],[13.8022534,48.5965707],[13.8022939,48.5965064],[13.8022778,48.5964475],[13.8021476,48.5963781],[13.8020883,48.5963652],[13.801974,48.5962483],[13.8019266,48.5962337],[13.8018374,48.596271],[13.8018505,48.596314],[13.8018054,48.5963439],[13.8017227,48.5963306],[13.8016806,48.5962886],[13.8016455,48.5962817],[13.8016418,48.5963404],[13.8016833,48.5963945],[13.801682,48.596461],[13.8015452,48.5965257],[13.8014453,48.5964384],[13.8015017,48.5963478],[13.8014843,48.596276],[13.801429,48.5962418],[13.8013768,48.5961675],[13.8014651,48.5960948],[13.8015365,48.596086],[13.8015905,48.596101],[13.8017222,48.596092],[13.8017316,48.5961089],[13.8018551,48.5961127],[13.8019329,48.5961358],[13.8020313,48.5961256],[13.8021184,48.5960927],[13.8020873,48.5960426],[13.8020448,48.5960311],[13.8019841,48.5959805],[13.8019113,48.5959998],[13.8018596,48.5959592],[13.8018711,48.5959439],[13.8018221,48.5958455],[13.8018408,48.5957904],[13.8018252,48.5957386],[13.8016945,48.5956941],[13.8016465,48.5957044],[13.8016452,48.595717],[13.80158,48.5957736],[13.8015506,48.5957891],[13.8014882,48.5957973],[13.8014336,48.595844],[13.8014319,48.5958745],[13.8013829,48.5959146],[13.8013548,48.5959248],[13.8013345,48.5959423],[13.8012709,48.5959599],[13.8011962,48.5959242],[13.801157,48.5958801],[13.801163,48.5958627],[13.8012025,48.5958401],[13.8011854,48.5958126],[13.8011924,48.5957682],[13.801158,48.5957449],[13.8011039,48.5957359],[13.8010503,48.5956871],[13.8010308,48.5956842],[13.801055,48.5956197],[13.8010871,48.5955896],[13.8011373,48.5955733],[13.8011971,48.5955227],[13.8012302,48.5954528],[13.8012171,48.5954277],[13.8011207,48.59539],[13.8010865,48.5953993],[13.8010915,48.5954199],[13.8009865,48.5954403],[13.8008934,48.5954729],[13.8008702,48.5954437],[13.8008742,48.595432],[13.8008166,48.5953948],[13.8008384,48.5953355],[13.8008787,48.5953248],[13.8008966,48.595272],[13.8009202,48.5952685],[13.8009362,48.5952503],[13.800927,48.5952053],[13.8009035,48.5951913],[13.8008854,48.5951492],[13.8009028,48.595139],[13.8008961,48.5951061],[13.8008842,48.5951097],[13.8008588,48.5949685],[13.8008264,48.5949017],[13.8008062,48.5948955],[13.8008145,48.5948369],[13.8008894,48.5947464],[13.8010316,48.5946949],[13.8010939,48.5946675],[13.8011201,48.5946702],[13.8011248,48.5946569],[13.8012289,48.59461],[13.8013407,48.5945482],[13.8014422,48.5944853],[13.8014568,48.5944346],[13.8014191,48.5944245],[13.801534,48.5942048],[13.8015519,48.5941469],[13.8015948,48.5940874],[13.8016056,48.5940276],[13.8015817,48.5940148],[13.8014928,48.5938848],[13.8014647,48.5938054],[13.8015002,48.5937191],[13.8015103,48.5936484],[13.8014715,48.5935999],[13.8014072,48.5935502],[13.8013553,48.5934522],[13.8014438,48.5933198],[13.8015103,48.593204],[13.8015359,48.5931816],[13.8015459,48.5931259],[13.8015489,48.5930403],[13.8015633,48.5929317],[13.8015559,48.5929015],[13.8015644,48.5928095],[13.8015541,48.5927372],[13.8015338,48.5926659],[13.8015003,48.5926642],[13.8015009,48.5926443],[13.801515,48.5926372],[13.801516,48.5925904],[13.8015368,48.5925697],[13.8015888,48.592533],[13.8016561,48.5924708],[13.8017484,48.5924341],[13.8017978,48.5923507],[13.8018081,48.5922468],[13.8019231,48.5921189],[13.8021176,48.5920331],[13.8022048,48.5919982],[13.8022989,48.5919586],[13.8024455,48.5918781],[13.8024746,48.5918415],[13.8025576,48.5918289],[13.8026462,48.5917715],[13.8027059,48.59176],[13.8029179,48.591651],[13.8030212,48.5915563],[13.8030655,48.5915081],[13.8031863,48.5914134],[13.8035833,48.5912266],[13.8036963,48.5911834],[13.8037057,48.5911496],[13.8038403,48.5910678],[13.8038679,48.5910011],[13.8039599,48.5909522],[13.8041366,48.590917],[13.8044715,48.5908028],[13.8046602,48.5907511],[13.8046602,48.5907406],[13.8051536,48.5907068],[13.8054911,48.5906735],[13.8056395,48.5906267],[13.8057482,48.5906117],[13.8059682,48.5905944],[13.8060392,48.5906062],[13.8062277,48.5905833],[13.8064422,48.5905298],[13.8066817,48.5904572],[13.8067454,48.5904181],[13.8068877,48.590255],[13.8070205,48.5901109],[13.807048,48.5900555],[13.8070395,48.5900182],[13.8069778,48.5899668],[13.8069379,48.5899503],[13.8067621,48.5899118],[13.8065066,48.5898138],[13.8063411,48.5897387],[13.8061692,48.5897241],[13.8059734,48.5897314],[13.8058377,48.5897336],[13.8055233,48.5897025],[13.8054344,48.5896762],[13.8053251,48.5896011],[13.8052709,48.5895379],[13.8052265,48.5893907],[13.8051552,48.5890987],[13.8051205,48.5888972],[13.8051288,48.5888623],[13.8052317,48.5887121],[13.8053118,48.5886265],[13.8057389,48.5886075],[13.8058788,48.5886439],[13.8060862,48.5886313],[13.8062482,48.5885656],[13.8062787,48.5885077],[13.806271,48.588436],[13.8062002,48.5881497],[13.8061506,48.5880768],[13.8060808,48.5879988],[13.8059534,48.5879184],[13.8058865,48.5878675],[13.8057419,48.5877029],[13.8056841,48.5875513],[13.80566,48.5873785],[13.8057183,48.5870734],[13.8057469,48.5869866],[13.8057354,48.586977],[13.8058316,48.5867891],[13.8058823,48.586661],[13.8059876,48.5865189],[13.8061291,48.5863026],[13.8061169,48.5862684],[13.806291,48.5859737],[13.8063485,48.5859463],[13.8065288,48.5856161],[13.8066631,48.585324],[13.8067267,48.5852721],[13.8068238,48.5850872],[13.8069142,48.5849914],[13.8070866,48.5848221],[13.8071554,48.5847548],[13.807272,48.5845722],[13.8072865,48.5844378],[13.807261,48.5844254],[13.8072382,48.5842941],[13.8072579,48.5842683],[13.8072053,48.5839958],[13.8071644,48.5839747],[13.8071456,48.5839255],[13.8067678,48.5835742],[13.8066441,48.5834596],[13.8065998,48.5833821],[13.8065486,48.5833519],[13.8063814,48.5833026],[13.8063646,48.5833033],[13.80605,48.5832455],[13.806018,48.5832435],[13.8059467,48.5832037],[13.8058362,48.5831364],[13.805667,48.5829171],[13.8055055,48.5827054],[13.8053525,48.5825242],[13.8052478,48.5823048],[13.8051533,48.5821045],[13.8050428,48.581931],[13.8048981,48.5816859],[13.804855,48.5816095],[13.804832,48.5816059],[13.8048068,48.581503],[13.8048148,48.5814427],[13.8048376,48.5813894],[13.8048295,48.5813158],[13.8048713,48.5811215],[13.8049418,48.5809536],[13.8049919,48.5808019],[13.8049762,48.5806888],[13.8050453,48.5806159],[13.8051777,48.5805488],[13.805243,48.5805323],[13.8056148,48.5804827],[13.8056617,48.5804869],[13.8056762,48.580477],[13.8057628,48.5804432],[13.805822,48.5803603],[13.8058743,48.5802724],[13.8058646,48.5802617],[13.8059159,48.5802032],[13.8059239,48.5801544],[13.80594,48.5801367],[13.805936,48.5800941],[13.805966,48.5800115],[13.805961,48.5799447],[13.8059349,48.5798419],[13.805889,48.5797605],[13.8058358,48.5797158],[13.8056655,48.579596],[13.8055275,48.5795399],[13.8052507,48.5794473],[13.8052359,48.5794278],[13.80513,48.5793926],[13.8050469,48.5793754],[13.8048296,48.5792619],[13.8048306,48.579247],[13.8046552,48.5791421],[13.8045776,48.5791153],[13.8044967,48.5791062],[13.8043307,48.5789549],[13.8042777,48.5789293],[13.8041443,48.5788262],[13.8041298,48.5787905],[13.8039739,48.5786754],[13.8039578,48.5786408],[13.8038929,48.5785831],[13.8038174,48.5784651],[13.8037306,48.5783096],[13.8036883,48.5781625],[13.8037044,48.578135],[13.8036631,48.5780135],[13.8036196,48.5778306],[13.8035629,48.5776838],[13.803459,48.5775485],[13.8034264,48.5775369],[13.8034067,48.5774483],[13.8034216,48.5773862],[13.8033557,48.5772788],[13.803326,48.577272],[13.8032806,48.5772344],[13.8032846,48.5772167],[13.8031861,48.5771253],[13.8031035,48.5770614],[13.803062,48.5769789],[13.8029936,48.5768893],[13.802974,48.5768776],[13.8028941,48.5767662],[13.8028861,48.576625],[13.8027897,48.5764909],[13.802779,48.5764341],[13.8027509,48.5763897],[13.8027261,48.5763034],[13.8026917,48.5762257],[13.8026123,48.5760828],[13.8025662,48.5759895],[13.8025506,48.5758537],[13.8025651,48.5757948],[13.8025551,48.5757309],[13.8025772,48.5756524],[13.8025966,48.5756284],[13.8026368,48.5754839],[13.8026068,48.5753862],[13.8026061,48.5753222],[13.8025463,48.5752145],[13.802547,48.5751617],[13.8025227,48.5751556],[13.8024779,48.5750259],[13.8024152,48.574958],[13.8023666,48.5748893],[13.8022996,48.5748227],[13.8022721,48.5748077],[13.8021946,48.574723],[13.802023,48.5746647],[13.8019293,48.5746425],[13.8018389,48.5746036],[13.8017008,48.5745304],[13.8017,48.5745218],[13.8015955,48.5744762],[13.8014774,48.5744066],[13.8014259,48.574382],[13.8013372,48.5743545],[13.8011375,48.5742824],[13.8011098,48.5742991],[13.8010409,48.5743016],[13.8009694,48.5742668],[13.8008519,48.5741661],[13.8008327,48.5741069],[13.8008124,48.5740597],[13.8008871,48.5738821],[13.8009471,48.5738263],[13.8009888,48.5737703],[13.8009987,48.5737189],[13.8009888,48.5736879],[13.8009246,48.5735989],[13.8007809,48.5735266],[13.8006913,48.5734726],[13.8006011,48.5733932],[13.8004891,48.5733338],[13.8004706,48.5733192],[13.8003623,48.5732848],[13.8002698,48.573245],[13.8001689,48.5732174],[13.7999446,48.5731577],[13.7998131,48.5731456],[13.7994093,48.5730795],[13.7991071,48.5730418],[13.7988535,48.5730359],[13.798625,48.5730167],[13.7982907,48.5729792],[13.7979596,48.5729405],[13.7977034,48.5729358],[13.7974937,48.5729123],[13.7973557,48.5729165],[13.7971369,48.5729141],[13.7970599,48.5729118],[13.7969794,48.5728936],[13.7969506,48.5729039],[13.7967282,48.5728691],[13.796457,48.5728089],[13.7962072,48.5727582],[13.7960016,48.5726879],[13.7958142,48.5725762],[13.7956388,48.5723609],[13.7955691,48.5721769],[13.7955272,48.5721754],[13.79549,48.5720426],[13.7953635,48.5719045],[13.7952689,48.571882],[13.7952427,48.5718952],[13.7952529,48.5719577],[13.7950467,48.5721293],[13.7947055,48.5722948],[13.7945477,48.5724528],[13.794419,48.5725469],[13.7942891,48.572556],[13.7940637,48.572516],[13.7938098,48.5725715],[13.7936193,48.5725769],[13.7935565,48.5725537],[13.7933966,48.5724331],[13.7931447,48.5723061],[13.7928865,48.5722257],[13.7927039,48.5721754],[13.7919771,48.5720289],[13.7919392,48.5720421],[13.7916798,48.5720046],[13.7914178,48.5719707],[13.791113,48.5719366],[13.7906726,48.5719476],[13.7905222,48.5719146],[13.7903694,48.5718639],[13.7902715,48.5717919],[13.7902963,48.5716768],[13.7902824,48.5715849],[13.7903198,48.5713543],[13.7902932,48.5712598],[13.7901673,48.5710994],[13.7901358,48.5710744],[13.7900165,48.5710149],[13.7899143,48.5708833],[13.7899058,48.570826],[13.7898694,48.5707891],[13.7898938,48.5706544],[13.7899353,48.570521],[13.7899272,48.5704507],[13.7898923,48.570401],[13.7898365,48.570245],[13.7897974,48.5701805],[13.7898304,48.5700568],[13.7897065,48.5699521],[13.7896509,48.5698801],[13.7895558,48.5698028],[13.7894067,48.5696656],[13.7893304,48.569565],[13.7892942,48.5694872],[13.7892486,48.569392],[13.7891689,48.5693315],[13.789034,48.5691897],[13.7889522,48.5691391],[13.7888897,48.5690994],[13.7887984,48.5689989],[13.7887752,48.5689252],[13.788756,48.5689223],[13.7886673,48.5688578],[13.7885957,48.5686618],[13.7885901,48.5685969],[13.7885288,48.5685245],[13.7884225,48.5684664],[13.788401,48.5684415],[13.7883179,48.5684123],[13.7881777,48.5683261],[13.7879876,48.5682861],[13.7877157,48.5682543],[13.7875777,48.5682579],[13.7873952,48.5682499],[13.7873831,48.5682321],[13.7873016,48.5682307],[13.7872785,48.5682392],[13.7872307,48.5682189],[13.7871149,48.568115],[13.7870715,48.5679902],[13.7869885,48.5678991],[13.7867863,48.5677752],[13.7866388,48.5677831],[13.7865772,48.5677639],[13.7862725,48.5677481],[13.7859522,48.567689],[13.7858308,48.5676607],[13.7854927,48.5676113],[13.7853197,48.56757],[13.7850912,48.5675656],[13.7849862,48.5675152],[13.7848746,48.5675034],[13.7846459,48.5674121],[13.7845963,48.567357],[13.7845346,48.567271],[13.7844592,48.5672522],[13.7845185,48.5672107],[13.7844566,48.5671203],[13.7844555,48.5670624],[13.7844079,48.5669823],[13.7842929,48.5669194],[13.7842396,48.566924],[13.7841752,48.566885],[13.7841038,48.5668818],[13.7839839,48.5668306],[13.7838976,48.5667057],[13.7838965,48.5666887],[13.7838507,48.5666223],[13.7838455,48.5665928],[13.7837313,48.566514],[13.7837099,48.5664856],[13.783675,48.5664714],[13.7835677,48.5663862],[13.7835205,48.5663339],[13.7834014,48.5662344],[13.7833719,48.5662344],[13.7832474,48.5661514],[13.7830165,48.5659637],[13.7826953,48.5657804],[13.7825691,48.5657431],[13.7824248,48.5657456],[13.7822791,48.5657903],[13.782161,48.5657941],[13.782018,48.5658167],[13.7819087,48.5657987],[13.7815773,48.5656714],[13.7813817,48.5655617],[13.7812102,48.5654103],[13.7811527,48.5653485],[13.7811014,48.5652307],[13.7810359,48.5651459],[13.7809422,48.564887],[13.7809505,48.5648548],[13.7809247,48.5646815],[13.7809351,48.5646356],[13.7809371,48.5644874],[13.7809257,48.5644641],[13.7810355,48.56426],[13.7810453,48.5642444],[13.7813315,48.5637888],[13.7814037,48.5633661],[13.7812053,48.5632436],[13.7811857,48.5632305],[13.7811293,48.5631952],[13.7810736,48.5631598],[13.7806981,48.5629212],[13.7806634,48.5628498],[13.7806249,48.5627708],[13.7805744,48.5626674],[13.7805127,48.5625391],[13.7805007,48.5625194],[13.7804409,48.5623921],[13.7804162,48.5623707],[13.7803946,48.562309],[13.7802014,48.5621365],[13.7799934,48.562018],[13.7798948,48.5619676],[13.7794373,48.5617705],[13.7792439,48.5617542],[13.7790755,48.5617518],[13.7786833,48.5616853],[13.7782998,48.5615767],[13.7780177,48.5614777],[13.7779284,48.5614193],[13.7777478,48.5613299],[13.7775938,48.5612111],[13.7776031,48.5612044],[13.7775542,48.5611551],[13.777521,48.5611373],[13.777438,48.5610683],[13.7773058,48.5608489],[13.7771756,48.5607033],[13.7770639,48.5606594],[13.7769721,48.5606572],[13.7768966,48.5606351],[13.7766947,48.560509],[13.7765548,48.5604224],[13.776378,48.5603214],[13.7761316,48.5601648],[13.7759261,48.5600226],[13.7757517,48.5598797],[13.7755779,48.5596977],[13.7754948,48.559448],[13.7754861,48.5592152],[13.7755305,48.5591279],[13.7755506,48.5590338],[13.7755428,48.5587373],[13.775443,48.5584151],[13.7753467,48.5582287],[13.7752334,48.5580421],[13.7749779,48.5578781],[13.7748327,48.5578628],[13.7746439,48.5579194],[13.7745622,48.5579544],[13.7744268,48.5579546],[13.7739721,48.5579908],[13.7738809,48.558005],[13.7734952,48.55796],[13.7733658,48.5579201],[13.773305,48.557858],[13.7732908,48.5576633],[13.7731837,48.5575073],[13.7730579,48.5573532],[13.7728817,48.5570786],[13.7727684,48.556837],[13.7725049,48.5565466],[13.7723565,48.5564198],[13.7721477,48.5562385],[13.7720919,48.5561632],[13.7720318,48.556104],[13.7719921,48.5560177],[13.7720114,48.5558756],[13.7721289,48.5557151],[13.7722148,48.5555413],[13.7723039,48.5554764],[13.7727088,48.5554495],[13.7729159,48.5554221],[13.7730799,48.5553763],[13.773263,48.5552822],[13.7732801,48.5552397],[13.7732022,48.5550568],[13.7730166,48.554924],[13.7728375,48.5548512],[13.772681,48.5547985],[13.7724647,48.5546542],[13.7723299,48.5545852],[13.7721147,48.5545458],[13.7720793,48.554508],[13.7719309,48.5544597],[13.7716922,48.5543647],[13.7714594,48.5542386],[13.7713797,48.554173],[13.771123,48.5540222],[13.7709336,48.5539282],[13.770739,48.5538305],[13.7706086,48.5537648],[13.7703236,48.5536573],[13.7701003,48.553588],[13.7699389,48.5535552],[13.7698978,48.5535605],[13.7697626,48.553526],[13.7694821,48.5534957],[13.7692303,48.5534839],[13.7689805,48.5534788],[13.7688306,48.5535004],[13.7687292,48.5535017],[13.7686927,48.553512],[13.7684977,48.5534733],[13.7684554,48.553503],[13.7681545,48.5536026],[13.7681141,48.5536439],[13.7681003,48.5537025],[13.7680712,48.5538162],[13.7680085,48.5539782],[13.7677472,48.5543443],[13.7676099,48.5545814],[13.767546,48.554754],[13.7676222,48.5548864],[13.7676785,48.5550627],[13.7676842,48.5551644],[13.7676098,48.5553228],[13.7675187,48.5554069],[13.7673664,48.5555129],[13.7672984,48.5555901],[13.767113,48.5559922],[13.7668624,48.5564151],[13.7666395,48.556772],[13.7665161,48.5570249],[13.7665005,48.5571242],[13.7665075,48.5571795],[13.766527,48.5572097],[13.7665464,48.5572106],[13.7665923,48.5572767],[13.7665772,48.5573429],[13.766554,48.5576529],[13.7665276,48.5577095],[13.7665317,48.5578884],[13.7664575,48.5581193],[13.7663318,48.5583051],[13.7662054,48.558403],[13.7658589,48.5587356],[13.7655199,48.5591085],[13.7653407,48.5592805],[13.7651587,48.5594269],[13.764929,48.5595921],[13.7646765,48.5597302],[13.7645099,48.5598188],[13.7643792,48.5599764],[13.7643612,48.5600283],[13.7643529,48.5602279],[13.7644006,48.5604033],[13.7643626,48.5605216],[13.7642896,48.5606068],[13.7642646,48.5606254],[13.7640452,48.560896],[13.7638031,48.5610803],[13.7635122,48.5613787],[13.7632876,48.5616984],[13.7631302,48.5619711],[13.7627721,48.5624004],[13.7626298,48.5626387],[13.7624623,48.5629287],[13.7623062,48.56314],[13.762109,48.5632171],[13.7617749,48.5636642],[13.7615139,48.563934],[13.761315,48.5641147],[13.7608768,48.5646701],[13.7607663,48.564818],[13.7607464,48.5648445],[13.7607399,48.5648532],[13.7607275,48.5648755],[13.7606616,48.5649518],[13.7602641,48.5654531],[13.7557138,48.5649814],[13.7556642,48.5649761],[13.7556261,48.5649611],[13.7555851,48.5649452],[13.7555499,48.5649314],[13.7557176,48.5647179],[13.7556501,48.5647251],[13.7556194,48.5646853],[13.755565,48.5646587],[13.7555804,48.5646376],[13.7554976,48.5646057],[13.7554685,48.5645947],[13.7554213,48.564612],[13.7552418,48.5645677],[13.7551078,48.5645485],[13.7551103,48.5645347],[13.7551374,48.5645093],[13.7551001,48.5644949],[13.7550919,48.5644715],[13.7551041,48.5644417],[13.7550999,48.5644009],[13.7551568,48.5643451],[13.7551409,48.564304],[13.7552103,48.5643097],[13.7552138,48.5642804],[13.7551669,48.5642808],[13.7551215,48.5642651],[13.7550813,48.5642668],[13.7550332,48.5642485],[13.7549891,48.564264],[13.7549489,48.5642361],[13.7549079,48.5642344],[13.7548318,48.5641563],[13.7547612,48.5641194],[13.7547621,48.5641028],[13.7547122,48.5640891],[13.7545673,48.5639636],[13.7546849,48.5638634],[13.75462,48.5638355],[13.7545261,48.5637516],[13.7545132,48.5636949],[13.7544376,48.5636953],[13.7543791,48.5636608],[13.754343,48.5636347],[13.754197,48.5635879],[13.7541587,48.5635973],[13.7540684,48.5635717],[13.7540078,48.5634885],[13.7540202,48.5633817],[13.7540726,48.5632849],[13.7541198,48.5631848],[13.7541545,48.5631617],[13.7541575,48.5631072],[13.7541781,48.5630687],[13.7541761,48.5630204],[13.7541586,48.5630048],[13.7541322,48.5629667],[13.7540386,48.5629187],[13.7539468,48.5628785],[13.7538393,48.5628552],[13.7538552,48.56282],[13.7538523,48.5627897],[13.7538663,48.5627616],[13.7538664,48.5627274],[13.7539472,48.5627114],[13.7539695,48.5626912],[13.7539494,48.5626316],[13.7538998,48.56256],[13.7538264,48.5625195],[13.7538176,48.5624893],[13.7537663,48.5624266],[13.7537635,48.5624051],[13.7537405,48.5623637],[13.7536962,48.5623324],[13.7536624,48.5622868],[13.7536181,48.5622545],[13.7535194,48.5622307],[13.7534671,48.5622255],[13.753406,48.5621857],[13.753372,48.562153],[13.7533434,48.5621454],[13.7532989,48.5621519],[13.7532597,48.5621219],[13.7532567,48.5620906],[13.7532779,48.5620753],[13.7532782,48.5620347],[13.7532594,48.5619767],[13.7532694,48.5619074],[13.7532597,48.5618758],[13.7531888,48.5618263],[13.7531777,48.5617809],[13.753093,48.5616801],[13.752978,48.561548],[13.7529424,48.5614773],[13.7529618,48.5614352],[13.7529262,48.5613702],[13.752738,48.5612385],[13.7525348,48.5610595],[13.7525108,48.5610453],[13.7522506,48.5608916],[13.7520669,48.5607581],[13.752016,48.5606075],[13.7520219,48.5604905],[13.7521031,48.5604065],[13.7521038,48.5603688],[13.7520937,48.5603455],[13.7521195,48.5603101],[13.7521016,48.5602817],[13.7520624,48.5602513],[13.7520465,48.5602003],[13.7519982,48.5601566],[13.7519942,48.5601218],[13.7519541,48.5600897],[13.7518933,48.5600861],[13.7518818,48.5600612],[13.7518408,48.5600318],[13.7518073,48.560026],[13.7517905,48.5600007],[13.7518137,48.559978],[13.7517576,48.5599408],[13.7517588,48.5599051],[13.7517414,48.5598556],[13.7517025,48.5597392],[13.7516824,48.5595252],[13.7516617,48.559403],[13.7516088,48.5592085],[13.7515692,48.5591308],[13.7514944,48.559058],[13.7512774,48.5588707],[13.7511891,48.5587173],[13.7509593,48.5585801],[13.7507982,48.5584688],[13.7507443,48.5584145],[13.7506525,48.5582417],[13.7505724,48.558165],[13.7504917,48.5581132],[13.7504312,48.5579729],[13.7504856,48.5576676],[13.7502255,48.5574308],[13.7501177,48.5573598],[13.7499762,48.5571348],[13.7497719,48.5569317],[13.7497323,48.5568911],[13.7497182,48.5568815],[13.7495778,48.5567868],[13.7492926,48.5567117],[13.74913,48.5566925],[13.7489899,48.556652],[13.748912,48.5566294],[13.7488253,48.5565842],[13.7486006,48.5566477],[13.7483755,48.5566979],[13.7480663,48.5567388],[13.748051,48.556683],[13.747993,48.5565303],[13.7479148,48.5563624],[13.7477718,48.5561121],[13.7477149,48.5560066],[13.7479462,48.5558098],[13.7479808,48.555744],[13.7480394,48.555699],[13.7481034,48.5556808],[13.7481921,48.5555858],[13.7482903,48.5554471],[13.7484469,48.5552888],[13.7485251,48.5551797],[13.7487026,48.554996],[13.7488588,48.5548193],[13.7491791,48.5545171],[13.7492876,48.5544773],[13.7493143,48.5544473],[13.7493415,48.554361],[13.7493573,48.5542522],[13.7493031,48.5539909],[13.7490733,48.5540414],[13.7489306,48.5540334],[13.7486017,48.5540687],[13.7478365,48.5541911],[13.7476124,48.5541911],[13.747467,48.5539642],[13.7473078,48.5537799],[13.7470529,48.5535145],[13.747011,48.5534708],[13.7468163,48.5532819],[13.7467438,48.5530935],[13.7466583,48.5528809],[13.7466631,48.5526717],[13.7466623,48.5526472],[13.7466561,48.5524731],[13.7466555,48.5524655],[13.7466535,48.5524086],[13.7466796,48.5524166],[13.7467609,48.552385],[13.7468271,48.5523732],[13.746861,48.5523599],[13.7468973,48.5523595],[13.7469022,48.5523776],[13.7469379,48.5524209],[13.7469579,48.5524207],[13.7469871,48.552406],[13.7471568,48.5524047],[13.7471698,48.5523669],[13.7472361,48.552372],[13.747252,48.5523587],[13.747287,48.5523614],[13.7473308,48.5523805],[13.7474122,48.5523719],[13.7474365,48.5523812],[13.7474352,48.5524004],[13.7474849,48.5524114],[13.7474638,48.5523858],[13.7474929,48.5523739],[13.7475216,48.5523857],[13.7475386,48.5523543],[13.7475202,48.5523308],[13.7475859,48.5523349],[13.7475906,48.5523515],[13.7476333,48.5523576],[13.7476236,48.5523948],[13.7476711,48.5523795],[13.7476968,48.5523608],[13.7476793,48.5523337],[13.7477479,48.5523355],[13.7477419,48.5523121],[13.7477817,48.5523079],[13.7478375,48.5523192],[13.7478813,48.5522839],[13.7479252,48.5522984],[13.7479677,48.5522936],[13.7480275,48.5523084],[13.7480355,48.5523271],[13.7480061,48.5523249],[13.7480003,48.5523414],[13.7480268,48.5523656],[13.7480019,48.5523791],[13.7479954,48.5523908],[13.7480375,48.5524059],[13.7480968,48.5524042],[13.7481385,48.5523573],[13.7482002,48.5523888],[13.7482,48.5523519],[13.7482293,48.5523439],[13.7483231,48.5523799],[13.7483446,48.5523528],[13.7483944,48.5523552],[13.7484255,48.5523066],[13.748613,48.5523295],[13.7486867,48.5523319],[13.7488097,48.5523631],[13.7489052,48.5523686],[13.7489255,48.5523559],[13.748886,48.5523248],[13.7490122,48.5523327],[13.749088,48.5523744],[13.7491274,48.5523654],[13.7491588,48.5524009],[13.7492312,48.5524172],[13.7492314,48.5523897],[13.7492667,48.5523607],[13.7493038,48.552363],[13.7493018,48.5523946],[13.7493945,48.552384],[13.749482,48.5523404],[13.749583,48.5523487],[13.7496252,48.5523691],[13.7496684,48.5523736],[13.749691,48.5523969],[13.7496555,48.5524267],[13.7496898,48.5524786],[13.7497347,48.5524969],[13.7498062,48.5525061],[13.7499854,48.552547],[13.7500005,48.5525505],[13.7501422,48.552583],[13.7503149,48.5525944],[13.750532,48.5526169],[13.7508312,48.5526338],[13.7512527,48.552649],[13.7513273,48.5527169],[13.7514499,48.5527322],[13.7514793,48.5527355],[13.7515059,48.5527386],[13.751549,48.5527435],[13.7515526,48.5527423],[13.7515824,48.5526973],[13.7516358,48.5526662],[13.7516867,48.5526621],[13.7518791,48.5526466],[13.7519127,48.5526306],[13.7519226,48.5526015],[13.7519155,48.5524826],[13.7520605,48.5524937],[13.7520761,48.5524949],[13.7521832,48.5524388],[13.7523284,48.5524241],[13.7524813,48.552398],[13.7527116,48.5522994],[13.7527536,48.5523051],[13.7532394,48.5521153],[13.753557,48.5520018],[13.7537255,48.5519023],[13.7539612,48.5516463],[13.7540473,48.5515977],[13.7542786,48.5515505],[13.7544345,48.5515401],[13.7545794,48.5515167],[13.7546149,48.5515297],[13.7546456,48.5515557],[13.7546835,48.5515496],[13.7546947,48.551493],[13.7546786,48.5514363],[13.7547058,48.5514091],[13.7547132,48.5513767],[13.7548477,48.5513381],[13.7547964,48.5512894],[13.754817,48.5512678],[13.7547857,48.5511863],[13.7548346,48.5511714],[13.7548599,48.5511572],[13.7547744,48.5511188],[13.7547609,48.5511369],[13.7546971,48.5511356],[13.7546808,48.5511159],[13.7546513,48.5511338],[13.7546326,48.5511328],[13.7546445,48.5510709],[13.7545585,48.5510528],[13.7545296,48.5510365],[13.7545137,48.5510045],[13.7544416,48.5509794],[13.754431,48.5509554],[13.7543414,48.5509042],[13.7542962,48.5508488],[13.7541724,48.5508692],[13.7541465,48.5508393],[13.7541116,48.5508345],[13.7540752,48.5508456],[13.7540412,48.5508228],[13.7539699,48.5508269],[13.7538886,48.5508547],[13.7538471,48.5508547],[13.7537956,48.5508266],[13.7537464,48.5508179],[13.7536708,48.550771],[13.7536306,48.550762],[13.7536062,48.5506974],[13.7536404,48.5506898],[13.7535958,48.55064],[13.7536167,48.5506258],[13.7535803,48.5505856],[13.7535634,48.5505914],[13.7535275,48.5506285],[13.7534843,48.5506384],[13.7534379,48.5506225],[13.7534616,48.5505717],[13.7534255,48.5505354],[13.7534104,48.5505015],[13.7533499,48.550468],[13.7532942,48.5504502],[13.7532561,48.5504637],[13.7532059,48.5504561],[13.7531422,48.5504595],[13.7531101,48.5504219],[13.7530755,48.5504081],[13.7530563,48.550374],[13.7530112,48.5503495],[13.7529665,48.5503475],[13.7529226,48.5502991],[13.7528473,48.5502065],[13.7525235,48.5500071],[13.7523364,48.5498343],[13.7521667,48.5497714],[13.7519629,48.5497071],[13.7518092,48.5496184],[13.7517687,48.5495948],[13.7517071,48.5494903],[13.7516977,48.5494745],[13.751573,48.5493788],[13.7515173,48.5493065],[13.7515325,48.5492478],[13.7515119,48.5492032],[13.751538,48.5491708],[13.7515219,48.5491018],[13.7515336,48.5490859],[13.7515187,48.5490618],[13.751524,48.5490254],[13.7514824,48.5489345],[13.7514131,48.5489204],[13.751332,48.5488097],[13.7513293,48.5487812],[13.7513517,48.548752],[13.7512846,48.5487063],[13.7512672,48.5486616],[13.7511551,48.548588],[13.7511097,48.5485872],[13.7510555,48.5485636],[13.7509779,48.5485011],[13.7509356,48.5484095],[13.7508125,48.5483801],[13.750754,48.5483512],[13.7507061,48.548359],[13.7506884,48.5483534],[13.750689,48.5483257],[13.7505866,48.5482241],[13.7505982,48.5481018],[13.7502002,48.5477911],[13.7499725,48.5477896],[13.7495731,48.5476662],[13.7494116,48.5475789],[13.7492681,48.547439],[13.7491066,48.5474286],[13.7490799,48.5473679],[13.7488748,48.5472539],[13.748614,48.5472404],[13.7479869,48.5469097],[13.7480544,48.5468051],[13.7477976,48.5467395],[13.7477598,48.5465053],[13.7476013,48.5464938],[13.7472902,48.5464867],[13.7467601,48.5465024],[13.7464251,48.5465654],[13.746344,48.5465704],[13.7463406,48.5465325],[13.7463108,48.546493],[13.7462535,48.5464598],[13.7461875,48.5464337],[13.7461696,48.5464367],[13.7460366,48.5463757],[13.7459899,48.5463869],[13.7459779,48.5464056],[13.7459327,48.5463925],[13.7458772,48.5463587],[13.7458431,48.546302],[13.7457967,48.5462769],[13.7457824,48.5462538],[13.7457698,48.5462368],[13.7457594,48.5461711],[13.7457179,48.5461571],[13.7456497,48.5460926],[13.7457184,48.5459962],[13.7457164,48.5459536],[13.7456959,48.5459212],[13.7456639,48.5459042],[13.7455983,48.5458258],[13.7455523,48.5457923],[13.7454978,48.5457725],[13.7454954,48.5457166],[13.7454589,48.545693],[13.7454739,48.5456554],[13.7454564,48.5456158],[13.7454523,48.5455888],[13.7454338,48.5455471],[13.7454502,48.5454995],[13.7453998,48.5454551],[13.7453633,48.5453518],[13.7452898,48.5453128],[13.7451564,48.5452547],[13.7450351,48.5452599],[13.7449609,48.5452359],[13.7449427,48.5452013],[13.7449603,48.5451605],[13.7449746,48.5451191],[13.7449649,48.545076],[13.7449202,48.5450481],[13.7449133,48.545009],[13.7448872,48.5449766],[13.7448221,48.5449481],[13.7447322,48.5448925],[13.7446772,48.5448939],[13.7446099,48.544886],[13.7445164,48.5448401],[13.7445098,48.5448251],[13.7444321,48.5447384],[13.7443855,48.5447078],[13.744372,48.5446868],[13.7443508,48.5446735],[13.7443493,48.5446397],[13.744307,48.5446355],[13.7442132,48.5446478],[13.7441208,48.5446048],[13.7441583,48.5445846],[13.7441716,48.5445566],[13.744133,48.5445018],[13.7441013,48.544483],[13.7440281,48.5444703],[13.7439792,48.5444297],[13.7439814,48.5443857],[13.7440189,48.544359],[13.7439582,48.5443166],[13.743933,48.5442879],[13.7439557,48.5442637],[13.7439482,48.5442278],[13.7438681,48.5441673],[13.7438637,48.5441418],[13.7438298,48.5441066],[13.743796,48.5441122],[13.7437644,48.5441362],[13.7436572,48.5440494],[13.7436726,48.5440365],[13.74369,48.5440101],[13.7436711,48.5439835],[13.7437134,48.5439314],[13.7437016,48.5438985],[13.7436993,48.5438263],[13.7437141,48.5438079],[13.7437287,48.543778],[13.7437749,48.543757],[13.743824,48.543745],[13.7438742,48.5437137],[13.7438883,48.5436806],[13.7439349,48.5436628],[13.7439541,48.5436405],[13.7439594,48.5436137],[13.7439865,48.5435943],[13.7440413,48.5436165],[13.7440461,48.5435925],[13.7440165,48.5435646],[13.744116,48.5434855],[13.7441753,48.5434702],[13.7441755,48.54344],[13.7441271,48.543398],[13.7440905,48.5434109],[13.7441025,48.5434522],[13.7440605,48.5434365],[13.7440493,48.5434185],[13.7440233,48.5433966],[13.7440428,48.5433927],[13.7440283,48.5433612],[13.7440252,48.5433334],[13.7440486,48.5433348],[13.7440543,48.5432892],[13.7440368,48.5432708],[13.7440362,48.5432327],[13.7440597,48.5432185],[13.7440706,48.5431715],[13.7440762,48.5431488],[13.7440864,48.5431319],[13.744061,48.5431005],[13.7440741,48.5430853],[13.7441291,48.5430799],[13.7441262,48.543062],[13.7441215,48.5430322],[13.7440909,48.5430099],[13.7440988,48.5429923],[13.7441413,48.5429916],[13.7441543,48.5429701],[13.7441415,48.5429572],[13.7440655,48.5429415],[13.7440648,48.5428405],[13.7440872,48.5428061],[13.7441246,48.5427868],[13.7440913,48.5427661],[13.744099,48.542722],[13.7441341,48.5427146],[13.7441028,48.5426797],[13.744074,48.5426704],[13.7440621,48.5426378],[13.7440806,48.5426293],[13.7441317,48.5426346],[13.7441447,48.5426094],[13.7441371,48.5425845],[13.7441123,48.5425778],[13.7440673,48.5425951],[13.7440427,48.5425487],[13.7440087,48.542531],[13.7439873,48.5425296],[13.7439703,48.5425156],[13.7439723,48.5424836],[13.7439485,48.5424634],[13.743907,48.5424766],[13.743882,48.5424573],[13.7438892,48.5424214],[13.7438798,48.5423861],[13.7438818,48.5423832],[13.7441191,48.5421108],[13.7443684,48.5417463],[13.7444335,48.541313],[13.7444455,48.5412884],[13.744593,48.5409826],[13.7450221,48.5404421],[13.7453836,48.5403168],[13.7458819,48.5401933],[13.7463616,48.5399708],[13.7466706,48.5398391],[13.7470164,48.539727],[13.7470563,48.5397142],[13.7472386,48.5396891],[13.747946,48.5396188],[13.7483479,48.5396016],[13.7484272,48.5394619],[13.7484321,48.539314],[13.748448,48.5391523],[13.7484616,48.5389854],[13.7484889,48.5388217],[13.7485578,48.5386523],[13.748667,48.5384756],[13.7487774,48.5383353],[13.7487867,48.5383053],[13.748827,48.5381762],[13.7489038,48.5380064],[13.7489448,48.5378393],[13.7489495,48.5376826],[13.7489545,48.5375083],[13.7489458,48.53735],[13.7489135,48.5371778],[13.7488811,48.5370173],[13.7488527,48.53685],[13.7488731,48.5366843],[13.7488809,48.5365222],[13.7488968,48.5363935],[13.7488805,48.5362575],[13.7488343,48.5361488],[13.748899,48.5359515],[13.7489959,48.5357764],[13.7489459,48.5355393],[13.748902,48.5353651],[13.7488776,48.5350861],[13.7488269,48.5349397],[13.7487605,48.5347735],[13.7487798,48.5346339],[13.7488333,48.5344827],[13.7488822,48.5342958],[13.7488945,48.5341471],[13.748937,48.5339252],[13.7489542,48.5337187],[13.7489259,48.5335585],[13.7489503,48.5335403],[13.7488484,48.5334548],[13.7487887,48.5334146],[13.7487993,48.5333818],[13.7487722,48.5333542],[13.7487983,48.5332873],[13.7488262,48.5332506],[13.7488563,48.5332405],[13.7488535,48.5332201],[13.7488818,48.5331895],[13.7489012,48.5331156],[13.7489167,48.5330945],[13.7489118,48.5330455],[13.7488888,48.5330309],[13.7488841,48.5329798],[13.7489091,48.532959],[13.7489154,48.5328736],[13.7489397,48.5328583],[13.7489297,48.5328418],[13.7489296,48.5328113],[13.7489481,48.5327749],[13.7489903,48.5327736],[13.7490082,48.5327301],[13.7490346,48.5327213],[13.7490387,48.5326921],[13.7490619,48.5326753],[13.7490924,48.5326252],[13.749075,48.5325983],[13.7490879,48.5325295],[13.7490845,48.5325103],[13.7490425,48.5324912],[13.7489925,48.532494],[13.7489814,48.5324652],[13.74899,48.5324479],[13.7489826,48.5324296],[13.7489948,48.5324103],[13.7490298,48.5324022],[13.7490416,48.5323706],[13.7490753,48.532356],[13.7491008,48.5323299],[13.7490617,48.5322849],[13.7490238,48.5322677],[13.7490718,48.5322156],[13.7490973,48.5322098],[13.7490892,48.5321934],[13.7489855,48.5321393],[13.7489786,48.5321242],[13.7489375,48.5321049],[13.7488782,48.5320565],[13.7488411,48.5320097],[13.7488115,48.5319961],[13.7487808,48.5319505],[13.7487725,48.5319168],[13.7487235,48.5318735],[13.7486884,48.5318597],[13.7486848,48.5318306],[13.7486311,48.5317994],[13.7485971,48.5318012],[13.748591,48.5317818],[13.7485534,48.5317748],[13.7485185,48.5317501],[13.7484779,48.5317343],[13.7483696,48.5317244],[13.7481872,48.5317114],[13.7480605,48.5316347],[13.7479677,48.531528],[13.747914,48.5313559],[13.7478961,48.5312054],[13.7479976,48.5311327],[13.7479988,48.5310747],[13.7478866,48.5306846],[13.7478141,48.5302519],[13.7478558,48.5301436],[13.7478797,48.5300178],[13.7478748,48.5299859],[13.7478659,48.5299272],[13.7478638,48.5299136],[13.7478605,48.5298922],[13.7478556,48.5296632],[13.7478296,48.5295181],[13.7477763,48.5293901],[13.7476828,48.5294356],[13.7476839,48.5294852],[13.7476368,48.5295212],[13.7476349,48.5295465],[13.7475842,48.529567],[13.7475585,48.5295399],[13.7474999,48.5295068],[13.7474488,48.5295224],[13.7474334,48.5295461],[13.747452,48.5295769],[13.747489,48.5295981],[13.7474466,48.5296178],[13.747405,48.5296083],[13.7473751,48.529589],[13.7473126,48.5296145],[13.7472054,48.5295965],[13.7471154,48.5296009],[13.7470325,48.5295834],[13.746984,48.5295488],[13.7469519,48.5295432],[13.74691,48.5295027],[13.7467561,48.5294326],[13.7466735,48.5293651],[13.7465862,48.5291624],[13.7464858,48.5290824],[13.7462438,48.5288899],[13.7458921,48.5286799],[13.7457917,48.5283582],[13.7455463,48.528249],[13.7455252,48.5282399],[13.7452966,48.5283011],[13.7451876,48.5282966],[13.7449403,48.5282147],[13.7447411,48.5281926],[13.7442963,48.5281812],[13.744107,48.5282341],[13.7438332,48.5281799],[13.7433025,48.5282792],[13.7431966,48.5282742],[13.7430866,48.5282422],[13.7428567,48.5281355],[13.7425692,48.5279997],[13.7423057,48.5278385],[13.742196,48.527778],[13.7420337,48.5276887],[13.7417685,48.5275276],[13.7415341,48.5273507],[13.7412926,48.5271868],[13.7412838,48.5271808],[13.7411152,48.527029],[13.7410077,48.5268096],[13.740942,48.526799],[13.7405819,48.5266668],[13.7403857,48.5266172],[13.74005,48.526578],[13.7395462,48.5266959],[13.7393176,48.5267218],[13.7391655,48.5267214],[13.7390132,48.5267065],[13.7383317,48.5266276],[13.7376547,48.5265928],[13.7366378,48.5262446],[13.7362504,48.5261666],[13.735735,48.5261333],[13.7356257,48.5261294],[13.7355623,48.5261845],[13.735437,48.5261688],[13.735381,48.5261463],[13.7353591,48.526127],[13.7352869,48.5261086],[13.7352481,48.5260711],[13.735216,48.5260759],[13.735162,48.5260697],[13.7351312,48.5261138],[13.7350644,48.5261072],[13.7350286,48.526089],[13.7349666,48.52609],[13.734802,48.5260442],[13.7347861,48.5260585],[13.7347671,48.526054],[13.7347467,48.5260173],[13.7347522,48.5259896],[13.7347385,48.5259754],[13.7347109,48.5259252],[13.7346311,48.5259228],[13.7345884,48.5258403],[13.7345388,48.5258352],[13.7344837,48.5258506],[13.7343659,48.5258357],[13.7343405,48.5257654],[13.7342432,48.5257102],[13.7342622,48.5256816],[13.7342552,48.5256529],[13.7341932,48.5256578],[13.734171,48.5256136],[13.7341381,48.5256031],[13.7340639,48.5256266],[13.7340239,48.5256103],[13.7339465,48.5255873],[13.7339533,48.5255427],[13.7338648,48.5255217],[13.733814,48.5255249],[13.7337484,48.5255018],[13.7337453,48.5254906],[13.7337074,48.5254723],[13.7336831,48.5254805],[13.7336042,48.5254542],[13.7336071,48.5254269],[13.7336973,48.5253769],[13.7336786,48.5253562],[13.7336499,48.5253658],[13.7335246,48.5253334],[13.7334605,48.5253359],[13.7334185,48.5253256],[13.7333844,48.5253314],[13.7333067,48.5253021],[13.7333426,48.5252535],[13.7333511,48.5252285],[13.7333046,48.5251807],[13.733322,48.5251484],[13.7332965,48.5250768],[13.7333058,48.5250568],[13.7332724,48.5250197],[13.733232,48.5250417],[13.7332075,48.5250403],[13.7331536,48.5249031],[13.7331209,48.5248701],[13.7331012,48.5248675],[13.7330888,48.5248692],[13.7330015,48.5248177],[13.7330047,48.5248045],[13.7330409,48.5247905],[13.7330431,48.5247431],[13.7331389,48.5247256],[13.7331645,48.5246971],[13.7331726,48.5246159],[13.7332012,48.5245918],[13.733192,48.5245107],[13.7332062,48.5244718],[13.7332123,48.5244311],[13.7332441,48.5244097],[13.7332597,48.5243815],[13.7332541,48.5243421],[13.7333106,48.5241443],[13.7332885,48.5241046],[13.733267,48.5240711],[13.7333177,48.5240429],[13.7333361,48.5240506],[13.7333618,48.5239702],[13.7334085,48.5238791],[13.733391,48.5238003],[13.7333896,48.5237431],[13.7333764,48.5237409],[13.7333621,48.5236816],[13.7333836,48.5235949],[13.7334093,48.5235746],[13.733416,48.5235321],[13.7335418,48.5234779],[13.7335298,48.5233757],[13.7335688,48.5233002],[13.7335076,48.5231984],[13.7334294,48.5231437],[13.733489,48.5230356],[13.7335185,48.5230295],[13.7335217,48.5229837],[13.7335302,48.5228976],[13.7335486,48.5228399],[13.7335807,48.5228304],[13.7336068,48.5227907],[13.7335969,48.5227611],[13.7335602,48.5227408],[13.7335434,48.5227134],[13.7335712,48.5226801],[13.7335084,48.5226139],[13.7334959,48.522555],[13.7335109,48.522477],[13.7334523,48.5224659],[13.7334579,48.5224304],[13.7335523,48.5223208],[13.7335502,48.5222477],[13.7334937,48.5221184],[13.7334129,48.5220573],[13.7332444,48.5220186],[13.7331717,48.5219817],[13.7331633,48.5219989],[13.7329747,48.5219581],[13.7328618,48.5219285],[13.7327358,48.5219033],[13.7326061,48.5218948],[13.7320938,48.5216806],[13.7320676,48.5216697],[13.7319015,48.521619],[13.7317528,48.5215736],[13.7315186,48.5214833],[13.7312533,48.5214452],[13.7310412,48.521409],[13.7309962,48.5214013],[13.7308193,48.5212731],[13.7307538,48.5211009],[13.730725,48.5209028],[13.7308061,48.5206666],[13.7308552,48.5205003],[13.7309065,48.5203262],[13.7309533,48.5202191],[13.7309889,48.5201374],[13.7311419,48.5200016],[13.7311957,48.5199539],[13.7313108,48.5197322],[13.7313262,48.519618],[13.7313051,48.5195421],[13.7312682,48.5194704],[13.7312539,48.5194732],[13.7312588,48.5194276],[13.7312269,48.519361],[13.7312193,48.5193194],[13.7312526,48.5192801],[13.7312551,48.5192419],[13.7312968,48.5191725],[13.731388,48.5190785],[13.7309964,48.5186889],[13.7308904,48.5184865],[13.7309033,48.5183883],[13.7308555,48.518287],[13.7308264,48.5182939],[13.7307961,48.5182796],[13.7307676,48.5181905],[13.7307222,48.5181578],[13.7307576,48.518128],[13.7307319,48.5181059],[13.7307358,48.5180314],[13.7307721,48.517861],[13.7307247,48.5178465],[13.7307437,48.5177728],[13.7308267,48.5176847],[13.7309729,48.5175943],[13.7309571,48.5175419],[13.731043,48.5174657],[13.7313055,48.5173417],[13.7314881,48.5172099],[13.7316552,48.5171978],[13.7319063,48.5170607],[13.7320846,48.5168346],[13.7321264,48.5166814],[13.7322366,48.5165936],[13.7321842,48.5164329],[13.7320959,48.5163032],[13.7319198,48.5162261],[13.7318561,48.5161777],[13.7317475,48.5160209],[13.7317035,48.5160215],[13.7314685,48.5159221],[13.7312087,48.5157813],[13.7311245,48.5156204],[13.7310222,48.5155642],[13.7309659,48.5154209],[13.7308966,48.5153663],[13.7308811,48.5153173],[13.7309056,48.5152437],[13.7308481,48.5151816],[13.7306866,48.5150799],[13.7307192,48.515046],[13.7307097,48.5149719],[13.7306257,48.5149582],[13.7306057,48.5149326],[13.7305081,48.514911],[13.7305693,48.514805],[13.7305381,48.5148175],[13.7305161,48.5147997],[13.730512,48.5147674],[13.7304622,48.5147396],[13.7304241,48.5147198],[13.7304054,48.5147265],[13.730377,48.5147243],[13.7303612,48.514708],[13.730265,48.5147103],[13.7301917,48.5146711],[13.7301394,48.5146613],[13.730107,48.5146708],[13.7300821,48.5146573],[13.7300529,48.514652],[13.7300158,48.5146654],[13.7299992,48.5146459],[13.7298558,48.5146276],[13.7298255,48.5146283],[13.7297444,48.5146037],[13.7297226,48.5145796],[13.7296744,48.5145423],[13.7296051,48.5144503],[13.7295334,48.5143801],[13.7294525,48.5143364],[13.7292379,48.5143709],[13.729075,48.5143888],[13.7289876,48.5144168],[13.728801,48.5144265],[13.7286586,48.5144197],[13.7285339,48.5144204],[13.7283505,48.5143611],[13.7281533,48.514208],[13.728067,48.5141796],[13.7280175,48.5141282],[13.727981,48.5140768],[13.7279135,48.5140306],[13.7275856,48.5136274],[13.7270837,48.5130182],[13.7264554,48.5132264],[13.7257147,48.5134673],[13.7242837,48.5138198],[13.7240852,48.5138638],[13.7201353,48.5146867],[13.7125643,48.5162636],[13.7118281,48.5164085],[13.7110786,48.5165368],[13.708023,48.51701],[13.7073075,48.5171479],[13.7068446,48.5172652],[13.7068162,48.5172723],[13.7061934,48.5174626],[13.7056199,48.5176694],[13.7050438,48.5179344],[13.7043892,48.5182863],[13.7039294,48.5185882],[13.7034752,48.5189336],[13.7019467,48.52025],[13.7004008,48.5215345],[13.6997027,48.5220165],[13.6990664,48.522451],[13.6981515,48.5230854],[13.6973787,48.523438],[13.6964591,48.5238611],[13.6954736,48.5243087],[13.693995,48.5248513],[13.6933818,48.5250956],[13.693015,48.5252406],[13.6921645,48.5256296],[13.6900012,48.5266878],[13.6891558,48.5271042],[13.6879036,48.5276222],[13.6869027,48.5280175],[13.6859309,48.5284109],[13.6850817,48.5287427],[13.6837978,48.5290781],[13.6822434,48.5294615],[13.6807024,48.5298497],[13.6771559,48.5305047],[13.6749391,48.5308954],[13.6731075,48.5312676],[13.6714786,48.5316635],[13.6697082,48.5321649],[13.668219,48.5326628],[13.6654308,48.5336278],[13.6649767,48.5338125],[13.6641008,48.534169],[13.6627751,48.534915],[13.6618947,48.535596],[13.6611506,48.5363111],[13.6606944,48.536876],[13.6603198,48.5374446],[13.6601177,48.5378386],[13.6599027,48.5383708],[13.659099,48.5406494],[13.6587623,48.5414897],[13.6584429,48.5422421],[13.6580283,48.5430539],[13.6576068,48.5437944],[13.6569124,48.544981],[13.6562085,48.5461602],[13.6561103,48.5463263],[13.6559598,48.546581],[13.6557849,48.5468769],[13.6555034,48.5473249],[13.6552387,48.5476498],[13.6549481,48.5479666],[13.6543188,48.5485067],[13.653746,48.548885],[13.6531757,48.5491968],[13.6525962,48.5494526],[13.6520572,48.5496614],[13.6513708,48.5498895],[13.6506406,48.5501011],[13.6454751,48.5514734],[13.6437408,48.551935],[13.6429355,48.5521419],[13.6421186,48.5523218],[13.6418569,48.5523713],[13.6411372,48.5524945],[13.6401459,48.5526286],[13.639072,48.5527279],[13.6380509,48.5527755],[13.6366513,48.5528027],[13.6327878,48.5529022],[13.6314758,48.5529574],[13.6301321,48.5530956],[13.6290401,48.5532642],[13.6279825,48.5534663],[13.6272725,48.5536271],[13.6257251,48.5540769],[13.6246433,48.5544573],[13.6234983,48.5549394],[13.6224089,48.5554824],[13.6158248,48.5590032],[13.6140681,48.5599425],[13.6132376,48.5604158],[13.6125695,48.5608553],[13.6116259,48.561583],[13.6110783,48.5620835],[13.6105456,48.5626471],[13.6093007,48.5640489],[13.6090505,48.5643358],[13.6088232,48.56457],[13.6082658,48.5650961],[13.6075253,48.5657025],[13.6067204,48.5662694],[13.6057127,48.566877],[13.6044528,48.5674391],[13.6038487,48.5676821],[13.6034941,48.56782],[13.6023181,48.568374],[13.6011864,48.5688559],[13.6005541,48.5691061],[13.5997712,48.5693883],[13.5996176,48.5694353],[13.5989765,48.5696065],[13.5983939,48.5697279],[13.5982956,48.5697484],[13.5974811,48.569872],[13.5966984,48.5699409],[13.5961148,48.5699768],[13.5955234,48.569974],[13.5945691,48.5699295],[13.5940844,48.5698792],[13.5936013,48.5698063],[13.5930009,48.5697097],[13.5925816,48.5696137],[13.5914835,48.5693069],[13.5906274,48.5689774],[13.589713,48.5685337],[13.5889923,48.568095],[13.5883201,48.5675839],[13.5877517,48.5670501],[13.5873266,48.5665625],[13.5871039,48.5662469],[13.5860317,48.5646921],[13.5851855,48.5634645],[13.58482,48.5628827],[13.5844654,48.5622167],[13.5842756,48.5617644],[13.584,48.5612466],[13.583686,48.5608773],[13.5833097,48.5605383],[13.5828269,48.5602103],[13.5821413,48.5598802],[13.5815411,48.5596761],[13.580715,48.5595028],[13.5798697,48.5594307],[13.5791158,48.5594501],[13.5785677,48.5595235],[13.5756856,48.5599945],[13.5748855,48.5601253],[13.5739733,48.5602897],[13.5734643,48.5603995],[13.5709044,48.5609764],[13.5695696,48.561289],[13.5686994,48.5615383],[13.5682831,48.5616656],[13.5670168,48.5620417],[13.5665931,48.5621992],[13.5656462,48.562636],[13.5647106,48.5630596],[13.5631465,48.5638869],[13.5622398,48.564402],[13.5614365,48.5649408],[13.5608149,48.56543],[13.560215,48.5659213],[13.5596838,48.566325],[13.5594927,48.566478],[13.5590987,48.5667669],[13.5581915,48.5673415],[13.55731,48.5678197],[13.5563074,48.5682919],[13.5551841,48.568752],[13.5546757,48.5689755],[13.5539463,48.5693397],[13.5532905,48.5697063],[13.5522516,48.5703216],[13.5517749,48.5706036],[13.5514918,48.5707714],[13.5478902,48.572905],[13.5472503,48.5732548],[13.5465413,48.5735535],[13.5461614,48.5736949],[13.5457748,48.5738036],[13.545319,48.5739523],[13.5447264,48.5741759],[13.5441549,48.5744222],[13.5435033,48.5747864],[13.5428913,48.5751825],[13.5393083,48.5782397],[13.5356019,48.5814568],[13.534434,48.5824581],[13.5330046,48.5836836],[13.5322672,48.584287],[13.5314816,48.5848903],[13.5306388,48.5854609],[13.5296645,48.5860851],[13.5288364,48.5865595],[13.5276986,48.5871515],[13.5268052,48.5875696],[13.5265052,48.58771],[13.5254868,48.5881302],[13.5253622,48.5881817],[13.5242465,48.5885984],[13.5226277,48.5891191],[13.5195472,48.5900375],[13.5185378,48.590304],[13.5172549,48.590585],[13.5163282,48.5907286],[13.5155059,48.5908327],[13.5149112,48.590891],[13.5142507,48.5909458],[13.5133003,48.5910247],[13.5131314,48.5910387],[13.5124549,48.5910949],[13.5119007,48.5911307],[13.5114178,48.5911208],[13.510898,48.5910776],[13.5103894,48.5910031],[13.5098803,48.5908926],[13.509413,48.5907636],[13.5089626,48.5905995],[13.508384,48.5903345],[13.5081534,48.5901884],[13.5068142,48.5893396],[13.5062786,48.5889613],[13.5058528,48.5885867],[13.5054958,48.5882273],[13.505171,48.5878242],[13.5048449,48.5873106],[13.5046934,48.5869727],[13.504548,48.5866486],[13.5045266,48.586584],[13.5044608,48.5863854],[13.5040776,48.5853816],[13.5035934,48.5843383],[13.5030739,48.5834389],[13.5024835,48.5825345],[13.5019975,48.5817122],[13.5018426,48.5813798],[13.5016328,48.5808924],[13.5025818,48.5807418],[13.502784,48.5805624],[13.5033103,48.580095],[13.5035617,48.5798718],[13.5037735,48.5797491],[13.5034133,48.5794254],[13.5036116,48.5793902],[13.5038505,48.5793482],[13.5039883,48.579324],[13.5048226,48.5792143],[13.5050966,48.5791839],[13.5050117,48.5788932],[13.5049643,48.5787253],[13.5049181,48.5785566],[13.5049112,48.5783771],[13.5049038,48.5781851],[13.505032,48.5779],[13.5051578,48.5777202],[13.5052074,48.5776525],[13.5052132,48.5776499],[13.5052807,48.5776202],[13.5054095,48.5776572],[13.5057419,48.5776838],[13.505815,48.5777331],[13.5059974,48.5777255],[13.5059963,48.5778073],[13.506248,48.5778771],[13.5066333,48.5778182],[13.5069693,48.5777326],[13.5069505,48.5775598],[13.5069399,48.5774641],[13.5069345,48.5774447],[13.5068763,48.5772354],[13.5068847,48.5770843],[13.506918,48.5768893],[13.5069224,48.5768629],[13.5068888,48.5766051],[13.5068234,48.5762746],[13.5067298,48.5760747],[13.5066839,48.5759769],[13.5065365,48.575667],[13.5064708,48.5755637],[13.5064307,48.5755009],[13.5063156,48.5754355],[13.5062068,48.5754682],[13.5061767,48.5754017],[13.5060973,48.5753158],[13.5058471,48.5749821],[13.505778,48.5747491],[13.5057586,48.5745891],[13.505294,48.574318],[13.5048075,48.5740294],[13.5048038,48.5740272],[13.5045131,48.5738549],[13.5044188,48.5738421],[13.5045432,48.5737601],[13.5044266,48.573526],[13.5043671,48.5734442],[13.504258,48.5732943],[13.5039794,48.5729954],[13.5037649,48.5728595],[13.5037786,48.5728419],[13.5040344,48.5725145],[13.5038,48.5724071],[13.5035967,48.5723061],[13.5033352,48.5721674],[13.5031029,48.572057],[13.5028745,48.571929],[13.5026675,48.5718068],[13.502046,48.5713786],[13.5017477,48.5713589],[13.5012946,48.5711694],[13.5010852,48.5710878],[13.5008934,48.5710135],[13.500801,48.5709778],[13.5006019,48.5707874],[13.500572,48.5707606],[13.5003701,48.5705803],[13.5001301,48.5706616],[13.4999443,48.5706606],[13.4997465,48.5707199],[13.4994517,48.5707133],[13.4993573,48.570676],[13.4993205,48.5706615],[13.4990132,48.570569],[13.4986916,48.5704397],[13.4984427,48.5703397],[13.4983334,48.5702896],[13.4981524,48.5702066],[13.4977793,48.5700867],[13.4976796,48.570173],[13.4976171,48.5701532],[13.4973883,48.5700807],[13.4970401,48.5700743],[13.4963979,48.5697664],[13.4960958,48.5694815],[13.4959229,48.5694053],[13.4953026,48.569599],[13.4950845,48.5695693],[13.4947596,48.5694316],[13.4946933,48.5693851],[13.4945386,48.5693473],[13.4943506,48.5693445],[13.4942515,48.5693493],[13.4937375,48.5693739],[13.4935196,48.5693844],[13.49336,48.5693711],[13.492943,48.5693359],[13.4926713,48.569313],[13.4924518,48.5693181],[13.4925295,48.5695523],[13.4922184,48.5696205],[13.4920308,48.5696983],[13.4920052,48.5697281],[13.4919725,48.5697397],[13.4919522,48.5697305],[13.4919286,48.5697253],[13.4918852,48.5696995],[13.4918392,48.5696638],[13.4917792,48.5695939],[13.4917402,48.5695244],[13.4917331,48.569492],[13.4917382,48.5694404],[13.491718,48.5693917],[13.4916807,48.5692868],[13.4915984,48.5692145],[13.4915216,48.5691531],[13.4914686,48.5691205],[13.491368,48.5690494],[13.4915787,48.5687459],[13.4916422,48.5686536],[13.4917038,48.5685766],[13.4918104,48.5684772],[13.4919184,48.5683928],[13.4921448,48.5682696],[13.4924229,48.568183],[13.4926015,48.568146],[13.4927733,48.5681025],[13.492941,48.5680394],[13.4930656,48.5679941],[13.4932212,48.5678872],[13.4933043,48.5678015],[13.4933587,48.5677367],[13.4934031,48.5676534],[13.4934665,48.5674259],[13.4934303,48.5672825],[13.4934265,48.5672823],[13.493246,48.5672715],[13.4932962,48.5671322],[13.4933921,48.5669818],[13.4932998,48.566907],[13.4932253,48.5669488],[13.4928872,48.5667609],[13.4929225,48.566715],[13.4927839,48.5665564],[13.4926089,48.5664993],[13.4925839,48.5664117],[13.4924757,48.5662833],[13.4924366,48.5661273],[13.4922998,48.565884],[13.4921554,48.5658135],[13.4918754,48.5656545],[13.4918113,48.5655587],[13.4917883,48.5651672],[13.4917866,48.5651507],[13.4917692,48.5649994],[13.4917711,48.5648156],[13.4917093,48.5646431],[13.4917441,48.5645365],[13.4917471,48.5644123],[13.4917112,48.5643123],[13.4914212,48.5641103],[13.4912387,48.564063],[13.4910851,48.5640473],[13.4908686,48.5639618],[13.4904969,48.563866],[13.4904239,48.5637983],[13.4902891,48.5637216],[13.4900961,48.5636816],[13.4898785,48.563595],[13.4896866,48.5635481],[13.4896923,48.5635143],[13.4896305,48.5634983],[13.4895265,48.5634713],[13.4894357,48.5634037],[13.4894397,48.5633617],[13.4894528,48.5632233],[13.4893264,48.5630671],[13.4891716,48.5629642],[13.4887984,48.5627978],[13.488549,48.5627719],[13.488464,48.5627935],[13.4881551,48.5627611],[13.4879943,48.5627865],[13.4873636,48.5629078],[13.4868501,48.5630631],[13.4866381,48.5630387],[13.4865475,48.5630389],[13.4862401,48.5630397],[13.4858825,48.5627296],[13.4857289,48.5625318],[13.4855382,48.5622306],[13.4854797,48.5620159],[13.4850463,48.5616662],[13.4849483,48.5615872],[13.4848832,48.561535],[13.483802,48.5623666],[13.4833846,48.5626247],[13.4824846,48.5631367],[13.4818617,48.5634813],[13.4815254,48.5636928],[13.4812631,48.5638336],[13.4809889,48.5638872],[13.4804005,48.5639651],[13.4798067,48.5640742],[13.4796301,48.5641195],[13.4793003,48.5643788],[13.4789327,48.5646679],[13.4788827,48.5646394],[13.4783774,48.5643436],[13.4777869,48.5639932],[13.4771091,48.5635968],[13.4766906,48.5633451],[13.4764061,48.5631812],[13.4760101,48.5629489],[13.4756872,48.5627597],[13.4755705,48.5626909],[13.4753395,48.5625551],[13.4750908,48.5625008],[13.4749936,48.5624796],[13.4744974,48.5623713],[13.474645,48.5622521],[13.4747469,48.5621168],[13.4747802,48.5620391],[13.4747472,48.5617749],[13.474759,48.5617046],[13.4747962,48.5616282],[13.4748556,48.5615333],[13.4749002,48.5614077],[13.4749956,48.5613133],[13.4750743,48.5611978],[13.4751542,48.5609694],[13.4753412,48.5605552],[13.4756984,48.5602127],[13.4758516,48.5598122],[13.4761019,48.5594258],[13.4762825,48.5592202],[13.476411,48.5589474],[13.4763798,48.5588679],[13.4763436,48.558779],[13.4762101,48.5587945],[13.4761091,48.5587664],[13.4759427,48.5586359],[13.4757961,48.5585002],[13.4757904,48.558379],[13.4756275,48.5582677],[13.4754012,48.5581553],[13.4752203,48.5580571],[13.4751597,48.5578242],[13.4750511,48.557623],[13.47482,48.5574529],[13.4748465,48.55729],[13.4749508,48.5571513],[13.4751977,48.5569515],[13.4754071,48.5567297],[13.475497,48.556574],[13.4755246,48.5563564],[13.4755138,48.5563358],[13.4754604,48.5562337],[13.4753731,48.5560605],[13.4750707,48.5559821],[13.4750141,48.555978],[13.4749335,48.5559721],[13.4747943,48.5559619],[13.4742121,48.555836],[13.4739098,48.5557565],[13.4734673,48.5556465],[13.4733093,48.5556072],[13.4725392,48.555433],[13.4719274,48.5553386],[13.4715769,48.5552516],[13.4712704,48.5551382],[13.4712607,48.5551346],[13.4710022,48.555016],[13.4706597,48.5548986],[13.4702616,48.5547369],[13.4699574,48.5546095],[13.4696811,48.554519],[13.469309,48.5543414],[13.4689328,48.5541384],[13.4687638,48.5540708],[13.468643,48.5540128],[13.4684282,48.5539428],[13.4682888,48.5538975],[13.4677683,48.5539549],[13.4675035,48.5539652],[13.4672742,48.5539742],[13.4670769,48.5539368],[13.4670152,48.5539251],[13.4669291,48.5539175],[13.4667099,48.5539181],[13.4667023,48.5539181],[13.4665486,48.5538654],[13.4663378,48.5538369],[13.4660871,48.5538267],[13.4658281,48.5538247],[13.4655662,48.5538268],[13.4652076,48.5538766],[13.4648891,48.5539323],[13.464596,48.5539975],[13.4641979,48.5540928],[13.4640133,48.5540942],[13.4636864,48.5539941],[13.4635543,48.5539753],[13.463442,48.5540652],[13.463339,48.5542969],[13.4631893,48.5544501],[13.4630371,48.5545426],[13.4628872,48.5546201],[13.4627771,48.5546616],[13.4626194,48.5546089],[13.4625874,48.5547424],[13.4625627,48.5548455],[13.4624376,48.5550456],[13.4622967,48.5552278],[13.4621112,48.5554196],[13.4619642,48.5555191],[13.4617039,48.5555543],[13.4614375,48.5555808],[13.4611374,48.5556419],[13.4607902,48.5557165],[13.4604159,48.5558461],[13.4602978,48.5559265],[13.46008,48.5560238],[13.4597472,48.5561267],[13.4593285,48.5561341],[13.4589895,48.5561503],[13.4588381,48.5561584],[13.4586574,48.5564138],[13.4585132,48.5565258],[13.4584653,48.5565974],[13.4585166,48.5566578],[13.4584075,48.5568781],[13.4581402,48.5570657],[13.4580015,48.5571997],[13.4577175,48.5573598],[13.4573908,48.5574788],[13.4570857,48.5575415],[13.4567948,48.5576954],[13.4564464,48.5578519],[13.4561753,48.557986],[13.455943,48.5581826],[13.4559062,48.558475],[13.4558955,48.5587398],[13.4557677,48.5590857],[13.4556807,48.5593166],[13.4556684,48.5594324],[13.4556023,48.5596971],[13.4555311,48.5599291],[13.455593,48.5601804],[13.4556596,48.5603292],[13.4557406,48.5604818],[13.4557083,48.5606815],[13.4554737,48.5608662],[13.4550962,48.5610427],[13.4547979,48.5612396],[13.4546317,48.5612781],[13.4544057,48.5613804],[13.4543341,48.5614635],[13.454187,48.5616056],[13.4540203,48.5617183],[13.4537727,48.5618103],[13.4534713,48.56194],[13.4532889,48.5620866],[13.4530352,48.5623324],[13.4529117,48.5623267],[13.452752,48.5624159],[13.4525964,48.5626189],[13.4525476,48.5628421],[13.4522824,48.5629815],[13.4518737,48.5631935],[13.451809,48.5632272],[13.4517636,48.5632506],[13.4515993,48.563336],[13.4515566,48.5633581],[13.451387,48.5634463],[13.4512625,48.5635123],[13.4511919,48.5635355],[13.4511016,48.5635654],[13.4510523,48.5635821],[13.4508994,48.563634],[13.4499783,48.5639466],[13.4485241,48.562742],[13.448368,48.5626285],[13.4481969,48.5625307],[13.4466109,48.5616771],[13.4458172,48.5612589],[13.4446896,48.5607542],[13.4439623,48.5604559],[13.4427742,48.5600064],[13.4411071,48.5594945],[13.440488,48.5593228],[13.4401206,48.5591834],[13.439376,48.5588422],[13.4390866,48.558681],[13.4388606,48.5585029],[13.4385468,48.5582054],[13.4378394,48.5574418],[13.4373851,48.5567595],[13.4370108,48.5558946],[13.4368151,48.5551069],[13.43681,48.5543054],[13.4369277,48.5535872],[13.4369714,48.5533741],[13.4379087,48.5502524],[13.4382819,48.5492821],[13.4385622,48.5487003],[13.4386567,48.548504],[13.439227,48.5476233],[13.4398228,48.5468538],[13.4413411,48.5451684],[13.4420299,48.5444447],[13.4427383,48.5437613],[13.4434891,48.5430987],[13.4443021,48.542441],[13.4447764,48.5420861],[13.4462081,48.5410639],[13.4477805,48.5401351],[13.448268,48.5398511],[13.4488129,48.539521],[13.4492361,48.5391723],[13.4495068,48.5388811],[13.449831,48.5384497],[13.4500287,48.538035],[13.450146,48.537649],[13.4505376,48.536002],[13.4506002,48.5353551],[13.4505615,48.5349584],[13.4504707,48.5345791],[13.4503139,48.5340966],[13.449995,48.5335548],[13.4497547,48.5332387],[13.4494749,48.5329269],[13.449111,48.5325957],[13.4487195,48.5322898],[13.4481293,48.5319261],[13.4474926,48.5316155],[13.4461649,48.5310556],[13.4459276,48.5308996],[13.4457519,48.5307346],[13.4456565,48.5305718],[13.4451547,48.5295069],[13.4449962,48.5290696],[13.4449058,48.5285462],[13.4449264,48.5280867],[13.4449353,48.527974],[13.445045,48.5275216],[13.4455544,48.5259916],[13.4460526,48.5244647],[13.4464251,48.52358],[13.4470146,48.5227057],[13.4474641,48.5222575],[13.4477484,48.5220195],[13.4479239,48.521818],[13.4486055,48.5211843],[13.4504402,48.519847],[13.451035,48.5193911],[13.4515883,48.5189033],[13.4544647,48.5162632],[13.4573753,48.5135744],[13.457725,48.5131576],[13.4579247,48.5128021],[13.4580792,48.5124279],[13.4581768,48.5119092],[13.4581087,48.5112687],[13.4578068,48.5105689],[13.4574902,48.5101616],[13.455956,48.5084486],[13.4540738,48.5063392],[13.4534709,48.5056755],[13.4532952,48.5054383],[13.4525013,48.504038],[13.4515571,48.5023248],[13.4506774,48.5007252],[13.4497772,48.499089],[13.4493998,48.4984789],[13.4490481,48.4979506],[13.44846,48.49718],[13.4480038,48.4964703],[13.4476883,48.4957891],[13.4474776,48.495088],[13.4473789,48.4944086],[13.4473742,48.4941682],[13.4473231,48.4933046],[13.4472509,48.4927149],[13.4471071,48.492138],[13.4468835,48.4915653],[13.4465914,48.4909889],[13.4457314,48.4895273],[13.4443152,48.4870954],[13.4432533,48.4852549],[13.4413969,48.4820712],[13.4395543,48.4788887],[13.4384743,48.4770173],[13.4383473,48.4767675],[13.4382538,48.4764981],[13.4379798,48.4753192],[13.4377947,48.4747546],[13.4375771,48.4741978],[13.4374915,48.4739909],[13.4372583,48.4735348],[13.436988,48.4730705],[13.4366199,48.4725461],[13.4362248,48.4720411],[13.4357589,48.4715431],[13.4352539,48.4710506],[13.4347669,48.4705935],[13.4339894,48.4698567],[13.433186,48.4689283],[13.4325757,48.4680721],[13.4320445,48.4671354],[13.430738,48.4645432],[13.4303584,48.4637899],[13.4300066,48.463092],[13.4287959,48.4607176],[13.427591,48.4583443],[13.4273207,48.45774],[13.4271255,48.4571058],[13.4269976,48.456641],[13.4269462,48.4562339],[13.4269249,48.4559795],[13.4269063,48.4558435],[13.4268997,48.4554458],[13.4269205,48.4550055],[13.4269796,48.4544807],[13.4270759,48.4540572],[13.4272372,48.453399],[13.4273468,48.4530289],[13.4274972,48.4527063],[13.4279064,48.4518526],[13.4282198,48.4513035],[13.4284743,48.4509217],[13.4287854,48.4505476],[13.4292231,48.4500706],[13.4317356,48.4475929],[13.4342402,48.4451178],[13.4345871,48.4447773],[13.43505,48.4443088],[13.4353916,48.4439019],[13.435801,48.4434279],[13.4361252,48.4430018],[13.4363258,48.4426951],[13.4364956,48.4423894],[13.4367562,48.4420348],[13.4376335,48.4409506],[13.4379007,48.440529],[13.4388706,48.4386126],[13.4393528,48.4375116],[13.4396839,48.4365092],[13.439869,48.4355981],[13.4399486,48.4350112],[13.4399986,48.4344179],[13.4399776,48.4334235],[13.4398483,48.4325297],[13.4396446,48.4317625],[13.4393132,48.4308398],[13.4388967,48.4300271],[13.4383939,48.4292303],[13.4371966,48.4274955],[13.4359854,48.4257308],[13.4349563,48.4242331],[13.4327066,48.4210059],[13.4304482,48.4177518],[13.4259458,48.4112768],[13.4256958,48.4109143],[13.4249316,48.4098133],[13.4241021,48.408576],[13.4232823,48.4072314],[13.4231748,48.4070371],[13.4219562,48.4047174],[13.4213823,48.4034159],[13.4208493,48.4020936],[13.4201575,48.4000304],[13.4199747,48.3993433],[13.4199024,48.3991054],[13.4196174,48.3979276],[13.4193774,48.3967217],[13.4191722,48.3953702],[13.4190324,48.3940144],[13.4187752,48.3908998],[13.4185229,48.3877833],[13.4184295,48.3869045],[13.4183521,48.3864405],[13.4179701,48.3849422],[13.4174125,48.3835488],[13.4167072,48.382192],[13.4146151,48.3786414],[13.4136786,48.3772285],[13.4124839,48.3758153],[13.4113572,48.3747104],[13.4096637,48.3733529],[13.4087679,48.3727453],[13.4078343,48.3721564],[13.4069024,48.3716276],[13.4060218,48.3711699],[13.4044921,48.3704569],[13.4031896,48.3699413],[13.4003538,48.3687037],[13.3984719,48.3678354],[13.3928841,48.3652673],[13.3885045,48.3632215],[13.3779483,48.3582779],[13.3740524,48.3564678],[13.3721751,48.3555886],[13.3700848,48.3545439],[13.3676606,48.3531801],[13.3656279,48.351899],[13.363494,48.3503543],[13.3616954,48.3488952],[13.3601768,48.3475035],[13.3569622,48.3443866],[13.354013,48.3414809],[13.3525242,48.3400889],[13.3509799,48.3387611],[13.3495391,48.3376002],[13.3476592,48.336207],[13.3438572,48.3334828],[13.3413543,48.3316998],[13.3410859,48.3314906],[13.3404199,48.3310128],[13.3324422,48.3253086],[13.3316966,48.3247791],[13.329798,48.3235141],[13.3280721,48.3224768],[13.3271452,48.3219568],[13.3253037,48.3209808],[13.3239162,48.3203084],[13.3227541,48.3197726],[13.3221634,48.319511],[13.3212482,48.3191311],[13.3199219,48.3185963],[13.314477,48.3164158],[13.2922995,48.3075251],[13.2855048,48.3047822],[13.2714671,48.2991132],[13.2665347,48.2971312],[13.2616289,48.2951384],[13.2600371,48.2945574],[13.258741,48.2941691],[13.2575317,48.2938435],[13.2562164,48.29356],[13.2549438,48.2933154],[13.2536793,48.2931473],[13.252379,48.2930165],[13.251195,48.2929325],[13.2499746,48.2929019],[13.2484576,48.292912],[13.2477532,48.2929327],[13.2387134,48.2933832],[13.2130692,48.2945978],[13.2034297,48.2950624],[13.1954912,48.2954589],[13.1940857,48.2955246],[13.1923807,48.2955856],[13.1906382,48.2956107],[13.1892425,48.2955998],[13.1876612,48.295562],[13.18582,48.2954642],[13.1839789,48.2953277],[13.1808424,48.2949917],[13.1777252,48.2945138],[13.176942,48.294378],[13.1744049,48.293856],[13.1717313,48.2932017],[13.1689837,48.2923982],[13.1676239,48.2919452],[13.1663812,48.2915131],[13.1655142,48.2911976],[13.1650553,48.2910308],[13.1636967,48.2905365],[13.1610522,48.2895745],[13.1608238,48.2894914],[13.1547396,48.2872775],[13.1426261,48.2828937],[13.1375773,48.2810299],[13.1360537,48.2805294],[13.1339671,48.2798441],[13.1310833,48.2790828],[13.128223,48.2784592],[13.1258243,48.2780701],[13.1235755,48.2777592],[13.12019,48.2774409],[13.1171373,48.2772994],[13.1134746,48.2773066],[13.1091678,48.2774596],[13.1054289,48.2775859],[13.1041556,48.2776307],[13.1031694,48.2776858],[13.0986028,48.2779873],[13.0948314,48.2782028],[13.0937531,48.2782711],[13.0911266,48.2783634],[13.0888552,48.2783047],[13.0858337,48.2780639],[13.0836489,48.2777562],[13.0823189,48.2775167],[13.081121,48.2772635],[13.0805772,48.2771446],[13.0793631,48.2768276],[13.0781252,48.2764461],[13.0765575,48.2759458],[13.0750222,48.2753418],[13.0728698,48.274369],[13.0708204,48.2732537],[13.0652684,48.2699639],[13.0641813,48.269329],[13.0627424,48.2685524],[13.0624611,48.2683984],[13.0607749,48.2675933],[13.0602505,48.2673713],[13.0586399,48.2667037],[13.0574829,48.2662386],[13.0548616,48.2653973],[13.0523814,48.264697],[13.0497979,48.2641076],[13.0489662,48.2639532],[13.0408978,48.2624502],[13.040214,48.2623188],[13.0395889,48.2622085],[13.0384617,48.2620264],[13.0383818,48.2620129],[13.0367308,48.2617525],[13.0340747,48.2609606],[13.0340182,48.2609444],[13.0339498,48.2609247],[13.0331041,48.2606818],[13.032649,48.2605681],[13.0321974,48.2604654],[13.0314272,48.260312],[13.0265766,48.2592295],[13.0239765,48.2585622],[13.0216802,48.2578178],[13.0197124,48.2570281],[13.0177235,48.2560905],[13.01622,48.2552537],[13.0145318,48.2541785],[13.013022,48.2530489],[13.0122757,48.2524303],[13.0115874,48.251785],[13.0108434,48.2510586],[13.0101884,48.2503301],[13.0096433,48.2496738],[13.0090393,48.2488683],[13.0076891,48.2469507],[13.0063439,48.2450385],[13.005963,48.2445084],[13.004816,48.2429889],[13.0036056,48.2416207],[13.002609,48.2406059],[13.0015999,48.2396336],[12.9999817,48.2382631],[12.9990984,48.2375768],[12.9983227,48.237023],[12.9977089,48.2365836],[12.9966225,48.2358586],[12.9961569,48.235513],[12.9957416,48.2352182],[12.9951588,48.2347982],[12.9945479,48.2343646],[12.993563,48.2336969],[12.9896003,48.2311266],[12.9856112,48.228521],[12.9828745,48.2267495],[12.9822685,48.226347],[12.9816553,48.2259266],[12.978791,48.2239722],[12.9759235,48.2219937],[12.9738243,48.2204941],[12.9720835,48.2191287],[12.970529,48.2178534],[12.9700269,48.2174203],[12.9690377,48.2165649],[12.9687271,48.2163093],[12.9666233,48.2146695],[12.9644574,48.2132527],[12.9631805,48.2124951],[12.9618997,48.2117785],[12.9592694,48.2105275],[12.958629,48.2102493],[12.9573548,48.2097426],[12.9561334,48.209281],[12.955191,48.2089603],[12.9530474,48.2082877],[12.9516953,48.2079301],[12.9503777,48.2076096],[12.9491059,48.207303],[12.9477788,48.207021],[12.9457528,48.2067401],[12.9446171,48.2066641],[12.9442137,48.2066557],[12.9418734,48.2065459],[12.9402292,48.2064876],[12.9385826,48.2064666],[12.9369362,48.2064829],[12.9352915,48.2065367],[12.9336503,48.2066279],[12.9318819,48.2067463],[12.9307716,48.2068012],[12.9298284,48.2068152],[12.9296586,48.2068178],[12.9285456,48.2067958],[12.9274358,48.2067354],[12.9263322,48.2066366],[12.9252379,48.2064999],[12.9229827,48.2061776],[12.9225915,48.2061608],[12.9222098,48.20622],[12.9219995,48.2062751],[12.9215704,48.206361],[12.921126,48.206398],[12.9182813,48.2064754],[12.9176479,48.2064759],[12.9170166,48.2064432],[12.9158937,48.2063555],[12.9153692,48.2062623],[12.9147303,48.2061541],[12.9142013,48.2061204],[12.9131682,48.2060376],[12.9124841,48.2059603],[12.912142,48.2059215],[12.9111255,48.2057722],[12.9101209,48.2055904],[12.9064494,48.2048615],[12.9062803,48.204828],[12.9059968,48.2047717],[12.9049414,48.2045816],[12.9038729,48.2044273],[12.902794,48.2043098],[12.9017077,48.2042288],[12.8916308,48.2036505],[12.8878561,48.2034336],[12.8847706,48.2032562],[12.8835684,48.2032113],[12.8809869,48.2031662],[12.8800653,48.203136],[12.8791468,48.2030777],[12.8782332,48.2029913],[12.8744799,48.2025777],[12.8736861,48.2024682],[12.8729079,48.2023164],[12.8721505,48.2021233],[12.8714188,48.2018902],[12.8707174,48.2016185],[12.8700508,48.2013101],[12.8694309,48.2009979],[12.8687554,48.2006412],[12.8681051,48.2002642],[12.8674812,48.1998678],[12.8668158,48.199425],[12.8664187,48.1991393],[12.8663868,48.1991123],[12.8660567,48.1988335],[12.8657204,48.1984974],[12.8653343,48.1980407],[12.8650109,48.1975787],[12.8647406,48.1971017],[12.8645251,48.1966124],[12.8640868,48.1954584],[12.8640429,48.1953498],[12.86397,48.1951802],[12.8638119,48.1946354],[12.8637055,48.1939506],[12.8635779,48.1932068],[12.863426,48.1924651],[12.8632419,48.1916954],[12.8629676,48.1907059],[12.8626592,48.1897525],[12.8623093,48.1888058],[12.8619178,48.187866],[12.8614853,48.1869344],[12.8610123,48.1860118],[12.8605175,48.1850908],[12.8602079,48.1845716],[12.8598456,48.1840682],[12.8594321,48.1835824],[12.8589695,48.1831171],[12.8584599,48.1826741],[12.8571073,48.1815785],[12.8564674,48.1810775],[12.8558031,48.180591],[12.8543382,48.1795537],[12.8540807,48.1793497],[12.8540488,48.1793244],[12.8537993,48.179075],[12.8536809,48.1789414],[12.8535348,48.1788063],[12.8529856,48.1783117],[12.8528703,48.1781746],[12.8523479,48.1775714],[12.8519589,48.1769888],[12.8519255,48.1769278],[12.8517125,48.1765011],[12.8515148,48.1760825],[12.8509774,48.1748266],[12.8506195,48.1740824],[12.8503348,48.1736028],[12.8500357,48.1731551],[12.8497327,48.1727397],[12.8494757,48.1722115],[12.8492794,48.1715588],[12.8491384,48.1709047],[12.8491545,48.1706006],[12.8489895,48.1701632],[12.8488533,48.1697769],[12.8486549,48.1693773],[12.8483189,48.1683583],[12.8480797,48.1678409],[12.8477105,48.1673748],[12.847214,48.1669188],[12.8466083,48.166556],[12.8461685,48.1662695],[12.84563,48.1660944],[12.8449788,48.1659449],[12.8445885,48.1658281],[12.8438656,48.1656815],[12.8434145,48.1656114],[12.842882,48.1657309],[12.8422961,48.1658421],[12.8418121,48.1659703],[12.8411856,48.1661194],[12.8406845,48.1662164],[12.8401363,48.1662738],[12.839599,48.1663034],[12.8390731,48.1662771],[12.8387636,48.1662346],[12.8383967,48.1661677],[12.8372729,48.1658363],[12.836558,48.1655642],[12.8360466,48.1653333],[12.8357401,48.1651046],[12.8353961,48.1647222],[12.8351459,48.1643403],[12.8349289,48.163875],[12.8347867,48.1633808],[12.834769,48.162894],[12.8348119,48.1624398],[12.8351073,48.1605238],[12.835153,48.1601443],[12.8351568,48.1597207],[12.8351418,48.1595025],[12.8350385,48.1591005],[12.8349017,48.1587299],[12.8348251,48.1585627],[12.8345785,48.1581508],[12.8341345,48.1575362],[12.8334322,48.1567086],[12.8327577,48.1560838],[12.8319643,48.155502],[12.8317729,48.1553789],[12.8311837,48.155],[12.8302322,48.1544714],[12.8296875,48.154138],[12.8288415,48.153606],[12.8281623,48.1532217],[12.8275304,48.1529122],[12.8268444,48.1526664],[12.8262138,48.1524893],[12.8255091,48.1523573],[12.8248797,48.1522876],[12.8243797,48.1522534],[12.8240648,48.1522526],[12.8237596,48.1522599],[12.8224232,48.1523295],[12.8211714,48.1523362],[12.8194539,48.1523118],[12.8178342,48.1522957],[12.8162377,48.1522187],[12.8149737,48.1520753],[12.8137266,48.1519219],[12.8125495,48.1517183],[12.8117505,48.151553],[12.8108088,48.15131],[12.8097988,48.1510122],[12.8083304,48.1505333],[12.8074445,48.1502228],[12.806866,48.1500156],[12.8051877,48.1493443],[12.8023285,48.1481354],[12.8018353,48.1479644],[12.8009205,48.1475586],[12.8002671,48.1472651],[12.7997707,48.1470195],[12.7994023,48.1467763],[12.7990497,48.146502],[12.7987413,48.1462189],[12.7983582,48.1458035],[12.7979908,48.1453299],[12.7978439,48.1450553],[12.797712,48.1448002],[12.7976342,48.1445284],[12.797568,48.1441008],[12.7975613,48.1437764],[12.7975861,48.1433409],[12.7978648,48.1417945],[12.7979773,48.1406921],[12.7978898,48.139832],[12.7977085,48.1391552],[12.797286,48.1383463],[12.7965828,48.1372683],[12.7950971,48.1352194],[12.793895,48.1335044],[12.7931532,48.1324376],[12.7918616,48.1306573],[12.790574,48.1287262],[12.7893552,48.1268183],[12.7884829,48.1253453],[12.7883107,48.1251312],[12.7881592,48.1248462],[12.7875643,48.1242191],[12.7869191,48.1237109],[12.7863447,48.1233357],[12.785704,48.1230705],[12.7851906,48.1229468],[12.7847761,48.1228709],[12.7841361,48.122821],[12.7836695,48.1228394],[12.7829479,48.1229328],[12.7821685,48.1231297],[12.7815657,48.1233297],[12.7811973,48.1234859],[12.780413,48.1239001],[12.7796939,48.1243881],[12.7786403,48.1251179],[12.7775215,48.1258649],[12.7764982,48.1264436],[12.775509,48.126926],[12.7748077,48.1272339],[12.7739737,48.1275519],[12.7729521,48.1278556],[12.7713306,48.1282495],[12.7697972,48.128524],[12.7684184,48.1287312],[12.7669988,48.1288507],[12.7659256,48.1289287],[12.7647553,48.1289069],[12.7630561,48.128618],[12.7622173,48.1283671],[12.7615482,48.1282027],[12.7609482,48.1279034],[12.760604,48.1277909],[12.7595676,48.1273348],[12.7594912,48.1272908],[12.7589665,48.1269882],[12.7585565,48.1266548],[12.7583107,48.1263522],[12.7581257,48.1260686],[12.7579723,48.1256773],[12.7579393,48.1253205],[12.7579957,48.1247973],[12.7581796,48.1238945],[12.7583053,48.1233675],[12.7584576,48.1229759],[12.758876,48.1222487],[12.7590495,48.1218958],[12.7592012,48.1213912],[12.7592466,48.1211057],[12.7592199,48.1203827],[12.7591106,48.1197952],[12.7589605,48.1192913],[12.7586685,48.1186952],[12.7582694,48.118116],[12.7577966,48.1176005],[12.7570786,48.1170118],[12.7554186,48.1157489],[12.7526186,48.1136833],[12.7522844,48.1134378],[12.7518575,48.1130986],[12.7517963,48.1130501],[12.7508552,48.1122392],[12.7502849,48.1116447],[12.7497458,48.110887],[12.7494922,48.1102636],[12.7492832,48.1092317],[12.749244,48.1085127],[12.74928,48.1078687],[12.749609,48.1058955],[12.7499643,48.1037236],[12.7504102,48.1009572],[12.750666,48.0995899],[12.7507133,48.0991436],[12.7507151,48.0991329],[12.7510107,48.0973635],[12.7513029,48.0956119],[12.7515958,48.0938316],[12.7518886,48.0920791],[12.7521919,48.0902219],[12.7523449,48.0893741],[12.7525215,48.0885102],[12.7527587,48.0875913],[12.7529806,48.0868349],[12.753348,48.0858311],[12.7536752,48.0849982],[12.7540407,48.084114],[12.7544427,48.0832451],[12.754845,48.0824349],[12.7552874,48.0815202],[12.7557507,48.0806195],[12.7562108,48.0797514],[12.7566053,48.0790462],[12.7566473,48.0789713],[12.7571516,48.0781649],[12.758038,48.0768731],[12.7587618,48.075984],[12.7594809,48.0751672],[12.7601181,48.0744752],[12.7608185,48.0737508],[12.7615162,48.0730846],[12.7617525,48.0728676],[12.7621998,48.0724572],[12.7631392,48.0716587],[12.7639927,48.0709608],[12.7653997,48.0698449],[12.7666443,48.068812],[12.7675134,48.0681234],[12.7682482,48.0675583],[12.7689677,48.0670026],[12.7695773,48.0665544],[12.7701206,48.0661796],[12.770193,48.0661325],[12.7704846,48.0659435],[12.7733641,48.0641873],[12.7756761,48.0627686],[12.7779028,48.0614068],[12.7797786,48.0602495],[12.7816223,48.0591223],[12.7835072,48.0579526],[12.7854584,48.0567465],[12.7873753,48.0556112],[12.7874656,48.0555576],[12.7894577,48.0544027],[12.7916918,48.053109],[12.7937424,48.0519133],[12.7956083,48.0508257],[12.796514,48.0503041],[12.7990012,48.0488718],[12.8043909,48.0457345],[12.8053811,48.0451263],[12.8080467,48.0435642],[12.8100136,48.0424112],[12.8155045,48.0391714],[12.8204331,48.0362269],[12.8264088,48.0326359],[12.8299798,48.030524],[12.8317766,48.0294222],[12.8339862,48.0280627],[12.8386803,48.0251359],[12.840533,48.0237567],[12.8405378,48.0237531],[12.8423619,48.0223951],[12.8450131,48.0203645],[12.8485396,48.0177086],[12.8494141,48.016967],[12.8502052,48.016211],[12.8527549,48.0135974],[12.8537929,48.0124907],[12.8548556,48.0112051],[12.8559919,48.0097011],[12.8568335,48.0084661],[12.857299,48.0076006],[12.8575364,48.0068549],[12.8585155,48.0027093],[12.8593861,47.9991324],[12.8593891,47.9991195],[12.8601772,47.99663],[12.8611539,47.9943409],[12.86229,47.9917439],[12.8635951,47.9877243],[12.8645277,47.9842905],[12.8656293,47.9804505],[12.8667138,47.9765682],[12.8679252,47.9727905],[12.8685486,47.9710105],[12.8693292,47.9691724],[12.870293,47.967496],[12.8711145,47.9664288],[12.8719436,47.96557],[12.8729861,47.9646461],[12.8739101,47.9639227],[12.8748231,47.9632726],[12.8758725,47.9626053],[12.8758765,47.9626028],[12.8759271,47.9625707],[12.8772935,47.9618433],[12.8786241,47.9612162],[12.8805161,47.9604629],[12.8819103,47.960005],[12.8838918,47.9594768],[12.8859515,47.9590703],[12.8880264,47.958777],[12.8901196,47.958583],[12.8936521,47.9583906],[12.8990042,47.9580988],[12.9034158,47.9578606],[12.9072494,47.9576554],[12.9086758,47.9575489],[12.9100728,47.9573634],[12.9114873,47.9570987],[12.9130139,47.95671],[12.9147403,47.9561393],[12.9159167,47.9556585],[12.9173263,47.9549968],[12.9180874,47.954609],[12.9188213,47.9541344],[12.9193472,47.9537116],[12.9196616,47.9534208],[12.9200013,47.9530454],[12.9203103,47.9525296],[12.9205202,47.9519905],[12.9206776,47.9513751],[12.9206988,47.9508701],[12.9206736,47.9504815],[12.9206286,47.9500861],[12.9205553,47.949693],[12.9204529,47.9493018],[12.9192663,47.9453373],[12.9192176,47.9451436],[12.9191871,47.9449485],[12.9191746,47.9447523],[12.9191737,47.9442161],[12.9191886,47.9436798],[12.9192191,47.9431439],[12.9192656,47.9426084],[12.9192916,47.9424352],[12.919334,47.9422635],[12.9193932,47.9420939],[12.9194206,47.9420303],[12.9194713,47.9419131],[12.9195607,47.9417348],[12.919661,47.9415592],[12.919772,47.9413865],[12.9198938,47.9412171],[12.9200261,47.9410513],[12.9201686,47.9408893],[12.920321,47.9407315],[12.9204831,47.9405781],[12.9206545,47.9404293],[12.9208352,47.9402856],[12.9210246,47.9401471],[12.9212223,47.9400139],[12.9214284,47.9398865],[12.9216421,47.939765],[12.9218631,47.9396495],[12.9221014,47.9395393],[12.9223504,47.9394409],[12.92261,47.9393554],[12.9228771,47.9392814],[12.9232919,47.9391884],[12.9237143,47.9391121],[12.9241429,47.9390529],[12.9245757,47.9390108],[12.9250117,47.9389859],[12.9254488,47.9389784],[12.9258859,47.9389885],[12.9263214,47.9390166],[12.9272428,47.9390937],[12.9278897,47.9391546],[12.9285335,47.9392287],[12.9291736,47.9393159],[12.9298095,47.9394162],[12.9304407,47.939529],[12.9310666,47.9396547],[12.9316865,47.9397931],[12.9322989,47.939946],[12.9329595,47.940117],[12.9331356,47.9401666],[12.9333073,47.9402228],[12.9334739,47.9402856],[12.933635,47.9403545],[12.9336893,47.940382],[12.9337392,47.9404133],[12.9339104,47.9405363],[12.9340746,47.9406633],[12.9342298,47.9407955],[12.9343812,47.9409294],[12.9344878,47.9410407],[12.9345773,47.9411578],[12.9346496,47.9412807],[12.9347038,47.9414079],[12.934739,47.9415374],[12.9347552,47.9416693],[12.9347665,47.9418422],[12.934768,47.9418642],[12.9347736,47.9419213],[12.9347773,47.9419573],[12.9347779,47.9419641],[12.9347795,47.9419804],[12.934787,47.9420556],[12.9347874,47.942059],[12.9348127,47.9422534],[12.9348445,47.9424474],[12.9348854,47.9426298],[12.9349423,47.9428102],[12.9350147,47.9429884],[12.9351025,47.9431632],[12.9352056,47.9433341],[12.9353232,47.9435008],[12.9354551,47.9436627],[12.9356013,47.9438191],[12.9356792,47.9438835],[12.9357733,47.9439371],[12.9358825,47.943979],[12.9360515,47.9440214],[12.9362231,47.9440476],[12.9363968,47.9440585],[12.9365726,47.944054],[12.9367504,47.9440333],[12.9369127,47.9440006],[12.9370686,47.9439574],[12.9372182,47.9439036],[12.9373851,47.9438301],[12.9375432,47.9437484],[12.9376921,47.9436591],[12.9378305,47.9435625],[12.9380053,47.9434252],[12.938171,47.9432828],[12.9383268,47.9431355],[12.9384728,47.9429838],[12.9385933,47.9428407],[12.9386977,47.9426919],[12.9387858,47.9425386],[12.938857,47.9423813],[12.9389108,47.9422209],[12.9389471,47.9420582],[12.9389657,47.9418943],[12.9389663,47.9417299],[12.9389509,47.9415062],[12.938927,47.9412826],[12.9388842,47.9408971],[12.938852,47.9405113],[12.9388307,47.9401252],[12.9388201,47.9397419],[12.9388198,47.9397269],[12.9388188,47.9396579],[12.938831,47.9391137],[12.9388519,47.9388597],[12.9388826,47.9386059],[12.9389577,47.9381161],[12.9390463,47.9376274],[12.9391482,47.9371397],[12.9392836,47.9366609],[12.9392635,47.9366534],[12.9396908,47.9351929],[12.9402699,47.9335178],[12.9407328,47.932194],[12.9412113,47.9309951],[12.9413509,47.930681],[12.9422139,47.9287392],[12.9437541,47.9259472],[12.945895,47.9227613],[12.9481119,47.9198024],[12.9499681,47.9175707],[12.950742,47.9167558],[12.9542782,47.9134482],[12.9577738,47.9101595],[12.9610344,47.9070875],[12.9626559,47.9054579],[12.964173,47.9037003],[12.9653871,47.9021215],[12.9664568,47.9006654],[12.9667598,47.9002524],[12.9668461,47.9001348],[12.9672208,47.8995598],[12.9674897,47.8991472],[12.9674898,47.8991471],[12.9679222,47.8984837],[12.9696756,47.895638],[12.9715816,47.8925776],[12.9736729,47.889193],[12.9749496,47.8871268],[12.9785062,47.8814278],[12.9799743,47.8791228],[12.9815668,47.8768055],[12.9830779,47.8747923],[12.9845978,47.8727769],[12.9861522,47.8708478],[12.9875954,47.8691913],[12.9880529,47.8686827],[12.9920287,47.8643029],[12.9930227,47.863228],[12.9936498,47.8625656],[12.9945685,47.8615888],[12.9956167,47.8604892],[12.9965666,47.8595061],[12.9977551,47.8582651],[12.9985061,47.8575128],[12.9992793,47.8567644],[12.999687,47.8563144],[13.000192,47.8557469],[13.0013973,47.8543925],[13.0018317,47.8528617],[13.0023334,47.852068],[13.0030711,47.8506786],[13.0033609,47.8500223],[13.0036153,47.8493221],[13.0038138,47.8486137],[13.0039559,47.8478992],[13.0040983,47.8470009],[13.0041715,47.8462269],[13.0041455,47.8454516],[13.0040191,47.8446808],[13.0037946,47.8439201],[13.0035274,47.8431807],[13.0032601,47.842582],[13.0029693,47.8421051],[13.0027151,47.8417655],[13.0024286,47.8414377],[13.0021111,47.8411231],[13.0014728,47.8405327],[13.0003001,47.8394881],[12.9997635,47.8390354],[12.9990715,47.838473],[12.9982794,47.8378423],[12.9968579,47.8367709],[12.9965298,47.836546],[12.9958741,47.8361193],[12.9941395,47.8351029],[12.9931808,47.8345569],[12.9914402,47.8335534],[12.9902282,47.8327754],[12.9890728,47.8319612],[12.9887915,47.831756],[12.9877195,47.8309008],[12.9861498,47.8296476],[12.9857625,47.8293232],[12.9852845,47.8288907],[12.9850391,47.8286427],[12.9842464,47.8277876],[12.9835649,47.8269306],[12.9831039,47.8262565],[12.9826135,47.8254191],[12.9808091,47.8222879],[12.978941,47.8190542],[12.9773443,47.8163247],[12.9766626,47.815368],[12.9758546,47.8142985],[12.973694,47.8113587],[12.9732824,47.8109199],[12.9729121,47.8104249],[12.9723347,47.8096578],[12.9717349,47.8088376],[12.9705941,47.8074044],[12.9688409,47.8053954],[12.9670738,47.8033979],[12.9660767,47.8022567],[12.9654095,47.8015128],[12.9648003,47.8007808],[12.9644733,47.800355],[12.9641876,47.7999998],[12.9634935,47.7993257],[12.9628517,47.7987031],[12.9624512,47.7983086],[12.9620012,47.7979427],[12.9616508,47.7976712],[12.9609284,47.797172],[12.9589875,47.7960037],[12.9574403,47.7950769],[12.9559419,47.7941688],[12.9546375,47.7933304],[12.9528451,47.7921327],[12.9520894,47.7915845],[12.9517053,47.7912891],[12.9513247,47.7909749],[12.9504383,47.7901164],[12.9499645,47.7895944],[12.949642,47.7892159],[12.9493118,47.7887769],[12.948454,47.7875611],[12.948244,47.7873228],[12.9479503,47.7870263],[12.9476697,47.7867985],[12.9472758,47.7865389],[12.947001,47.7863663],[12.9467433,47.7862462],[12.9464947,47.7861626],[12.9461527,47.7860998],[12.9458893,47.7860691],[12.9454948,47.7860939],[12.9441078,47.7862407],[12.9437979,47.786258],[12.9434871,47.7862343],[12.94326,47.786196],[12.9428358,47.7861022],[12.9411165,47.7856959],[12.9406484,47.7855605],[12.9401241,47.785343],[12.9395904,47.7850099],[12.9393384,47.7847893],[12.9390474,47.7844751],[12.9385427,47.7837438],[12.9384563,47.7835228],[12.938412,47.7833238],[12.9384208,47.7831252],[12.9384795,47.78291],[12.9392609,47.7811536],[12.9396466,47.7802105],[12.9397401,47.7799755],[12.9398006,47.7796567],[12.9398416,47.7789705],[12.9399981,47.7788319],[12.9396953,47.7783908],[12.9390885,47.7778777],[12.9388556,47.7777446],[12.9386653,47.7776595],[12.9383401,47.7775466],[12.9365787,47.7771002],[12.9355809,47.7768353],[12.9350281,47.7766723],[12.9343879,47.7764372],[12.9337036,47.7761634],[12.9332246,47.7759422],[12.9328053,47.7757441],[12.9324021,47.7754968],[12.9318745,47.7752773],[12.9302348,47.7739569],[12.928639,47.7716256],[12.9283721,47.7711517],[12.9277236,47.7698848],[12.9287257,47.76958],[12.9294134,47.7696882],[12.9294873,47.7697774],[12.9297355,47.7698754],[12.9297052,47.7701512],[12.9309934,47.7706096],[12.9318858,47.7705751],[12.9323343,47.7705808],[12.9327429,47.7706862],[12.932942,47.7709186],[12.9329953,47.771257],[12.9333859,47.7714481],[12.9337226,47.7716415],[12.93416,47.7720211],[12.9344622,47.7721682],[12.934804,47.7722781],[12.9356167,47.7721437],[12.9357184,47.7719782],[12.9354736,47.7714847],[12.9353791,47.7710434],[12.9348382,47.7706277],[12.9347919,47.7704321],[12.9347799,47.7701906],[12.9422359,47.7709804],[12.9424431,47.770474],[12.9434775,47.7678647],[12.9448157,47.7644088],[12.9434661,47.7629057],[12.9426831,47.7620284],[12.9407334,47.7598537],[12.9402271,47.7598536],[12.9400508,47.7596844],[12.9400249,47.7593912],[12.9397501,47.7592462],[12.9392188,47.7595214],[12.9384002,47.7592933],[12.9373133,47.7588844],[12.9362994,47.7588585],[12.9356948,47.7583039],[12.935126,47.7579298],[12.9352482,47.7575452],[12.9353995,47.7572744],[12.9353815,47.7570253],[12.935505,47.7570028],[12.9362564,47.7571416],[12.9364998,47.7574707],[12.9364687,47.7574954],[12.9364953,47.7577887],[12.9364074,47.7579096],[12.936931,47.7582571],[12.937843,47.7581296],[12.93782,47.7580111],[12.9379404,47.7578786],[12.9375773,47.7572558],[12.9376577,47.7568984],[12.9379116,47.7566524],[12.9359464,47.7538836],[12.9362816,47.7490584],[12.9352022,47.7473215],[12.9345227,47.7476217],[12.9341526,47.7480306],[12.9339915,47.7479267],[12.9339153,47.7478428],[12.9337487,47.7477308],[12.9335747,47.7476197],[12.933136,47.7474027],[12.9328541,47.7473309],[12.9327009,47.747235],[12.9326475,47.747163],[12.9323903,47.7464632],[12.9315879,47.7459629],[12.9310739,47.7455222],[12.9309545,47.7452892],[12.9309793,47.7448529],[12.9290779,47.7448622],[12.9285055,47.7448564],[12.9252466,47.7445574],[12.9212988,47.7441669],[12.9211361,47.7435115],[12.9182359,47.7425822],[12.9183429,47.7424266],[12.9178505,47.7421803],[12.9175347,47.7419631],[12.9173501,47.7415649],[12.917264,47.7411947],[12.916616,47.7404667],[12.9165809,47.7398953],[12.9162582,47.7394079],[12.9161034,47.739203],[12.9156579,47.7394059],[12.9151067,47.7393516],[12.9151049,47.7390408],[12.9147709,47.7380891],[12.9144383,47.7377049],[12.9139925,47.7374122],[12.9137458,47.737403],[12.9133526,47.7373422],[12.9131683,47.7372709],[12.9126914,47.7370763],[12.9124184,47.7370619],[12.9123306,47.7370002],[12.9123406,47.7369035],[12.9124197,47.7367456],[12.9124677,47.7363019],[12.9124068,47.7361891],[12.9113932,47.7354822],[12.9112199,47.7352525],[12.9111789,47.735073],[12.9112779,47.7342474],[12.9113506,47.7337459],[12.9116435,47.7336594],[12.9117787,47.7334899],[12.9116945,47.733398],[12.9115716,47.733332],[12.9113549,47.7331267],[12.91132,47.7329395],[12.9114302,47.7325751],[12.9114013,47.7324612],[12.9112033,47.732231],[12.9107935,47.7318753],[12.9107219,47.7316093],[12.9106044,47.7314887],[12.9103509,47.7314055],[12.9101782,47.7312626],[12.9098617,47.731049],[12.9095787,47.7310178],[12.9093309,47.7309689],[12.9092826,47.7307988],[12.9091605,47.7306443],[12.9087354,47.7304217],[12.90859,47.7301592],[12.9082784,47.7300201],[12.9080405,47.7298522],[12.9080026,47.7297288],[12.9080284,47.7296355],[12.9080871,47.7295215],[12.9080861,47.7293594],[12.9080327,47.7292721],[12.9077148,47.729155],[12.9073557,47.7288763],[12.9069367,47.7287978],[12.9067286,47.7287334],[12.9065706,47.7285772],[12.9064228,47.7284916],[12.9061956,47.7284482],[12.905818,47.728422],[12.9056152,47.7283607],[12.9055718,47.7282842],[12.9055932,47.7281694],[12.9057018,47.7280258],[12.9057233,47.7279125],[12.9054985,47.7277458],[12.9054097,47.7277216],[12.905288,47.7277566],[12.9052244,47.7277543],[12.9046622,47.7275246],[12.9045536,47.7274474],[12.9044903,47.7271773],[12.9044777,47.7270422],[12.9045568,47.7268579],[12.9047196,47.7266005],[12.9045839,47.7263912],[12.9042669,47.725825],[12.9042817,47.7256277],[12.9044417,47.7254133],[12.9044952,47.7253514],[12.9046152,47.725242],[12.904766,47.7251111],[12.9048258,47.724947],[12.9048119,47.7248065],[12.904799,47.7247156],[12.9048272,47.7246344],[12.9048468,47.7244824],[12.9049168,47.7242861],[12.9051107,47.7239444],[12.9051627,47.7237318],[12.9052249,47.7235644],[12.9052681,47.7234383],[12.9053482,47.7233577],[12.9055516,47.7232425],[12.90577,47.7231756],[12.9059502,47.7230767],[12.9060765,47.7229571],[12.9062321,47.722889],[12.9064585,47.7229038],[12.9065627,47.7229092],[12.906831,47.722923],[12.9069796,47.7228315],[12.9071282,47.7226655],[12.9072798,47.7226084],[12.9080045,47.7225496],[12.908254,47.7224199],[12.9085573,47.7221312],[12.908649,47.7219168],[12.9090884,47.7214973],[12.9095047,47.7212889],[12.9098885,47.7210888],[12.9102155,47.7207909],[12.9105169,47.7205713],[12.9110298,47.7202382],[12.9112154,47.7201566],[12.9113106,47.7200131],[12.9114198,47.7196575],[12.9114257,47.7193639],[12.9114976,47.7192452],[12.911589,47.719128],[12.9122016,47.7188581],[12.9126223,47.7184904],[12.9125348,47.718229],[12.912507,47.7181277],[12.9124715,47.7179113],[12.9125066,47.7178776],[12.9125863,47.7178012],[12.9128325,47.7176904],[12.9128639,47.717609],[12.912862,47.7174109],[12.9129543,47.7173515],[12.9132434,47.717302],[12.9138466,47.717136],[12.914938,47.7168554],[12.9152425,47.7167995],[12.915434,47.7169713],[12.9158234,47.7170582],[12.9162287,47.7170012],[12.9166112,47.7168919],[12.9166431,47.7168309],[12.9166506,47.7167152],[12.9167144,47.7166444],[12.9168606,47.7164588],[12.9170103,47.7163781],[12.9171463,47.7161893],[12.9171385,47.7160722],[12.9172793,47.7158351],[12.9177324,47.7154913],[12.9179037,47.7154159],[12.9183249,47.7150999],[12.918456,47.7149765],[12.9185362,47.7149505],[12.918805,47.7149999],[12.9191185,47.714827],[12.9193921,47.7147173],[12.9198886,47.7146996],[12.9200554,47.7147114],[12.9204937,47.714652],[12.920575,47.7145809],[12.9205481,47.714471],[12.9204792,47.7143723],[12.920778,47.7142858],[12.9209489,47.7142753],[12.9212477,47.7143114],[12.9213804,47.7141918],[12.9215352,47.7141275],[12.9218871,47.7141427],[12.9219517,47.71438],[12.9220722,47.7143757],[12.9222956,47.7142124],[12.9223248,47.7140869],[12.9224439,47.7139994],[12.9227623,47.71385],[12.9229881,47.7138568],[12.9230828,47.7136448],[12.9230903,47.7135468],[12.9229903,47.7134152],[12.9229906,47.7133652],[12.9231507,47.7133315],[12.9232719,47.7133279],[12.9236665,47.7127473],[12.9238112,47.7126491],[12.9238312,47.7125782],[12.9237856,47.7125572],[12.9236024,47.7125289],[12.9235598,47.7124033],[12.923486,47.7121469],[12.923516,47.712068],[12.9238376,47.7120279],[12.9238141,47.7118447],[12.9239776,47.7116479],[12.9238585,47.711512],[12.9239234,47.7114206],[12.9241727,47.7113199],[12.9242147,47.7111624],[12.924359,47.71109],[12.9244982,47.7110721],[12.9247388,47.7111117],[12.9250103,47.7110416],[12.9251586,47.7105883],[12.9250331,47.7103136],[12.9259021,47.710258],[12.9268098,47.7105074],[12.9271654,47.7103815],[12.9275651,47.7101638],[12.9282243,47.7097721],[12.9297693,47.70972],[12.930862,47.7097],[12.9323222,47.7096162],[12.9331693,47.7095538],[12.9351101,47.7102183],[12.9359743,47.7106262],[12.9388834,47.7115773],[12.9390701,47.7117408],[12.9394462,47.7116239],[12.9399064,47.7117238],[12.9404541,47.7117498],[12.941107,47.7119534],[12.942351,47.7117477],[12.9426541,47.7118126],[12.9434942,47.7117365],[12.944066,47.7114835],[12.944419,47.7114835],[12.9446185,47.7116329],[12.9446856,47.7118029],[12.9461474,47.7121317],[12.9464151,47.7121844],[12.9468721,47.7120776],[12.9476907,47.7116433],[12.9481526,47.7113939],[12.9489278,47.7111922],[12.9500243,47.7110669],[12.95069,47.710805],[12.9525404,47.7094218],[12.952716,47.7092632],[12.9527877,47.7091879],[12.9528689,47.7091112],[12.9529163,47.709072],[12.9530734,47.708988],[12.953182,47.7089438],[12.9532994,47.7089077],[12.9533657,47.7088535],[12.9535025,47.7087647],[12.9536051,47.7087065],[12.9539364,47.7085548],[12.9543727,47.7083325],[12.9545607,47.7082331],[12.9546948,47.708179],[12.9547457,47.7081663],[12.9548068,47.7081618],[12.9550482,47.7080896],[12.9552115,47.7080351],[12.9552855,47.7080003],[12.9553673,47.7079502],[12.9554833,47.7078694],[12.9555075,47.7078478],[12.9555434,47.7077985],[12.9567477,47.707804],[12.9581297,47.7085726],[12.959611,47.709272],[12.961425,47.7091056],[12.9627018,47.7094851],[12.9637885,47.7090281],[12.9646815,47.7086949],[12.9653362,47.7085527],[12.9663078,47.7079908],[12.9677568,47.7080431],[12.9687229,47.7077837],[12.9695774,47.7079818],[12.9707683,47.7077467],[12.9719441,47.7074972],[12.9727345,47.7071856],[12.9738047,47.7071526],[12.974506,47.7074043],[12.9754208,47.7076447],[12.9758572,47.707635],[12.9781822,47.7075292],[12.9799001,47.7074594],[12.9810931,47.7074994],[12.981937,47.7075026],[12.9844133,47.7074387],[12.9862195,47.7074155],[12.9871975,47.707412],[12.9879158,47.7076144],[12.9892832,47.7080133],[12.9912686,47.7085882],[12.9914808,47.708646],[12.9913928,47.7089634],[12.9911841,47.7096943],[12.9913088,47.7098575],[12.9914818,47.7100804],[12.9917462,47.7104353],[12.9922952,47.7109429],[12.9923541,47.7109767],[12.992395,47.7110224],[12.9923142,47.7111663],[12.9923153,47.7112375],[12.992358,47.7112788],[12.9924408,47.7113176],[12.9935989,47.7117026],[12.994002,47.7121589],[12.9943684,47.7125649],[12.9949796,47.7130617],[12.9958695,47.7130989],[12.9983718,47.7131751],[12.9987147,47.7131916],[12.9995876,47.7131742],[13.0006586,47.7131706],[13.00193,47.7132685],[13.0022998,47.7133759],[13.0023182,47.7135142],[13.0023727,47.7135958],[13.0025584,47.7137027],[13.0028048,47.7139755],[13.002972,47.714343],[13.0029951,47.7144318],[13.0030297,47.7145563],[13.0030987,47.7146207],[13.0038995,47.7151163],[13.0042668,47.715177],[13.0043537,47.7151698],[13.0045312,47.7151269],[13.0047653,47.7158319],[13.0047602,47.7159388],[13.0048505,47.7160804],[13.0050411,47.7163475],[13.0053739,47.7165245],[13.0056456,47.7166758],[13.0059574,47.716935],[13.0057056,47.7171754],[13.0052005,47.7176323],[13.0048919,47.7179226],[13.0047574,47.7180526],[13.0050544,47.7181783],[13.0055135,47.7183505],[13.0057993,47.7184671],[13.0059498,47.7187324],[13.0060469,47.7189052],[13.0062727,47.7191951],[13.0069602,47.7195196],[13.0070069,47.7199282],[13.0075399,47.7205063],[13.0079114,47.7202768],[13.0080416,47.720898],[13.0082468,47.7218783],[13.0083075,47.7221609],[13.0085282,47.722301],[13.0086562,47.7223761],[13.0089757,47.72237],[13.0091942,47.7223518],[13.0094564,47.7222831],[13.0095373,47.7223526],[13.009553,47.7224432],[13.0096033,47.7226075],[13.0097679,47.7225767],[13.0098224,47.7225747],[13.0099116,47.7225813],[13.0100695,47.7227157],[13.0101289,47.7227509],[13.0102553,47.7228149],[13.0103934,47.7228754],[13.0105247,47.7229239],[13.0106655,47.7228652],[13.0107499,47.7228209],[13.0109265,47.7227384],[13.0110917,47.722688],[13.011268,47.7226445],[13.0114204,47.7226293],[13.0114534,47.7226205],[13.0114828,47.7226169],[13.0115369,47.722621],[13.0115759,47.722627],[13.0116466,47.7226201],[13.0117148,47.7225994],[13.0117847,47.7225742],[13.0120403,47.7225],[13.0121453,47.722468],[13.0121837,47.7224632],[13.0122631,47.7224605],[13.0123942,47.7224934],[13.0124689,47.7224888],[13.012513,47.7224778],[13.0125645,47.7224605],[13.0126277,47.7224358],[13.0126895,47.7224276],[13.0127377,47.7224258],[13.012809,47.7224054],[13.0128253,47.7223951],[13.0128532,47.7223856],[13.0128926,47.7223874],[13.0129333,47.7223961],[13.0129571,47.7224139],[13.0129729,47.7224346],[13.0129823,47.7224514],[13.0129726,47.7224926],[13.0129699,47.7225172],[13.012994,47.7225465],[13.0130319,47.7225701],[13.0130685,47.7225854],[13.0131071,47.7225919],[13.0131761,47.722585],[13.0132318,47.7225782],[13.0132933,47.7225808],[13.0133767,47.7225966],[13.0135144,47.7226469],[13.013677,47.7227184],[13.0137591,47.7227482],[13.0137993,47.7227576],[13.0138319,47.7227579],[13.0138621,47.7227609],[13.0139143,47.7227759],[13.0139552,47.7227782],[13.0139939,47.7227762],[13.0140929,47.7227562],[13.0143228,47.7227169],[13.0143961,47.7227102],[13.0145338,47.7227136],[13.0147592,47.7227162],[13.014907,47.7226488],[13.0150432,47.7226299],[13.0153639,47.7226337],[13.0156438,47.7226457],[13.0160778,47.7227318],[13.0167498,47.7228932],[13.0169985,47.7229261],[13.0174945,47.7229387],[13.0182221,47.7228944],[13.0183382,47.7228752],[13.0185229,47.7227926],[13.0185623,47.7226673],[13.0185685,47.7225564],[13.0185739,47.7224805],[13.0186873,47.7221604],[13.0188218,47.7220781],[13.0191137,47.721814],[13.0191341,47.7217695],[13.0191579,47.721738],[13.0191565,47.7216713],[13.0192045,47.7215945],[13.0193572,47.7215141],[13.0194889,47.7214651],[13.0197134,47.7214147],[13.0204445,47.7213284],[13.0205523,47.7212277],[13.020636,47.7211659],[13.0207416,47.7211428],[13.0208798,47.7211386],[13.021074,47.7211731],[13.0211607,47.7212254],[13.0212922,47.7212247],[13.0219481,47.720998],[13.0219852,47.7209214],[13.022,47.7208587],[13.022026,47.7208199],[13.0221266,47.7207977],[13.0225853,47.7207811],[13.0226931,47.7207856],[13.0227811,47.7208324],[13.0228437,47.7208948],[13.0229448,47.7208262],[13.0229944,47.7206193],[13.0230588,47.7205038],[13.0231126,47.7204185],[13.0234029,47.7201233],[13.0234933,47.7200738],[13.0235777,47.7200757],[13.0237126,47.7201424],[13.0238193,47.720116],[13.0239293,47.7200427],[13.0241034,47.719878],[13.0241887,47.7197605],[13.024249,47.7196547],[13.0243374,47.7195227],[13.0244667,47.7194347],[13.024697,47.7193624],[13.0247387,47.7193239],[13.0247922,47.7187314],[13.0260509,47.7178216],[13.026508,47.717624],[13.0266005,47.7172219],[13.0269543,47.7165718],[13.0278464,47.7162718],[13.0287562,47.7158505],[13.0294222,47.7160165],[13.0307971,47.7168623],[13.0326647,47.7165977],[13.0334804,47.7164978],[13.0351157,47.7160372],[13.0354365,47.7159466],[13.0364922,47.7157241],[13.0379194,47.7154576],[13.0387925,47.7153417],[13.0399505,47.7145412],[13.0404067,47.7144081],[13.0408967,47.7142762],[13.0413441,47.714154],[13.0424421,47.7140168],[13.0428835,47.7139568],[13.0430105,47.7139386],[13.0427872,47.7137212],[13.0426342,47.7135379],[13.0424647,47.7132871],[13.0423613,47.7130349],[13.0422717,47.7128264],[13.0427661,47.7128133],[13.0429999,47.7127961],[13.0433903,47.7127834],[13.0459299,47.712702],[13.0460629,47.7126266],[13.0461687,47.7125275],[13.0462234,47.7124785],[13.046559,47.7122882],[13.0468197,47.7121781],[13.0470478,47.7120397],[13.0470773,47.7119802],[13.0470531,47.7118971],[13.0475477,47.7116269],[13.0479969,47.7114278],[13.0483158,47.7112692],[13.0483479,47.7112061],[13.0484353,47.7111502],[13.0490287,47.7108081],[13.0492645,47.7107023],[13.0493839,47.7106269],[13.0494983,47.7105316],[13.0489945,47.7101787],[13.0483559,47.7094968],[13.0480389,47.7091283],[13.0489752,47.7086927],[13.0492328,47.7085347],[13.049559,47.7082668],[13.0498535,47.707945],[13.0503327,47.7075699],[13.0506847,47.7073714],[13.050933,47.7070912],[13.0512902,47.7068227],[13.0516498,47.7065012],[13.052483,47.705722],[13.0526456,47.705544],[13.0527475,47.7052787],[13.0543333,47.7046934],[13.0550963,47.7042324],[13.0554297,47.7039752],[13.0557029,47.7037597],[13.0560537,47.7032343],[13.0563017,47.702691],[13.0565172,47.7022665],[13.056555,47.7020215],[13.0567197,47.7016695],[13.0572501,47.701135],[13.0577619,47.7007791],[13.0581509,47.7005048],[13.0586587,47.699999],[13.0589085,47.6994609],[13.0593243,47.6989318],[13.0595579,47.6986499],[13.0601372,47.6980134],[13.0604293,47.6977253],[13.0606895,47.6973365],[13.0608569,47.6971475],[13.0616268,47.6967199],[13.0621349,47.6962731],[13.062638,47.6959644],[13.063128,47.6957735],[13.0637237,47.6956668],[13.0641246,47.6957045],[13.064533,47.6957271],[13.0647158,47.695509],[13.0649075,47.6952733],[13.0651595,47.694939],[13.0656918,47.6945055],[13.0662095,47.6941503],[13.0665819,47.6940179],[13.0673931,47.6935742],[13.0675703,47.6933648],[13.0676791,47.6931],[13.0679836,47.6929551],[13.0682921,47.6927572],[13.0684124,47.692607],[13.0687915,47.6922422],[13.0691981,47.6919276],[13.0694261,47.6918479],[13.0694804,47.6918911],[13.0700729,47.6919559],[13.0703414,47.6919046],[13.0705647,47.6917166],[13.0708387,47.6917045],[13.0710733,47.6917878],[13.0713448,47.6918443],[13.0717731,47.6918574],[13.0724409,47.6920385],[13.0729071,47.6919685],[13.0731229,47.6917279],[13.073589,47.6917272],[13.0739781,47.691731],[13.0742347,47.691866],[13.0746304,47.6915629],[13.0751302,47.6911509],[13.0755558,47.6908139],[13.0757767,47.6906122],[13.0763705,47.6900464],[13.0766419,47.6897847],[13.0770786,47.6894218],[13.0771294,47.6893511],[13.0770668,47.6892916],[13.0772425,47.6891399],[13.0774451,47.6890679],[13.0777433,47.6889134],[13.0779927,47.6887161],[13.0780655,47.688639],[13.0781245,47.6885283],[13.0784599,47.6880809],[13.0786488,47.6879592],[13.0787351,47.6879283],[13.0788173,47.687916],[13.0790738,47.687721],[13.0792847,47.687616],[13.079475,47.6875634],[13.0801259,47.6872701],[13.080268,47.6872146],[13.0804354,47.6871741],[13.0807484,47.6870338],[13.0806453,47.6868584],[13.0804524,47.6866306],[13.0802264,47.6864254],[13.0800325,47.6860342],[13.079727,47.685331],[13.0796299,47.6845317],[13.079666,47.6843235],[13.0796632,47.6838765],[13.0795697,47.6836073],[13.0794631,47.6833033],[13.0795087,47.683066],[13.0793549,47.6829223],[13.0793951,47.6825979],[13.0796415,47.6821295],[13.0797148,47.6818539],[13.0790413,47.6815273],[13.0787668,47.6813822],[13.0787562,47.6807507],[13.0787774,47.6804953],[13.0786182,47.6801055],[13.0784447,47.6797268],[13.0782342,47.6789888],[13.0780923,47.6784511],[13.0779165,47.6777059],[13.0777162,47.6772445],[13.0777451,47.6768887],[13.0778082,47.6763559],[13.0778677,47.6757767],[13.0779209,47.6753351],[13.0779523,47.675032],[13.0780143,47.6745933],[13.0774882,47.6740886],[13.0772154,47.6736678],[13.0769921,47.6732191],[13.0768889,47.6728312],[13.0771351,47.6725298],[13.077132,47.6721651],[13.0768592,47.6716046],[13.0768746,47.670837],[13.0772036,47.6703825],[13.0773478,47.669194],[13.0775359,47.6689689],[13.0776656,47.6688075],[13.0776006,47.6686452],[13.0777537,47.6681539],[13.077878,47.6679244],[13.0778865,47.6676355],[13.0779243,47.667332],[13.0780811,47.6668746],[13.0783249,47.6664245],[13.078656,47.6660294],[13.0790503,47.6650831],[13.0791597,47.6649168],[13.0792122,47.6647569],[13.0793798,47.6643249],[13.0795064,47.6639474],[13.0796592,47.6636205],[13.0797284,47.6632725],[13.0799361,47.662909],[13.0800589,47.6624823],[13.0803375,47.6623369],[13.0804977,47.6622507],[13.0810683,47.6620736],[13.0813491,47.6617751],[13.0815953,47.6617066],[13.0819118,47.6613944],[13.0824316,47.6611419],[13.083506,47.6608263],[13.0842675,47.6605798],[13.0844464,47.6604735],[13.0845948,47.6603066],[13.0847276,47.659995],[13.0850584,47.6594843],[13.085057,47.6592686],[13.0851278,47.6590322],[13.0855996,47.6582114],[13.0857232,47.6580442],[13.0861325,47.6577763],[13.0864162,47.6573445],[13.0868622,47.6568796],[13.0873375,47.6563833],[13.0877785,47.65604],[13.087876,47.6558912],[13.0879462,47.6556808],[13.0880365,47.6555439],[13.0882338,47.6551751],[13.0884882,47.6550645],[13.0887053,47.654833],[13.0890038,47.6548287],[13.0891913,47.6546181],[13.0894697,47.6542733],[13.0896788,47.653941],[13.0896965,47.6537361],[13.0896654,47.6535352],[13.0895813,47.6532963],[13.0894866,47.6529949],[13.0891896,47.6524248],[13.0890072,47.651871],[13.0889356,47.6514129],[13.0886895,47.6511471],[13.0885281,47.6511368],[13.0885263,47.6509703],[13.088511,47.6507183],[13.0884905,47.6504135],[13.0882417,47.6500671],[13.0886163,47.6496099],[13.0887261,47.6494503],[13.0884972,47.649121],[13.088813,47.6489022],[13.0893299,47.6485552],[13.0891067,47.6479223],[13.0895322,47.6477039],[13.0899308,47.6473618],[13.0902609,47.647098],[13.0906388,47.6468365],[13.0909201,47.6464215],[13.0910167,47.6460268],[13.0911011,47.6457093],[13.0915746,47.6450413],[13.0917861,47.6445228],[13.0920413,47.6442845],[13.0932494,47.6437637],[13.0939993,47.6434445],[13.0947423,47.6429465],[13.0952364,47.6426024],[13.095687,47.6422371],[13.0957469,47.6421631],[13.095954,47.6419356],[13.0962854,47.6413175],[13.0970234,47.6407055],[13.0972042,47.6399851],[13.0974431,47.6396857],[13.0975766,47.6388697],[13.0979149,47.638264],[13.0982486,47.6376433],[13.0982395,47.6372601],[13.0985187,47.6368564],[13.0985501,47.6358403],[13.0988288,47.6354398],[13.0989358,47.6351717],[13.0987361,47.6347883],[13.0984464,47.6346897],[13.0982778,47.6346366],[13.0981577,47.6344462],[13.0980245,47.6339792],[13.0979381,47.6337191],[13.0976115,47.6333453],[13.0974501,47.6328423],[13.0971631,47.6325477],[13.0969745,47.6320557],[13.0966899,47.6317609],[13.0966572,47.631057],[13.096709,47.6307087],[13.09675,47.6303895],[13.0965185,47.6298044],[13.0961095,47.6293541],[13.0960424,47.6288874],[13.0956656,47.6283306],[13.0958947,47.6279971],[13.095112,47.627861],[13.0946236,47.6276021],[13.094314,47.62732],[13.0937162,47.6272101],[13.0930944,47.6270074],[13.0927551,47.6267834],[13.0924258,47.6263961],[13.092014,47.6259708],[13.0918448,47.6258467],[13.0917327,47.6255453],[13.0916122,47.6252962],[13.0914191,47.6249215],[13.0906539,47.624458],[13.089864,47.6240662],[13.0894531,47.6237889],[13.0887034,47.623269],[13.0882799,47.6230401],[13.0877799,47.6227178],[13.0874559,47.6225421],[13.0870206,47.622262],[13.0866915,47.6220431],[13.0859509,47.6214584],[13.0852101,47.6208823],[13.0845787,47.6205463],[13.0841581,47.6204164],[13.0836745,47.62023],[13.0831437,47.6200172],[13.0826673,47.6195571],[13.082236,47.619542],[13.0819713,47.6195802],[13.0816765,47.6196505],[13.0813327,47.619533],[13.0808925,47.6190951],[13.0806007,47.6189621],[13.0799175,47.6183651],[13.0798011,47.6181358],[13.0798706,47.6177447],[13.0797232,47.6175094],[13.0794165,47.6171356],[13.0793937,47.6168279],[13.0791924,47.6168197],[13.078809,47.6167897],[13.0786564,47.616727],[13.0784324,47.6164471],[13.0783501,47.6161365],[13.0783434,47.6158917],[13.0779622,47.6155814],[13.0778736,47.6153849],[13.0778317,47.6152789],[13.0778097,47.6148669],[13.0777986,47.6147529],[13.0774242,47.6144488],[13.076929,47.6143476],[13.0765562,47.6141966],[13.0758266,47.6137998],[13.075471,47.6134413],[13.0752858,47.6129195],[13.074574,47.6126276],[13.0739315,47.6123679],[13.0733463,47.6120101],[13.0728287,47.6116812],[13.0723328,47.6113766],[13.0716597,47.6105671],[13.0715755,47.6100378],[13.0717447,47.6095692],[13.0718114,47.6093923],[13.0720121,47.6091085],[13.0716689,47.6085911],[13.071639,47.6085222],[13.071534,47.6081263],[13.0715604,47.6078679],[13.071445,47.6074962],[13.0714203,47.6071576],[13.0714046,47.6070723],[13.071135,47.6067519],[13.0708501,47.6063871],[13.0702188,47.6057273],[13.0700096,47.6055432],[13.0698509,47.6053762],[13.069565,47.604941],[13.0695006,47.6048336],[13.0689991,47.604746],[13.0689465,47.60472],[13.068858,47.6046256],[13.0688364,47.6045553],[13.0687924,47.6045168],[13.0684837,47.604465],[13.068135,47.6044329],[13.0675264,47.6041445],[13.0671367,47.6039422],[13.0669804,47.6038979],[13.0666285,47.6039221],[13.0663765,47.6040023],[13.0661756,47.6039789],[13.0661003,47.6039514],[13.0659463,47.6038612],[13.0658512,47.603681],[13.0658145,47.6035804],[13.0657245,47.6035273],[13.0651851,47.6032919],[13.0647148,47.6031742],[13.0646142,47.6031627],[13.0645226,47.6031592],[13.0644753,47.603143],[13.0641447,47.6030213],[13.0639528,47.6028904],[13.0637258,47.602648],[13.0636946,47.602539],[13.0636365,47.6024406],[13.0635602,47.6024132],[13.0633643,47.6024515],[13.0632499,47.6023968],[13.0631637,47.6023201],[13.0630768,47.6022257],[13.0630753,47.6021458],[13.0632351,47.6019457],[13.0633342,47.6018597],[13.0632668,47.6017018],[13.062919,47.6016094],[13.0627651,47.6015498],[13.062619,47.6014623],[13.0626475,47.601173],[13.062828,47.6007817],[13.0628297,47.6006784],[13.062805,47.6005988],[13.0628083,47.6005249],[13.0628532,47.6004545],[13.0629176,47.6004104],[13.0629522,47.6002849],[13.0629335,47.6001664],[13.0629385,47.5999733],[13.0630459,47.5996483],[13.0632011,47.5993818],[13.0632943,47.5993828],[13.0634403,47.599338],[13.0635119,47.5993105],[13.0637505,47.5991518],[13.0638213,47.599071],[13.0639438,47.5986361],[13.0639525,47.5982176],[13.0639435,47.5981554],[13.063903,47.5980814],[13.0638152,47.5980288],[13.0637659,47.5979462],[13.0637626,47.5976679],[13.0638622,47.5975158],[13.0639453,47.5974601],[13.063975,47.5973869],[13.0640092,47.5971696],[13.0639793,47.5968733],[13.0639788,47.5966869],[13.0639966,47.5965796],[13.064015,47.5965203],[13.0641279,47.596322],[13.0641826,47.5962276],[13.0642931,47.5961271],[13.0643896,47.5960508],[13.0645268,47.5959894],[13.0647173,47.5957452],[13.0647691,47.59565],[13.0648284,47.5954736],[13.0650958,47.5952332],[13.0657831,47.5949141],[13.0661262,47.5947244],[13.066173,47.5945611],[13.0662332,47.5944899],[13.0663132,47.5944515],[13.0663843,47.5944264],[13.0664575,47.594396],[13.066685,47.594229],[13.0667597,47.5941004],[13.0668859,47.5940223],[13.0670416,47.5939435],[13.0671406,47.5939262],[13.0673099,47.5937574],[13.0674821,47.5935377],[13.0675374,47.5934348],[13.0680333,47.5922912],[13.0680879,47.5922121],[13.0683264,47.5920633],[13.0686309,47.5920206],[13.0698163,47.591967],[13.0704342,47.5919144],[13.0705116,47.5918898],[13.070581,47.5918246],[13.0707229,47.591725],[13.0710295,47.5916453],[13.0710986,47.5916532],[13.0712065,47.5914622],[13.0712272,47.5914018],[13.0711837,47.5913183],[13.0711387,47.5912472],[13.0711261,47.5912055],[13.0711694,47.5911359],[13.0713625,47.5908756],[13.0714632,47.5907145],[13.0714745,47.5906062],[13.0713754,47.5905206],[13.0713618,47.5904517],[13.0713526,47.5903576],[13.0715044,47.5899409],[13.0715643,47.5898705],[13.0715757,47.5897121],[13.0715565,47.5895999],[13.0714891,47.5893489],[13.0714993,47.589281],[13.071541,47.5891936],[13.0716791,47.5890714],[13.0717504,47.5889767],[13.0718449,47.5887469],[13.0719351,47.5886498],[13.0720199,47.5886167],[13.0720629,47.5885767],[13.0720923,47.5884387],[13.0720767,47.588385],[13.0719603,47.5883062],[13.0717103,47.5881871],[13.0716335,47.5881668],[13.0715744,47.5881338],[13.0714215,47.5879375],[13.0714471,47.5878944],[13.0713261,47.5877357],[13.0709774,47.5874187],[13.0708097,47.5872509],[13.0706755,47.5870907],[13.0706416,47.586978],[13.0705543,47.5869092],[13.0699646,47.5865672],[13.069423,47.5860566],[13.0688189,47.5859051],[13.0685145,47.5858059],[13.0677257,47.5858924],[13.0672434,47.5860069],[13.0657636,47.5863912],[13.0653652,47.5864247],[13.0652533,47.5864162],[13.0651989,47.5863663],[13.065074,47.5863264],[13.0648444,47.5862776],[13.0647071,47.5863005],[13.0644205,47.5863269],[13.0640729,47.586344],[13.0640014,47.5863262],[13.0629641,47.5861743],[13.0618499,47.5860217],[13.0613622,47.5858934],[13.0609139,47.5858328],[13.0606933,47.5856338],[13.0605891,47.5855682],[13.0604267,47.5855428],[13.060325,47.5855534],[13.0599616,47.585669],[13.0597974,47.5856897],[13.059417,47.5856979],[13.0593511,47.5856732],[13.0589646,47.5856651],[13.0585127,47.5857439],[13.0582831,47.5857687],[13.0570063,47.5856318],[13.0564947,47.5856201],[13.0563981,47.5856394],[13.0561865,47.5855266],[13.0559787,47.5854742],[13.0557957,47.5854532],[13.0552232,47.5854189],[13.0550528,47.5854341],[13.0545196,47.5853956],[13.0543368,47.5853743],[13.0542667,47.5853407],[13.0541614,47.5852733],[13.0540245,47.5852203],[13.0533525,47.585069],[13.0527634,47.5849787],[13.0524638,47.584981],[13.0522674,47.5849604],[13.0519592,47.5848682],[13.0518439,47.5848311],[13.0515072,47.5846358],[13.0514112,47.5845751],[13.0513313,47.5845367],[13.0500902,47.5844112],[13.0484228,47.584231],[13.0461108,47.5836612],[13.0436523,47.5833636],[13.0437343,47.5832574],[13.0439742,47.5828465],[13.0440015,47.5818753],[13.0438585,47.5815357],[13.044114,47.5807784],[13.0443688,47.5806483],[13.044605,47.5805928],[13.0450221,47.5801991],[13.0450278,47.5801221],[13.0449585,47.5799692],[13.0449221,47.5796092],[13.0449356,47.5794892],[13.0450192,47.5793086],[13.0450746,47.5792831],[13.0451079,47.5792288],[13.045112,47.579164],[13.0449087,47.5786804],[13.0448167,47.5785829],[13.0447261,47.578497],[13.0445678,47.5783776],[13.0440031,47.5780743],[13.0439354,47.5779352],[13.0435348,47.577375],[13.0434472,47.577357],[13.0433506,47.5773648],[13.0432231,47.577396],[13.0419222,47.5768605],[13.0415725,47.5764859],[13.0421372,47.5755144],[13.0421796,47.5749252],[13.0424147,47.5744169],[13.0426632,47.573717],[13.0435553,47.5732963],[13.0437692,47.5730151],[13.0443413,47.5716924],[13.044733,47.5715857],[13.0449597,47.5715067],[13.0462171,47.5707946],[13.0464415,47.5703938],[13.0466558,47.5696854],[13.0470965,47.5692687],[13.0470199,47.5691937],[13.0467659,47.5689873],[13.0463072,47.5688502],[13.0474799,47.5678446],[13.0475262,47.5677708],[13.0479293,47.5675727],[13.048076,47.5675433],[13.0482254,47.567414],[13.0484118,47.5671622],[13.0487526,47.5669215],[13.0488254,47.5668867],[13.0491359,47.5663041],[13.0495608,47.5656948],[13.0498007,47.5647259],[13.0503094,47.5643038],[13.0507192,47.563552],[13.0519155,47.5629277],[13.0532649,47.5624977],[13.0548497,47.5623252],[13.0574986,47.5621479],[13.0565069,47.5617348],[13.0565726,47.561018],[13.05652,47.5603698],[13.0551844,47.5595819],[13.055429,47.5587636],[13.0557034,47.5573407],[13.0547134,47.5567287],[13.0540623,47.5561026],[13.0527643,47.5551098],[13.0521129,47.5544409],[13.0489379,47.5522417],[13.0475217,47.5514018],[13.046261,47.5510515],[13.0455011,47.5508496],[13.0449723,47.5504861],[13.0447227,47.5502968],[13.0450056,47.5489999],[13.0450532,47.547972],[13.0445171,47.5469723],[13.0435275,47.5460715],[13.0426537,47.5458982],[13.0420592,47.5453145],[13.0411176,47.5445846],[13.038976,47.5435733],[13.0371853,47.5428454],[13.0367208,47.5420515],[13.0381285,47.5411259],[13.0371264,47.5406531],[13.0369852,47.5398273],[13.0366864,47.5394545],[13.0359987,47.5390966],[13.0348938,47.5388854],[13.0345065,47.5378136],[13.0342795,47.5371909],[13.034054,47.5365641],[13.0323163,47.5358066],[13.0316986,47.5355227],[13.0313354,47.5349195],[13.0313117,47.5348482],[13.0312389,47.5345326],[13.0310735,47.534176],[13.0309909,47.5335516],[13.0310236,47.5334702],[13.0311525,47.5333659],[13.0312154,47.5333075],[13.0312796,47.5331656],[13.0313,47.5330642],[13.0311148,47.5329404],[13.031061,47.5328633],[13.0309256,47.5325668],[13.031982,47.5314787],[13.0328636,47.5308347],[13.0330422,47.5304677],[13.0330778,47.5303805],[13.033123,47.5303131],[13.0333803,47.5301643],[13.03397,47.5300334],[13.0341371,47.5299853],[13.0341861,47.5299449],[13.0342066,47.529888],[13.0342523,47.529839],[13.0343796,47.5297948],[13.0347609,47.5297173],[13.0348609,47.5297411],[13.0349378,47.5297234],[13.0353381,47.5294576],[13.0355075,47.5293423],[13.0356257,47.5292984],[13.0356892,47.5292654],[13.0357686,47.5291038],[13.0361215,47.5287448],[13.0362354,47.5287176],[13.0364301,47.528613],[13.0370501,47.5280413],[13.0373905,47.5276105],[13.0403468,47.5267892],[13.0422305,47.5264106],[13.0431972,47.5256161],[13.0453618,47.5243218],[13.0462606,47.5238746],[13.0463176,47.5234591],[13.0465561,47.5224911],[13.0472929,47.521496],[13.046712,47.5207669],[13.0460473,47.5205032],[13.0447774,47.5205603],[13.0443111,47.5204871],[13.0440369,47.5203459],[13.0432772,47.5199306],[13.0434144,47.5197886],[13.04401,47.5191715],[13.0441385,47.5190416],[13.0433958,47.5188287],[13.0434244,47.5186446],[13.0434731,47.518218],[13.0435431,47.5177236],[13.0434756,47.517306],[13.0433765,47.5167156],[13.0437905,47.5160837],[13.0445091,47.5161136],[13.0448678,47.5161285],[13.045836,47.5158631],[13.0461015,47.5157824],[13.0465989,47.5151324],[13.0466997,47.5147714],[13.0464896,47.5133863],[13.0464247,47.512754],[13.0460581,47.5103818],[13.0462587,47.509624],[13.0465421,47.5085052],[13.046476,47.5078504],[13.0463809,47.5070273],[13.0469496,47.5057795],[13.0467227,47.5054987],[13.046539,47.5050083],[13.0460884,47.5037365],[13.0461975,47.50326],[13.0467129,47.5023484],[13.0469361,47.5019921],[13.0478352,47.5007537],[13.0478658,47.5005367],[13.0481927,47.4989505],[13.0482783,47.4981464],[13.0480748,47.4964131],[13.0474359,47.4958879],[13.04597,47.4946602],[13.0467773,47.4934623],[13.0476465,47.4921627],[13.046421,47.4918859],[13.0463241,47.4918406],[13.046114,47.4917249],[13.0458275,47.4915374],[13.0454884,47.4913014],[13.0453071,47.4911434],[13.045198,47.4911099],[13.0442348,47.4909718],[13.0438575,47.4906775],[13.0432432,47.4901783],[13.0430234,47.4900227],[13.0428231,47.4899528],[13.0426912,47.4897997],[13.0426384,47.4896572],[13.0426342,47.4893954],[13.0426053,47.4893425],[13.0425122,47.4891979],[13.0423623,47.4890278],[13.0418917,47.4887469],[13.0417954,47.488723],[13.041521,47.4887064],[13.0408982,47.4887541],[13.0402031,47.4887786],[13.0400797,47.4887485],[13.0400031,47.4887063],[13.0394189,47.488623],[13.0393145,47.4886241],[13.0386393,47.4888273],[13.03841,47.488908],[13.0383017,47.4889282],[13.038132,47.4889377],[13.0380393,47.4889205],[13.0378115,47.4889295],[13.0376074,47.4889604],[13.0375123,47.4889956],[13.0374404,47.4890259],[13.037263,47.4890662],[13.0362461,47.4891262],[13.0355071,47.4887906],[13.0354254,47.4887503],[13.0350986,47.4884819],[13.034901,47.4884182],[13.0348468,47.4883728],[13.0346624,47.4880717],[13.0346854,47.4879513],[13.034401,47.4876213],[13.0342871,47.487521],[13.033859,47.4872964],[13.03365,47.4872813],[13.0329092,47.4871011],[13.0327638,47.487002],[13.0325856,47.4868949],[13.0324696,47.4868673],[13.0323679,47.4868825],[13.0316022,47.4868077],[13.0313817,47.4868021],[13.0306632,47.486861],[13.0305001,47.4868924],[13.0297618,47.4869416],[13.0295767,47.4869212],[13.0292548,47.4869135],[13.0288758,47.4869109],[13.0284624,47.4868824],[13.0268945,47.4866965],[13.0261781,47.4862052],[13.0257896,47.485098],[13.0260618,47.4844595],[13.0264864,47.4834488],[13.0260803,47.4828689],[13.0255744,47.4825571],[13.0250336,47.4822007],[13.0248022,47.482047],[13.0245484,47.4818567],[13.0243968,47.4813877],[13.0244479,47.4812983],[13.0244561,47.4810879],[13.0243697,47.4808134],[13.0243119,47.4806833],[13.0241405,47.4805195],[13.0240916,47.4803381],[13.0241004,47.480243],[13.0240578,47.4801604],[13.0240367,47.4801194],[13.0239079,47.4800285],[13.0237112,47.4800161],[13.0236281,47.4799851],[13.0231297,47.4796919],[13.0230577,47.4796058],[13.0229252,47.4793222],[13.022652,47.4791078],[13.0225036,47.4790354],[13.0223941,47.4790411],[13.0223617,47.478925],[13.0223426,47.4788379],[13.0223613,47.4787539],[13.0223616,47.4785387],[13.0221552,47.4780221],[13.0220964,47.4777695],[13.0219457,47.4775869],[13.0218118,47.4775264],[13.0216937,47.477529],[13.0215277,47.477578],[13.0213504,47.4775252],[13.0213152,47.4774864],[13.0212824,47.4774078],[13.0212836,47.4773569],[13.0209196,47.4773393],[13.020613,47.4774241],[13.0205112,47.4774653],[13.0204149,47.4774901],[13.0202335,47.4775156],[13.0200008,47.4774949],[13.0197695,47.4774565],[13.0196551,47.4772428],[13.0190726,47.476576],[13.0188543,47.4765049],[13.0187762,47.4764952],[13.0185306,47.476374],[13.0183863,47.4762628],[13.018233,47.47591],[13.0182782,47.4758015],[13.0183248,47.4757393],[13.0183271,47.4756805],[13.0181761,47.475362],[13.0181006,47.4753218],[13.0180297,47.4752368],[13.0180435,47.4749863],[13.018064,47.4749399],[13.018064,47.474858],[13.0180023,47.474793],[13.0178049,47.4746224],[13.0175211,47.4743602],[13.0162226,47.4718923],[13.0148358,47.4706745],[13.0138708,47.4703696],[13.0133107,47.4700777],[13.0117624,47.4692912],[13.0103239,47.4685461],[13.0084272,47.465821],[13.0066207,47.4643842],[13.0042604,47.463599],[13.0036669,47.4633962],[13.0021892,47.4637459],[13.0010473,47.4640123],[13.0004803,47.4647996],[12.9997268,47.4658368],[12.9993563,47.4665251],[12.9986051,47.4675818],[12.9983071,47.4680703],[12.9973817,47.469575],[12.9949599,47.4708087],[12.9942113,47.4712467],[12.9934,47.4717096],[12.9940466,47.4734843],[12.9941688,47.4741426],[12.994422,47.4754915],[12.9944715,47.476072],[12.9945722,47.477357],[12.9946287,47.4780332],[12.9947167,47.4783125],[12.9947975,47.4784231],[12.9948569,47.478526],[12.9948207,47.4786039],[12.9947678,47.4786439],[12.9946795,47.4786749],[12.9944609,47.4786934],[12.9942262,47.4786858],[12.9939506,47.4786447],[12.9937548,47.4786443],[12.9934397,47.4786668],[12.9932724,47.478642],[12.9931552,47.4785952],[12.9928336,47.4785589],[12.9926265,47.4785462],[12.9920184,47.4786132],[12.9917071,47.4785135],[12.991292,47.4784052],[12.9911187,47.4783949],[12.9910384,47.4783721],[12.9907692,47.4782221],[12.9903695,47.4779712],[12.9897811,47.4776668],[12.9894318,47.4775801],[12.9876333,47.478481],[12.9870807,47.4788488],[12.9867246,47.4791068],[12.986219,47.4794509],[12.9864214,47.480339],[12.9858459,47.4804878],[12.98549,47.4809554],[12.9855798,47.4814763],[12.9843287,47.4819433],[12.9832043,47.4820031],[12.9826679,47.4821994],[12.981089,47.4829602],[12.9804551,47.4827755],[12.9794071,47.4828477],[12.9778859,47.4829529],[12.9775242,47.4837538],[12.9780077,47.4846889],[12.9778818,47.4846427],[12.9778085,47.4846362],[12.9777187,47.484634],[12.9776086,47.4846625],[12.977449,47.4847536],[12.9774002,47.4848114],[12.9767787,47.4850145],[12.9765636,47.4848755],[12.9764609,47.4848293],[12.9763753,47.4848328],[12.9756386,47.4849562],[12.975371,47.4850269],[12.9752649,47.4850655],[12.9751237,47.485023],[12.9750286,47.4849268],[12.974477,47.4845553],[12.9740611,47.4837253],[12.9739997,47.4836724],[12.9738677,47.4836055],[12.9735382,47.4833382],[12.9734779,47.4832616],[12.9734639,47.4827328],[12.9736161,47.4826422],[12.9736987,47.4825235],[12.9738118,47.4822371],[12.9738066,47.4821787],[12.9740238,47.4817514],[12.9742428,47.481651],[12.9743042,47.4815928],[12.9743555,47.4814722],[12.9743819,47.4809917],[12.9743665,47.4807436],[12.9742171,47.4805354],[12.9737065,47.4799642],[12.9733618,47.4795576],[12.9730516,47.4792964],[12.9730146,47.4792572],[12.9730244,47.479092],[12.9730078,47.4790212],[12.9729497,47.4789144],[12.9729064,47.4788583],[12.9728261,47.4787839],[12.9726547,47.4785626],[12.9726131,47.478474],[12.9725978,47.4783975],[12.9726039,47.4783235],[12.9726316,47.4782763],[12.9727306,47.4775509],[12.9726607,47.4773859],[12.9726048,47.4772863],[12.9726043,47.4771231],[12.9726717,47.4769528],[12.9726604,47.476871],[12.9725137,47.4764632],[12.9724602,47.4764086],[12.9723689,47.4763272],[12.9723346,47.4762562],[12.972345,47.4761877],[12.9723866,47.4761092],[12.9726226,47.475923],[12.9727195,47.4757733],[12.9727653,47.4756873],[12.9726877,47.4754388],[12.9726368,47.4753751],[12.972646,47.4752743],[12.9726649,47.4752037],[12.9727227,47.4751283],[12.9729582,47.4748153],[12.9729049,47.4747718],[12.9728092,47.4747134],[12.9727313,47.4746611],[12.9726933,47.4745413],[12.9727012,47.4743783],[12.9726828,47.474304],[12.9725835,47.4742422],[12.9725034,47.4742585],[12.9722003,47.4742512],[12.9717952,47.4742152],[12.9713712,47.4741446],[12.9708603,47.4741591],[12.9707149,47.474205],[12.9700012,47.4742369],[12.9687201,47.474364],[12.9681513,47.474451],[12.9672975,47.4746504],[12.9665374,47.4747523],[12.9657094,47.4748881],[12.9647768,47.4750843],[12.9637857,47.4753022],[12.9623837,47.4759218],[12.961146,47.4764474],[12.9603814,47.4770554],[12.9572347,47.4778708],[12.9568114,47.4779999],[12.9549087,47.4784513],[12.9538325,47.4787985],[12.9527055,47.4791786],[12.9518544,47.4796334],[12.9511286,47.4800495],[12.9502923,47.4804503],[12.9490319,47.4810229],[12.9478124,47.4815799],[12.9453707,47.4827636],[12.9436021,47.483513],[12.9410859,47.4845906],[12.9400511,47.4850543],[12.9378767,47.4858829],[12.9363993,47.4864806],[12.9355385,47.4869303],[12.934036,47.4876319],[12.9334681,47.4878691],[12.9326388,47.4882377],[12.9324286,47.488089],[12.9321806,47.4879388],[12.9320026,47.4878067],[12.931913,47.4877506],[12.9310693,47.4883556],[12.9308865,47.4884745],[12.9299217,47.4884181],[12.9294411,47.4891058],[12.9284895,47.4897379],[12.9274308,47.4900611],[12.9253366,47.4905747],[12.9241886,47.4909682],[12.9219996,47.4918849],[12.9212314,47.4921732],[12.9191318,47.4930654],[12.91809,47.4934382],[12.9167854,47.4940377],[12.9153392,47.4946524],[12.9144479,47.4950038],[12.9119569,47.4960578],[12.911278,47.4963095],[12.9106802,47.4962831],[12.9097977,47.4965776],[12.9087264,47.4969431],[12.9063564,47.4985608],[12.9053489,47.4991657],[12.9036768,47.500193],[12.9027444,47.5009177],[12.9002644,47.502616],[12.8989712,47.5035837],[12.8982358,47.5040837],[12.8962362,47.5054315],[12.8947721,47.5064291],[12.8931877,47.5075638],[12.8923288,47.5080931],[12.8900639,47.509638],[12.8872368,47.5116543],[12.8868898,47.5117164],[12.8864504,47.5118106],[12.8863136,47.5119235],[12.8861795,47.512221],[12.8862114,47.5123554],[12.8861905,47.5124355],[12.8855012,47.5125436],[12.885152,47.5126286],[12.8849252,47.5127249],[12.8849001,47.5127355],[12.8845935,47.5127574],[12.8844722,47.5127584],[12.8847085,47.5136956],[12.8855101,47.5145016],[12.8855085,47.5145982],[12.8854701,47.514663],[12.8851154,47.5150093],[12.8850338,47.5150482],[12.8848776,47.5150978],[12.8847827,47.5151676],[12.8846967,47.5152495],[12.8846047,47.5153647],[12.8845778,47.5154364],[12.8845209,47.5160384],[12.884611,47.5161454],[12.8846507,47.5161925],[12.8847164,47.5162138],[12.8847815,47.5162965],[12.8848271,47.5164021],[12.8848332,47.5165035],[12.8848173,47.5165906],[12.884786,47.5166768],[12.8846535,47.5167299],[12.8844067,47.5167324],[12.8843391,47.5167489],[12.8844288,47.5167955],[12.8844944,47.5169861],[12.8844783,47.5171699],[12.8845233,47.517312],[12.8847078,47.5174401],[12.8847564,47.5175032],[12.8847561,47.5177644],[12.8847123,47.517836],[12.8847823,47.5179126],[12.8848625,47.5180556],[12.8849911,47.5182089],[12.8850297,47.5183057],[12.8851169,47.5184194],[12.8851812,47.5184665],[12.8852644,47.5184963],[12.8851729,47.5185235],[12.885026,47.5185289],[12.884968,47.5185115],[12.8849341,47.5185145],[12.8848848,47.5186066],[12.8849157,47.5186761],[12.884917,47.518749],[12.8848406,47.5188138],[12.8848235,47.5188737],[12.8847568,47.5189307],[12.8845525,47.519247],[12.8844585,47.5194116],[12.8843061,47.519571],[12.8841111,47.5197242],[12.8839456,47.519761],[12.8838415,47.5197605],[12.8836629,47.5198279],[12.883222,47.5200532],[12.8831068,47.5201213],[12.8829864,47.5202296],[12.8829279,47.5203701],[12.8828416,47.5206153],[12.8822166,47.520978],[12.8819535,47.5210636],[12.8818042,47.5211026],[12.8812958,47.521348],[12.8809729,47.5215247],[12.8807505,47.5217257],[12.8807256,47.5217885],[12.8806501,47.5218563],[12.8804358,47.5218913],[12.8803389,47.5218757],[12.8801736,47.5218834],[12.88006,47.5219528],[12.8797447,47.5221151],[12.8794727,47.5221713],[12.8790686,47.5221116],[12.8789656,47.5220582],[12.8788614,47.5220718],[12.8785419,47.5222512],[12.8779122,47.5225081],[12.8777727,47.52255],[12.8774478,47.5224345],[12.8774615,47.5223253],[12.8773456,47.5222418],[12.8771557,47.5222618],[12.8770595,47.5222965],[12.876493,47.5226425],[12.8764122,47.5226616],[12.8762349,47.5226442],[12.8761291,47.5226512],[12.875917,47.5226965],[12.8757422,47.5228323],[12.8756296,47.522945],[12.8754553,47.5229957],[12.8753378,47.5229737],[12.8752737,47.522933],[12.8751655,47.5228522],[12.8748765,47.5227564],[12.8747043,47.5227221],[12.8743636,47.5227327],[12.874291,47.522802],[12.8740036,47.5229974],[12.8739054,47.5230336],[12.873778,47.5230119],[12.8736518,47.5230247],[12.8728992,47.5232308],[12.8724567,47.5234484],[12.872282,47.5235445],[12.8720941,47.5237029],[12.8719172,47.5238686],[12.8716902,47.5239405],[12.871622,47.523888],[12.8715795,47.5238506],[12.8715522,47.5237744],[12.871186,47.5236233],[12.8709653,47.5236113],[12.870733,47.5237044],[12.8703132,47.5237726],[12.8697288,47.523711],[12.8694928,47.5238322],[12.8692449,47.5240842],[12.8691225,47.5240941],[12.8690436,47.524072],[12.8689705,47.5240204],[12.8689617,47.5239535],[12.8688602,47.5238921],[12.8685437,47.5238721],[12.8684511,47.5238992],[12.868347,47.5239394],[12.8681545,47.5239883],[12.8679316,47.5239916],[12.86783,47.5239899],[12.8677681,47.5239057],[12.8676337,47.5238938],[12.8671669,47.523992],[12.8666896,47.5243324],[12.8667121,47.5243842],[12.866672,47.5244287],[12.8663491,47.524731],[12.8662889,47.5245026],[12.8662372,47.5244436],[12.8661156,47.5244426],[12.8659469,47.5245025],[12.8656257,47.524686],[12.8652919,47.5248881],[12.8651154,47.5250733],[12.8649913,47.5250813],[12.8648757,47.5250749],[12.8647824,47.5251183],[12.8646988,47.5251745],[12.8645203,47.5254575],[12.8645068,47.5255079],[12.8645041,47.5259169],[12.8644396,47.5259952],[12.8642863,47.5260882],[12.8640493,47.5261943],[12.8639115,47.5262177],[12.8638703,47.5262504],[12.8637834,47.5265146],[12.8638079,47.5265605],[12.8638564,47.5265942],[12.8639355,47.526618],[12.8641177,47.5267303],[12.8641401,47.5271594],[12.8640074,47.5274711],[12.8638932,47.5277361],[12.8636315,47.5279437],[12.8635433,47.527978],[12.8632834,47.5280525],[12.8631647,47.5280233],[12.8630917,47.5280239],[12.8629812,47.5280542],[12.8627659,47.5281375],[12.8625417,47.5280417],[12.86248,47.5279808],[12.8624089,47.5278439],[12.8623172,47.5278176],[12.8619954,47.5277553],[12.8616599,47.5276996],[12.8614768,47.5275029],[12.8613071,47.5273405],[12.8611721,47.5272845],[12.8611028,47.5272919],[12.8609195,47.5273506],[12.8608374,47.5273603],[12.8599013,47.5272319],[12.8596374,47.5271119],[12.8595069,47.5270685],[12.8594121,47.5270636],[12.8593167,47.5270726],[12.859233,47.5271276],[12.8591644,47.5271825],[12.8591011,47.5272085],[12.8589589,47.5271254],[12.8587591,47.5269347],[12.8586144,47.5267859],[12.8583499,47.5267685],[12.857885,47.5267795],[12.8575914,47.5268447],[12.8572638,47.5269386],[12.8569128,47.5271359],[12.8567277,47.5272882],[12.8564331,47.527676],[12.8563922,47.5278423],[12.8563621,47.5281091],[12.856329,47.5281791],[12.8559363,47.5286394],[12.8558815,47.5286815],[12.8558135,47.5287072],[12.8557908,47.5287158],[12.85547,47.5287926],[12.8550715,47.5288641],[12.8550435,47.5288732],[12.8549623,47.5288997],[12.8547456,47.5291485],[12.8547135,47.5292175],[12.8546678,47.529396],[12.8546457,47.5294823],[12.8547043,47.5295865],[12.8547143,47.5296886],[12.8546898,47.5297549],[12.8545039,47.5298213],[12.8543861,47.5298449],[12.8537428,47.5298726],[12.8535497,47.5298671],[12.8532673,47.5297967],[12.8531661,47.5297385],[12.8529909,47.5301317],[12.8529706,47.5302295],[12.852921,47.5302868],[12.8527933,47.5303725],[12.8526702,47.5304032],[12.8524067,47.5304645],[12.8522514,47.5304993],[12.8521723,47.5305477],[12.8520935,47.5306368],[12.852036,47.5306785],[12.8519405,47.5307328],[12.8517938,47.5307564],[12.8517108,47.5307857],[12.851664,47.5308431],[12.8515705,47.5310535],[12.851299,47.5313887],[12.8510657,47.5316601],[12.8509871,47.5317358],[12.8508916,47.5317904],[12.8506988,47.5320336],[12.8506552,47.5321181],[12.8506139,47.5323086],[12.8505742,47.5324419],[12.8504512,47.5327178],[12.8503446,47.5328481],[12.8501572,47.5330684],[12.8500893,47.5332284],[12.8500711,47.5333278],[12.8500624,47.5337493],[12.8500522,47.5339658],[12.8500762,47.5342441],[12.8501378,47.5344199],[12.8501493,47.5345293],[12.8501484,47.5346424],[12.849977,47.535252],[12.8497377,47.5355308],[12.8496688,47.5355861],[12.8495658,47.5356169],[12.8494035,47.5356856],[12.8493408,47.5360099],[12.8493195,47.5361438],[12.8494942,47.5362635],[12.8499133,47.5365055],[12.8500044,47.5365258],[12.8500108,47.5366581],[12.8499398,47.5367606],[12.8498806,47.5367892],[12.8496947,47.5370474],[12.8496543,47.5371543],[12.8496526,47.5372829],[12.8497028,47.5373659],[12.8497618,47.5374057],[12.8498673,47.5374512],[12.8498458,47.5376395],[12.8497128,47.5377555],[12.8497757,47.5378828],[12.8499236,47.5381142],[12.8500542,47.5381501],[12.8501027,47.5381861],[12.8500762,47.5382513],[12.8498488,47.5383076],[12.8496449,47.5384507],[12.8496087,47.5390687],[12.8496498,47.5391681],[12.8498112,47.5393579],[12.8496964,47.5395953],[12.8498075,47.5398582],[12.8499059,47.539927],[12.8500194,47.5399867],[12.8500376,47.5400619],[12.8501613,47.5403434],[12.8503058,47.5405068],[12.8502142,47.5407224],[12.8502012,47.5408517],[12.8499158,47.5410451],[12.8497713,47.5411903],[12.8496318,47.541346],[12.8494553,47.5414693],[12.8492482,47.5415635],[12.8490865,47.5416135],[12.8489363,47.5417015],[12.8488405,47.5417856],[12.8487327,47.5419984],[12.8486555,47.5422484],[12.8484613,47.542293],[12.8483374,47.5423583],[12.8482322,47.5426585],[12.8480335,47.5430069],[12.848082,47.5432493],[12.8481905,47.5433358],[12.8482566,47.5433938],[12.8483098,47.5435623],[12.8483116,47.543692],[12.8482143,47.5438198],[12.8482679,47.5439676],[12.8484071,47.5440838],[12.8483843,47.5444347],[12.8483258,47.5446529],[12.8479788,47.545118],[12.8477484,47.545531],[12.8476789,47.545632],[12.8476842,47.5457155],[12.8477722,47.5458429],[12.8477505,47.5459112],[12.8476923,47.5459785],[12.8472092,47.5461384],[12.8470113,47.5461972],[12.8466977,47.5461817],[12.8464976,47.5461044],[12.8462479,47.5460654],[12.845668,47.5461837],[12.8453722,47.5462139],[12.844652,47.5463433],[12.8442408,47.546536],[12.8440016,47.546604],[12.8433763,47.546715],[12.8426192,47.5468352],[12.8424464,47.5467282],[12.8422783,47.5465919],[12.8418625,47.5463794],[12.841538,47.5462429],[12.841306,47.5462231],[12.8410141,47.5461417],[12.8409854,47.5460919],[12.8402685,47.5457922],[12.8400917,47.5457843],[12.8397082,47.5456617],[12.8395985,47.5455775],[12.8393994,47.5455333],[12.8389915,47.5454796],[12.8384557,47.545447],[12.8382225,47.5455482],[12.8377239,47.5454698],[12.8376638,47.545486],[12.836725,47.545432],[12.8366279,47.5453919],[12.8365196,47.5453094],[12.8363629,47.5451001],[12.8362639,47.5450512],[12.8361642,47.5450056],[12.8354247,47.5448966],[12.8351286,47.5448895],[12.8341807,47.545051],[12.8338921,47.5450496],[12.8336085,47.5449885],[12.8332955,47.5449742],[12.8331333,47.5450197],[12.8329729,47.5450519],[12.832805,47.5450479],[12.8324842,47.5450054],[12.8312423,47.5450867],[12.8298371,47.5447528],[12.8285419,47.5446015],[12.8257478,47.5449784],[12.8244051,47.5452161],[12.822523,47.5458947],[12.8217127,47.5457287],[12.8210652,47.5456606],[12.8186724,47.5452502],[12.8177288,47.544902],[12.8171572,47.5452143],[12.8170679,47.5452871],[12.8169426,47.5453291],[12.8166433,47.545321],[12.8164698,47.5453561],[12.8163555,47.5454216],[12.8152539,47.5464087],[12.8147977,47.5462984],[12.8133517,47.5464188],[12.8124703,47.5467387],[12.8112472,47.5474015],[12.81022,47.5471948],[12.8093477,47.5474426],[12.8086552,47.547775],[12.807262,47.5483949],[12.8068181,47.5489518],[12.8065105,47.5491444],[12.8053509,47.5496673],[12.8047204,47.5499046],[12.8039355,47.5501249],[12.8036719,47.5504551],[12.8030353,47.5508815],[12.8022718,47.5515667],[12.8021543,47.5519618],[12.8015028,47.5525616],[12.8004538,47.5533554],[12.7997862,47.553924],[12.7991293,47.5543859],[12.7985054,47.5546442],[12.7980663,47.5546971],[12.7978019,47.555213],[12.7976189,47.5553426],[12.7963057,47.5558547],[12.7956132,47.5563083],[12.7954439,47.556464],[12.7952471,47.556576],[12.7945148,47.5568271],[12.7943155,47.5570041],[12.7941621,47.5574127],[12.7941632,47.5578227],[12.7940414,47.5581908],[12.7937439,47.5587979],[12.7936479,47.5590957],[12.7929951,47.5596403],[12.7928277,47.5600865],[12.7928847,47.5604049],[12.7930181,47.5610087],[12.7928459,47.5616461],[12.7929025,47.5627024],[12.7925866,47.5628742],[12.792508,47.5636759],[12.7926268,47.564378],[12.7923685,47.5651064],[12.7919249,47.5652939],[12.7907898,47.5652016],[12.789225,47.5658953],[12.7887797,47.5663947],[12.7884769,47.5670453],[12.7880791,47.5670786],[12.7873111,47.5671274],[12.7870481,47.5671769],[12.786355,47.5680153],[12.7861906,47.5680703],[12.7850953,47.5683522],[12.7842817,47.5688641],[12.7841833,47.5697928],[12.7835417,47.5704079],[12.7828656,47.5715224],[12.7825161,47.572745],[12.7824608,47.5728253],[12.7822579,47.5731199],[12.7816663,47.5739794],[12.7811091,47.5741792],[12.7807624,47.5743085],[12.7808276,47.5744505],[12.7804971,47.5745021],[12.7803815,47.5744985],[12.7802639,47.5744842],[12.7801917,47.5744859],[12.7800626,47.5745156],[12.7801129,47.5746632],[12.7801637,47.5747235],[12.7804142,47.5748209],[12.780472,47.5748935],[12.7806578,47.5752316],[12.7807173,47.5754728],[12.7807361,47.5758771],[12.7807439,47.5759723],[12.7807212,47.57603],[12.7806685,47.5760873],[12.7803811,47.5761769],[12.7804545,47.5766364],[12.7805026,47.576824],[12.7805103,47.5771535],[12.7804079,47.5774636],[12.7803475,47.5776514],[12.7801873,47.5779172],[12.7801006,47.5781475],[12.7801163,47.5783194],[12.7799561,47.5785622],[12.7797854,47.5787642],[12.7796435,47.5788847],[12.7795411,47.5789449],[12.7794308,47.5790051],[12.7792022,47.5790317],[12.7791497,47.5791416],[12.7791917,47.5792071],[12.7792705,47.579294],[12.7794685,47.5793218],[12.7797548,47.579348],[12.7798458,47.5793507],[12.779943,47.579379],[12.7800664,47.5794269],[12.7802871,47.5796648],[12.7805513,47.5801007],[12.7804901,47.5801572],[12.7804802,47.5802322],[12.7805351,47.5803936],[12.7809187,47.5808707],[12.7810209,47.5809587],[12.7815625,47.5810987],[12.7816687,47.5811363],[12.7816797,47.5812141],[12.7816491,47.5813842],[12.7816968,47.581618],[12.7817821,47.5817307],[12.7818138,47.5818856],[12.7815946,47.5823726],[12.7815075,47.5824101],[12.7815898,47.5825693],[12.7819626,47.5829148],[12.782174,47.5829541],[12.7823229,47.5830107],[12.7826142,47.5834205],[12.7826724,47.5835971],[12.7829199,47.583753],[12.7831273,47.5838308],[12.7832024,47.5839213],[12.7832941,47.5842558],[12.7832622,47.5843969],[12.7836798,47.58502],[12.7837761,47.5850934],[12.7839461,47.5851122],[12.7841122,47.5851739],[12.784541,47.5854896],[12.7846174,47.5855401],[12.7848804,47.5856765],[12.7850115,47.5856561],[12.7854263,47.5856621],[12.7855614,47.5856756],[12.785629,47.585753],[12.785655,47.5859063],[12.7859927,47.5861463],[12.7862287,47.5862844],[12.786428,47.5863294],[12.7866533,47.5864148],[12.7868362,47.5867442],[12.786877,47.5869324],[12.786863,47.5870424],[12.7868954,47.5873316],[12.7869698,47.5876142],[12.786943,47.5877658],[12.7868596,47.5878469],[12.786852,47.5879657],[12.7869351,47.5880418],[12.7874362,47.5886054],[12.7875821,47.5887143],[12.7877621,47.5887733],[12.7881146,47.5888082],[12.7883918,47.5888667],[12.7886169,47.5890272],[12.7893841,47.5893143],[12.7900436,47.5895155],[12.7902633,47.589564],[12.7905108,47.5896978],[12.79069,47.5898424],[12.7911092,47.5900303],[12.7915279,47.590147],[12.7918461,47.5901428],[12.7919303,47.5902161],[12.7919869,47.5903149],[12.7920799,47.5904864],[12.7926032,47.5907449],[12.7928172,47.5908275],[12.7935643,47.5910535],[12.7939505,47.5915326],[12.7952159,47.5930232],[12.7952731,47.5930906],[12.7953337,47.5931666],[12.7954056,47.5933692],[12.7948466,47.5937241],[12.7948799,47.5938547],[12.7948539,47.5939685],[12.7946009,47.5940989],[12.7942869,47.5944769],[12.7942209,47.5946426],[12.7941806,47.595103],[12.7941573,47.5951965],[12.7940479,47.5953359],[12.793315,47.595664],[12.7927894,47.595695],[12.7926247,47.5960144],[12.7925901,47.5963143],[12.7925118,47.5965388],[12.7923841,47.5967621],[12.7921749,47.597094],[12.7920756,47.597134],[12.7919356,47.5971201],[12.7916315,47.5972697],[12.7915132,47.5974104],[12.7913246,47.5977696],[12.7912836,47.5979121],[12.7912552,47.5981894],[12.7912979,47.5983525],[12.791373,47.5984233],[12.7917182,47.5988958],[12.791857,47.5989607],[12.792143,47.5990838],[12.792513,47.5993184],[12.7928837,47.6005732],[12.7943353,47.6014975],[12.7953815,47.6015855],[12.7965358,47.6017911],[12.797012,47.6025936],[12.7974647,47.6037582],[12.7993926,47.6052105],[12.8004198,47.6052755],[12.8012251,47.6057729],[12.8019323,47.6054359],[12.8027981,47.6054066],[12.8031298,47.6064473],[12.8031721,47.607308],[12.8043342,47.6084002],[12.8050209,47.6089037],[12.8057736,47.6093348],[12.8073584,47.6102534],[12.8104978,47.6107419],[12.8116647,47.6112615],[12.8132705,47.6119811],[12.815162,47.6111672],[12.8165655,47.6109733],[12.8183946,47.610921],[12.8194573,47.6106407],[12.821287,47.6099461],[12.822879,47.6096079],[12.8240196,47.6113774],[12.8244836,47.6121071],[12.8212481,47.6144234],[12.8194019,47.6156094],[12.8179671,47.6165342],[12.8165963,47.6174574],[12.8164575,47.6175338],[12.8142377,47.6190603],[12.8109653,47.6212758],[12.8091914,47.6220226],[12.8083099,47.6224004],[12.8069788,47.6229155],[12.8059572,47.62336],[12.8046565,47.6238839],[12.8035378,47.6243323],[12.8027022,47.6246933],[12.8021185,47.6249309],[12.8010729,47.6253564],[12.8002794,47.6256805],[12.7993228,47.6260341],[12.7994785,47.6263992],[12.7998175,47.6272543],[12.7984081,47.6275128],[12.7976063,47.6276631],[12.7969368,47.6281869],[12.7964694,47.6285232],[12.7954244,47.6292702],[12.793891,47.6303368],[12.7931226,47.630871],[12.7923296,47.6314269],[12.7912548,47.6321871],[12.7907618,47.6325065],[12.7897064,47.6332181],[12.789395,47.6333487],[12.7889076,47.6332685],[12.787489,47.6330352],[12.7867075,47.6329032],[12.7849817,47.632153],[12.7827057,47.632429],[12.7809381,47.6326508],[12.7808361,47.6327128],[12.7807292,47.6328744],[12.7807131,47.6329521],[12.7806653,47.6330175],[12.7805815,47.6331065],[12.7802499,47.6333043],[12.7800347,47.6334049],[12.7798566,47.6334562],[12.7798195,47.6335521],[12.7796854,47.6337191],[12.779566,47.6338333],[12.7794729,47.6338628],[12.7793602,47.6338692],[12.7792793,47.6338556],[12.7789718,47.6338983],[12.7789015,47.6339323],[12.7786338,47.6341283],[12.7783685,47.6343162],[12.7783052,47.6343791],[12.778285,47.6344657],[12.778314,47.6345891],[12.7783118,47.6346444],[12.7781918,47.6347226],[12.7777468,47.6349617],[12.7774205,47.635078],[12.7773529,47.6351299],[12.7772828,47.635198],[12.7772061,47.6353312],[12.7771202,47.6354265],[12.7769326,47.6355221],[12.776846,47.6355574],[12.7767594,47.6355818],[12.7766425,47.635628],[12.7765084,47.6357662],[12.7760734,47.6360618],[12.7759405,47.6362041],[12.7755663,47.6364299],[12.775343,47.636507],[12.7750812,47.6367179],[12.7749908,47.6368109],[12.7749377,47.6369063],[12.7748601,47.6370358],[12.7746888,47.6371961],[12.7745999,47.6372565],[12.7743632,47.6373954],[12.7741752,47.6374711],[12.7738471,47.637588],[12.7736174,47.6377451],[12.7735331,47.6378258],[12.7734055,47.6380041],[12.7733149,47.6380794],[12.7732123,47.6381163],[12.7728935,47.6382888],[12.7725711,47.6384712],[12.772171,47.6387434],[12.7718709,47.6389519],[12.7716084,47.6391948],[12.7714904,47.6394644],[12.771466,47.639658],[12.7714329,47.6398339],[12.7713915,47.6400792],[12.7712325,47.6403887],[12.7710731,47.6406203],[12.7709836,47.6406834],[12.7706659,47.6410273],[12.7706214,47.6412268],[12.7705816,47.6413222],[12.7705376,47.6413714],[12.7703379,47.641486],[12.7701287,47.6415425],[12.7699979,47.6416678],[12.7697302,47.6419701],[12.7696468,47.6420207],[12.7695533,47.6420303],[12.7694554,47.6420821],[12.769387,47.642137],[12.7692921,47.6422759],[12.7692852,47.6423364],[12.7692352,47.6424071],[12.7691582,47.6424685],[12.7689929,47.6425693],[12.7686108,47.6427382],[12.7681928,47.6428686],[12.7679053,47.6429845],[12.7677954,47.6430419],[12.7675815,47.643075],[12.7673476,47.6430577],[12.7672293,47.6431078],[12.7671318,47.643228],[12.7667519,47.6434258],[12.7666572,47.6434504],[12.7662302,47.6437829],[12.7660174,47.643929],[12.7658194,47.6441605],[12.7657301,47.6442615],[12.765726,47.6443081],[12.7657319,47.6445328],[12.7657136,47.6445871],[12.7654964,47.644914],[12.765406,47.6450024],[12.7653711,47.6450865],[12.7653062,47.6457513],[12.7652905,47.6457928],[12.7652316,47.6458325],[12.7651179,47.645931],[12.7650742,47.6459888],[12.7650317,47.6461835],[12.7650043,47.646383],[12.7650111,47.6464577],[12.7650797,47.646532],[12.7651226,47.6466827],[12.7651182,47.6467701],[12.7650228,47.6469015],[12.7647706,47.6471505],[12.7638945,47.6477633],[12.7632698,47.6481637],[12.7616947,47.6492648],[12.7614953,47.6494569],[12.7609447,47.649701],[12.759666,47.6502178],[12.7590006,47.6510395],[12.7585755,47.6515501],[12.7584623,47.652449],[12.758401,47.6528838],[12.7587588,47.6533535],[12.7594041,47.6540788],[12.7599656,47.6542745],[12.7606524,47.6549518],[12.7617424,47.6552421],[12.7622259,47.6553576],[12.7624475,47.6556005],[12.7634565,47.6557554],[12.7652193,47.6554348],[12.7658932,47.655316],[12.7669437,47.6553829],[12.7676427,47.655435],[12.7685214,47.6558329],[12.7694875,47.6561331],[12.7699728,47.6564029],[12.7703078,47.6569647],[12.7705897,47.6571075],[12.7713784,47.6573229],[12.7729386,47.6576587],[12.7730697,47.6579973],[12.7734499,47.6581721],[12.7737199,47.6584004],[12.7739971,47.6583307],[12.7747988,47.6588034],[12.7752385,47.6591525],[12.7763011,47.6599733],[12.7772102,47.6600047],[12.7779107,47.6605209],[12.7784548,47.660917],[12.7782111,47.6619106],[12.7780271,47.6628599],[12.7787689,47.6636293],[12.7795682,47.6644668],[12.7804812,47.6651801],[12.7807202,47.6655282],[12.7812043,47.6662514],[12.7814143,47.6663333],[12.7817078,47.6666031],[12.7818521,47.666761],[12.7818495,47.6670247],[12.7817935,47.6672516],[12.7818505,47.667464],[12.781927,47.6675781],[12.7819602,47.6677131],[12.7819415,47.6679104],[12.7820205,47.6679927],[12.7821228,47.6680766],[12.7822181,47.6685049],[12.7823118,47.6686716],[12.7826555,47.6692353],[12.7827711,47.6692907],[12.7829093,47.6693388],[12.783045,47.6694103],[12.7829158,47.6696795],[12.7827089,47.6700222],[12.7828351,47.6702272],[12.7837079,47.6711421],[12.7840177,47.6714762],[12.7840532,47.6715362],[12.7839471,47.6715929],[12.7838301,47.6716147],[12.7835974,47.6717283],[12.7833246,47.6718757],[12.7827446,47.6722234],[12.7824973,47.672381],[12.7824198,47.6724505],[12.7821667,47.6727913],[12.7817768,47.673263],[12.7816416,47.6733952],[12.7813785,47.6736289],[12.7811652,47.6738182],[12.78092,47.6736823],[12.7805736,47.6733719],[12.78032,47.6732048],[12.7801058,47.6730821],[12.7793281,47.6725949],[12.7789034,47.6723364],[12.7786903,47.6721337],[12.7783399,47.6717853],[12.7781585,47.6715953],[12.7780299,47.6712635],[12.7779293,47.6710603],[12.7778045,47.6709075],[12.7773122,47.6704496],[12.7767036,47.6697721],[12.7760865,47.669129],[12.7757956,47.6688319],[12.77544,47.6684686],[12.7751149,47.6680561],[12.7747883,47.667758],[12.7744867,47.667415],[12.7740814,47.6670065],[12.7735573,47.6664929],[12.7732663,47.6662546],[12.7729103,47.6660504],[12.7725224,47.6658592],[12.7720703,47.6656349],[12.7719312,47.6656041],[12.771615,47.6656029],[12.7711199,47.6656186],[12.770765,47.6657351],[12.7698481,47.666106],[12.7696188,47.6662003],[12.7689311,47.6665402],[12.7680884,47.6667473],[12.7672646,47.6669967],[12.7667992,47.667138],[12.7666655,47.6671588],[12.7660623,47.667228],[12.7656979,47.667246],[12.7653181,47.6672425],[12.7650267,47.6672251],[12.7639798,47.6670903],[12.7633051,47.6670423],[12.7627987,47.6669149],[12.7625278,47.6668118],[12.7623546,47.6667461],[12.7620364,47.6665992],[12.7615522,47.6663308],[12.7614273,47.6662509],[12.7610073,47.6659161],[12.7606739,47.6656066],[12.7604923,47.6654002],[12.7601223,47.6649272],[12.7598766,47.6646373],[12.7594804,47.664142],[12.7591372,47.6638199],[12.7588453,47.6635461],[12.7587344,47.6634611],[12.758411,47.6633119],[12.7579552,47.6631392],[12.7572069,47.6630364],[12.7570895,47.663258],[12.7569639,47.6634845],[12.7568343,47.6637553],[12.7569689,47.6639194],[12.756997,47.6640238],[12.7569799,47.664106],[12.7569502,47.6641848],[12.7568788,47.6642265],[12.7567957,47.6642486],[12.7566704,47.6642708],[12.7566105,47.6642658],[12.756471,47.6642713],[12.7563227,47.6642073],[12.7562108,47.6642079],[12.7560571,47.6642568],[12.7559883,47.6643546],[12.7559143,47.6645622],[12.7559527,47.6647116],[12.7558385,47.6651553],[12.7557519,47.6652676],[12.7556524,47.6653481],[12.7555464,47.6654452],[12.7555338,47.6655137],[12.7555503,47.6656362],[12.7555947,47.6657381],[12.7556899,47.6658466],[12.7558067,47.6659743],[12.755984,47.6660987],[12.7560172,47.6661688],[12.7560007,47.6662793],[12.7559387,47.6663427],[12.7555951,47.6664941],[12.7549154,47.6667671],[12.7544788,47.6669392],[12.7544308,47.6670348],[12.7543825,47.6672792],[12.7543794,47.6674004],[12.7544298,47.667498],[12.7544812,47.6675751],[12.7545797,47.6676706],[12.7546337,47.6677906],[12.7547211,47.6680341],[12.7547091,47.6681178],[12.7546357,47.6681578],[12.754526,47.6681757],[12.754416,47.6681856],[12.7543148,47.6681793],[12.7542033,47.6681979],[12.7540046,47.6682687],[12.7539068,47.6683163],[12.7535891,47.668535],[12.7527374,47.6689905],[12.7525377,47.6690643],[12.7524116,47.6690755],[12.7520888,47.669092],[12.752001,47.6691232],[12.7518729,47.6692113],[12.7517156,47.6694615],[12.751639,47.6696902],[12.7514832,47.6698834],[12.7514052,47.6699446],[12.7512318,47.6700379],[12.75087,47.670291],[12.7505705,47.6705518],[12.7505634,47.6707413],[12.7508074,47.6713608],[12.7508093,47.6714286],[12.7507481,47.6716432],[12.7505924,47.6717144],[12.7504152,47.6717494],[12.750211,47.6717769],[12.7500788,47.671766],[12.7497558,47.671939],[12.7496252,47.6720219],[12.7494864,47.6721556],[12.7491116,47.6725522],[12.7490444,47.6727119],[12.7488637,47.6729609],[12.7488173,47.6730095],[12.7487112,47.6730749],[12.7483726,47.6732107],[12.7480628,47.6732989],[12.747535,47.673511],[12.7473925,47.6735758],[12.7472732,47.6736369],[12.7471722,47.6737312],[12.7471745,47.6739],[12.7471408,47.6739704],[12.7470657,47.6740178],[12.7469121,47.6740719],[12.7467657,47.6741307],[12.7466787,47.6741892],[12.7464776,47.6743595],[12.7463764,47.6745323],[12.7463263,47.6746524],[12.746268,47.6747856],[12.7460726,47.6749897],[12.7455392,47.6753377],[12.7452867,47.6755104],[12.7449773,47.6757007],[12.7448495,47.6757562],[12.7443954,47.6758568],[12.7441961,47.6758958],[12.7440258,47.6759128],[12.7437738,47.6759167],[12.7437021,47.6759235],[12.7433983,47.6759876],[12.7431601,47.6760615],[12.7430005,47.6760971],[12.7428784,47.6760924],[12.7427845,47.6760744],[12.7427079,47.6760419],[12.7425533,47.676018],[12.7423258,47.6760013],[12.7421758,47.6760224],[12.7420404,47.6760476],[12.7419051,47.6761245],[12.7418039,47.6761685],[12.7416405,47.6762194],[12.7414364,47.6762663],[12.7413124,47.6762851],[12.7410826,47.6762588],[12.7409535,47.6762092],[12.7408663,47.6761316],[12.7407769,47.6760999],[12.7403956,47.6760212],[12.7401909,47.6760416],[12.7400244,47.6760954],[12.7398864,47.6761557],[12.7397957,47.6761728],[12.7392212,47.6761766],[12.7391258,47.6762176],[12.7388636,47.6763599],[12.7385874,47.6766385],[12.7384196,47.6768294],[12.7383716,47.6769142],[12.7383562,47.676971],[12.738405,47.67713],[12.7383921,47.677226],[12.7381586,47.6773044],[12.7381015,47.6773974],[12.7378066,47.6776268],[12.7375398,47.6775968],[12.7373971,47.6776011],[12.737086,47.6777009],[12.7367773,47.6777936],[12.7365357,47.6778475],[12.7362245,47.6778788],[12.7358266,47.6779229],[12.73546,47.677975],[12.7352595,47.6780249],[12.7351418,47.6781058],[12.7350569,47.6781912],[12.735005,47.6783401],[12.7349494,47.6784021],[12.7348561,47.6784626],[12.7345941,47.6785621],[12.7343874,47.6786528],[12.7343092,47.6787014],[12.7342923,47.6787923],[12.7342411,47.6788428],[12.7337973,47.6790934],[12.733435,47.6792979],[12.7331688,47.6794068],[12.7326946,47.6795735],[12.7324591,47.6796376],[12.7321173,47.6796706],[12.7318833,47.6796724],[12.7318039,47.6796512],[12.7316704,47.6795091],[12.7310584,47.6790839],[12.7309718,47.6790558],[12.7306289,47.6790686],[12.7303111,47.6791576],[12.7296116,47.6792616],[12.7295098,47.6792468],[12.72937,47.6792164],[12.728994,47.679093],[12.7288788,47.6790469],[12.7281209,47.6787933],[12.7280161,47.6787769],[12.7277003,47.6787974],[12.7274346,47.6787847],[12.7266497,47.678684],[12.7263345,47.678621],[12.7255636,47.6782823],[12.723843,47.6782085],[12.7228812,47.6782034],[12.7214792,47.6779085],[12.7203969,47.6774644],[12.7200565,47.677208],[12.7186763,47.6768],[12.7176831,47.6765014],[12.7156615,47.6762951],[12.715232,47.6762902],[12.7137887,47.6768611],[12.7116084,47.6775721],[12.7113719,47.6776952],[12.7109231,47.6779378],[12.7102401,47.6781302],[12.7095659,47.6783811],[12.7089652,47.6788511],[12.7089362,47.6789961],[12.7082473,47.6793689],[12.7066185,47.6801789],[12.7051123,47.6811271],[12.7012424,47.6798469],[12.7007336,47.6796779],[12.6999024,47.6801122],[12.6964909,47.6818456],[12.6958024,47.6822111],[12.6956712,47.6822191],[12.6951101,47.6820555],[12.694453,47.6818077],[12.6942019,47.6817676],[12.6934439,47.6817815],[12.69289,47.6817239],[12.6920824,47.6816401],[12.6914548,47.6815968],[12.691237,47.6816338],[12.6910342,47.6816379],[12.6907677,47.6816085],[12.6906355,47.6815975],[12.690312,47.6816333],[12.6899843,47.6816077],[12.6898944,47.6815719],[12.6896566,47.6814017],[12.6895952,47.6813486],[12.6894921,47.6812754],[12.6893293,47.681215],[12.6892173,47.6812058],[12.6889863,47.6812432],[12.6888658,47.6812898],[12.6887833,47.6813331],[12.6882715,47.681457],[12.6878747,47.6815293],[12.6876188,47.6815297],[12.6875481,47.6815149],[12.6872345,47.6815637],[12.6871469,47.681588],[12.687047,47.681585],[12.6866974,47.6815528],[12.6866263,47.6815279],[12.686394,47.6814434],[12.6856491,47.6812797],[12.6851929,47.681294],[12.6848202,47.681391],[12.6845256,47.6814792],[12.6845116,47.6815495],[12.6845084,47.6816832],[12.6846243,47.681719],[12.6845925,47.6819022],[12.6843397,47.6823231],[12.6842025,47.6825057],[12.6839772,47.6826033],[12.6837991,47.6826256],[12.6829817,47.6826875],[12.6817959,47.6826027],[12.681564,47.6825666],[12.6810317,47.6825163],[12.6806716,47.6825158],[12.6803266,47.6824989],[12.6790878,47.6824135],[12.6782362,47.6824604],[12.6778042,47.6823833],[12.677751,47.6823641],[12.6776311,47.6823033],[12.6773755,47.6822143],[12.6765425,47.6820974],[12.6758911,47.6819604],[12.6751979,47.6817779],[12.6747146,47.6816471],[12.6744005,47.6815453],[12.6742467,47.6814658],[12.6738791,47.6813598],[12.6737302,47.681358],[12.6733764,47.6812967],[12.6732851,47.6812576],[12.6732032,47.6812153],[12.673161,47.6811532],[12.6731113,47.6811132],[12.6730249,47.6810863],[12.6727393,47.6810343],[12.6723352,47.6809778],[12.6721925,47.6809672],[12.6720128,47.6809889],[12.6718697,47.6809765],[12.671762,47.6809458],[12.6716252,47.6808773],[12.6712439,47.680778],[12.6709109,47.6807],[12.6704802,47.6806068],[12.6703687,47.6805947],[12.6694871,47.6806682],[12.6694064,47.6807294],[12.669271,47.6807587],[12.6690181,47.6807695],[12.6687758,47.680737],[12.6686801,47.6807011],[12.6681336,47.6807481],[12.6675381,47.6808196],[12.6674227,47.6808296],[12.6673424,47.6808203],[12.6672095,47.680796],[12.6670267,47.6808126],[12.6669024,47.6808605],[12.6668753,47.6809215],[12.6667412,47.6809693],[12.6665218,47.6810148],[12.6663045,47.6810394],[12.6661134,47.6810368],[12.6659793,47.6809491],[12.6658774,47.6808923],[12.6656621,47.6808107],[12.6654178,47.6807491],[12.665315,47.6807073],[12.6652717,47.6806458],[12.66495,47.6803469],[12.6646476,47.6801248],[12.6642267,47.6798698],[12.663984,47.6797864],[12.6636033,47.6796546],[12.6631359,47.6793687],[12.6630273,47.6792994],[12.6623767,47.6790063],[12.6622176,47.6789715],[12.6619049,47.6786827],[12.6613841,47.6784587],[12.6608394,47.6782477],[12.660639,47.6781515],[12.6605485,47.6780057],[12.660294,47.6778841],[12.6599765,47.6777853],[12.6589168,47.6773728],[12.6586145,47.6771246],[12.6584286,47.6769561],[12.6582071,47.6767595],[12.6578196,47.6764481],[12.6572696,47.6760744],[12.6571488,47.6754323],[12.6569436,47.6744222],[12.6568519,47.6739682],[12.6554388,47.6734016],[12.655267,47.6729602],[12.6550706,47.672512],[12.654889,47.6720806],[12.6544501,47.6720525],[12.6542382,47.6720379],[12.652921,47.6717982],[12.6518019,47.6717853],[12.6516205,47.6717651],[12.6513745,47.671695],[12.6506684,47.6714041],[12.6504674,47.6711797],[12.6504089,47.671097],[12.650296,47.6709296],[12.6502102,47.6708735],[12.6500305,47.6708011],[12.6494353,47.6706038],[12.6491687,47.6705156],[12.6489117,47.6703933],[12.6488117,47.6703317],[12.6486694,47.6702201],[12.6485691,47.6701834],[12.6483117,47.6701253],[12.6482275,47.6701222],[12.6482351,47.6703132],[12.6482936,47.6703973],[12.6480552,47.6707368],[12.6478643,47.6708407],[12.647455,47.6713455],[12.6471655,47.6716794],[12.647142,47.6717472],[12.6471483,47.6720632],[12.647206,47.6724112],[12.6472056,47.6724933],[12.6470574,47.6728285],[12.6469661,47.6729727],[12.6469191,47.6730207],[12.6466583,47.6731554],[12.6463643,47.6732171],[12.6458769,47.6733921],[12.6457102,47.6734752],[12.6456207,47.6735419],[12.6455135,47.6735645],[12.6450947,47.6735159],[12.6447911,47.6735049],[12.6445456,47.6735218],[12.6444681,47.6734926],[12.6444711,47.6733855],[12.6443721,47.6733216],[12.6441229,47.6733138],[12.6440292,47.6733426],[12.6439368,47.6733808],[12.6438386,47.6734507],[12.6435851,47.6734402],[12.6432828,47.6732951],[12.6431533,47.6731848],[12.6431254,47.6730707],[12.6430323,47.6730244],[12.6427397,47.6729768],[12.6424881,47.6729288],[12.6423505,47.6728747],[12.6420029,47.6726366],[12.6417754,47.672457],[12.6416653,47.6723991],[12.6409461,47.6721184],[12.6408616,47.6721371],[12.6407538,47.6721312],[12.6406288,47.6721147],[12.6403857,47.6720462],[12.6399436,47.6718562],[12.6392516,47.6713695],[12.6387706,47.6710362],[12.6372967,47.6718649],[12.6362917,47.673342],[12.6361535,47.6732757],[12.6342446,47.6740427],[12.6335086,47.6745883],[12.6329381,47.6750132],[12.6324989,47.6752676],[12.631959,47.6755733],[12.6315638,47.6757995],[12.6304813,47.6761084],[12.6301523,47.6762014],[12.6300882,47.6762168],[12.6300193,47.6762217],[12.6299236,47.676222],[12.6298253,47.6762155],[12.6297466,47.6762072],[12.6296104,47.6761736],[12.6295075,47.6761357],[12.6294183,47.6761143],[12.6292586,47.676064],[12.629188,47.6760362],[12.6291219,47.6760055],[12.6290495,47.6759644],[12.6288966,47.6758718],[12.6287102,47.6757824],[12.6286234,47.675749],[12.6285608,47.6757273],[12.6284182,47.6756885],[12.6283464,47.6756851],[12.6283139,47.6756756],[12.6281328,47.6755316],[12.628068,47.6754876],[12.6279156,47.6753919],[12.6278512,47.6753596],[12.6277976,47.6753372],[12.6277017,47.6752941],[12.6276651,47.6752693],[12.6276387,47.6752465],[12.6275651,47.6751498],[12.6274886,47.6751175],[12.6274382,47.6751138],[12.6273855,47.6751007],[12.6272658,47.6750632],[12.627119,47.6750334],[12.6270791,47.6750169],[12.6270301,47.675],[12.6269444,47.6749863],[12.6268415,47.6749818],[12.6266959,47.6749851],[12.6266563,47.6749886],[12.6265882,47.675002],[12.6265279,47.6750101],[12.6264442,47.6750145],[12.626334,47.6750082],[12.6263002,47.6749966],[12.6262593,47.6749769],[12.6262238,47.6749607],[12.626146,47.6749325],[12.6259566,47.6748677],[12.6258838,47.674846],[12.6258523,47.674839],[12.6258257,47.674831],[12.6258084,47.6748191],[12.625805,47.6748033],[12.6257844,47.6747615],[12.6257598,47.6747474],[12.6256137,47.6747298],[12.6254959,47.6747182],[12.6254262,47.674732],[12.6253883,47.6747318],[12.625348,47.674718],[12.6252401,47.6746867],[12.6252039,47.6746887],[12.6251697,47.6746938],[12.6251278,47.6746938],[12.6250006,47.6746833],[12.6249598,47.6747002],[12.6249194,47.6747275],[12.6248827,47.6748277],[12.6248734,47.6748447],[12.6248552,47.6748616],[12.6248347,47.6748699],[12.6248002,47.6748738],[12.6247573,47.6748756],[12.6246721,47.6748724],[12.6244519,47.6748808],[12.6243969,47.6748779],[12.6243013,47.6748713],[12.6241756,47.674867],[12.6240391,47.6748514],[12.6239658,47.6748455],[12.6238695,47.6748293],[12.6238353,47.6748135],[12.6238121,47.6747959],[12.623784,47.6747808],[12.6237464,47.6747776],[12.6236569,47.6747911],[12.6235536,47.6748099],[12.6234518,47.6748236],[12.6234008,47.6748284],[12.6233384,47.67483],[12.6233008,47.6748255],[12.6232472,47.674815],[12.6232281,47.6748054],[12.6231654,47.6747568],[12.6230348,47.6746406],[12.6229622,47.6745505],[12.6229163,47.6745171],[12.6228878,47.6744943],[12.622868,47.6744609],[12.6228308,47.6744329],[12.6227946,47.6744153],[12.6226466,47.6743602],[12.6225696,47.6743267],[12.6225143,47.6742922],[12.6224943,47.6742733],[12.6224757,47.6742466],[12.622469,47.6742171],[12.6224667,47.6741724],[12.6223705,47.6741229],[12.6223403,47.6741037],[12.6223182,47.6740841],[12.6222966,47.6740486],[12.6222913,47.6739484],[12.6222883,47.6739261],[12.6222803,47.6739036],[12.6222418,47.6738421],[12.6221901,47.6737811],[12.6221207,47.673715],[12.6221056,47.6736933],[12.6220734,47.673619],[12.6220383,47.6735874],[12.6219809,47.6735585],[12.6219373,47.6735305],[12.6218461,47.673454],[12.6218206,47.6734388],[12.6217026,47.6734226],[12.6215637,47.6733954],[12.6214042,47.6733768],[12.6212664,47.6733653],[12.6211423,47.6733483],[12.6210128,47.6733282],[12.6209606,47.6733176],[12.62085,47.6732808],[12.6207705,47.6732571],[12.6207464,47.6732533],[12.6205875,47.6732097],[12.6205355,47.6731935],[12.6205033,47.673179],[12.6204617,47.6731542],[12.6204245,47.6731363],[12.6203632,47.6731153],[12.6202706,47.6730998],[12.6202294,47.6730907],[12.6201343,47.6730565],[12.6200265,47.6730052],[12.6199541,47.6729627],[12.6199066,47.6729754],[12.6198757,47.6729709],[12.6197285,47.6729249],[12.6196663,47.6729117],[12.6196066,47.6729015],[12.6195132,47.6728973],[12.6193354,47.6728939],[12.6192546,47.6728776],[12.6191619,47.6728647],[12.6190619,47.6728542],[12.6190197,47.6728478],[12.6188586,47.6728022],[12.6187858,47.6727844],[12.6187243,47.6727744],[12.6186838,47.6727708],[12.6186175,47.6727695],[12.6185372,47.6727715],[12.6184511,47.6727713],[12.6183862,47.6727629],[12.6180436,47.6726819],[12.617873,47.6726625],[12.6177801,47.6726482],[12.6175886,47.6726069],[12.6175382,47.6726021],[12.6172466,47.6725836],[12.6171568,47.6725629],[12.6170613,47.6725253],[12.6170257,47.6725089],[12.6170066,47.6724936],[12.6169769,47.6724625],[12.6169399,47.6724525],[12.6168761,47.6724445],[12.6166911,47.6724263],[12.6165282,47.6724225],[12.6164158,47.6724437],[12.6163293,47.6724654],[12.6162891,47.6724719],[12.6162348,47.6724405],[12.6162077,47.6724379],[12.6161781,47.6724448],[12.6161375,47.6724884],[12.6160985,47.672545],[12.6160819,47.6725604],[12.6160594,47.6725694],[12.6160299,47.6725665],[12.6160004,47.6725214],[12.6159508,47.6725089],[12.615719,47.6724774],[12.6155612,47.6724367],[12.61545,47.6723979],[12.6153372,47.6723916],[12.6152726,47.672392],[12.6152207,47.6724029],[12.6150375,47.6724751],[12.6148219,47.6725304],[12.6147859,47.6725362],[12.6146275,47.6725356],[12.6145396,47.6725385],[12.6144696,47.6725374],[12.6143443,47.6725604],[12.6142795,47.672583],[12.6142319,47.6726058],[12.614194,47.6726202],[12.6141477,47.6726295],[12.6140766,47.6726356],[12.6139824,47.672632],[12.6138973,47.6726354],[12.6138686,47.6726377],[12.6137839,47.6726643],[12.6137269,47.672696],[12.6136347,47.6727616],[12.6135645,47.6728012],[12.6135005,47.6728234],[12.6133681,47.6728599],[12.6133451,47.6728656],[12.6133129,47.6728699],[12.6132428,47.6728731],[12.6131985,47.6728778],[12.6130835,47.6729159],[12.6129688,47.6729682],[12.6128166,47.6730291],[12.6127416,47.6730727],[12.6126886,47.673095],[12.6126437,47.6731072],[12.6125494,47.6731097],[12.6123013,47.6731553],[12.612073,47.6732097],[12.6118651,47.6732253],[12.6117736,47.6732402],[12.6116496,47.6732766],[12.6114813,47.6732822],[12.611438,47.6732651],[12.6111827,47.6732392],[12.6111068,47.6732002],[12.6110638,47.6731919],[12.6110125,47.6731946],[12.6109596,47.6732122],[12.6109321,47.6732695],[12.6109059,47.6732865],[12.6108851,47.6732928],[12.6108171,47.6732957],[12.6107628,47.6733045],[12.6106478,47.6733472],[12.6105961,47.6733702],[12.6105361,47.6733872],[12.6104495,47.6733943],[12.6102049,47.6734459],[12.6101475,47.6734684],[12.6098357,47.6735526],[12.6096135,47.6735657],[12.6095608,47.6735842],[12.6095045,47.6736253],[12.6094616,47.6736592],[12.6094317,47.6736764],[12.6094035,47.6736867],[12.6093693,47.6736962],[12.6093476,47.6737055],[12.6093228,47.6737219],[12.6093157,47.6737427],[12.6093157,47.6738098],[12.6093093,47.6738316],[12.6092916,47.6738479],[12.6092218,47.6738836],[12.6091942,47.6738945],[12.6091601,47.6739019],[12.6091107,47.6739062],[12.6090181,47.6739058],[12.6088702,47.6738916],[12.6086831,47.6738462],[12.6085802,47.6738367],[12.6083884,47.6738257],[12.6080867,47.6738209],[12.6079284,47.6738119],[12.6078822,47.6738031],[12.607852,47.6737882],[12.6078,47.6737719],[12.6077484,47.6737595],[12.6076139,47.6737599],[12.607575,47.673755],[12.6074802,47.6737387],[12.6074385,47.6737332],[12.6073437,47.6737269],[12.6072049,47.6736788],[12.607039,47.6736332],[12.607004,47.6736209],[12.6069799,47.6736079],[12.6069581,47.673595],[12.6069387,47.6735779],[12.6069163,47.6735615],[12.6068395,47.6735338],[12.6067701,47.6735241],[12.6067144,47.6735192],[12.6066675,47.673511],[12.6066269,47.6734973],[12.6065558,47.6734612],[12.6064891,47.6734359],[12.6062973,47.6733772],[12.6062263,47.6733593],[12.6061236,47.6733388],[12.606008,47.6733347],[12.6059335,47.6733252],[12.6058856,47.6733103],[12.6057783,47.6732525],[12.6056848,47.6732207],[12.6056526,47.6732135],[12.6055916,47.6732066],[12.6055071,47.6732084],[12.6054203,47.6731899],[12.6053716,47.6731913],[12.6053354,47.6731958],[12.6052289,47.6732238],[12.6052,47.6732258],[12.6051574,47.6732233],[12.605095,47.6732127],[12.6050209,47.6731897],[12.6049991,47.6731856],[12.604968,47.6731854],[12.6048788,47.6732008],[12.6048396,47.6732012],[12.6048173,47.6731957],[12.6046551,47.6730909],[12.6036654,47.6724517],[12.6033971,47.6722155],[12.6026084,47.6705964],[12.602142,47.669248],[12.6020776,47.6686704],[12.6008328,47.6682122],[12.599931,47.6677747],[12.5981869,47.666871],[12.5977485,47.6666268],[12.5969025,47.6661084],[12.591808,47.6594057],[12.5888902,47.6557329],[12.5828802,47.6473246],[12.5808365,47.6402926],[12.5784282,47.6369905],[12.5784304,47.6367735],[12.5782677,47.6362964],[12.5781711,47.6347155],[12.5780103,47.6342199],[12.5778334,47.6340071],[12.5773195,47.6338346],[12.5761998,47.6334212],[12.5756143,47.6330928],[12.5751067,47.6325533],[12.5750269,47.6323152],[12.5722898,47.6326375],[12.5683636,47.6331129],[12.5657624,47.6334469],[12.5630915,47.633722],[12.5592854,47.6341457],[12.5548748,47.6345722],[12.5503907,47.6350273],[12.5475722,47.6353241],[12.544559,47.6356328],[12.5407819,47.6360207],[12.5375541,47.6363619],[12.536374,47.6364725],[12.5350066,47.6357611],[12.5330191,47.6347718],[12.5307424,47.6335767],[12.5293643,47.6328678],[12.5278623,47.6320982],[12.5265544,47.6314117],[12.5252288,47.6307419],[12.5237166,47.6301118],[12.5221239,47.6294427],[12.5197689,47.6284557],[12.5175909,47.6275411],[12.5155954,47.6267023],[12.513396,47.6257785],[12.5122716,47.625307],[12.5114701,47.6252977],[12.510349,47.6252796],[12.5092514,47.6252582],[12.5068621,47.6252236],[12.5047512,47.625191],[12.5024606,47.6251513],[12.5002692,47.6251133],[12.4991695,47.6251006],[12.4985526,47.6258201],[12.4982651,47.6261566],[12.4978654,47.6266212],[12.497396,47.6271816],[12.4971251,47.6275034],[12.4968092,47.6278737],[12.4961864,47.6285952],[12.4956719,47.6292059],[12.4949772,47.6300085],[12.4942525,47.6308655],[12.4938314,47.6313499],[12.4929382,47.6323947],[12.4920558,47.6334268],[12.4911867,47.6344462],[12.4906589,47.6350586],[12.4908783,47.6356336],[12.4913477,47.6369024],[12.4904974,47.6373271],[12.4896557,47.637748],[12.488674,47.638245],[12.4876033,47.6387838],[12.4866436,47.6392661],[12.4856673,47.6397558],[12.4845053,47.6403417],[12.4834995,47.6408477],[12.4825715,47.6413139],[12.4816434,47.6417784],[12.4805223,47.6423458],[12.4792622,47.6429781],[12.4786796,47.6432675],[12.4777945,47.6437211],[12.4767323,47.6442487],[12.4757265,47.6447511],[12.4750318,47.6451053],[12.4742781,47.6454793],[12.4733179,47.6459618],[12.4722745,47.6464913],[12.4716957,47.6467747],[12.4708776,47.6471921],[12.4702794,47.6474903],[12.4703733,47.6475589],[12.4702982,47.6476439],[12.4701587,47.6477487],[12.4698664,47.6478354],[12.469684,47.6478842],[12.4694748,47.6479565],[12.4693487,47.6479619],[12.4692602,47.6479745],[12.4691598,47.6480044],[12.4690778,47.6480288],[12.4689437,47.6480956],[12.4687667,47.6481896],[12.4686508,47.6482368],[12.4685575,47.64826],[12.4684604,47.6482368],[12.4683129,47.6482441],[12.4681385,47.6482856],[12.4680285,47.6483525],[12.4677689,47.6484697],[12.4667041,47.6489756],[12.4657352,47.6494348],[12.465113,47.649733],[12.4646972,47.6502606],[12.4640347,47.6510953],[12.4635627,47.6516952],[12.4628438,47.6526149],[12.4621282,47.6535126],[12.4613928,47.6544397],[12.4607061,47.655316],[12.4602507,47.6558957],[12.4596144,47.6567035],[12.4589385,47.6575635],[12.4583946,47.6582497],[12.4579971,47.6587486],[12.4576677,47.6591675],[12.4572976,47.6595432],[12.4567236,47.6601231],[12.4564258,47.6604176],[12.4562488,47.6606922],[12.4562434,47.6608078],[12.4561603,47.6609216],[12.4561549,47.6609776],[12.4560664,47.6610716],[12.4560476,47.6612558],[12.4559296,47.6613913],[12.4559216,47.6614473],[12.4558545,47.6615214],[12.4558223,47.6616225],[12.4557767,47.6618429],[12.4557231,47.661908],[12.4557419,47.6620416],[12.4557499,47.6620633],[12.4557097,47.6621085],[12.4557177,47.6621482],[12.4557606,47.6621952],[12.4556882,47.6623162],[12.455699,47.6623343],[12.4556346,47.66243],[12.4555729,47.6624951],[12.4556239,47.662533],[12.4555327,47.6626468],[12.4554629,47.6627986],[12.4553141,47.6628723],[12.4551518,47.6629268],[12.4550928,47.6629702],[12.4548809,47.66299],[12.4547843,47.6630298],[12.4544866,47.6631418],[12.4543713,47.6631436],[12.454213,47.6633026],[12.4541646,47.6632721],[12.453963,47.6632955],[12.4538456,47.6633549],[12.4538718,47.6634039],[12.4538571,47.6634114],[12.4538241,47.6634416],[12.4537806,47.6635611],[12.4537168,47.6636765],[12.453639,47.6637505],[12.4534808,47.6639456],[12.4534566,47.6640612],[12.453411,47.6641642],[12.4532549,47.6642692],[12.4530436,47.6651613],[12.4528231,47.6661279],[12.4526595,47.6668342],[12.4525232,47.6670074],[12.4524637,47.6670835],[12.4524234,47.6671431],[12.4524075,47.6671774],[12.4523886,47.6671991],[12.4524154,47.6672821],[12.4524422,47.667311],[12.452469,47.667358],[12.4525232,47.6674102],[12.4526332,47.6674463],[12.4527298,47.6674789],[12.4527694,47.6674971],[12.4528204,47.6675368],[12.452837,47.6675601],[12.4528209,47.6675908],[12.4527909,47.6676127],[12.4527834,47.6676414],[12.4527399,47.667703],[12.4527051,47.6677193],[12.4527137,47.6677444],[12.4527507,47.6678204],[12.4527593,47.6678744],[12.4527426,47.6678963],[12.4526863,47.6679089],[12.4526627,47.6679214],[12.4526439,47.6679413],[12.4526251,47.6679702],[12.4525736,47.6679992],[12.4524884,47.6679918],[12.4524293,47.6679882],[12.4523998,47.6679954],[12.4523033,47.6680713],[12.4522588,47.6681077],[12.4522282,47.6681327],[12.4521933,47.6681472],[12.4521665,47.6681797],[12.4521075,47.6682068],[12.4520592,47.6682411],[12.4520029,47.6682718],[12.4519197,47.6683278],[12.451858,47.6683675],[12.4517937,47.6683928],[12.4517347,47.6684145],[12.4516676,47.6684235],[12.4516649,47.6684362],[12.4516435,47.668447],[12.4516086,47.6684488],[12.4515657,47.6684687],[12.4515415,47.6684922],[12.4514986,47.6685048],[12.4514289,47.6685157],[12.4513296,47.6685355],[12.4512679,47.6685391],[12.4512116,47.6685427],[12.4511392,47.668559],[12.4510561,47.6685807],[12.4508871,47.6686565],[12.4508227,47.6686836],[12.4507717,47.6686872],[12.45071,47.6686674],[12.4506403,47.6686602],[12.450525,47.6686439],[12.4504687,47.6686385],[12.4502728,47.6686511],[12.4501495,47.6686764],[12.4501066,47.6686818],[12.4500234,47.6687053],[12.4499751,47.6687432],[12.449959,47.6688083],[12.4499537,47.6688823],[12.4499161,47.6689347],[12.4498652,47.6689636],[12.4497874,47.6690106],[12.4497498,47.6690268],[12.449715,47.6690503],[12.4497069,47.669081],[12.4497123,47.6691081],[12.4497042,47.6691533],[12.4496747,47.669202],[12.4496238,47.6692092],[12.4495782,47.6692092],[12.4495433,47.6692273],[12.4495218,47.669258],[12.4494977,47.6692869],[12.4494494,47.6693104],[12.4494038,47.669323],[12.4493743,47.6693393],[12.4493341,47.6693429],[12.4492858,47.6693357],[12.4492563,47.6693574],[12.4492375,47.6693917],[12.4491946,47.6694061],[12.449141,47.6694242],[12.4491275,47.669473],[12.4491141,47.6695416],[12.4490551,47.669659],[12.4489934,47.6697601],[12.4489612,47.6697818],[12.4489022,47.6698071],[12.4488271,47.6697963],[12.4487601,47.6697963],[12.4486179,47.6697999],[12.4485562,47.6698089],[12.4485026,47.6698523],[12.4484329,47.6698938],[12.4483604,47.6699371],[12.4483256,47.6699498],[12.4483148,47.6699823],[12.4482773,47.6700202],[12.4482227,47.6700891],[12.4481593,47.6702189],[12.4481241,47.6702513],[12.4480278,47.6702966],[12.4479876,47.6703219],[12.4479501,47.6703634],[12.4479152,47.6704176],[12.4478562,47.6704609],[12.4476738,47.670535],[12.4475665,47.6705476],[12.4472688,47.6706163],[12.4471962,47.6706197],[12.4471347,47.6706325],[12.4470944,47.6706632],[12.4469737,47.6707192],[12.4468745,47.6707463],[12.4467484,47.6707662],[12.4465687,47.6707499],[12.4464668,47.6707084],[12.4464427,47.6706777],[12.446381,47.6706687],[12.4463488,47.6706361],[12.4462817,47.6706325],[12.4461717,47.6706502],[12.4460435,47.6706637],[12.4459599,47.6706542],[12.445874,47.6706721],[12.4458257,47.6706921],[12.4457557,47.6707009],[12.4456755,47.6706921],[12.445638,47.6707337],[12.4455683,47.6707752],[12.4454985,47.6707933],[12.4454422,47.6708041],[12.4453832,47.6708168],[12.4452732,47.6708709],[12.4452169,47.6709233],[12.4451629,47.6710098],[12.4451123,47.6710407],[12.4450774,47.6710606],[12.4450077,47.6710949],[12.4449674,47.6711419],[12.4449538,47.6711781],[12.4449129,47.6712115],[12.4448441,47.6712539],[12.4447743,47.6712791],[12.4447341,47.671308],[12.4447046,47.6713658],[12.4446423,47.6714342],[12.4442888,47.671709],[12.444233,47.6717295],[12.4442298,47.6717885],[12.4443693,47.6717668],[12.4445678,47.6718535],[12.4446322,47.6719185],[12.4447555,47.6719944],[12.4448089,47.6720778],[12.4450053,47.6722055],[12.4453778,47.6724242],[12.4454476,47.6724712],[12.4456139,47.6725796],[12.4456568,47.6726518],[12.4454315,47.6729552],[12.4449111,47.6734971],[12.4447448,47.673674],[12.4445839,47.6738872],[12.4442298,47.6737788],[12.4439723,47.6737571],[12.4437363,47.6737174],[12.4434091,47.673768],[12.4430067,47.6738474],[12.4427653,47.6739016],[12.4422128,47.6739522],[12.4416978,47.6739811],[12.4412526,47.67401],[12.4411077,47.6740172],[12.4409146,47.6739739],[12.440743,47.6739052],[12.4405928,47.6741292],[12.4404104,47.6744145],[12.4403406,47.6746385],[12.4401529,47.6749852],[12.4400992,47.6750358],[12.440051,47.6751442],[12.4399812,47.6752634],[12.4398793,47.6753681],[12.4396593,47.6755487],[12.4394448,47.6756932],[12.4393053,47.6757763],[12.4390585,47.6760255],[12.4389942,47.6760833],[12.4389352,47.6761953],[12.4389695,47.6762857],[12.4390178,47.6764049],[12.4389909,47.6765314],[12.4390714,47.6766],[12.4391321,47.6765917],[12.439212,47.676595],[12.4392356,47.6766106],[12.4393396,47.6766469],[12.4394469,47.6766794],[12.4395971,47.6766903],[12.4396937,47.6766975],[12.4397741,47.6766758],[12.4398252,47.6766982],[12.4398922,47.6767372],[12.4399726,47.6767481],[12.4401604,47.6767228],[12.440273,47.6766614],[12.4403803,47.6766578],[12.4404638,47.6766928],[12.4405198,47.67673],[12.4406539,47.6767445],[12.4407048,47.6768973],[12.4406732,47.6769538],[12.4407966,47.6771199],[12.4408234,47.6772969],[12.4408288,47.67738],[12.440802,47.6777484],[12.4408502,47.6778278],[12.4408342,47.6779832],[12.4407698,47.6781818],[12.4407805,47.6783371],[12.4408342,47.6784852],[12.4408771,47.6785249],[12.4408985,47.6786297],[12.4408878,47.6787489],[12.4407698,47.6788066],[12.4407644,47.6788897],[12.4407376,47.6790161],[12.4398063,47.6793883],[12.4395381,47.6797459],[12.4402891,47.6819959],[12.4408095,47.6829097],[12.4411957,47.6836031],[12.4415873,47.6839642],[12.4409382,47.685044],[12.440965,47.6856977],[12.4415712,47.6863983],[12.4412333,47.6878247],[12.4423115,47.6887419],[12.4426656,47.6899408],[12.4422632,47.6901683],[12.4421082,47.6903927],[12.4419092,47.690681],[12.4429966,47.6918376],[12.4423777,47.6924942],[12.4423603,47.6925127],[12.4420843,47.6929606],[12.4411582,47.6931919],[12.4411287,47.6934341],[12.4405485,47.6935538],[12.4404678,47.6939785],[12.4403704,47.6944099],[12.4402993,47.6949763],[12.4400708,47.6952305],[12.4390634,47.6951148],[12.4378931,47.6949873],[12.4350738,47.6946871],[12.4334463,47.6945192],[12.4326253,47.694443],[12.4326148,47.6944574],[12.432023,47.694792],[12.4299009,47.6959201],[12.4294637,47.6961757],[12.4291199,47.6963833],[12.428342,47.6962187],[12.4256486,47.6957454],[12.4231895,47.6953171],[12.4211998,47.6949701],[12.4135899,47.6936262],[12.4128891,47.6935494],[12.4125266,47.6935025],[12.4104019,47.6932684],[12.4103488,47.6932625],[12.4079346,47.6929931],[12.4046847,47.6926378],[12.4035272,47.6925113],[12.4013715,47.6922737],[12.4001479,47.6919228],[12.3990334,47.6916034],[12.3972914,47.6911035],[12.3961694,47.6907825],[12.3952244,47.6905117],[12.394913,47.6904225],[12.3946517,47.6903475],[12.3945963,47.6903316],[12.3945535,47.6903194],[12.3937867,47.6901003],[12.3935301,47.6900262],[12.3934633,47.690007],[12.3934267,47.6899989],[12.3932769,47.689966],[12.393088,47.6899243],[12.3929684,47.689898],[12.3917253,47.6893236],[12.3914516,47.6891971],[12.3902338,47.6889637],[12.3891516,47.6887563],[12.3860416,47.6881615],[12.3840773,47.6877868],[12.3837904,47.6877318],[12.3830414,47.6874173],[12.3816198,47.6868202],[12.3807278,47.6864457],[12.3801145,47.6864065],[12.3800486,47.6863978],[12.3800181,47.686392],[12.3799336,47.6863711],[12.3799098,47.6863699],[12.3796372,47.6864115],[12.3795745,47.6864091],[12.3792852,47.6863545],[12.3791921,47.6863279],[12.3790619,47.6862805],[12.3789149,47.6862206],[12.3788818,47.6862132],[12.3788574,47.6862078],[12.3788202,47.6862067],[12.3787693,47.6862191],[12.3787285,47.6862408],[12.378703,47.6862682],[12.3786181,47.6863481],[12.3785773,47.6863628],[12.3783247,47.6864446],[12.378306,47.6864582],[12.3782924,47.6864731],[12.3782739,47.686473],[12.3782586,47.6864582],[12.3782418,47.6864547],[12.3782044,47.6864603],[12.3781705,47.6864705],[12.3781244,47.6864916],[12.3771264,47.6863206],[12.3770275,47.6863307],[12.3768731,47.6862469],[12.3768316,47.6861939],[12.3767077,47.6861024],[12.3766624,47.6860779],[12.3760705,47.6859059],[12.3759395,47.6858417],[12.3757844,47.6857888],[12.3757692,47.6857785],[12.3757428,47.6857404],[12.3757077,47.6857126],[12.375519,47.6856435],[12.3753962,47.6855943],[12.375349,47.6855745],[12.3753188,47.6855616],[12.3752326,47.6855517],[12.3750605,47.6855056],[12.3750068,47.6854731],[12.37495,47.6854177],[12.3749065,47.6853875],[12.3748798,47.6853633],[12.3747823,47.6853212],[12.3746989,47.6852312],[12.374564,47.6851957],[12.3744337,47.685182],[12.3742312,47.6851379],[12.3740762,47.6850863],[12.374009,47.6850619],[12.3735062,47.6849869],[12.3722226,47.6847968],[12.3712626,47.6846549],[12.3705697,47.6845513],[12.3695882,47.6844047],[12.3687819,47.6842845],[12.3685726,47.6842666],[12.3677314,47.6841946],[12.3665498,47.6840934],[12.3646686,47.6839323],[12.3636175,47.6838421],[12.3613669,47.6860944],[12.3613055,47.6861558],[12.3611608,47.6863006],[12.3610545,47.686407],[12.3605431,47.6869186],[12.3603894,47.6870722],[12.3602144,47.6872473],[12.3598411,47.6876209],[12.3595988,47.6878633],[12.3595112,47.6879507],[12.3585857,47.6888769],[12.3577746,47.6896895],[12.3572877,47.690177],[12.3570348,47.6904277],[12.3569181,47.6904545],[12.3567795,47.6904327],[12.3565611,47.6904227],[12.356421,47.6903918],[12.356203,47.6903636],[12.3561591,47.690354],[12.3560967,47.6903363],[12.356051,47.6903325],[12.3560047,47.6903596],[12.355644,47.6903565],[12.3555545,47.6903466],[12.3552599,47.6903383],[12.3549882,47.6903726],[12.3548629,47.6903716],[12.3548053,47.6903757],[12.3547354,47.6903956],[12.3545677,47.6903987],[12.3544707,47.6904254],[12.3543435,47.6904346],[12.3542386,47.6904246],[12.3541656,47.6904469],[12.3541027,47.6904474],[12.3540467,47.690463],[12.3539925,47.6904568],[12.3539518,47.6904622],[12.353921,47.6904837],[12.3538666,47.6904901],[12.3538041,47.6904792],[12.353521,47.6904939],[12.3534175,47.6905022],[12.3533414,47.6904947],[12.3532599,47.6905124],[12.3532006,47.6905118],[12.3531121,47.6905339],[12.353066,47.6905554],[12.3529761,47.6905627],[12.3528895,47.690579],[12.352789,47.6906183],[12.3527174,47.6906337],[12.352673,47.6906573],[12.3524707,47.6907037],[12.3521874,47.690834],[12.3521582,47.6908682],[12.3521279,47.6909527],[12.3521096,47.6911358],[12.3521451,47.6912495],[12.3521443,47.6913021],[12.3521016,47.6914277],[12.3521012,47.6915593],[12.3520727,47.6916428],[12.3520617,47.6917011],[12.3520389,47.6917513],[12.3517257,47.6918345],[12.3516505,47.6918739],[12.3515753,47.6919248],[12.3515508,47.6919669],[12.3514965,47.692073],[12.3514538,47.6920989],[12.3511961,47.6921139],[12.3510947,47.6920959],[12.3510153,47.6920825],[12.3509391,47.6920842],[12.3508783,47.6920757],[12.3506996,47.6921211],[12.3505944,47.6921362],[12.3504925,47.6921395],[12.3499041,47.6920444],[12.3498345,47.6920723],[12.3496989,47.6920758],[12.3496407,47.6921027],[12.349618,47.6921381],[12.3495503,47.6921363],[12.3495183,47.6921246],[12.3493678,47.692114],[12.3492897,47.6921284],[12.3491855,47.6921686],[12.3490724,47.6922341],[12.3490334,47.6922371],[12.3489642,47.6922184],[12.3487833,47.6922053],[12.3487425,47.6922072],[12.348749,47.692221],[12.3486086,47.6922117],[12.3485503,47.6922491],[12.3483706,47.6922521],[12.3483421,47.6922346],[12.3483066,47.6922274],[12.3481729,47.6922251],[12.348069,47.6922483],[12.3479921,47.6922843],[12.3479309,47.6922941],[12.3478679,47.6923153],[12.3478083,47.6923285],[12.3477185,47.6923288],[12.3475534,47.6923721],[12.3474839,47.6923704],[12.3473869,47.6923947],[12.3472971,47.6923939],[12.3472293,47.6923888],[12.3471002,47.692406],[12.3470765,47.6924058],[12.3470175,47.6923938],[12.346913,47.6923631],[12.3468272,47.6923325],[12.3467733,47.6923069],[12.3466368,47.6922748],[12.3465553,47.6922764],[12.3464957,47.6922942],[12.346423,47.6922912],[12.3462955,47.6923131],[12.3462462,47.6923172],[12.346183,47.692343],[12.3460451,47.6923842],[12.3459351,47.6923763],[12.3458348,47.692388],[12.3457214,47.6923802],[12.3456281,47.6923862],[12.3455286,47.6923624],[12.3454969,47.6923359],[12.3454597,47.6923355],[12.3452487,47.6922867],[12.3451879,47.6922748],[12.3451371,47.6922801],[12.3450406,47.6922746],[12.3448709,47.6922812],[12.3448305,47.6922705],[12.3447845,47.692285],[12.3447236,47.6922822],[12.3446916,47.6922705],[12.3446365,47.6922219],[12.3446104,47.6921656],[12.3445979,47.6921161],[12.344583,47.6921],[12.3445576,47.6920895],[12.3445749,47.6920678],[12.344555,47.6920401],[12.3445692,47.6920161],[12.3445357,47.6919908],[12.3444869,47.6919778],[12.3444381,47.6919601],[12.3443859,47.6919311],[12.3443527,47.6918975],[12.3443208,47.6918778],[12.3442791,47.6918465],[12.3442287,47.6918267],[12.3441308,47.6917994],[12.3440414,47.6917871],[12.3440238,47.6918145],[12.3439864,47.6918221],[12.3439589,47.6918471],[12.3438689,47.6918579],[12.3438154,47.6918479],[12.3437,47.6918265],[12.3435992,47.6917741],[12.3434814,47.6917307],[12.343357,47.6915842],[12.343353,47.6915807],[12.343317,47.6915505],[12.3432716,47.6915307],[12.3432164,47.6914844],[12.3431443,47.6914506],[12.343079,47.6914111],[12.3429008,47.6913305],[12.3427043,47.6912382],[12.3425543,47.6911946],[12.3425175,47.6911679],[12.342443,47.691158],[12.3423927,47.6911359],[12.3423071,47.6910882],[12.342262,47.6910614],[12.3422115,47.691037],[12.3420898,47.6910176],[12.3420141,47.6909894],[12.3418849,47.6909196],[12.3418162,47.6908823],[12.3417206,47.6908264],[12.3416703,47.6907985],[12.3415843,47.6907749],[12.3415527,47.690746],[12.341482,47.6907179],[12.3414656,47.690688],[12.3413051,47.6905789],[12.3412679,47.6905682],[12.341226,47.6905415],[12.3411467,47.690527],[12.3411192,47.690544],[12.3410329,47.6905467],[12.3408071,47.6904737],[12.3407394,47.6904719],[12.340629,47.6904802],[12.3406014,47.6905074],[12.340576,47.6905083],[12.3405689,47.690522],[12.3405418,47.6905194],[12.3405178,47.6905342],[12.3404875,47.690527],[12.3404626,47.6905074],[12.3404153,47.6904909],[12.3403105,47.6904785],[12.3402904,47.6904647],[12.3402655,47.6904392],[12.3402265,47.6904366],[12.3401173,47.6903841],[12.340043,47.6903765],[12.3399885,47.6903643],[12.3399294,47.6903743],[12.3397571,47.6903488],[12.3396605,47.6903514],[12.3395388,47.6903731],[12.3393904,47.6903845],[12.3391856,47.6903747],[12.3390566,47.6903851],[12.3388833,47.6905072],[12.3386961,47.6905525],[12.3385943,47.6905609],[12.3385602,47.6905755],[12.3384972,47.6905851],[12.3384765,47.6906079],[12.3382749,47.6906954],[12.3380643,47.6908127],[12.3379047,47.6909225],[12.3377917,47.6909834],[12.3377624,47.6910162],[12.3377297,47.6910355],[12.3376274,47.691077],[12.3374719,47.6911386],[12.3373348,47.691229],[12.3372863,47.6912801],[12.3372443,47.6913565],[12.3371995,47.6913974],[12.3371442,47.6914485],[12.3370924,47.6915052],[12.3370582,47.6915267],[12.3370087,47.6915435],[12.3369725,47.6915798],[12.3369194,47.6916091],[12.336846,47.691636],[12.3367613,47.6916662],[12.3366773,47.6916941],[12.3364369,47.6917145],[12.3363389,47.6917336],[12.3361021,47.6918137],[12.3360511,47.6918584],[12.3359891,47.691975],[12.3358872,47.6920979],[12.3358011,47.6921295],[12.3355144,47.6921894],[12.3354365,47.6922284],[12.3353488,47.6922972],[12.3352623,47.6924058],[12.3351248,47.692589],[12.3351145,47.6926072],[12.3350634,47.6926978],[12.3351246,47.692787],[12.3353668,47.6931404],[12.335528,47.6933757],[12.3356572,47.6935643],[12.3358218,47.6938044],[12.3360173,47.6940893],[12.3362088,47.694384],[12.3376323,47.6964587],[12.3378274,47.6967453],[12.3380351,47.697055],[12.337781,47.696966],[12.3370529,47.6968523],[12.3361272,47.6967137],[12.3354236,47.6966083],[12.3347033,47.6965006],[12.3341851,47.6964228],[12.3327846,47.6962138],[12.331855,47.6960746],[12.3317484,47.6960586],[12.330914,47.6959337],[12.3297789,47.6957637],[12.3283581,47.6955509],[12.3281029,47.6955127],[12.3271207,47.6953638],[12.3261503,47.6952201],[12.3257949,47.6951669],[12.3232626,47.6947877],[12.3216401,47.6945446],[12.3215952,47.6945379],[12.3203339,47.6943486],[12.319082,47.6941613],[12.3175939,47.6939383],[12.3157099,47.6936581],[12.3151144,47.6935691],[12.3116388,47.6930487],[12.3092762,47.6926937],[12.3072278,47.6923869],[12.3038926,47.691887],[12.3002609,47.6913428],[12.2973408,47.6909029],[12.2936567,47.6903502],[12.2930946,47.6902659],[12.2930584,47.6902604],[12.2922859,47.690145],[12.2921254,47.6901211],[12.2875152,47.6901364],[12.286684,47.6901392],[12.2851955,47.6901442],[12.2847204,47.6901459],[12.2840859,47.6899155],[12.2839708,47.6898737],[12.2833569,47.6896532],[12.2809268,47.6887804],[12.2809196,47.6887786],[12.2794619,47.6883977],[12.2775137,47.6878885],[12.2769589,47.6875269],[12.2743247,47.685813],[12.2735715,47.6853229],[12.2728583,47.6848588],[12.272487,47.684618],[12.2723213,47.6845106],[12.2711342,47.6840389],[12.27067,47.6835971],[12.2688537,47.6818685],[12.2683317,47.6813654],[12.2677034,47.6807631],[12.2660493,47.6798357],[12.2657603,47.6796813],[12.2648041,47.6791697],[12.2643766,47.6789374],[12.2636942,47.6785666],[12.2632436,47.6783215],[12.2611791,47.678545],[12.2604249,47.6786266],[12.2590474,47.6787759],[12.2587664,47.6788064],[12.2586712,47.678824],[12.2582606,47.6788993],[12.2571689,47.6791019],[12.2562864,47.6792613],[12.2561472,47.6792868],[12.2552499,47.6794511],[12.2550452,47.6798454],[12.2549436,47.6800414],[12.2549411,47.6800462],[12.2542586,47.6813618],[12.2542319,47.6814129],[12.2541762,47.6815198],[12.2538196,47.6822038],[12.2534422,47.6829325],[12.2531175,47.683559],[12.2529718,47.6838412],[12.2528798,47.6838919],[12.2522727,47.684227],[12.2521594,47.6842895],[12.2511974,47.6848204],[12.2511579,47.6848422],[12.2506755,47.6851084],[12.2503338,47.685297],[12.2493417,47.6858446],[12.2490289,47.6860172],[12.248616,47.6862447],[12.2483233,47.6864064],[12.2478258,47.686681],[12.2471832,47.6870355],[12.2468134,47.6872396],[12.2461867,47.6875853],[12.2458853,47.6877517],[12.2454441,47.6883833],[12.2452523,47.6886582],[12.2448034,47.6893013],[12.2447583,47.6893657],[12.2446387,47.6895375],[12.2445102,47.6897217],[12.2438817,47.6906227],[12.24333,47.6914128],[12.2431454,47.6916671],[12.2429915,47.6918979],[12.2426415,47.6923991],[12.2426169,47.6924344],[12.2424259,47.692708],[12.2422728,47.6929272],[12.2412609,47.6943766],[12.2415587,47.6952472],[12.2417325,47.6957562],[12.242441,47.6978316],[12.2428234,47.6989518],[12.2428988,47.6991726],[12.243358,47.7005178],[12.2435367,47.7010411],[12.2439927,47.7023755],[12.2440513,47.7025465],[12.2445409,47.7039789],[12.2446264,47.7042293],[12.2446963,47.7044334],[12.2447471,47.7045821],[12.244826,47.704813],[12.2451261,47.7056909],[12.2453787,47.7064304],[12.245743,47.7074978],[12.2458702,47.70787],[12.2458763,47.7078885],[12.2461328,47.7086392],[12.2462414,47.7089574],[12.2466034,47.7100176],[12.2466962,47.710289],[12.2467827,47.7105425],[12.2469234,47.7109573],[12.2469883,47.7109512],[12.2470544,47.7109307],[12.247097,47.7109262],[12.2471394,47.710869],[12.2471987,47.7108496],[12.247226,47.7108143],[12.2472583,47.710804],[12.247382,47.7107973],[12.24747,47.7109277],[12.2474782,47.7109848],[12.2475289,47.7110202],[12.2475374,47.7110615],[12.2475645,47.7110775],[12.2475523,47.7111368],[12.2475728,47.7111677],[12.247615,47.7111883],[12.2476199,47.7112353],[12.2475706,47.7112683],[12.2475165,47.711298],[12.2474656,47.7113174],[12.2474636,47.7113734],[12.2474958,47.7114077],[12.2475482,47.71145],[12.2475967,47.7114752],[12.2476431,47.7115005],[12.2476701,47.7115016],[12.2477212,47.7114914],[12.2477702,47.7114926],[12.2478719,47.7114835],[12.2479388,47.7114824],[12.2480026,47.7114813],[12.2480483,47.7114894],[12.2481109,47.7115044],[12.2482059,47.7115066],[12.2482398,47.711501],[12.2483991,47.7115365],[12.2484889,47.7115446],[12.2485093,47.711555],[12.248538,47.7115493],[12.248655,47.7115723],[12.2486956,47.7115952],[12.2487193,47.7116535],[12.2487549,47.7116832],[12.2487885,47.711746],[12.2488188,47.7117644],[12.2488427,47.7117645],[12.2489123,47.7117531],[12.2490055,47.7117279],[12.2490174,47.7117052],[12.2491141,47.7117144],[12.2492225,47.7117453],[12.2493125,47.71175],[12.2493462,47.7117671],[12.2494072,47.711766],[12.2495275,47.7117879],[12.2495904,47.7117868],[12.2496531,47.7118234],[12.2497342,47.7118909],[12.2497851,47.7118841],[12.2498153,47.7118894],[12.249829,47.7119082],[12.249885,47.7119322],[12.2499339,47.712034],[12.2499355,47.712058],[12.2499203,47.7120831],[12.2499132,47.7121346],[12.249937,47.7121609],[12.2499912,47.7121792],[12.2500927,47.7122399],[12.2501536,47.7123143],[12.2501915,47.7123334],[12.2502145,47.7123452],[12.2502653,47.7123544],[12.2503144,47.7123841],[12.2504447,47.7125249],[12.250492,47.7125329],[12.2505784,47.7125844],[12.2506038,47.712613],[12.25068,47.7126645],[12.2507067,47.7126943],[12.2507222,47.7127309],[12.2507255,47.7127914],[12.2507424,47.7128143],[12.2507711,47.7128257],[12.2507813,47.7128406],[12.2508014,47.7128852],[12.2507997,47.7128966],[12.2507793,47.7129092],[12.2507353,47.7128977],[12.2505862,47.7128381],[12.2505287,47.7128324],[12.2504982,47.712837],[12.2504213,47.7130163],[12.2504027,47.7130357],[12.2504179,47.7130494],[12.250423,47.7131135],[12.2504125,47.7131466],[12.2504515,47.7131649],[12.250487,47.7132015],[12.2505023,47.7132415],[12.2504919,47.7132747],[12.2504698,47.7133684],[12.2504509,47.7134507],[12.2504508,47.7135216],[12.2504369,47.7135775],[12.2504571,47.7136382],[12.2504723,47.713669],[12.2504788,47.7137662],[12.2505042,47.713812],[12.2505363,47.7138736],[12.2505734,47.7139343],[12.250597,47.7139664],[12.2506278,47.7140421],[12.2506898,47.7141492],[12.2507406,47.7141916],[12.2507676,47.7142132],[12.2507924,47.7142359],[12.250793,47.7142363],[12.2508437,47.7143163],[12.2509229,47.7145016],[12.2509855,47.7145565],[12.2510314,47.7145531],[12.2510584,47.7145691],[12.2511379,47.7146458],[12.2512056,47.7147018],[12.2512615,47.7147099],[12.2513327,47.714766],[12.2514478,47.7147947],[12.2514578,47.7148187],[12.2515832,47.7148668],[12.251612,47.7148896],[12.2516628,47.7148989],[12.2518341,47.7149653],[12.2518765,47.7149653],[12.2519339,47.7149951],[12.2519608,47.7150749],[12.2519471,47.7151495],[12.2519115,47.7152042],[12.2519503,47.7152283],[12.2519773,47.7152843],[12.2520433,47.7153278],[12.2520906,47.7153724],[12.2521479,47.7155131],[12.2522124,47.7155234],[12.2522463,47.7155143],[12.2523276,47.7155635],[12.2523918,47.7156618],[12.252407,47.7157178],[12.252422,47.7157728],[12.2524576,47.7157797],[12.2525457,47.7158232],[12.2526048,47.7160301],[12.2526449,47.7161697],[12.2526887,47.7162417],[12.2527208,47.7163183],[12.2527495,47.7163526],[12.2527952,47.7164223],[12.2528612,47.7164716],[12.2528881,47.716523],[12.25311,47.7166764],[12.2532404,47.7167599],[12.2532572,47.7167965],[12.2533164,47.716808],[12.2533435,47.7168206],[12.2533739,47.7168641],[12.2533959,47.7168995],[12.2534264,47.7169144],[12.2534993,47.7169236],[12.2536617,47.7170209],[12.2536988,47.7171066],[12.2537311,47.7171319],[12.2538158,47.7171524],[12.253848,47.7171742],[12.2538768,47.7172039],[12.2539292,47.7172029],[12.2539784,47.7172189],[12.2540122,47.7172522],[12.2540444,47.7172682],[12.2540901,47.7172841],[12.2541579,47.7173322],[12.2541926,47.7174119],[12.2542582,47.7174488],[12.2542411,47.7175104],[12.254243,47.7175596],[12.2542421,47.7176374],[12.2542486,47.7176523],[12.2542819,47.7176733],[12.2543113,47.7177104],[12.2543105,47.7177356],[12.2542701,47.7177807],[12.2542448,47.7178285],[12.2542531,47.7178893],[12.254292,47.7180042],[12.2543251,47.7180299],[12.2543598,47.7180601],[12.2543793,47.7180901],[12.2544325,47.7182316],[12.2544813,47.718302],[12.2545336,47.7183634],[12.2545444,47.7184552],[12.2545283,47.7184823],[12.2544914,47.7185242],[12.2544875,47.7185402],[12.2545053,47.7185656],[12.2545352,47.718589],[12.2545603,47.7186007],[12.2545749,47.7186215],[12.2546154,47.7186804],[12.2546385,47.7187025],[12.2546901,47.7187341],[12.2547639,47.7187567],[12.2547977,47.7188157],[12.2548903,47.7189543],[12.2549169,47.7189695],[12.2549128,47.7189946],[12.2548852,47.7190114],[12.2548803,47.7191133],[12.2548964,47.7191397],[12.2549466,47.7191668],[12.2549833,47.7191821],[12.2550375,47.719239],[12.2550468,47.7192677],[12.2550429,47.7192848],[12.2550175,47.7192844],[12.2549886,47.7192829],[12.254963,47.7192917],[12.2549791,47.7193182],[12.2550104,47.7193473],[12.2550595,47.7194063],[12.2551213,47.7194381],[12.2551424,47.7194647],[12.2552135,47.7195275],[12.2552704,47.7196084],[12.2553032,47.719642],[12.2554057,47.7196709],[12.2556029,47.7197652],[12.255647,47.7197895],[12.255758,47.7198508],[12.2558975,47.7198952],[12.2559389,47.7199256],[12.2560749,47.7199766],[12.2561468,47.7200039],[12.2561735,47.7200203],[12.2562293,47.7200836],[12.2562892,47.7201158],[12.2563567,47.7201831],[12.2563823,47.7202304],[12.2564744,47.7203278],[12.2565674,47.7203919],[12.2566511,47.7204274],[12.2566676,47.7204437],[12.2566851,47.7204783],[12.2566889,47.7206282],[12.2567029,47.7206742],[12.256706,47.7207326],[12.2567273,47.7207604],[12.2567705,47.7207941],[12.256851,47.7208227],[12.2570079,47.7209015],[12.257044,47.7209399],[12.2570875,47.7209565],[12.2571017,47.7209922],[12.2571297,47.72102],[12.2572541,47.7211076],[12.2573086,47.7211609],[12.257364,47.7211777],[12.2574357,47.7212188],[12.2575191,47.7212634],[12.2575538,47.7212936],[12.257597,47.7213228],[12.2576132,47.7213437],[12.2576473,47.7215089],[12.2577165,47.7216838],[12.2577857,47.721806],[12.2578029,47.7218532],[12.2578297,47.7219165],[12.2578441,47.7219487],[12.2578631,47.7219948],[12.257969,47.7221336],[12.2580187,47.7221721],[12.2580432,47.722201],[12.2580754,47.7222541],[12.25812,47.7222935],[12.2581949,47.7223405],[12.2583324,47.7224522],[12.2584367,47.7225291],[12.2584772,47.7226498],[12.2584953,47.722665],[12.2585203,47.7226824],[12.2585623,47.7226875],[12.2611382,47.7266327],[12.2611384,47.726633],[12.261139,47.726634],[12.2619748,47.7279138],[12.262826,47.7292174],[12.2646408,47.7319962],[12.2649807,47.7325165],[12.2645159,47.7336556],[12.263993,47.7349366],[12.2638265,47.735345],[12.2638096,47.7353862],[12.2635819,47.7359444],[12.2631886,47.7369079],[12.2629793,47.7371099],[12.2622042,47.7378815],[12.2612975,47.7387846],[12.2586458,47.7414236],[12.2584492,47.7416194],[12.2570286,47.7430345],[12.2566953,47.7429665],[12.2558529,47.7427963],[12.2557314,47.7427718],[12.2556805,47.7427614],[12.2497055,47.7415525],[12.2494644,47.7413277],[12.2492658,47.7411426],[12.2483571,47.7402949],[12.2463648,47.7384366],[12.2452372,47.7373847],[12.2450799,47.737238],[12.2448629,47.7370357],[12.2440787,47.736304],[12.243305,47.7355823],[12.241311,47.7337219],[12.2406027,47.733061],[12.2398441,47.7323532],[12.2389423,47.7313735],[12.2374345,47.7297376],[12.236079,47.7282667],[12.2355551,47.7276982],[12.2342905,47.7263242],[12.2341448,47.7261664],[12.2338866,47.7258868],[12.2324566,47.7243383],[12.23226,47.724125],[12.2303933,47.7220993],[12.2300255,47.7217001],[12.229967,47.7216367],[12.2287052,47.7202684],[12.2280674,47.7195767],[12.227574,47.7190424],[12.2271717,47.7186067],[12.2267557,47.7181517],[12.2267425,47.7181373],[12.2265494,47.7180462],[12.2248394,47.7172332],[12.2231447,47.7164539],[12.2217908,47.715809],[12.2210754,47.7154784],[12.2195117,47.7147428],[12.2177441,47.7139159],[12.2163217,47.7132547],[12.214482,47.7123886],[12.2135202,47.7119273],[12.2126863,47.7115371],[12.2119569,47.7111967],[12.2099818,47.7105187],[12.2085892,47.7100548],[12.207998,47.7099567],[12.2072328,47.7104824],[12.2068712,47.7107064],[12.2059577,47.7105179],[12.2056004,47.7100832],[12.2049537,47.7093152],[12.2048287,47.7090263],[12.2045299,47.7083379],[12.2042915,47.7080942],[12.2036359,47.7074327],[12.2026502,47.7074722],[12.2018187,47.7075083],[12.2010484,47.7075474],[12.2003864,47.7075841],[12.1993895,47.7076109],[12.1989453,47.7080626],[12.1984191,47.7086007],[12.197704,47.7087608],[12.1964516,47.7084799],[12.195993,47.7082982],[12.1955279,47.7080679],[12.1951822,47.7078008],[12.1948541,47.7075677],[12.1947069,47.7074172],[12.1944641,47.7073061],[12.1940242,47.7071473],[12.1927957,47.7065697],[12.1923522,47.7063514],[12.1911267,47.7057749],[12.1901163,47.7052854],[12.1886222,47.7045826],[12.1879791,47.7044208],[12.1873091,47.7041031],[12.1864446,47.7036584],[12.1861579,47.7032131],[12.1859369,47.7028474],[12.1858038,47.7023717],[12.1858492,47.7019645],[12.185663,47.7017854],[12.1852212,47.7014109],[12.1847223,47.7010174],[12.1844135,47.7007475],[12.1835036,47.7004961],[12.1828217,47.7005025],[12.1818519,47.7005357],[12.1806561,47.7005878],[12.1795352,47.7006164],[12.1786283,47.7006492],[12.178049,47.7006817],[12.1773784,47.7007033],[12.1764074,47.7007214],[12.1755347,47.7007451],[12.1741919,47.7008082],[12.1732156,47.7008477],[12.1719127,47.7008643],[12.1706726,47.7009057],[12.1692403,47.7009633],[12.1681629,47.7009829],[12.1678529,47.7009885],[12.1659936,47.701052],[12.164455,47.7011051],[12.1629085,47.7011701],[12.1624246,47.701167],[12.1628317,47.699144],[12.1634412,47.6961162],[12.164204,47.6925476],[12.164735,47.6900629],[12.1648039,47.6897547],[12.1651776,47.6886695],[12.1652808,47.688365],[12.1655081,47.6876718],[12.165956,47.6864046],[12.1662409,47.6855823],[12.1665987,47.6844599],[12.1668688,47.6836931],[12.1672944,47.6824158],[12.1675922,47.6818889],[12.1679344,47.6813054],[12.1683802,47.680558],[12.1689652,47.6796639],[12.1694558,47.6789682],[12.1699176,47.6783596],[12.1702482,47.6779543],[12.1708107,47.6773044],[12.1712126,47.676871],[12.1719435,47.6761528],[12.1725843,47.6756033],[12.1732999,47.675016],[12.1739733,47.6745082],[12.1748234,47.6738782],[12.1757305,47.673245],[12.1762765,47.672848],[12.1771947,47.6722185],[12.1784166,47.6713973],[12.1790805,47.6709379],[12.1792916,47.6707807],[12.1796927,47.6704845],[12.1800835,47.6701523],[12.180697,47.6696425],[12.1813146,47.6691159],[12.1814111,47.6690183],[12.1815494,47.6688784],[12.1820203,47.6683046],[12.1822372,47.668039],[12.1826241,47.6674263],[12.183153,47.6664982],[12.1832424,47.6663074],[12.1834212,47.66585],[12.183586,47.6654359],[12.1837354,47.6649369],[12.1839043,47.6643898],[12.1840231,47.6639618],[12.1841325,47.6634532],[12.1842314,47.6629373],[12.1842752,47.6625593],[12.1842853,47.6621526],[12.1842862,47.6618522],[12.1844733,47.660956],[12.1846892,47.6603276],[12.1848997,47.6598506],[12.1849988,47.6596885],[12.1851507,47.65946],[12.1852434,47.6593611],[12.185734,47.6587766],[12.1861384,47.6582572],[12.1862839,47.6580711],[12.1866191,47.6576129],[12.1868463,47.6573324],[12.1871665,47.6569055],[12.1881286,47.6556784],[12.1889953,47.65455],[12.1904976,47.6526281],[12.1906159,47.6524731],[12.1913956,47.6514517],[12.1930186,47.6493518],[12.1942309,47.647805],[12.1944283,47.6475853],[12.1949192,47.6470092],[12.1956635,47.6461487],[12.1964716,47.6450578],[12.1965411,47.6449639],[12.1969655,47.6443373],[12.1979376,47.6429018],[12.1983553,47.6422451],[12.1984074,47.6421413],[12.1985649,47.6418786],[12.1987215,47.6415067],[12.1990868,47.6408506],[12.1991796,47.6405087],[12.1995331,47.6397602],[12.1998057,47.6388486],[12.200071,47.6382272],[12.2003142,47.6375748],[12.2006655,47.6364813],[12.2009735,47.6357533],[12.2009767,47.6357457],[12.2011671,47.6352053],[12.2014192,47.6343812],[12.2015694,47.6337485],[12.2018113,47.6330204],[12.2025836,47.630287],[12.2026309,47.6295926],[12.2027363,47.6280463],[12.2029159,47.6269312],[12.2029338,47.6268201],[12.2030899,47.6258505],[12.2032035,47.6252584],[12.2032607,47.6249597],[12.2034753,47.6238401],[12.2037036,47.6229714],[12.2040179,47.6223117],[12.206029,47.6186504],[12.2062818,47.6181801],[12.2071777,47.6165129],[12.20766,47.6154645],[12.2076754,47.6154311],[12.2079329,47.6147199],[12.2081354,47.614045],[12.2082498,47.6134704],[12.2083007,47.6128669],[12.2082639,47.6123045],[12.2081456,47.6117423],[12.2079089,47.6111165],[12.2076546,47.6105556],[12.2073109,47.6097073],[12.2070743,47.6093707],[12.2066331,47.6087433],[12.2058762,47.6078755],[12.2049562,47.6072032],[12.2039614,47.6067646],[12.2030055,47.6064317],[12.2024442,47.6062708],[12.2020119,47.6061672],[12.2015323,47.6060523],[12.2007706,47.6059181],[12.2005611,47.6058811],[12.1991464,47.6056856],[12.1981229,47.6055621],[12.1971154,47.6054428],[12.1964827,47.6053634],[12.1964578,47.6053602],[12.1961127,47.6053169],[12.1961018,47.6053155],[12.1942596,47.6050933],[12.1937161,47.6050523],[12.1935458,47.6050394],[12.1934534,47.6050324],[12.1934529,47.6050323],[12.19333,47.6050232],[12.1929569,47.604995],[12.1918421,47.6049293],[12.1907618,47.6048775],[12.1892984,47.6048494],[12.1878707,47.6048434],[12.1868985,47.6048404],[12.1863674,47.6048073],[12.1858448,47.6047352],[12.1854013,47.6046263],[12.1848732,47.6044798],[12.1842016,47.604281],[12.1836703,47.6040387],[12.1830821,47.6037528],[12.1830688,47.6037476],[12.1823004,47.6034458],[12.181681,47.6031715],[12.1803925,47.6025295],[12.1795747,47.6020136],[12.1789486,47.6015437],[12.1781491,47.6008901],[12.1780192,47.6009442],[12.17758,47.6011402],[12.1774775,47.6011859],[12.1774655,47.6011913],[12.1772643,47.6012811],[12.1773227,47.6013652],[12.1773842,47.6014536],[12.1775871,47.6017451],[12.1779334,47.6022427],[12.1786632,47.6032906],[12.1793608,47.6042941],[12.1798204,47.6049545],[12.1798256,47.6050137],[12.179896,47.6058468],[12.1799228,47.6061635],[12.1800471,47.6076333],[12.180067,47.6078674],[12.1800931,47.6081772],[12.1808501,47.6094873],[12.1814362,47.6103544],[12.1812083,47.610688],[12.1810094,47.6110499],[12.1808096,47.611395],[12.1800699,47.6126072],[12.1796668,47.6132891],[12.1794708,47.6136052],[12.179241,47.6139863],[12.1790043,47.6143898],[12.1776363,47.6145011],[12.1768116,47.6145681],[12.1758205,47.6145846],[12.1756183,47.6145285],[12.1739549,47.6141185],[12.1724172,47.6140654],[12.1717974,47.614285],[12.1714957,47.6144459],[12.1714144,47.6145023],[12.1709748,47.6145081],[12.1704511,47.6142917],[12.1697897,47.6142367],[12.1689762,47.6143063],[12.1685123,47.6142209],[12.1677146,47.6140718],[12.1652131,47.6136903],[12.1652126,47.6136902],[12.1639784,47.6135003],[12.1637971,47.6134723],[12.1636552,47.6134504],[12.1635669,47.6134367],[12.1632248,47.6131628],[12.1627452,47.6131473],[12.1623523,47.613145],[12.1611807,47.6127547],[12.1602928,47.612225],[12.1582266,47.6112173],[12.1579363,47.6109712],[12.1572336,47.6107734],[12.1560274,47.6102172],[12.1546694,47.6098397],[12.1543461,47.6097438],[12.1537075,47.609713],[12.1533816,47.6097804],[12.1527454,47.6097582],[12.1519303,47.6095796],[12.1516606,47.6094537],[12.1513085,47.6094514],[12.1508511,47.6091874],[12.1501182,47.6089475],[12.1498348,47.608906],[12.1494582,47.60864],[12.1482647,47.6078297],[12.1453997,47.607542],[12.1436782,47.6068634],[12.1427783,47.6065086],[12.1427022,47.6064786],[12.1426153,47.6064443],[12.1419143,47.606168],[12.141169,47.6058741],[12.1411062,47.6058494],[12.1409635,47.6057932],[12.1398022,47.6053353],[12.1396951,47.6053639],[12.1396148,47.6053855],[12.1394731,47.6054234],[12.1391792,47.6055022],[12.1381182,47.6057865],[12.1378428,47.6058604],[12.1374733,47.6059592],[12.1346666,47.6059131],[12.1338835,47.6060435],[12.132488,47.6062758],[12.1302711,47.6062426],[12.1290224,47.6056493],[12.1255477,47.6068539],[12.1250635,47.607022],[12.1245917,47.6073618],[12.1232912,47.6082883],[12.1225287,47.6084128],[12.1220183,47.6084904],[12.1204841,47.6087223],[12.1200648,47.6094197],[12.1193884,47.6100908],[12.1170513,47.6108538],[12.1152172,47.6114504],[12.114254,47.6112021],[12.1123882,47.611257],[12.1105203,47.6113134],[12.1098289,47.6113299],[12.1095535,47.6117393],[12.1081361,47.6115874],[12.1057022,47.6113273],[12.1025677,47.6109914],[12.1018028,47.6109101],[12.1000406,47.6107242],[12.0973659,47.6100053],[12.0932664,47.6104679],[12.0926843,47.6100603],[12.0903646,47.609971],[12.0892591,47.6099539],[12.0886994,47.6099084],[12.0875601,47.6098678],[12.0872072,47.6096841],[12.0860299,47.6096986],[12.0823518,47.6097453],[12.081297,47.6102681],[12.0795967,47.6111081],[12.0787637,47.6129789],[12.0781745,47.6135126],[12.0770134,47.6136962],[12.0764029,47.613791],[12.0755174,47.6139283],[12.0742795,47.6141297],[12.0733869,47.6142645],[12.0717494,47.6145233],[12.0708373,47.6146621],[12.0692004,47.6156223],[12.0675631,47.6161429],[12.0664384,47.6164982],[12.0656648,47.6167425],[12.0653367,47.6168443],[12.0642122,47.6186831],[12.060864,47.6188214],[12.060719,47.6188294],[12.0606597,47.6187193],[12.0602854,47.6180788],[12.0600223,47.6176398],[12.0591852,47.617331],[12.0588661,47.6171977],[12.0585208,47.6170499],[12.0570333,47.6164131],[12.0543226,47.6152566],[12.0534102,47.6154229],[12.0532682,47.6154495],[12.0530256,47.615495],[12.0526119,47.6153516],[12.0512284,47.6148816],[12.0511807,47.6148823],[12.0495758,47.614945],[12.0495236,47.6149461],[12.0488047,47.6152401],[12.0471526,47.6159072],[12.0461141,47.6163206],[12.0453932,47.6162593],[12.0436973,47.6165826],[12.0428409,47.6166171],[12.0420569,47.616649],[12.0384756,47.6176055],[12.0373288,47.6176226],[12.036184,47.6171659],[12.0346122,47.6169175],[12.0342608,47.6167849],[12.0335113,47.6154623],[12.032129,47.61507],[12.0314393,47.6147822],[12.0311095,47.6138041],[12.030657,47.6133893],[12.0309052,47.6130112],[12.0301408,47.61237],[12.0298873,47.6118177],[12.0285913,47.6112599],[12.0276057,47.6110737],[12.025333,47.6112554],[12.0237836,47.6114561],[12.0231609,47.6113873],[12.0219093,47.611083],[12.0215383,47.6112253],[12.0211265,47.6113853],[12.0210064,47.611432],[12.0200517,47.6117948],[12.019945,47.6118355],[12.0198935,47.6118551],[12.0198483,47.6118724],[12.0196452,47.6119503],[12.0196276,47.6119571],[12.01959,47.6120336],[12.0180677,47.6151287],[12.0178505,47.6155703],[12.017112,47.6170715],[12.0170287,47.6172405],[12.0162486,47.6178527],[12.0162201,47.6180824],[12.0161746,47.6184489],[12.0156373,47.6191001],[12.0150753,47.6197811],[12.0150082,47.6198626],[12.0147113,47.6198987],[12.0141429,47.6206164],[12.0140263,47.6207635],[12.013509,47.6210595],[12.0129704,47.6213692],[12.0122729,47.6218358],[12.0125273,47.6225454],[12.0127625,47.6232007],[12.0104329,47.6243962],[12.0085922,47.6249703],[12.0085326,47.6251781],[12.0069183,47.6238951],[12.0068672,47.6238544],[12.006449,47.6235221],[12.0053896,47.6232821],[12.0050232,47.6231992],[12.0049791,47.6231892],[12.0018881,47.6224888],[12.0013094,47.6223578],[12.0012388,47.6223251],[12.0000382,47.6217681],[11.9994677,47.6215034],[11.9991667,47.6214955],[11.9987937,47.6214857],[11.9985692,47.6214799],[11.9971502,47.6214427],[11.9965748,47.621388],[11.9934125,47.6210875],[11.989912,47.6207548],[11.9883341,47.62025],[11.9853445,47.6198548],[11.9821619,47.6192549],[11.9809046,47.6188651],[11.9805403,47.6184002],[11.9787442,47.616633],[11.976846,47.6148094],[11.9762914,47.613161],[11.976229,47.6129776],[11.9761433,47.6131573],[11.9755117,47.6144754],[11.9744184,47.6153987],[11.9716599,47.6164042],[11.9694418,47.6166018],[11.968241,47.6172019],[11.9681661,47.6172392],[11.9681321,47.6172362],[11.9677424,47.6172015],[11.9672105,47.6171545],[11.9637795,47.6168499],[11.9635628,47.6168307],[11.96052,47.6165605],[11.9586309,47.6163907],[11.9586028,47.6163881],[11.956532,47.6162037],[11.9552768,47.6160919],[11.9538657,47.6159662],[11.95302,47.6158909],[11.9528659,47.615866],[11.9508965,47.61555],[11.9507009,47.6155186],[11.9499584,47.6153993],[11.9442677,47.614486],[11.9432832,47.614328],[11.9432637,47.6143248],[11.9413982,47.6140258],[11.9400193,47.6138042],[11.9351037,47.6130142],[11.9342192,47.6128721],[11.9333303,47.6127291],[11.9333095,47.6127304],[11.9327033,47.6127682],[11.9290744,47.6129738],[11.9242129,47.6132579],[11.9227495,47.6133447],[11.9198533,47.6135106],[11.9168439,47.6136851],[11.9152473,47.6137686],[11.9148478,47.6137895],[11.9146687,47.6137879],[11.9146383,47.6138039],[11.9145975,47.6138176],[11.9145673,47.613814],[11.914461,47.6137965],[11.9143547,47.6137814],[11.9142805,47.6137595],[11.9142298,47.6137525],[11.9142012,47.6137524],[11.9141521,47.6137591],[11.9140946,47.6137865],[11.9140303,47.6137955],[11.9139392,47.6137918],[11.9138886,47.6137997],[11.9138226,47.6138166],[11.9137566,47.6138336],[11.9136975,47.613838],[11.913657,47.6138265],[11.9135694,47.6138012],[11.9135272,47.6137839],[11.9134987,47.6137599],[11.9134531,47.61373],[11.913411,47.613715],[11.9133858,47.6137047],[11.9132322,47.613678],[11.9131597,47.6136585],[11.9131125,47.6136606],[11.9130584,47.6136605],[11.9130028,47.6136466],[11.9129471,47.6136236],[11.9128864,47.6135937],[11.9128342,47.6135822],[11.9128022,47.6135741],[11.912772,47.61355],[11.9126492,47.6134286],[11.9126224,47.6134137],[11.9125632,47.6134022],[11.9123303,47.6133982],[11.9122932,47.6133809],[11.9122579,47.6133545],[11.912221,47.6133053],[11.9122008,47.613279],[11.9121435,47.6132526],[11.912103,47.6132353],[11.9120796,47.6132044],[11.9120379,47.6131231],[11.9120295,47.6131049],[11.9120127,47.6130923],[11.9119722,47.6130751],[11.9119217,47.6130521],[11.9118914,47.6130211],[11.9118748,47.6129903],[11.9118546,47.6129765],[11.9117954,47.612973],[11.9117229,47.6129637],[11.9116605,47.6129327],[11.9116203,47.6128925],[11.9115801,47.6128228],[11.9115653,47.6127553],[11.9115605,47.6126856],[11.9115761,47.6126239],[11.9115762,47.6125966],[11.9115594,47.6125736],[11.9115122,47.6125553],[11.9113621,47.6125206],[11.9113369,47.6125068],[11.9113237,47.6124611],[11.9113069,47.6124131],[11.9112936,47.6123822],[11.911265,47.6123558],[11.9112331,47.6123409],[11.9112044,47.6123328],[11.911157,47.6123373],[11.9111199,47.6123544],[11.9110708,47.6123781],[11.9110301,47.612394],[11.9109677,47.6123882],[11.910902,47.612372],[11.9108429,47.612349],[11.9108128,47.612333],[11.9107993,47.612309],[11.9107758,47.6122723],[11.9107591,47.6122483],[11.9107455,47.6122346],[11.910695,47.6122378],[11.9106696,47.6122333],[11.9106428,47.6122149],[11.9105769,47.6121725],[11.9105267,47.6121255],[11.910456,47.612075],[11.9103987,47.6120429],[11.9103752,47.6120291],[11.9103281,47.6120164],[11.9103027,47.6120107],[11.9102876,47.6119946],[11.910276,47.6119581],[11.9102727,47.6119306],[11.9102407,47.6119145],[11.9101867,47.6119075],[11.9101191,47.6119108],[11.9100481,47.6119369],[11.9099297,47.6119892],[11.9098943,47.6119559],[11.9098558,47.6119182],[11.9098154,47.611886],[11.9097596,47.6118665],[11.9096973,47.6118617],[11.9096331,47.6118536],[11.9096045,47.6118386],[11.909603,47.6118181],[11.9095895,47.6117849],[11.9095695,47.611754],[11.9095241,47.6117207],[11.9094618,47.6116909],[11.909418,47.61166],[11.9093794,47.611621],[11.9093308,47.6115375],[11.9092532,47.611535],[11.9091841,47.6115177],[11.9091251,47.6114925],[11.9090947,47.6114626],[11.9090613,47.6114237],[11.9090412,47.6113882],[11.9090395,47.6113787],[11.9090297,47.6113254],[11.9090281,47.6113104],[11.9090334,47.6112762],[11.9090307,47.6112569],[11.9090135,47.6112214],[11.9089748,47.6111767],[11.9089209,47.6111389],[11.9088367,47.611101],[11.908729,47.6110538],[11.9086345,47.6110137],[11.9085487,47.6109631],[11.9084697,47.6109024],[11.9083956,47.6108588],[11.9082861,47.6108162],[11.9082305,47.6107784],[11.9081868,47.6107588],[11.9081496,47.6107484],[11.9081005,47.6107507],[11.9080178,47.6107596],[11.9079773,47.6107515],[11.9079606,47.6107286],[11.9079355,47.6106874],[11.9079087,47.6106508],[11.9078699,47.6106209],[11.9078042,47.6105957],[11.9077554,47.6105727],[11.9077202,47.610544],[11.9076899,47.6105097],[11.9076868,47.6104651],[11.9076838,47.6104103],[11.9076466,47.6103987],[11.9076196,47.6103907],[11.9076045,47.6103769],[11.9076062,47.6103564],[11.9076031,47.6103267],[11.9075948,47.6103083],[11.9075627,47.6102842],[11.9075426,47.6102671],[11.9074769,47.6102224],[11.9074401,47.6101868],[11.9074317,47.6101628],[11.9074337,47.6101194],[11.9074186,47.6100851],[11.9073916,47.6100623],[11.9073447,47.6100358],[11.9072873,47.6100049],[11.9072535,47.6099957],[11.9072283,47.6099967],[11.9072115,47.609983],[11.9072015,47.6099498],[11.9071949,47.60992],[11.9071765,47.6099017],[11.9071529,47.6098936],[11.9071022,47.6098923],[11.9070565,47.6098934],[11.9070313,47.6098876],[11.9069975,47.6098761],[11.9069588,47.6098475],[11.9069219,47.6098131],[11.906895,47.6097845],[11.9068647,47.609773],[11.9068243,47.6097637],[11.9067838,47.6097603],[11.9067668,47.6097568],[11.9067569,47.6097441],[11.9067486,47.6096996],[11.9067403,47.6096744],[11.9067219,47.6096584],[11.906678,47.6096469],[11.9066323,47.6096513],[11.9065699,47.6096568],[11.9065074,47.6096555],[11.9064702,47.6096623],[11.9064178,47.6096781],[11.9063721,47.6097077],[11.9063007,47.6097555],[11.9062688,47.6097669],[11.9062433,47.609761],[11.9061371,47.6097414],[11.9060848,47.6097458],[11.9060476,47.6097526],[11.9060019,47.6097684],[11.9059833,47.609781],[11.9059545,47.609782],[11.9058956,47.6097635],[11.9057893,47.6097166],[11.9057507,47.6097106],[11.905673,47.6097082],[11.905614,47.6096932],[11.9055701,47.6096748],[11.9055516,47.6096576],[11.9055433,47.6096427],[11.9055383,47.6096221],[11.9055435,47.6095937],[11.9055251,47.6095707],[11.905488,47.6095501],[11.9054443,47.6095305],[11.9053986,47.6095224],[11.9053615,47.6095177],[11.9053278,47.6095143],[11.9053061,47.609497],[11.9052959,47.6094788],[11.9053028,47.609464],[11.9053247,47.6094491],[11.9053418,47.6094331],[11.9053485,47.6094229],[11.905347,47.6094126],[11.9053165,47.6094114],[11.9052711,47.6094056],[11.9052457,47.6093986],[11.905217,47.6093814],[11.9051869,47.6093586],[11.9051667,47.6093368],[11.9051449,47.6093253],[11.9051144,47.609323],[11.9050909,47.6093114],[11.9050505,47.6092942],[11.9050201,47.6092826],[11.9049711,47.6092803],[11.9049222,47.6092882],[11.9048849,47.6092994],[11.9048377,47.6093027],[11.9047871,47.60929],[11.9047448,47.609258],[11.9047163,47.6092259],[11.9047114,47.6092216],[11.9046878,47.6092007],[11.9046391,47.6091811],[11.9045919,47.6091605],[11.9045363,47.6091284],[11.9044975,47.6091009],[11.904464,47.6090927],[11.9044335,47.6090949],[11.9043996,47.6091028],[11.9043726,47.6091084],[11.9043507,47.6091073],[11.9043136,47.6090935],[11.9042579,47.6090705],[11.9041805,47.6090509],[11.9041214,47.6090439],[11.9040793,47.6090232],[11.9040557,47.6089969],[11.904051,47.6089591],[11.9040444,47.6089408],[11.9040274,47.6089317],[11.903992,47.6089269],[11.9039396,47.6089326],[11.9038907,47.6089336],[11.903862,47.6089301],[11.9038248,47.6089152],[11.9037827,47.6088808],[11.9037424,47.6088532],[11.9037105,47.608836],[11.9036836,47.6088324],[11.9036649,47.6088382],[11.9036378,47.6088529],[11.9036157,47.6088563],[11.9035805,47.6088425],[11.903535,47.6088138],[11.9034996,47.6087954],[11.9034576,47.6087782],[11.9034036,47.6087529],[11.9033582,47.6087231],[11.9033161,47.6086944],[11.9033011,47.6086795],[11.9032909,47.6086601],[11.9032725,47.6086326],[11.903222,47.6086222],[11.9031983,47.6086244],[11.9031612,47.6086073],[11.903109,47.6085808],[11.9030484,47.6085487],[11.9030215,47.6085405],[11.9029793,47.6085348],[11.9029473,47.6085176],[11.9028615,47.6084624],[11.9027875,47.6084028],[11.9026764,47.6083397],[11.9026037,47.6083532],[11.9025411,47.6083645],[11.9024551,47.6083644],[11.9023976,47.608363],[11.9023537,47.6083571],[11.9023167,47.6083446],[11.9022764,47.6083159],[11.9022613,47.6082781],[11.9022567,47.6082267],[11.9022126,47.6082289],[11.9021586,47.6082356],[11.902113,47.6082435],[11.9020875,47.6082503],[11.9020605,47.6082433],[11.9019727,47.608234],[11.9019425,47.6082338],[11.9019171,47.6082429],[11.9018782,47.6082566],[11.9018175,47.6082633],[11.9017599,47.6082597],[11.9017178,47.6082538],[11.901679,47.6082595],[11.9015842,47.608273],[11.9015199,47.6082899],[11.9014828,47.6082955],[11.901444,47.6083022],[11.901358,47.6082975],[11.9013174,47.608287],[11.9012887,47.608295],[11.9012041,47.608329],[11.9011601,47.6083392],[11.9011094,47.6083562],[11.9010653,47.6083709],[11.9010163,47.6083799],[11.9009556,47.6083775],[11.9008999,47.6083659],[11.9008712,47.6083705],[11.9008507,47.6084],[11.9007999,47.6084457],[11.9007272,47.6084386],[11.9006682,47.6084327],[11.9006091,47.6084394],[11.9005399,47.6084483],[11.9004403,47.6084446],[11.9003557,47.6084536],[11.9002949,47.6084603],[11.9002661,47.6084683],[11.9002409,47.6084681],[11.900202,47.6084624],[11.900153,47.6084622],[11.9001175,47.6084724],[11.9000753,47.608486],[11.9000092,47.6085269],[11.8999485,47.6085154],[11.8998997,47.6085084],[11.8998505,47.6085049],[11.8998033,47.6085058],[11.8997476,47.6085183],[11.8996681,47.6085478],[11.8996156,47.6085705],[11.8995681,47.6085932],[11.8995056,47.6086079],[11.8994667,47.6086238],[11.8994462,47.6086431],[11.8994275,47.6086761],[11.8994036,47.6087161],[11.8993598,47.608731],[11.8993394,47.6087343],[11.8992937,47.6087421],[11.8992363,47.6087511],[11.8992042,47.6087544],[11.8991671,47.6087486],[11.8991233,47.6087451],[11.8990877,47.6087473],[11.899042,47.6087632],[11.8990065,47.6087825],[11.8989709,47.6088006],[11.8989083,47.6088188],[11.8988238,47.6088323],[11.8985838,47.6088876],[11.8984756,47.6089182],[11.8984384,47.6089397],[11.8984314,47.6089614],[11.8984145,47.6089866],[11.8983416,47.6090184],[11.8982927,47.6090296],[11.898247,47.6090307],[11.8982064,47.6090168],[11.8981208,47.6089412],[11.8980805,47.6089079],[11.8980468,47.6088954],[11.8979928,47.6088974],[11.8979235,47.6089064],[11.897883,47.6089052],[11.8978357,47.6088958],[11.8977733,47.6088877],[11.8976195,47.6089101],[11.89754,47.6089156],[11.8974878,47.6089144],[11.8974422,47.6089006],[11.8973799,47.6088742],[11.8973143,47.6088477],[11.8972349,47.6088337],[11.8971793,47.6088268],[11.8971133,47.6088301],[11.897061,47.6088459],[11.8970187,47.6088664],[11.8969898,47.6088971],[11.8969591,47.6089416],[11.8969337,47.6089769],[11.8968996,47.6089939],[11.8968507,47.6090075],[11.8968152,47.609012],[11.8967273,47.6090163],[11.8966176,47.6090172],[11.8965416,47.6090124],[11.8964826,47.6090111],[11.8964437,47.609027],[11.8964114,47.6090577],[11.8963808,47.6091068],[11.8963568,47.6091342],[11.8963112,47.6091626],[11.8962774,47.609175],[11.8962318,47.6091726],[11.8961861,47.6091634],[11.8961373,47.6091679],[11.8960628,47.6091779],[11.8959751,47.6091833],[11.8959396,47.6091741],[11.8959059,47.6091616],[11.895854,47.6090905],[11.8958254,47.6090597],[11.8957918,47.6090435],[11.8957311,47.6090365],[11.8954998,47.6090176],[11.8954508,47.6090267],[11.8953443,47.6090492],[11.8952935,47.609057],[11.8952294,47.6090557],[11.895155,47.6090464],[11.8950927,47.6090336],[11.8950287,47.6090038],[11.8949396,47.6089316],[11.8948977,47.608904],[11.8948706,47.6088936],[11.8947592,47.608898],[11.8947119,47.6088967],[11.8946798,47.6088887],[11.8946024,47.6088507],[11.8945233,47.6088116],[11.8943884,47.6087667],[11.8943802,47.608763],[11.8943228,47.6087369],[11.8943231,47.6086683],[11.8943337,47.6086021],[11.8943255,47.6085426],[11.894314,47.6084957],[11.8942923,47.6084477],[11.8942621,47.6084408],[11.8942357,47.6084347],[11.8938462,47.6083452],[11.8928853,47.6081334],[11.8916542,47.6078593],[11.890243,47.6075451],[11.888001,47.607047],[11.8876894,47.6069776],[11.8851679,47.6064158],[11.8833422,47.6060112],[11.8832019,47.60598],[11.8823056,47.6057812],[11.8755317,47.6042769],[11.8705377,47.6031658],[11.8692392,47.6028768],[11.8689339,47.6028089],[11.8673819,47.6024632],[11.866436,47.6022525],[11.8649601,47.6019237],[11.8649569,47.6018868],[11.8649509,47.6018549],[11.8649558,47.6017943],[11.8649519,47.6017588],[11.8649375,47.6017278],[11.8649178,47.6017081],[11.8648829,47.601687],[11.8648532,47.6016604],[11.864837,47.6016384],[11.8648157,47.6016119],[11.8647761,47.6015851],[11.8646945,47.6015383],[11.8646756,47.6015291],[11.8646181,47.6015008],[11.8645768,47.6014637],[11.8645672,47.6014419],[11.8645526,47.6014188],[11.8645215,47.6013853],[11.8644993,47.6013358],[11.8644792,47.6012053],[11.8644753,47.6011675],[11.864459,47.6011444],[11.8644326,47.6011235],[11.8643875,47.6011046],[11.864352,47.6011053],[11.8643557,47.6010928],[11.8643308,47.6010799],[11.8642895,47.6010531],[11.8642504,47.6009966],[11.864225,47.6009986],[11.8641828,47.6010026],[11.8641218,47.6010099],[11.8640795,47.6010116],[11.8640561,47.6010044],[11.8640281,47.6009858],[11.8639925,47.6009876],[11.8639619,47.6009918],[11.8639399,47.6009916],[11.863925,47.6009846],[11.8638938,47.6009533],[11.8638491,47.6009207],[11.8638008,47.6009108],[11.8637415,47.6009068],[11.8636709,47.6008955],[11.863609,47.6008776],[11.8635552,47.6008644],[11.8635061,47.6008752],[11.8634263,47.6008914],[11.8633213,47.6009082],[11.8632363,47.6009233],[11.863182,47.6009374],[11.863087,47.600958],[11.8629583,47.6009724],[11.8628725,47.6009655],[11.8628018,47.600951],[11.862733,47.6009421],[11.8626758,47.6009333],[11.8626284,47.6009397],[11.8625807,47.6009539],[11.8625409,47.60099],[11.8625221,47.6010011],[11.8625014,47.6010135],[11.8624302,47.6010298],[11.8624024,47.6010556],[11.8622028,47.6010783],[11.8621863,47.6010587],[11.8621715,47.6010425],[11.862145,47.6010297],[11.8621457,47.601001],[11.8621189,47.6009949],[11.8620921,47.6009866],[11.8620574,47.6009599],[11.8620097,47.6009193],[11.861981,47.60092],[11.8619669,47.600937],[11.8618926,47.6009418],[11.8618288,47.6009845],[11.8617501,47.6010269],[11.8617092,47.6010401],[11.8616569,47.6010383],[11.8615306,47.6010275],[11.8614881,47.6010453],[11.861397,47.601035],[11.8612381,47.6010479],[11.8610894,47.6010617],[11.8608354,47.6010851],[11.8607069,47.6010938],[11.8605803,47.6010967],[11.8605478,47.6011147],[11.8605036,47.6011289],[11.8604509,47.6011385],[11.8603226,47.6011392],[11.8602822,47.6011376],[11.8602286,47.6011221],[11.8602052,47.6011172],[11.85997,47.601136],[11.8599274,47.6011514],[11.8599045,47.6011843],[11.8598537,47.60125],[11.8598483,47.6012635],[11.8597682,47.60129],[11.8596967,47.6013131],[11.859623,47.6013568],[11.859572,47.601371],[11.8595141,47.6013874],[11.8594188,47.6014148],[11.8593442,47.6014299],[11.8592863,47.6014486],[11.8592485,47.6014744],[11.8592117,47.6015197],[11.8591938,47.6015595],[11.8591703,47.6016129],[11.8591339,47.6016501],[11.8590894,47.6016736],[11.8590204,47.6017253],[11.8589617,47.6017715],[11.8589016,47.6018073],[11.8588489,47.6018215],[11.8587643,47.6018319],[11.8587203,47.6018382],[11.8586849,47.601832],[11.8586363,47.6018234],[11.8586078,47.6018173],[11.8585839,47.6018273],[11.8585512,47.6018509],[11.8585152,47.6018698],[11.8584797,47.6018706],[11.8583462,47.6018746],[11.858213,47.6018706],[11.8581276,47.6018513],[11.8580519,47.6018378],[11.8579999,47.6018302],[11.8579678,47.6018321],[11.8578482,47.6018797],[11.857764,47.6018788],[11.857728,47.6018977],[11.8576887,47.601912],[11.8574202,47.6019167],[11.85738,47.6019127],[11.8573496,47.6019066],[11.8573175,47.6019155],[11.8572782,47.601932],[11.8571308,47.6019285],[11.8570755,47.6019272],[11.8570314,47.6019403],[11.8570106,47.6019618],[11.8569773,47.6020002],[11.8569395,47.6020306],[11.8569105,47.6020383],[11.8568703,47.6020332],[11.8568082,47.6020153],[11.8567643,47.602017],[11.8567099,47.6020346],[11.8566173,47.6020507],[11.8565479,47.6020596],[11.8564516,47.6020581],[11.8563771,47.6020589],[11.8563029,47.602052],[11.8562389,47.6020414],[11.8561983,47.6020242],[11.8561647,47.6020115],[11.8561327,47.6019829],[11.8560858,47.6019279],[11.8560541,47.6018559],[11.8560391,47.6018136],[11.8560378,47.6017691],[11.8560261,47.6017485],[11.8560008,47.6017359],[11.855962,47.6017357],[11.855921,47.6017448],[11.8558859,47.6017525],[11.8558233,47.6017684],[11.8557639,47.6018001],[11.8557197,47.601841],[11.8556584,47.6018829],[11.8556451,47.6018921],[11.855562,47.6019273],[11.8554823,47.6019647],[11.8554146,47.6019793],[11.8553301,47.6019984],[11.8553114,47.6020097],[11.8552944,47.6020325],[11.8552737,47.6020735],[11.8552328,47.6021441],[11.8551903,47.6021872],[11.8551443,47.6022443],[11.8551238,47.6022807],[11.8550915,47.6022988],[11.8550508,47.6023192],[11.8549553,47.6023579],[11.8548211,47.6020421],[11.8541853,47.6005462],[11.8538516,47.5997612],[11.8535977,47.5991639],[11.8535975,47.5991636],[11.853028,47.597824],[11.8529467,47.5976018],[11.8525707,47.5965743],[11.8525307,47.5964642],[11.8521867,47.59552],[11.8516498,47.5940464],[11.8515727,47.5938349],[11.8515061,47.593652],[11.8514121,47.5933854],[11.8513311,47.5931693],[11.8512977,47.5930796],[11.8506479,47.5913046],[11.8494596,47.5880653],[11.8492349,47.5874443],[11.848799,47.5862394],[11.8486707,47.5858892],[11.8477696,47.5834223],[11.8474111,47.5824408],[11.8473879,47.5823764],[11.8473746,47.5823401],[11.8473688,47.5823238],[11.8472579,47.5823192],[11.8470831,47.5822983],[11.8469068,47.5822705],[11.8467959,47.5822563],[11.8466584,47.5822257],[11.8465077,47.5821914],[11.8463816,47.5821759],[11.8462213,47.5821791],[11.8460546,47.5821664],[11.8458982,47.5821481],[11.845698,47.5821314],[11.8455313,47.5821232],[11.8453703,47.5820888],[11.8452107,47.5820167],[11.8451233,47.5819525],[11.8450681,47.5818773],[11.8450526,47.5818406],[11.8450489,47.5818166],[11.8450343,47.5817202],[11.8449971,47.5816146],[11.8449355,47.581536],[11.8447903,47.5814332],[11.8447818,47.581429],[11.8447173,47.5813967],[11.8445631,47.5813635],[11.8444336,47.5813271],[11.8443658,47.5813079],[11.8442305,47.5812614],[11.8441671,47.5812445],[11.8441271,47.5812341],[11.8440415,47.5812118],[11.8438493,47.5812089],[11.8437817,47.5812091],[11.8435375,47.58125],[11.8432847,47.5812908],[11.8432,47.5813066],[11.8430655,47.5813412],[11.8429893,47.5813527],[11.8429304,47.5813461],[11.8428859,47.5813649],[11.8427184,47.5814309],[11.8426433,47.5814595],[11.8426161,47.5814648],[11.8425775,47.5814608],[11.8425443,47.5814444],[11.8425042,47.5814312],[11.8423042,47.5814042],[11.8421594,47.5813952],[11.8420313,47.581391],[11.8419422,47.5813805],[11.8418468,47.5813573],[11.8417792,47.5813575],[11.8416791,47.5813755],[11.8415894,47.5813855],[11.8414273,47.5813911],[11.8413615,47.5813924],[11.841299,47.5813903],[11.84125,47.5813896],[11.8412179,47.5813959],[11.841192,47.5814151],[11.8411654,47.5814546],[11.8411342,47.5814805],[11.8410691,47.5815138],[11.8410087,47.5815507],[11.8409589,47.5815785],[11.8409111,47.5815994],[11.840804,47.5816219],[11.8407174,47.5816388],[11.8406427,47.5816538],[11.8406123,47.5816568],[11.8405672,47.5816469],[11.8405203,47.581629],[11.8404746,47.5816364],[11.8404184,47.5816503],[11.840391,47.5816597],[11.8403905,47.5816599],[11.840357,47.5816712],[11.8402926,47.581698],[11.8396777,47.582171],[11.8396125,47.5821729],[11.8388527,47.5821932],[11.8371605,47.5818898],[11.8352452,47.5818357],[11.8342322,47.5819599],[11.8333715,47.5820077],[11.8328133,47.5820525],[11.8319267,47.5821248],[11.8319262,47.5821248],[11.8318543,47.5821307],[11.8306821,47.5819885],[11.8298759,47.5820762],[11.8294452,47.5821237],[11.8292943,47.5827815],[11.8288151,47.5841606],[11.828395,47.5853716],[11.8274462,47.5855079],[11.8258987,47.5852602],[11.8246052,47.5849087],[11.8222566,47.5853097],[11.8206219,47.5851562],[11.8187872,47.5850259],[11.8177756,47.584668],[11.8170056,47.5843955],[11.815068,47.5847777],[11.8127156,47.5847943],[11.8107791,47.585421],[11.809954,47.5855095],[11.8090738,47.585605],[11.8041185,47.5861346],[11.8030367,47.5862501],[11.8014507,47.58642],[11.797936,47.5867963],[11.7970484,47.5868911],[11.7968621,47.5869111],[11.7964576,47.5869542],[11.7953121,47.5870768],[11.7929497,47.5873295],[11.7928377,47.5873416],[11.791787,47.5874541],[11.789562,47.587692],[11.786242,47.5890589],[11.7853789,47.5894143],[11.7840852,47.5899469],[11.7839045,47.5900214],[11.7834304,47.5902166],[11.7830093,47.5903897],[11.7829568,47.5904113],[11.7817696,47.5909],[11.7810482,47.5911967],[11.7808186,47.5911625],[11.7802999,47.5910851],[11.7784748,47.5908129],[11.7783476,47.5907939],[11.7781675,47.5907324],[11.7781204,47.5907196],[11.7780008,47.5907034],[11.7778253,47.5906732],[11.7776399,47.5906304],[11.7775303,47.5906141],[11.777446,47.5906082],[11.7773682,47.5906045],[11.7771404,47.5906039],[11.7770097,47.5906045],[11.7768265,47.5906053],[11.7766847,47.5906004],[11.7765716,47.590599],[11.77645,47.5906134],[11.7763317,47.59062],[11.7762658,47.5906414],[11.7761779,47.5906846],[11.7761492,47.5906891],[11.7758456,47.5906357],[11.7758411,47.5906349],[11.775768,47.5906207],[11.7757007,47.5905896],[11.7756755,47.5905769],[11.7756266,47.5905677],[11.7755642,47.5905596],[11.7754194,47.5905123],[11.7752491,47.5904513],[11.7750523,47.5903887],[11.7749306,47.5903488],[11.7748766,47.5903337],[11.7747773,47.590322],[11.774693,47.5903023],[11.7746492,47.5902862],[11.7746256,47.5902747],[11.7745364,47.590222],[11.7744438,47.5901714],[11.7743174,47.5901197],[11.7742113,47.5900908],[11.7740429,47.5900297],[11.7738896,47.5899791],[11.7737329,47.5899387],[11.7736621,47.5899224],[11.7736234,47.5898995],[11.773509,47.589802],[11.7734602,47.5897791],[11.7734216,47.5897688],[11.7731499,47.5897348],[11.7730858,47.5897221],[11.7730353,47.5896991],[11.7729409,47.5896772],[11.7728515,47.5896689],[11.7727065,47.5896479],[11.7725142,47.5896177],[11.7723188,47.5895669],[11.7722446,47.5895564],[11.7721735,47.5895642],[11.7720874,47.5895605],[11.7719695,47.5895407],[11.7718548,47.5895325],[11.7717096,47.5895252],[11.771519,47.5895189],[11.7712945,47.5894909],[11.7712255,47.589485],[11.7711259,47.5894687],[11.771013,47.5894433],[11.7709489,47.5894316],[11.7708629,47.589428],[11.7706756,47.5894125],[11.7704291,47.5894073],[11.7703279,47.5894036],[11.7702942,47.5894242],[11.7702418,47.5894273],[11.770181,47.5894272],[11.7700764,47.5894166],[11.7700121,47.5894232],[11.7699329,47.5894322],[11.7698569,47.5894308],[11.7697303,47.5894237],[11.7696173,47.5894268],[11.7695447,47.5894425],[11.7694025,47.5894867],[11.7693282,47.5894899],[11.7692641,47.5894943],[11.769188,47.5895169],[11.7691322,47.5895316],[11.7690376,47.5895507],[11.7689378,47.5895813],[11.7688548,47.5896188],[11.7687874,47.5896369],[11.768718,47.5896527],[11.7685944,47.589698],[11.7685792,47.5897044],[11.7684947,47.5897399],[11.7684119,47.5897854],[11.7683558,47.5898116],[11.7683102,47.5898251],[11.7682442,47.589857],[11.7681613,47.5899115],[11.7680953,47.589941],[11.7677284,47.5900565],[11.7676524,47.5900666],[11.7675847,47.5900767],[11.7675036,47.5901049],[11.7674173,47.5901459],[11.7673769,47.5901539],[11.7673379,47.5901617],[11.7672367,47.590127],[11.7671425,47.5900959],[11.7670261,47.590066],[11.7668997,47.5900416],[11.7667598,47.5900195],[11.766559,47.589996],[11.7664967,47.5899822],[11.7664595,47.5899706],[11.7663147,47.5899107],[11.7662726,47.5899153],[11.7662048,47.5899242],[11.7661239,47.5899137],[11.7660127,47.5898837],[11.7658593,47.5898478],[11.7657448,47.5898269],[11.7656891,47.5898153],[11.7656503,47.5898084],[11.7655727,47.589783],[11.7654665,47.5897656],[11.7653587,47.5897447],[11.7652456,47.5897227],[11.7650956,47.5896903],[11.7649776,47.5896671],[11.7648613,47.5896439],[11.7647417,47.5896104],[11.7646472,47.5895792],[11.7645344,47.589547],[11.7643911,47.5895158],[11.7642799,47.5894903],[11.7641701,47.5894843],[11.7640959,47.5894795],[11.7640117,47.5894587],[11.7639088,47.5894321],[11.763801,47.5894009],[11.7636764,47.5893469],[11.7635957,47.5893136],[11.76354,47.5892997],[11.7634759,47.5892754],[11.7633396,47.5892226],[11.7632098,47.5891822],[11.7630682,47.5891441],[11.76294,47.5891265],[11.762822,47.5891182],[11.7626701,47.5891132],[11.7625283,47.589114],[11.7624609,47.5891183],[11.7623882,47.5891376],[11.7623239,47.5891453],[11.7622394,47.5891474],[11.7621315,47.5891505],[11.7620491,47.589152],[11.7620201,47.5891525],[11.7619238,47.5891408],[11.7618447,47.5891326],[11.7617282,47.5891139],[11.7615259,47.5890893],[11.7613977,47.5890592],[11.7612275,47.589029],[11.7610942,47.5890058],[11.7609139,47.5889768],[11.7607115,47.5889476],[11.760455,47.5889274],[11.7603976,47.5889284],[11.7603149,47.5889374],[11.7602339,47.5889371],[11.760193,47.588938],[11.7601444,47.5889391],[11.7600413,47.5889378],[11.7599099,47.5889178],[11.7597751,47.5888935],[11.7596957,47.5888738],[11.7596536,47.5888748],[11.7595979,47.5888746],[11.7595305,47.588855],[11.7594529,47.5888514],[11.7593668,47.5888546],[11.7592622,47.5888508],[11.7592318,47.5888542],[11.7591946,47.5888724],[11.7591135,47.5888756],[11.7590073,47.5888673],[11.7588908,47.5888588],[11.7587457,47.5888448],[11.7585871,47.5888374],[11.7585544,47.5888334],[11.7583949,47.588814],[11.7583341,47.5888127],[11.7582968,47.5888287],[11.7582722,47.5888305],[11.7582547,47.5888318],[11.7581973,47.5888181],[11.7581433,47.588819],[11.7580894,47.5888246],[11.7580319,47.5888164],[11.7579205,47.5888012],[11.7578885,47.5888011],[11.7578209,47.5888111],[11.7577738,47.5887882],[11.75773,47.5887846],[11.7576844,47.5887823],[11.7575562,47.5887728],[11.7573975,47.588754],[11.7572322,47.5887569],[11.757078,47.5887677],[11.7570448,47.5887701],[11.756864,47.588789],[11.7567223,47.588808],[11.7566463,47.588816],[11.7565533,47.5888258],[11.7563725,47.5888675],[11.7561595,47.5889319],[11.755889,47.5889963],[11.7557838,47.5890257],[11.7556744,47.5890562],[11.7555408,47.5890867],[11.7554005,47.5891102],[11.7552671,47.5891224],[11.755101,47.5891358],[11.7549238,47.5891356],[11.7547365,47.5891299],[11.7546265,47.5891213],[11.7545082,47.5891024],[11.7544049,47.5890857],[11.7543121,47.5890862],[11.7542261,47.5890878],[11.7540981,47.5891001],[11.7539146,47.5891276],[11.7537529,47.5891537],[11.7535897,47.5891777],[11.7534681,47.5891829],[11.7533668,47.5891789],[11.7532536,47.5891612],[11.7531132,47.5891389],[11.7529372,47.5891089],[11.7528322,47.5890877],[11.7527681,47.5890846],[11.7526973,47.5890884],[11.7526294,47.589075],[11.7525397,47.5890468],[11.7524717,47.5890127],[11.7524104,47.5889785],[11.7522984,47.5889367],[11.7521844,47.5888868],[11.7520912,47.5888517],[11.751988,47.5888361],[11.7519254,47.5888331],[11.7518697,47.5888265],[11.7517883,47.5887981],[11.7517052,47.5887791],[11.751614,47.5887727],[11.7515449,47.5887731],[11.7513879,47.5887476],[11.7513875,47.5887475],[11.7512185,47.5887278],[11.7510392,47.5887035],[11.7508601,47.5886908],[11.7506403,47.5886541],[11.7505353,47.5886362],[11.7504322,47.5886173],[11.7502884,47.5886055],[11.7502733,47.5886043],[11.7502157,47.5885863],[11.7501443,47.5885545],[11.7500914,47.5885214],[11.750049,47.5885102],[11.7499797,47.5884992],[11.7499002,47.588487],[11.7496883,47.5884237],[11.7495509,47.588374],[11.7494525,47.5883411],[11.7493508,47.5883165],[11.7492406,47.5882826],[11.7490389,47.5882251],[11.7489762,47.5882094],[11.7489017,47.5881948],[11.7488222,47.5881769],[11.7487308,47.5881613],[11.7486021,47.5881322],[11.7485004,47.5881005],[11.7483697,47.5880507],[11.748295,47.5880269],[11.7482443,47.5880203],[11.7481496,47.588006],[11.7480531,47.5879892],[11.7479347,47.5879634],[11.7478177,47.5879296],[11.7477264,47.587921],[11.7476454,47.5879179],[11.7475798,47.5879252],[11.7475141,47.5879382],[11.7474904,47.5879349],[11.7474499,47.5879305],[11.747352,47.5879276],[11.7472203,47.5879272],[11.7471021,47.5879267],[11.7469895,47.5879446],[11.7469371,47.5879426],[11.7468745,47.5879372],[11.7468071,47.5879364],[11.7466283,47.5879523],[11.7464953,47.5879691],[11.7464092,47.5879616],[11.7462972,47.5879266],[11.7462499,47.5879142],[11.746184,47.5879123],[11.7461248,47.5879046],[11.7460537,47.5878854],[11.7459504,47.5878584],[11.7458403,47.5878429],[11.745744,47.5878321],[11.7456576,47.587813],[11.7455728,47.5877869],[11.7454678,47.5877577],[11.7453746,47.5877306],[11.7453084,47.5877161],[11.7446686,47.5877668],[11.7391434,47.5881165],[11.7372129,47.5882384],[11.7370693,47.5882474],[11.734933,47.5883823],[11.7345919,47.5884039],[11.7332182,47.5884908],[11.7315086,47.5885991],[11.7232606,47.5891206],[11.7197769,47.5890972],[11.7165681,47.5890765],[11.7151156,47.5890658],[11.7140994,47.5890582],[11.7105672,47.589036],[11.7081047,47.5890185],[11.7058381,47.5890032],[11.7049324,47.5889973],[11.7035687,47.588988],[11.7001715,47.5889654],[11.6986216,47.5885686],[11.6975102,47.5886644],[11.6973895,47.58859],[11.6967271,47.5881817],[11.6935036,47.5876295],[11.6924309,47.5873941],[11.6916514,47.5872234],[11.6896929,47.5866801],[11.6894673,47.5861599],[11.6893508,47.585893],[11.6888869,47.5857412],[11.6876368,47.5856301],[11.6865545,47.5853474],[11.6864021,47.5850701],[11.6827284,47.5844407],[11.68246,47.5843291],[11.6817255,47.5840237],[11.6815875,47.5839663],[11.6812597,47.5838292],[11.6787936,47.5841],[11.6780864,47.5842951],[11.6779522,47.5851401],[11.6765324,47.5851097],[11.6741926,47.5850565],[11.6728491,47.5854649],[11.6702951,47.5853111],[11.6695326,47.5848384],[11.6688251,47.5844018],[11.6667907,47.5841646],[11.665282,47.583876],[11.6638736,47.5836064],[11.6610075,47.5842631],[11.6603082,47.5838042],[11.6593632,47.5839486],[11.6582079,47.5841252],[11.6578121,47.584523],[11.6552975,47.5860199],[11.6536316,47.5867759],[11.6527821,47.5871628],[11.6526959,47.5873413],[11.6523236,47.588123],[11.6514194,47.5889345],[11.6507145,47.5891549],[11.6496443,47.589488],[11.6496301,47.5899264],[11.6492739,47.5903476],[11.6490258,47.5902915],[11.6473923,47.5899154],[11.6459962,47.5895939],[11.6433452,47.5893018],[11.6432868,47.5902808],[11.6432653,47.590348],[11.6432735,47.5903845],[11.6433182,47.5905354],[11.6433029,47.5905605],[11.6432654,47.5906107],[11.643245,47.5906415],[11.6432382,47.5906735],[11.6432498,47.5907078],[11.6432445,47.590749],[11.6432241,47.5907899],[11.6431884,47.5908333],[11.6431459,47.5908846],[11.6431204,47.5909052],[11.6431016,47.5909462],[11.6430813,47.5909633],[11.6430491,47.5909712],[11.6430238,47.590994],[11.6430169,47.5910146],[11.6429965,47.5910453],[11.6429237,47.5910897],[11.6428661,47.5911318],[11.6428372,47.5911603],[11.6428082,47.5911956],[11.6427946,47.5912287],[11.6427877,47.591271],[11.6427789,47.591311],[11.6427804,47.5913566],[11.642782,47.5913841],[11.6427953,47.5914058],[11.6428105,47.5914219],[11.6428492,47.5914563],[11.6428422,47.5914769],[11.6427998,47.591519],[11.642776,47.5915406],[11.6427573,47.5915703],[11.6427216,47.5916137],[11.6426826,47.5916512],[11.6426673,47.5916798],[11.6426554,47.5916968],[11.6426334,47.5917094],[11.6425979,47.5917252],[11.6425641,47.5917377],[11.642537,47.591749],[11.6425182,47.5917604],[11.6425012,47.5917844],[11.6424809,47.5917947],[11.6424623,47.5918072],[11.6424572,47.5918289],[11.6424351,47.591855],[11.6423843,47.5918927],[11.6423469,47.5919142],[11.642335,47.5919314],[11.6423163,47.5919736],[11.6422924,47.5920066],[11.6422585,47.592042],[11.6422313,47.5920694],[11.6422194,47.5920864],[11.6422142,47.5921025],[11.6422157,47.5921573],[11.6422089,47.5921687],[11.6421767,47.5921892],[11.6421665,47.5922108],[11.6421511,47.5922234],[11.6421275,47.5922348],[11.6420835,47.592238],[11.6420364,47.5922402],[11.6420513,47.5923031],[11.6420762,47.5923339],[11.6420929,47.5923569],[11.6421132,47.5923787],[11.6421317,47.5923947],[11.6421603,47.5924085],[11.6421923,47.5924154],[11.6422109,47.5924189],[11.642226,47.592427],[11.6422359,47.5924487],[11.6422358,47.5924853],[11.6422219,47.5925276],[11.6421981,47.5925743],[11.6421657,47.5926233],[11.642135,47.5926724],[11.6421063,47.5927066],[11.6420808,47.5927385],[11.6420453,47.5927659],[11.6419944,47.5927908],[11.6419539,47.5928102],[11.6419048,47.5928283],[11.6418861,47.5928385],[11.6418759,47.59285],[11.6418742,47.5928716],[11.6418604,47.5929081],[11.6418519,47.5929344],[11.6418231,47.5929572],[11.6417892,47.5929799],[11.6417519,47.5929946],[11.6417164,47.5930026],[11.6416523,47.5930058],[11.6416271,47.5930115],[11.6415898,47.5930423],[11.6415626,47.5930582],[11.6415203,47.5930671],[11.6414511,47.5930852],[11.6414019,47.5931069],[11.6413715,47.5931262],[11.6413528,47.593141],[11.6413475,47.5931639],[11.6413492,47.5931924],[11.6413591,47.5932278],[11.6413624,47.593245],[11.6413588,47.5932666],[11.6413333,47.593294],[11.6413267,47.5933044],[11.6413248,47.593326],[11.6413349,47.5933511],[11.6413244,47.5933705],[11.6413142,47.5933877],[11.641294,47.5934002],[11.64125,47.5933966],[11.6412264,47.5934046],[11.6411671,47.5934536],[11.6411367,47.5934786],[11.6410892,47.5934945],[11.6410251,47.5935068],[11.6410134,47.5935086],[11.6409507,47.5935181],[11.6408848,47.5935145],[11.6408326,47.5935132],[11.6408055,47.5935062],[11.6407921,47.5935028],[11.6407501,47.5934547],[11.6407333,47.593449],[11.6406794,47.5934431],[11.6405915,47.5934383],[11.6405241,47.5934335],[11.6404634,47.5934299],[11.6404329,47.5934275],[11.6404146,47.5934241],[11.6403892,47.5934138],[11.6403757,47.5934034],[11.6403657,47.5933943],[11.6403488,47.5933908],[11.6403387,47.5933919],[11.6403133,47.5934101],[11.6402979,47.5934225],[11.6402761,47.5934294],[11.6402288,47.5934258],[11.6402001,47.5934338],[11.6401612,47.5934519],[11.6401121,47.5934701],[11.640053,47.5934825],[11.6400038,47.5934937],[11.6399667,47.5934994],[11.6399465,47.5935039],[11.6399213,47.5935027],[11.6398672,47.5934854],[11.6398151,47.59346],[11.6397747,47.5934452],[11.6397511,47.593444],[11.6397256,47.5934473],[11.6396885,47.5934449],[11.6396616,47.5934426],[11.6396379,47.5934493],[11.6396024,47.5934686],[11.6395837,47.5934754],[11.6395636,47.5934663],[11.6395232,47.5934411],[11.6395013,47.5934364],[11.6394541,47.5934397],[11.6394269,47.5934362],[11.6393782,47.5934144],[11.6393309,47.5934005],[11.6392854,47.5933981],[11.6392211,47.5934025],[11.6391688,47.5934126],[11.639125,47.5934193],[11.639098,47.5934193],[11.6390759,47.5934273],[11.639059,47.5934352],[11.6390354,47.5934363],[11.6389949,47.5934316],[11.6389696,47.5934258],[11.6389358,47.5934291],[11.6388681,47.5934506],[11.638804,47.593463],[11.6387567,47.5934698],[11.6386891,47.5934673],[11.6386319,47.5934488],[11.6385745,47.593443],[11.638529,47.5934439],[11.6384901,47.5934496],[11.6384242,47.5934814],[11.6382821,47.5935427],[11.6382146,47.5935094],[11.6381926,47.593507],[11.6380896,47.5935295],[11.6380507,47.5935432],[11.6380339,47.5935568],[11.638037,47.593574],[11.6380654,47.5936529],[11.6381005,47.5937045],[11.6381038,47.5937261],[11.6380986,47.5937445],[11.6380766,47.5937604],[11.6380495,47.5937774],[11.6380375,47.5937968],[11.638029,47.5938162],[11.6380052,47.5938321],[11.637958,47.5938434],[11.6378514,47.5938637],[11.637772,47.5938932],[11.6377297,47.593917],[11.637689,47.5939593],[11.6376617,47.5939991],[11.6376144,47.5940013],[11.6375806,47.5940047],[11.6375586,47.5940195],[11.6375382,47.5940342],[11.6374928,47.594025],[11.6374489,47.5940316],[11.6373491,47.5940645],[11.6372425,47.5941066],[11.6372001,47.5941156],[11.6371766,47.594111],[11.637158,47.5941166],[11.6371309,47.5941256],[11.6371055,47.5941302],[11.6370718,47.5941244],[11.6370128,47.5941276],[11.6367998,47.5941808],[11.6367712,47.5941932],[11.6367508,47.5942137],[11.6367388,47.5942353],[11.6366592,47.5942535],[11.6366052,47.5942681],[11.6365544,47.5942932],[11.6365018,47.5943525],[11.6364827,47.5943716],[11.6364374,47.5943968],[11.63639,47.594431],[11.6363611,47.5944549],[11.6363238,47.5944856],[11.6362777,47.5945379],[11.6362679,47.5945369],[11.6362373,47.5945448],[11.6362052,47.5945573],[11.6361799,47.5945549],[11.6361361,47.5945377],[11.6360923,47.5945215],[11.6360688,47.5945112],[11.6360679,47.5945124],[11.6360207,47.5945179],[11.6359398,47.5944915],[11.6357898,47.5944544],[11.6356062,47.5944071],[11.6354578,47.5943586],[11.6353518,47.5943138],[11.6352492,47.5942633],[11.6351635,47.5942036],[11.6351013,47.5941543],[11.6350392,47.5940855],[11.6349926,47.5939963],[11.6349577,47.5938946],[11.6349145,47.5937676],[11.6348832,47.593636],[11.6347292,47.5933945],[11.6346675,47.5932961],[11.6345904,47.5932045],[11.6344912,47.5931162],[11.6342424,47.5929464],[11.6340877,47.5928717],[11.6339496,47.5927947],[11.6338791,47.5927511],[11.6338354,47.5927236],[11.6337927,47.5927059],[11.6337061,47.5926842],[11.6335809,47.5926784],[11.6333715,47.5926812],[11.6332719,47.5926878],[11.6331976,47.5926944],[11.6331387,47.5926909],[11.633083,47.5926793],[11.6330242,47.5926368],[11.6329856,47.592591],[11.6329708,47.5925326],[11.6329676,47.5924824],[11.632961,47.5924561],[11.6329417,47.5924342],[11.6328706,47.5923542],[11.6327985,47.592258],[11.6327568,47.5921848],[11.6327268,47.5921321],[11.6326461,47.5920497],[11.6325575,47.5919225],[11.6324972,47.5918298],[11.632464,47.5917486],[11.6324326,47.5916102],[11.6324013,47.5914776],[11.6323935,47.5913656],[11.6323875,47.5912331],[11.63239,47.5910959],[11.6323958,47.5909783],[11.6324064,47.5908926],[11.6325266,47.5902381],[11.6325843,47.5901617],[11.6326439,47.5900922],[11.6326626,47.5900545],[11.6326461,47.5899882],[11.6326482,47.5899094],[11.6326541,47.5898821],[11.6326674,47.5898203],[11.632671,47.5897711],[11.6326577,47.5897357],[11.6326292,47.5896934],[11.6326176,47.5896601],[11.6326228,47.5896145],[11.6326147,47.589587],[11.6325408,47.5895274],[11.63246,47.5894575],[11.6324418,47.5894266],[11.6324367,47.5893968],[11.6324091,47.5892254],[11.6323696,47.5890481],[11.6323549,47.5889533],[11.6323434,47.5889132],[11.6323233,47.5888812],[11.6322864,47.5888559],[11.6321973,47.5887928],[11.6321586,47.5887641],[11.6321418,47.5887367],[11.632117,47.5886681],[11.6321019,47.588652],[11.6320228,47.5886049],[11.631991,47.5885888],[11.631986,47.5885626],[11.6319897,47.5884963],[11.6319747,47.588478],[11.6319884,47.5884243],[11.6320042,47.5883398],[11.6319957,47.5883192],[11.6319588,47.5882939],[11.6318983,47.5882595],[11.6318429,47.5882262],[11.631816,47.5881941],[11.6317792,47.5881312],[11.6317795,47.5880878],[11.6317849,47.5880283],[11.6318431,47.5879538],[11.6318792,47.5879269],[11.6319019,47.5878998],[11.6319232,47.58786],[11.6319208,47.5878246],[11.6319052,47.5877822],[11.6318874,47.5877512],[11.6318848,47.5877236],[11.6318964,47.5876062],[11.6318871,47.587582],[11.6318606,47.5875612],[11.6318206,47.5875401],[11.6317788,47.5875258],[11.6317527,47.5874969],[11.6316982,47.5874505],[11.6316534,47.5874283],[11.6315814,47.5873989],[11.63153,47.5873708],[11.6315039,47.5873384],[11.6314841,47.5873188],[11.6314589,47.5873093],[11.6314258,47.5872918],[11.6314231,47.5872688],[11.6314202,47.5871878],[11.6314171,47.5871168],[11.6313916,47.5870616],[11.6313704,47.5870217],[11.6313482,47.58698],[11.631285,47.586889],[11.6312114,47.5868012],[11.6311955,47.5867691],[11.6311731,47.5867162],[11.6311626,47.5866738],[11.6311461,47.5866621],[11.6311055,47.5866616],[11.6310603,47.5866486],[11.631042,47.5866321],[11.6310394,47.5866057],[11.6310413,47.5865819],[11.6310443,47.5865429],[11.631059,47.5865032],[11.63111,47.5864158],[11.6311266,47.5863622],[11.631116,47.5862491],[11.631122,47.5862138],[11.631135,47.5861636],[11.6311341,47.5861327],[11.6311312,47.5861167],[11.6311402,47.5860938],[11.631177,47.5860452],[11.6311861,47.5860167],[11.6311801,47.5859836],[11.6311573,47.5859547],[11.6311379,47.585919],[11.6311351,47.5858996],[11.6311464,47.5858563],[11.6311472,47.585822],[11.6311377,47.5857956],[11.6310985,47.5857426],[11.6310942,47.5857151],[11.6311135,47.5856228],[11.6311105,47.5856056],[11.6310695,47.5855606],[11.6310566,47.5855364],[11.6310437,47.5855077],[11.6309554,47.5854655],[11.630929,47.5854412],[11.6309317,47.5854059],[11.6309305,47.5853841],[11.6309181,47.5853394],[11.6308777,47.585275],[11.6308413,47.5852425],[11.6308185,47.5852103],[11.6308109,47.5851771],[11.6308166,47.5851519],[11.6308602,47.5850988],[11.630883,47.5850625],[11.6309151,47.5849988],[11.6309565,47.5848977],[11.6309895,47.5847964],[11.6310116,47.5847224],[11.6310492,47.584636],[11.6310809,47.5845929],[11.6311863,47.5844891],[11.6312568,47.5844431],[11.6313457,47.5843996],[11.6314207,47.5843719],[11.631645,47.5843129],[11.6317148,47.5842909],[11.6318358,47.5842432],[11.6319088,47.5842257],[11.6320038,47.5842086],[11.6321051,47.5842053],[11.6323126,47.5842112],[11.6323532,47.5842105],[11.6323957,47.5842019],[11.6324178,47.5841884],[11.6324453,47.5841682],[11.6324716,47.5841319],[11.6325182,47.5840913],[11.6325339,47.5840721],[11.6325451,47.5840299],[11.6325446,47.5839866],[11.6325606,47.5839525],[11.6325732,47.5839218],[11.6325743,47.5838785],[11.6325734,47.5838487],[11.632594,47.5838318],[11.6326453,47.5838107],[11.6326474,47.5837924],[11.6326582,47.583764],[11.6326795,47.5837288],[11.6327037,47.5837005],[11.6327519,47.5836646],[11.632812,47.5836287],[11.6328681,47.5836123],[11.6329003,47.5836034],[11.632916,47.5835889],[11.632913,47.5835739],[11.6329124,47.5835282],[11.6329032,47.5834299],[11.632886,47.5833725],[11.6328523,47.5833093],[11.6328478,47.5832818],[11.6328472,47.5832418],[11.6328737,47.5831952],[11.6329483,47.5831151],[11.6329834,47.5830617],[11.6330295,47.5829114],[11.6330526,47.5828614],[11.6330912,47.5828059],[11.6331553,47.582745],[11.6332344,47.5826854],[11.633315,47.582636],[11.6334485,47.5825656],[11.6335679,47.5825146],[11.6337093,47.5824649],[11.6338301,47.5824308],[11.6338829,47.5824074],[11.6339192,47.5823759],[11.6339486,47.5823465],[11.6340156,47.5822354],[11.6340488,47.5821981],[11.6340829,47.5821768],[11.63417,47.5821389],[11.6341784,47.5821359],[11.6343064,47.5820891],[11.634327,47.5820734],[11.6343362,47.5820449],[11.6343501,47.5820257],[11.6343791,47.5820101],[11.6343964,47.5820041],[11.6344492,47.5819857],[11.6344528,47.581972],[11.6344435,47.5819434],[11.6343926,47.5818834],[11.6343039,47.5817885],[11.6342877,47.5817576],[11.6343073,47.5817178],[11.6343417,47.5816943],[11.6343493,47.5816669],[11.6343411,47.5816497],[11.6343149,47.5816207],[11.6342885,47.5815953],[11.6342826,47.5815679],[11.634299,47.5815189],[11.6343185,47.5814757],[11.6343075,47.5814493],[11.6342951,47.5814034],[11.6342848,47.5813462],[11.6342719,47.5813266],[11.634215,47.581302],[11.6341061,47.5812687],[11.6340291,47.5812449],[11.6339956,47.5812376],[11.6339673,47.5812214],[11.6339544,47.5811948],[11.6339739,47.5811551],[11.6340087,47.5811212],[11.6340179,47.5810871],[11.6340111,47.5810263],[11.6339353,47.5810186],[11.6339069,47.5810046],[11.6338251,47.5809054],[11.6337549,47.5808794],[11.633715,47.5808606],[11.633625,47.5808093],[11.6335984,47.5807907],[11.6335485,47.5807638],[11.6335221,47.5807407],[11.6335379,47.5807145],[11.6335814,47.5806693],[11.6335621,47.5806325],[11.6334888,47.5805894],[11.6334137,47.5805611],[11.6333495,47.5805591],[11.6332147,47.5805401],[11.6330855,47.5805429],[11.6329865,47.5805513],[11.6328036,47.5805594],[11.6326571,47.5805772],[11.6325826,47.5805831],[11.6324333,47.5806122],[11.6323471,47.5806215],[11.6321411,47.5806247],[11.6320096,47.5806173],[11.6319086,47.5806081],[11.6318564,47.5805973],[11.6317792,47.5805827],[11.6316763,47.5805803],[11.6315748,47.5805905],[11.6314802,47.5805962],[11.6313773,47.580595],[11.6312476,47.5805831],[11.6311299,47.5805646],[11.6310157,47.5805393],[11.6309168,47.5805152],[11.6308147,47.5804774],[11.6307213,47.5804352],[11.6306331,47.5803861],[11.6305752,47.5803431],[11.6305436,47.5803222],[11.6304361,47.5803079],[11.6301024,47.5804152],[11.6298122,47.5805374],[11.6295527,47.58066],[11.6294192,47.5807327],[11.628853,47.5809555],[11.6286997,47.5810073],[11.62854,47.5810511],[11.628435,47.5810671],[11.6282897,47.5810698],[11.6281556,47.5810968],[11.6279477,47.5811811],[11.6276731,47.5813538],[11.6274848,47.5814578],[11.6274042,47.5815036],[11.6272619,47.5815889],[11.6270966,47.5817183],[11.6269862,47.5818095],[11.6268968,47.5818747],[11.6267578,47.5819633],[11.6266378,47.5820315],[11.6265636,47.5820992],[11.6265195,47.5821706],[11.6264935,47.5822628],[11.6264718,47.5823837],[11.6264466,47.5824725],[11.6264094,47.5825395],[11.6263351,47.5826118],[11.6262428,47.5826575],[11.6261548,47.5826668],[11.6259975,47.5826799],[11.6258874,47.5826945],[11.6257636,47.5827159],[11.6256668,47.582741],[11.6255796,47.5827766],[11.6255008,47.5828305],[11.625351,47.5829442],[11.6252527,47.5830288],[11.6251975,47.583075],[11.625091,47.5831446],[11.6248841,47.5832496],[11.6244434,47.5834525],[11.6243897,47.5835136],[11.6243195,47.5836111],[11.6242064,47.5837526],[11.6241713,47.583807],[11.6241413,47.5838535],[11.6240858,47.5839135],[11.6240154,47.5839606],[11.6239283,47.5840008],[11.6238297,47.584034],[11.6237226,47.5840578],[11.6236006,47.5840849],[11.6235121,47.5841113],[11.6233284,47.5841662],[11.6231549,47.5842111],[11.622977,47.584241],[11.6228278,47.5842655],[11.6226805,47.5842832],[11.6225332,47.5842986],[11.6224183,47.5843041],[11.6223086,47.5843017],[11.6222633,47.5842908],[11.6221848,47.5842601],[11.6220842,47.5842292],[11.6220037,47.5842123],[11.6218988,47.5842201],[11.6217578,47.5842528],[11.6216799,47.584269],[11.6215611,47.5842882],[11.6213782,47.5843089],[11.6212887,47.5843158],[11.6211149,47.5843115],[11.6209011,47.5842872],[11.6207848,47.5842813],[11.6205872,47.584279],[11.6203979,47.5842938],[11.6203067,47.5842972],[11.6203048,47.5842974],[11.6200772,47.5842877],[11.6200511,47.5842884],[11.620013,47.5842894],[11.6199162,47.5843167],[11.619853,47.584329],[11.6197119,47.5843564],[11.6196276,47.5843727],[11.6195346,47.5843831],[11.6194556,47.5843741],[11.619313,47.5843369],[11.6191521,47.5842893],[11.6188831,47.584245],[11.6185656,47.584184],[11.6184835,47.5841636],[11.6183829,47.5841361],[11.6182841,47.5840995],[11.618206,47.5840539],[11.6181415,47.584003],[11.6180804,47.5839463],[11.6180245,47.583885],[11.6179739,47.5838215],[11.6179233,47.5837489],[11.6179073,47.583711],[11.6178625,47.5836864],[11.6177142,47.5836092],[11.6176827,47.5835803],[11.617644,47.5835124],[11.6175794,47.5833927],[11.6175061,47.5832889],[11.6174033,47.5831495],[11.6173263,47.583057],[11.6172856,47.5829983],[11.6172368,47.5829234],[11.6171763,47.5828472],[11.6169758,47.5826299],[11.6168838,47.5825316],[11.6168294,47.582483],[11.6167758,47.5823978],[11.6167571,47.582337],[11.6167431,47.5822865],[11.6167444,47.5822339],[11.6167569,47.5822046],[11.6167679,47.5821782],[11.6167947,47.5821134],[11.6167973,47.5821039],[11.6168208,47.5820176],[11.6168279,47.5819471],[11.6168298,47.5819286],[11.616828,47.5818842],[11.6168257,47.5818267],[11.6167965,47.5817121],[11.6167577,47.5816454],[11.6166772,47.5815587],[11.6165853,47.581458],[11.6165206,47.5814105],[11.6164572,47.5813755],[11.6163772,47.581346],[11.6162263,47.5813018],[11.6160909,47.5812465],[11.6160106,47.5812227],[11.6159052,47.5812499],[11.6154243,47.5811744],[11.6153828,47.5811488],[11.6153742,47.5810881],[11.6153616,47.5809851],[11.6153526,47.5809405],[11.6153266,47.5808945],[11.6152721,47.5808526],[11.6151113,47.5807992],[11.6149956,47.5807693],[11.6149456,47.5807458],[11.6148215,47.5806472],[11.6145993,47.5804274],[11.6145263,47.580375],[11.6144479,47.5803409],[11.6142886,47.5802944],[11.6140794,47.5802268],[11.6138563,47.5801624],[11.6136857,47.5801044],[11.6134652,47.5800148],[11.6132866,47.579935],[11.6131649,47.5798741],[11.6130527,47.5798373],[11.6128666,47.5797939],[11.6128007,47.5797877],[11.6127745,47.5797844],[11.6126291,47.5797659],[11.6123966,47.5797518],[11.612138,47.5797612],[11.6119863,47.5797571],[11.6118319,47.579785],[11.6116235,47.5798168],[11.6112393,47.5798625],[11.6108392,47.5799286],[11.6106875,47.5799816],[11.6105231,47.5800837],[11.6103706,47.5802282],[11.6102746,47.5803539],[11.6102627,47.5803712],[11.6102232,47.5804562],[11.6102059,47.580536],[11.6101891,47.5805964],[11.6101678,47.5806442],[11.6101111,47.5806766],[11.6100107,47.5807086],[11.6099512,47.5807261],[11.609892,47.58073],[11.6098398,47.5807248],[11.6097355,47.5807157],[11.609661,47.5807227],[11.6095663,47.5807307],[11.6095207,47.580729],[11.6094685,47.5807226],[11.6093898,47.5806966],[11.6093415,47.5806766],[11.6093064,47.5806601],[11.6092701,47.5806311],[11.6092389,47.5805919],[11.6092091,47.5805732],[11.6091771,47.5805637],[11.6091501,47.5805645],[11.6091285,47.5805552],[11.609075,47.5805294],[11.609052,47.5805131],[11.6089723,47.580519],[11.6088862,47.5805248],[11.6088232,47.5805446],[11.6087478,47.580586],[11.608697,47.5805968],[11.6085917,47.5806183],[11.6085542,47.580634],[11.6084841,47.5806709],[11.6084088,47.5807134],[11.608369,47.5807461],[11.6082433,47.5808394],[11.6080204,47.5810472],[11.6080178,47.5810814],[11.6079797,47.5811244],[11.6078784,47.5811895],[11.6078042,47.5812491],[11.6077441,47.5812918],[11.6076927,47.5813186],[11.6075088,47.5813782],[11.6074267,47.581424],[11.6073346,47.5814629],[11.6072433,47.5815293],[11.607174,47.5816028],[11.6071165,47.5816731],[11.6070258,47.5817886],[11.6069919,47.5817985],[11.6069456,47.5817802],[11.6069374,47.5817753],[11.606901,47.5817575],[11.6068146,47.5817289],[11.606771,47.5817203],[11.6066846,47.5817285],[11.6065813,47.5816757],[11.6065312,47.5816568],[11.6064741,47.581647],[11.6064016,47.5816439],[11.6063562,47.5816342],[11.6063147,47.5816085],[11.6062243,47.581508],[11.6061915,47.5814734],[11.6061581,47.5814558],[11.6061118,47.5814243],[11.6060805,47.5813919],[11.6060693,47.5813655],[11.6060796,47.5812959],[11.6060738,47.5812593],[11.6060544,47.5812235],[11.6060046,47.5811944],[11.6058574,47.5811344],[11.6058274,47.5811248],[11.605799,47.5811096],[11.6057627,47.5810794],[11.6057349,47.5810403],[11.6057176,47.5809921],[11.6057108,47.5809314],[11.6057109,47.5808571],[11.6057089,47.5808079],[11.6057029,47.5807736],[11.6056887,47.5807368],[11.6056877,47.5807082],[11.6057248,47.5806481],[11.605727,47.5806217],[11.6057107,47.5805987],[11.6056981,47.5805665],[11.6056772,47.5805241],[11.6056447,47.580479],[11.6056083,47.5804489],[11.605535,47.5804103],[11.6054784,47.5803787],[11.6054402,47.580352],[11.6053958,47.5803092],[11.6053666,47.580262],[11.6053479,47.5802035],[11.6053315,47.5801804],[11.6052919,47.5801433],[11.6052182,47.5800568],[11.6051298,47.5799483],[11.6050839,47.5798915],[11.6049997,47.5798243],[11.6049232,47.5797742],[11.604877,47.5797382],[11.6048655,47.5797244],[11.6048913,47.5796401],[11.6049083,47.579566],[11.6049103,47.579486],[11.604931,47.579404],[11.6049082,47.5793716],[11.6048956,47.5793384],[11.6049338,47.5792896],[11.6049709,47.5792318],[11.6049791,47.5791736],[11.604981,47.5791005],[11.6049614,47.5790088],[11.6049429,47.5789423],[11.6049127,47.578871],[11.604897,47.5788217],[11.6048966,47.5787702],[11.6049064,47.5787154],[11.6049457,47.5786359],[11.6049721,47.5785894],[11.6049923,47.5785256],[11.6050007,47.5784605],[11.6049892,47.5783826],[11.6049638,47.5783172],[11.6049268,47.5782459],[11.6048907,47.5782065],[11.6048544,47.5781718],[11.6047765,47.5781229],[11.60475,47.5780986],[11.604742,47.5780802],[11.6047345,47.5780458],[11.6047066,47.5780157],[11.6046074,47.5779345],[11.6045912,47.5779103],[11.6045727,47.5778381],[11.6045723,47.5777867],[11.6046012,47.5777139],[11.6046397,47.5776584],[11.6047143,47.5775826],[11.6047335,47.5775519],[11.6047307,47.5774639],[11.6047098,47.577354],[11.6046917,47.5772737],[11.6046808,47.5772415],[11.6046815,47.5772118],[11.6046775,47.5771695],[11.6046618,47.5771304],[11.6046191,47.5770819],[11.6045413,47.577018],[11.6044781,47.5769807],[11.6044217,47.5769423],[11.6043438,47.5768889],[11.604282,47.5768607],[11.6041461,47.5768259],[11.6040959,47.5768081],[11.6040728,47.576793],[11.6040488,47.5767402],[11.6040225,47.5767147],[11.6039943,47.576696],[11.6039421,47.5766897],[11.6039147,47.5767008],[11.6039091,47.5767235],[11.6039101,47.5767521],[11.6038812,47.576762],[11.6038236,47.5767637],[11.6037581,47.5767526],[11.6036829,47.5767242],[11.6036231,47.5766893],[11.603595,47.5766603],[11.6035963,47.5766124],[11.6036009,47.5765632],[11.6035931,47.5765403],[11.603577,47.5765138],[11.6035323,47.5764767],[11.6034645,47.5764176],[11.6034035,47.5763573],[11.6033414,47.5762813],[11.6033059,47.5762203],[11.6032931,47.5761903],[11.603281,47.5761353],[11.603233,47.5760352],[11.6031626,47.5759453],[11.6031219,47.5758864],[11.6030829,47.5758312],[11.6030674,47.5757773],[11.603056,47.5756959],[11.603055,47.575601],[11.6030536,47.5755267],[11.6030676,47.5754366],[11.60308,47.5753511],[11.6030849,47.5752253],[11.6030801,47.5751498],[11.6030854,47.5750722],[11.6030806,47.5749944],[11.6030345,47.5747537],[11.6030313,47.5747272],[11.6030226,47.574693],[11.6030022,47.5746275],[11.6029191,47.5744379],[11.6029043,47.574378],[11.602896,47.5743415],[11.6028588,47.5742707],[11.6028018,47.5741314],[11.6027664,47.574064],[11.6027515,47.5740286],[11.6027514,47.5739785],[11.6027566,47.5739237],[11.6027481,47.5738997],[11.6027347,47.5738838],[11.6026437,47.5738449],[11.602556,47.573798],[11.60246,47.5737249],[11.6024448,47.5737067],[11.6024262,47.5736804],[11.6024198,47.5736359],[11.602418,47.5736142],[11.6024096,47.5735971],[11.6023859,47.573581],[11.6023405,47.5735651],[11.6023186,47.5735457],[11.6023103,47.5735217],[11.6022969,47.5733791],[11.6022735,47.5732774],[11.6022432,47.5732398],[11.6022079,47.5732135],[11.6021623,47.5731952],[11.6020122,47.5731243],[11.6019618,47.5730878],[11.6019178,47.5730329],[11.6019021,47.5729947],[11.6018944,47.5729759],[11.6018726,47.5729074],[11.6018592,47.5728618],[11.601856,47.5728195],[11.6018678,47.5727967],[11.6020014,47.5726166],[11.6021283,47.5724648],[11.6021876,47.5723781],[11.602257,47.5722572],[11.6023213,47.5721774],[11.6023416,47.5721444],[11.6023433,47.5720701],[11.602335,47.5720222],[11.6023283,47.571939],[11.6023589,47.5718534],[11.6023829,47.571688],[11.6024117,47.5716412],[11.6024894,47.5715945],[11.6025199,47.5715522],[11.6025537,47.571485],[11.6026331,47.5714028],[11.60264,47.5713732],[11.6026282,47.5713309],[11.6025592,47.571275],[11.6024664,47.5712556],[11.602421,47.5712407],[11.6023316,47.5711778],[11.6022371,47.5711367],[11.6021984,47.571107],[11.6021278,47.5709654],[11.6020823,47.5709322],[11.601993,47.5709093],[11.6019576,47.5708774],[11.6019054,47.5707872],[11.6018854,47.5706879],[11.6018888,47.5706411],[11.6018991,47.570592],[11.6016412,47.5704115],[11.6015755,47.5703522],[11.6015485,47.5703088],[11.601532,47.570211],[11.6014969,47.5700053],[11.6014784,47.5699698],[11.6013336,47.5698111],[11.6012799,47.5696958],[11.6012681,47.569633],[11.6012499,47.5694755],[11.601245,47.5694037],[11.6012519,47.5693364],[11.6012606,47.5692233],[11.601291,47.5691857],[11.6013331,47.5691754],[11.6013805,47.5691503],[11.6014212,47.5690649],[11.6014229,47.5690374],[11.6014128,47.5689838],[11.6014146,47.5689564],[11.6014333,47.5688937],[11.6014248,47.5688651],[11.6013981,47.5688343],[11.6013306,47.5687886],[11.6012934,47.5687589],[11.6012734,47.5687327],[11.6012263,47.5686413],[11.6011858,47.5685808],[11.601026,47.5684118],[11.600994,47.5683696],[11.6009468,47.56826],[11.6009382,47.5682421],[11.6009199,47.568204],[11.600888,47.5681584],[11.6007954,47.5680568],[11.6007392,47.5680002],[11.6006503,47.5678672],[11.600644,47.5678296],[11.60057,47.5677234],[11.6004571,47.5676171],[11.600373,47.5675098],[11.6003174,47.5674345],[11.6002771,47.5673613],[11.6002637,47.5672792],[11.6002455,47.5671399],[11.6001867,47.5669915],[11.6000758,47.5667975],[11.5999481,47.5665075],[11.5999027,47.5664573],[11.5995991,47.5663213],[11.5994947,47.5662972],[11.5994372,47.5662778],[11.5993614,47.5662447],[11.5992518,47.566183],[11.5991474,47.5660927],[11.5985661,47.5657134],[11.5985189,47.5656814],[11.5984599,47.5656551],[11.5984195,47.5656323],[11.5983842,47.5656003],[11.5983701,47.5655782],[11.5983268,47.5655101],[11.5982125,47.5653514],[11.5981603,47.565284],[11.598076,47.5652006],[11.5980071,47.5651515],[11.5979246,47.5650556],[11.5978976,47.5649996],[11.5978556,47.5649573],[11.5977495,47.5648649],[11.5976535,47.5647861],[11.5975591,47.5646742],[11.5975374,47.5646388],[11.5975256,47.5646091],[11.5975127,47.5645121],[11.5974939,47.5643979],[11.5973921,47.5641489],[11.5973748,47.5641068],[11.597363,47.5640669],[11.59736,47.5638957],[11.5973383,47.5637451],[11.597315,47.5636629],[11.597283,47.5636161],[11.5972559,47.5635875],[11.5972174,47.5635475],[11.5971718,47.5635156],[11.5970538,47.5634618],[11.5970033,47.563447],[11.5969509,47.5634412],[11.5967501,47.5634411],[11.5966945,47.5634342],[11.5965798,47.563417],[11.5965376,47.5634158],[11.5964769,47.5634192],[11.5964144,47.5634112],[11.5962356,47.5634007],[11.5961816,47.5633949],[11.5960738,47.5633595],[11.5957449,47.5632908],[11.5956893,47.5632746],[11.5956741,47.5632701],[11.5955914,47.5632324],[11.5954954,47.5631902],[11.5954213,47.5631513],[11.5953841,47.563133],[11.5953597,47.5631211],[11.5952651,47.5630783],[11.5951723,47.5630324],[11.5950928,47.5629854],[11.5950124,47.5629259],[11.594962,47.5628737],[11.5949313,47.5628345],[11.5949103,47.5627839],[11.594918,47.5626837],[11.5949334,47.5626303],[11.5949315,47.5625915],[11.5949024,47.5625545],[11.5948163,47.5624652],[11.5947586,47.5624222],[11.5946901,47.5624038],[11.5946373,47.5623734],[11.5945638,47.562347],[11.5944745,47.5622965],[11.5943811,47.562222],[11.5943473,47.5621896],[11.594313,47.5621486],[11.5942591,47.562091],[11.5941945,47.5620113],[11.5941347,47.5619407],[11.5940492,47.561872],[11.5940047,47.5618473],[11.5939044,47.5618193],[11.593815,47.5618156],[11.5937508,47.5618168],[11.5936083,47.5617951],[11.5934013,47.5617779],[11.5932452,47.5617559],[11.5931353,47.5617096],[11.5930413,47.5616522],[11.5929858,47.5616],[11.592933,47.5615193],[11.5928568,47.5613845],[11.5928235,47.5613281],[11.5926855,47.5611729],[11.5925825,47.561081],[11.5925139,47.5610149],[11.592374,47.5609168],[11.5922857,47.5608644],[11.5922435,47.5608393],[11.5921259,47.5607779],[11.5920878,47.560758],[11.5919982,47.5607177],[11.591873,47.5606758],[11.5918025,47.5606689],[11.5917464,47.5606748],[11.5916523,47.5607121],[11.5916016,47.5607153],[11.5915966,47.5607156],[11.5915565,47.5607036],[11.591512,47.5606743],[11.5914614,47.5606244],[11.5913956,47.5605812],[11.5913325,47.5605481],[11.5912769,47.5605028],[11.5912246,47.5604517],[11.5911758,47.5604007],[11.5911371,47.5603533],[11.5910935,47.5602966],[11.5909706,47.5601954],[11.590951,47.5601734],[11.5909338,47.5601377],[11.5909045,47.5601099],[11.5908764,47.5600945],[11.5908617,47.5600772],[11.5908722,47.5600648],[11.5908916,47.5600446],[11.5908959,47.5600162],[11.5908885,47.5599922],[11.590869,47.5599713],[11.5908243,47.559942],[11.5907329,47.5599052],[11.590651,47.5598832],[11.5905772,47.5598694],[11.5905081,47.5598695],[11.5904349,47.5598363],[11.5903523,47.5597916],[11.5902738,47.5597184],[11.5901915,47.5596132],[11.5900862,47.5595408],[11.5900267,47.5594553],[11.5900125,47.5594193],[11.5899865,47.5593544],[11.5899853,47.5593383],[11.5900025,47.5593317],[11.5900447,47.5593302],[11.5900719,47.559325],[11.5900825,47.5593137],[11.5900851,47.5592865],[11.5900945,47.5592615],[11.5900819,47.5592339],[11.5900336,47.5591691],[11.5900178,47.5591392],[11.5899883,47.5591137],[11.5898821,47.5590674],[11.5898312,47.5590243],[11.5898202,47.5590048],[11.5898339,47.5589937],[11.5898164,47.5589694],[11.589752,47.5589273],[11.589669,47.5588483],[11.5895829,47.5587522],[11.5894356,47.5586208],[11.5892979,47.5584646],[11.5892616,47.5583921],[11.5891914,47.5583248],[11.5891262,47.5582655],[11.5890884,47.5582353],[11.5890403,47.5582117],[11.5889925,47.5581812],[11.5889714,47.558158],[11.5889435,47.5581336],[11.5889141,47.5581069],[11.5888454,47.5580464],[11.5887845,47.5579553],[11.5887334,47.557878],[11.5887097,47.5578298],[11.5886758,47.5577869],[11.5886729,47.5577834],[11.5886224,47.5577222],[11.5885761,47.5576518],[11.5885591,47.5576082],[11.5885703,47.5575788],[11.588595,47.5575461],[11.588611,47.5575259],[11.5886064,47.5575109],[11.5885678,47.5574578],[11.5885635,47.557436],[11.5885896,47.5574137],[11.5886015,47.5573638],[11.5885951,47.5573054],[11.5885657,47.5572353],[11.5884773,47.5571574],[11.5883817,47.5570965],[11.5883204,47.557018],[11.5882959,47.5569959],[11.5882467,47.5569506],[11.588249,47.5569346],[11.588263,47.55692],[11.5882839,47.5569022],[11.588288,47.5568828],[11.5882807,47.5568519],[11.5882867,47.5568257],[11.5883081,47.5567953],[11.5883058,47.556761],[11.5882934,47.5567324],[11.5882613,47.5566885],[11.5882314,47.5566744],[11.5881978,47.5566726],[11.588156,47.5566581],[11.5881297,47.5566372],[11.5881206,47.556612],[11.5881112,47.5565423],[11.5880859,47.5564962],[11.5880478,47.556475],[11.587996,47.5564651],[11.5879249,47.5564685],[11.5878947,47.5564622],[11.5878619,47.5564378],[11.587851,47.5564148],[11.5878604,47.556383],[11.5878753,47.5563444],[11.5877593,47.5561475],[11.5874923,47.5557358],[11.5873256,47.5554422],[11.58727,47.5553443],[11.5870424,47.55499],[11.5869553,47.5548543],[11.5868807,47.5547196],[11.5871009,47.5545511],[11.5871921,47.5544642],[11.5872913,47.5543694],[11.5873025,47.5543582],[11.5875696,47.5540935],[11.5876971,47.5539678],[11.5878355,47.5538743],[11.587933,47.5538212],[11.5879733,47.5537992],[11.5880812,47.5537484],[11.5881723,47.5537009],[11.5882248,47.5536517],[11.5882626,47.5535861],[11.5882989,47.5535594],[11.5883739,47.5535422],[11.5884513,47.5535025],[11.5884914,47.5534598],[11.5885023,47.5533928],[11.5884934,47.5533138],[11.588463,47.5532198],[11.5884454,47.5530975],[11.5884534,47.5530121],[11.5884813,47.5529418],[11.5885429,47.5528699],[11.5886304,47.552738],[11.5887086,47.552624],[11.5887395,47.5525174],[11.5887859,47.5524473],[11.5888447,47.5523103],[11.5889063,47.552195],[11.5890008,47.5521008],[11.589091,47.5520292],[11.589202,47.5519889],[11.5893405,47.5519388],[11.5895294,47.5518906],[11.5896155,47.5518453],[11.589651,47.5517968],[11.5896495,47.5517454],[11.5896326,47.5516961],[11.5895828,47.5516246],[11.5895123,47.5515219],[11.5894952,47.5514348],[11.5895103,47.5513451],[11.5895524,47.5512488],[11.5895927,47.551116],[11.5895784,47.5509937],[11.5895168,47.5508786],[11.5894718,47.5507673],[11.589376,47.550663],[11.5892848,47.5505737],[11.5892014,47.5504993],[11.5891266,47.5504216],[11.5891032,47.5503642],[11.5890903,47.5503036],[11.5890986,47.5502124],[11.589118,47.5501421],[11.5891552,47.5500468],[11.5891843,47.549988],[11.5891942,47.5498992],[11.5891782,47.5498237],[11.5891443,47.5497566],[11.5891405,47.5497488],[11.5891269,47.5496585],[11.5891273,47.5495513],[11.5891313,47.5494362],[11.5890912,47.5493797],[11.5890667,47.5493553],[11.5889767,47.5492807],[11.5888716,47.5491992],[11.5887793,47.549136],[11.5886473,47.5490563],[11.5885689,47.5489819],[11.58855,47.5489509],[11.5883815,47.5485158],[11.5883297,47.5484123],[11.5882612,47.5483415],[11.5881116,47.5481862],[11.588,47.5480509],[11.5879525,47.5479657],[11.5878976,47.5478462],[11.5877023,47.5474619],[11.5876356,47.5473422],[11.5875594,47.5472576],[11.5874597,47.5471693],[11.5873349,47.5470749],[11.5872964,47.5470172],[11.5872331,47.5469465],[11.587116,47.5468249],[11.5870268,47.5467275],[11.5869259,47.546622],[11.5868629,47.5465434],[11.5867683,47.5464085],[11.5867125,47.5463653],[11.5866836,47.5463214],[11.5866424,47.5462489],[11.5866098,47.5462164],[11.5865601,47.5461894],[11.5864438,47.5461418],[11.5863641,47.5461086],[11.5862776,47.546074],[11.5861997,47.546035],[11.5861074,47.5459719],[11.5860054,47.5459029],[11.5859639,47.5458816],[11.5859764,47.5458625],[11.5859749,47.5458557],[11.5859692,47.5458292],[11.5859533,47.5457983],[11.5859192,47.5457646],[11.5858424,47.5456459],[11.5858063,47.5455733],[11.585766,47.545567],[11.5857637,47.5455576],[11.5857454,47.5454823],[11.5857549,47.5453616],[11.585767,47.54521],[11.5857837,47.5450746],[11.5857703,47.5449797],[11.5857814,47.5449023],[11.5857966,47.5448067],[11.5858464,47.5447335],[11.5858698,47.544598],[11.5858651,47.5444965],[11.5858522,47.5443844],[11.5858326,47.5443203],[11.585827,47.5442859],[11.5858197,47.5442561],[11.5857948,47.5441987],[11.5857656,47.5441195],[11.5857617,47.5440408],[11.5857777,47.5439224],[11.5858057,47.5438008],[11.5858038,47.5437598],[11.5857914,47.5437287],[11.5857813,47.543683],[11.5857875,47.54365],[11.5857806,47.5436234],[11.5857667,47.5435698],[11.5857379,47.5434792],[11.5857277,47.5433901],[11.5857342,47.5433469],[11.5857729,47.5432095],[11.5857979,47.5431232],[11.5858614,47.5429012],[11.5858604,47.5428111],[11.5858341,47.5427392],[11.5858314,47.5426593],[11.5858387,47.5426],[11.5858531,47.5425089],[11.5858826,47.5423962],[11.5859294,47.5422652],[11.5859452,47.5421924],[11.5859174,47.5421011],[11.5859093,47.542044],[11.5859369,47.5419802],[11.5859467,47.5419294],[11.5859493,47.5419165],[11.5859447,47.5418743],[11.5859317,47.541816],[11.5859471,47.5417774],[11.5859713,47.5417102],[11.5860569,47.5415647],[11.5861134,47.5414577],[11.5861683,47.5413623],[11.5862081,47.5412405],[11.5862207,47.5411527],[11.5862589,47.5410377],[11.5863224,47.5409103],[11.5863974,47.5407967],[11.5864478,47.5407291],[11.5865304,47.5406183],[11.5866158,47.5405161],[11.5866821,47.5404423],[11.5867061,47.5403888],[11.5867238,47.5403046],[11.5867393,47.5402659],[11.5867631,47.5402374],[11.586782,47.5402068],[11.5867959,47.5401681],[11.586847,47.5400919],[11.5868879,47.5400374],[11.5869547,47.5399293],[11.5870145,47.5398373],[11.5870402,47.5397804],[11.5870812,47.5397235],[11.5871695,47.5396373],[11.587287,47.5395216],[11.5873939,47.5394366],[11.587467,47.5393491],[11.5875283,47.5392811],[11.5875498,47.5392097],[11.5875577,47.539017],[11.5875578,47.5390143],[11.5875972,47.538017],[11.5876249,47.5373347],[11.587762,47.533966],[11.5878017,47.5329433],[11.587861,47.5315449],[11.5878637,47.5314789],[11.5886561,47.5313233],[11.5882214,47.5307306],[11.5881875,47.5306844],[11.5879071,47.530484],[11.5879205,47.5300837],[11.5879556,47.5292114],[11.588038,47.5271701],[11.5881089,47.5254507],[11.587561,47.5251263],[11.5874232,47.5250444],[11.5873719,47.5250139],[11.5873136,47.5249846],[11.5872264,47.5249283],[11.5870205,47.5248086],[11.586995,47.5247939],[11.5868936,47.5248322],[11.5868936,47.524823],[11.5868939,47.5248037],[11.5869094,47.5247604],[11.5868793,47.5247363],[11.5868675,47.5247255],[11.5868392,47.5246997],[11.5867993,47.5246528],[11.5867675,47.5246252],[11.5867018,47.52461],[11.5866633,47.5245996],[11.5866285,47.5245786],[11.5865961,47.5245548],[11.5865612,47.5245137],[11.5865517,47.5244498],[11.58652,47.524412],[11.5864629,47.5243866],[11.5864059,47.5243556],[11.5863876,47.5243349],[11.586355,47.5242186],[11.5863536,47.5241786],[11.5863641,47.5241353],[11.5863477,47.524093],[11.5862959,47.5240335],[11.5861837,47.5239554],[11.5860261,47.5238726],[11.5858682,47.5238114],[11.5858144,47.5238032],[11.5857489,47.5237938],[11.5857002,47.523764],[11.585635,47.5237066],[11.5855731,47.5236687],[11.5854808,47.5236318],[11.5853969,47.523588],[11.5853702,47.5235572],[11.5853301,47.5235307],[11.585246,47.5235041],[11.5848902,47.5233518],[11.5847444,47.52326],[11.5846237,47.5232013],[11.5845363,47.5231609],[11.5845081,47.5231403],[11.5844913,47.5231288],[11.5844659,47.5231309],[11.5844492,47.5231194],[11.584428,47.5230305],[11.5844234,47.5229837],[11.5844033,47.5229745],[11.5843611,47.5229801],[11.5843175,47.5229764],[11.5842452,47.5229384],[11.58419,47.5229051],[11.5841412,47.5228958],[11.5841059,47.5228807],[11.5840825,47.5228612],[11.5840558,47.5228384],[11.5840123,47.5228027],[11.5839268,47.5227454],[11.5838681,47.5227155],[11.5838293,47.5227175],[11.5837922,47.5227253],[11.5837519,47.5227217],[11.5836442,47.5226985],[11.5835619,47.5226798],[11.5835046,47.5226749],[11.5834729,47.5226531],[11.5833643,47.5225431],[11.5833444,47.5225032],[11.5832607,47.5224434],[11.5831834,47.5224339],[11.5831616,47.522419],[11.5831534,47.5224064],[11.5831349,47.5223801],[11.5831151,47.5223516],[11.5830682,47.5223069],[11.583006,47.5222849],[11.5829203,47.5222685],[11.5828531,47.52225],[11.5827642,47.5222028],[11.5826838,47.5221454],[11.5826167,47.522136],[11.5825898,47.5221164],[11.5825547,47.5220935],[11.5825211,47.5220762],[11.5824639,47.5220703],[11.5823982,47.5220676],[11.5823683,47.5220253],[11.5823296,47.5220092],[11.5822757,47.52201],[11.5821982,47.522012],[11.5820737,47.5219943],[11.5819676,47.5219722],[11.5818887,47.5219523],[11.5818148,47.5219281],[11.5817527,47.5218947],[11.5817093,47.5218591],[11.5816709,47.5218191],[11.5816189,47.521796],[11.5815753,47.5217844],[11.5814307,47.5217347],[11.5813551,47.5217081],[11.5812797,47.5216633],[11.581193,47.5215796],[11.5811446,47.5215236],[11.5810808,47.5214914],[11.5809483,47.5214279],[11.580819,47.5213597],[11.5807532,47.5213209],[11.5806843,47.521322],[11.5806424,47.5212979],[11.5806255,47.5212763],[11.5805851,47.5212409],[11.5805481,47.5212351],[11.5805178,47.521226],[11.5805044,47.52121],[11.5804691,47.5211757],[11.5804168,47.5211517],[11.5803866,47.5211563],[11.5803629,47.5211471],[11.580348,47.5211276],[11.5803109,47.521082],[11.5802554,47.5210443],[11.5802134,47.5210396],[11.5801712,47.5210305],[11.5801158,47.5210088],[11.5800535,47.5209984],[11.579998,47.5210063],[11.579939,47.5210303],[11.5798952,47.5210451],[11.579838,47.5210462],[11.5797808,47.521037],[11.5797202,47.5210084],[11.5796612,47.52099],[11.5796041,47.5209798],[11.5795823,47.5209673],[11.579557,47.5209614],[11.5795267,47.5209592],[11.579483,47.5209535],[11.5794174,47.5209134],[11.5793584,47.5209053],[11.5792776,47.5208608],[11.5791212,47.5208332],[11.5789765,47.5208057],[11.578847,47.5207406],[11.5786619,47.5206844],[11.578588,47.5205794],[11.5785678,47.520568],[11.578519,47.5205565],[11.5784786,47.5205314],[11.5784635,47.5205153],[11.5784484,47.5204811],[11.5783777,47.5204731],[11.57827,47.5204467],[11.5781759,47.5204158],[11.5780884,47.5203837],[11.5779908,47.5203677],[11.5779587,47.5203586],[11.5778713,47.5203459],[11.5777938,47.5203344],[11.5777366,47.5203263],[11.5777047,47.5203309],[11.5776743,47.5203103],[11.577649,47.5202909],[11.5776222,47.5202852],[11.5774102,47.5202416],[11.5773109,47.5202222],[11.5770706,47.5197859],[11.5770186,47.5196899],[11.5763485,47.5184838],[11.5756128,47.5171429],[11.5747098,47.5164001],[11.5737987,47.5156504],[11.5727722,47.5148009],[11.5724166,47.5145064],[11.572356,47.514487],[11.5703893,47.5140126],[11.5691007,47.5136933],[11.568776,47.5136127],[11.5670832,47.5137258],[11.5665533,47.5137612],[11.5661471,47.5137883],[11.5650144,47.513866],[11.5644148,47.5139059],[11.5620859,47.5140608],[11.5614264,47.5139311],[11.5603939,47.5137283],[11.5599307,47.5136373],[11.558154,47.5132931],[11.558115,47.5132855],[11.5576596,47.513197],[11.556278,47.5129285],[11.5558273,47.5128409],[11.5544528,47.512569],[11.5530769,47.5122931],[11.5529003,47.5122577],[11.5522622,47.5129081],[11.5517996,47.5133805],[11.5503361,47.5128614],[11.5480489,47.5124115],[11.5461613,47.5120531],[11.5449899,47.5118307],[11.541386,47.5100369],[11.5413265,47.5100072],[11.541023,47.5099443],[11.5408791,47.5099179],[11.5408092,47.5098892],[11.5407765,47.5098668],[11.5407008,47.5098691],[11.5406402,47.50987],[11.5405758,47.509855],[11.540521,47.5098283],[11.5404805,47.5098102],[11.5404115,47.5097874],[11.5403845,47.5097646],[11.5403122,47.5097567],[11.5401692,47.5097328],[11.5400478,47.509693],[11.5399838,47.5096588],[11.5398911,47.5095995],[11.5398473,47.5095848],[11.5397749,47.5095528],[11.5396959,47.5095301],[11.5395593,47.509513],[11.5394281,47.5095028],[11.5392985,47.5095132],[11.5391908,47.5095326],[11.5391252,47.5095645],[11.5390714,47.5095794],[11.5390091,47.5095794],[11.53893,47.509592],[11.538856,47.5096137],[11.5388104,47.5096137],[11.5387682,47.5095921],[11.538706,47.5095716],[11.5386218,47.5095669],[11.5384922,47.5095945],[11.5384502,47.5096298],[11.5384318,47.5096709],[11.5384166,47.5097096],[11.538378,47.5097131],[11.5383442,47.5097096],[11.5382365,47.5096618],[11.5381687,47.5096828],[11.5381372,47.5096926],[11.538102,47.5097484],[11.538048,47.5097724],[11.5379825,47.5097793],[11.53791,47.5097737],[11.5378259,47.5097394],[11.5376911,47.5096722],[11.5375194,47.5096108],[11.5373812,47.5095789],[11.5372364,47.5095676],[11.5371002,47.5095471],[11.5370159,47.509521],[11.5365172,47.5093707],[11.5364467,47.5093422],[11.5363826,47.509324],[11.5362849,47.5092727],[11.5361822,47.509226],[11.5361102,47.5092003],[11.5360895,47.509193],[11.5357883,47.5091646],[11.5355963,47.5091362],[11.5354751,47.5091066],[11.5354178,47.5090883],[11.5353251,47.5090484],[11.5352663,47.5090177],[11.5352174,47.5090086],[11.5351937,47.5090144],[11.5351685,47.5090337],[11.5351194,47.5090738],[11.5351181,47.5090748],[11.5350508,47.5091113],[11.5349987,47.5091148],[11.5349011,47.5091091],[11.5346803,47.5090533],[11.5344766,47.5089998],[11.5343049,47.5089611],[11.5341719,47.5089384],[11.5340036,47.5089214],[11.5338907,47.5089123],[11.5338435,47.5089031],[11.5337913,47.5088815],[11.5337173,47.5088714],[11.5336095,47.5088736],[11.5334833,47.5088782],[11.5333773,47.5089022],[11.5333218,47.5089192],[11.5332747,47.5089251],[11.5332038,47.5089102],[11.5331297,47.5088966],[11.5330608,47.5089046],[11.5330237,47.5089297],[11.5329986,47.5089593],[11.5329667,47.5089673],[11.5327847,47.5089834],[11.532672,47.5089982],[11.5325727,47.5090017],[11.5325255,47.5089926],[11.5324566,47.5089641],[11.5324381,47.5089687],[11.5324078,47.5089835],[11.5323606,47.5089881],[11.5322966,47.5089801],[11.5322445,47.5089859],[11.5322092,47.509004],[11.5321924,47.5090246],[11.532179,47.5090656],[11.5321488,47.5091089],[11.5321268,47.5091238],[11.5320612,47.509133],[11.5319451,47.5091376],[11.5318878,47.5091593],[11.5318542,47.5091752],[11.5318105,47.5091889],[11.5317296,47.5091924],[11.5316589,47.5091935],[11.5316252,47.509189],[11.5315293,47.5091559],[11.5315024,47.5091617],[11.5314199,47.5091868],[11.5313644,47.5091971],[11.531287,47.5091959],[11.5309739,47.5091881],[11.5308425,47.509163],[11.5307919,47.5091379],[11.5307162,47.5091254],[11.5305781,47.509114],[11.53043,47.5091016],[11.5303306,47.5090993],[11.5302549,47.5091233],[11.5301574,47.5091679],[11.5301138,47.509194],[11.530085,47.5091953],[11.5300296,47.5092134],[11.5299807,47.5092329],[11.5299219,47.5092488],[11.5298645,47.5092523],[11.5298291,47.5092431],[11.5297787,47.5092101],[11.5297231,47.5091874],[11.5296963,47.5091908],[11.529676,47.5092068],[11.5296491,47.5092501],[11.5296104,47.509274],[11.5295768,47.5092808],[11.5294523,47.5092855],[11.5293496,47.5093414],[11.5292368,47.5093117],[11.5291678,47.509297],[11.5290969,47.5092982],[11.5290331,47.5092891],[11.5289926,47.5092879],[11.5289203,47.5093005],[11.5288496,47.5093108],[11.5287823,47.509337],[11.5287336,47.5093827],[11.5286814,47.50941],[11.5286359,47.5094215],[11.5285603,47.509434],[11.5284745,47.509434],[11.5284003,47.5094169],[11.5283499,47.5093953],[11.5283229,47.5093668],[11.5282521,47.5093361],[11.5281562,47.5093247],[11.5280282,47.5093236],[11.5278513,47.5092962],[11.5278043,47.5092826],[11.527742,47.5092929],[11.5276175,47.509294],[11.5275483,47.5092873],[11.5274978,47.5092748],[11.5274406,47.5092782],[11.527385,47.5092771],[11.5272841,47.5092634],[11.5271072,47.5092497],[11.5270517,47.5092589],[11.5270214,47.5092726],[11.5269979,47.5092703],[11.5269564,47.5092568],[11.5269525,47.5092555],[11.5269103,47.5092487],[11.5268212,47.5092567],[11.5267436,47.5092544],[11.5266478,47.5092671],[11.5265384,47.5092967],[11.5264121,47.5093093],[11.526286,47.5093128],[11.5261646,47.5093105],[11.5260957,47.5093322],[11.5259997,47.5093288],[11.5259426,47.5093493],[11.5258247,47.5093482],[11.5257726,47.5093607],[11.5257152,47.509395],[11.5256616,47.5094201],[11.5255824,47.5094407],[11.5254176,47.5095057],[11.5254161,47.5095066],[11.525367,47.5095365],[11.5253486,47.5095479],[11.5253316,47.5095433],[11.525298,47.5095365],[11.5252677,47.5095342],[11.5252424,47.509541],[11.5251836,47.5095593],[11.5251297,47.5095775],[11.5250911,47.5096312],[11.5249346,47.509662],[11.5248218,47.5096689],[11.5247764,47.5096974],[11.5246855,47.5097464],[11.524556,47.5098137],[11.5244483,47.509848],[11.5243575,47.509873],[11.5242111,47.5098867],[11.5240982,47.5098868],[11.5239837,47.5098948],[11.5238256,47.5098994],[11.5236927,47.5098938],[11.523509,47.5098869],[11.5234518,47.5098654],[11.5233961,47.5098641],[11.5233457,47.5098631],[11.5233071,47.5098551],[11.5232785,47.5098642],[11.5232009,47.50987],[11.5230697,47.5098563],[11.523004,47.5098404],[11.5227548,47.5098405],[11.5226471,47.5098371],[11.5226456,47.5098368],[11.5225679,47.5098234],[11.5224602,47.5098177],[11.5223929,47.5098622],[11.5222987,47.5098645],[11.5220866,47.5098475],[11.5219721,47.5098589],[11.5217769,47.5098931],[11.5216196,47.5099309],[11.5215168,47.5099745],[11.5214448,47.5100045],[11.5212348,47.5100347],[11.5211429,47.5100459],[11.5210795,47.5100767],[11.5208063,47.5102291],[11.5207901,47.5102581],[11.5206508,47.5102905],[11.5205468,47.5103398],[11.5204461,47.5103891],[11.5203535,47.5104357],[11.5202621,47.5104732],[11.520134,47.5104959],[11.5198778,47.5105404],[11.5197588,47.5105697],[11.5196244,47.5105984],[11.5194548,47.5106305],[11.5193799,47.510664],[11.5192856,47.5107084],[11.5192318,47.5107321],[11.5191538,47.5107496],[11.5190782,47.5107751],[11.5190494,47.5107944],[11.5190311,47.5108191],[11.5190159,47.5108618],[11.5190132,47.5108665],[11.5189875,47.5109109],[11.5189542,47.5109383],[11.5189003,47.5109619],[11.5187855,47.5109808],[11.5186116,47.5110024],[11.5180164,47.5105457],[11.5165293,47.5094049],[11.5125354,47.5063605],[11.5097824,47.5062008],[11.5097055,47.5061959],[11.5096477,47.5061925],[11.5091852,47.5061653],[11.5074667,47.5054634],[11.5056645,47.5047271],[11.5047066,47.5053299],[11.5029073,47.5064624],[11.5028431,47.5064833],[11.5027355,47.5065088],[11.5026127,47.5065336],[11.5025079,47.5065727],[11.5024375,47.5066002],[11.5023833,47.506641],[11.5023462,47.5066856],[11.5023029,47.5067352],[11.5022465,47.5067702],[11.5021485,47.5067908],[11.5020071,47.5068141],[11.5019184,47.5068217],[11.5018885,47.5068501],[11.5018485,47.5068767],[11.5018156,47.5068892],[11.5016431,47.5068816],[11.5015211,47.5068733],[11.5014481,47.5068667],[11.5013945,47.5068913],[11.5013562,47.5068973],[11.5013096,47.5069276],[11.5012019,47.5069301],[11.5011202,47.506942],[11.5010504,47.5069536],[11.5009933,47.5069556],[11.5009728,47.506953],[11.5009041,47.506936],[11.5008611,47.5069248],[11.5007795,47.506938],[11.5007187,47.5069573],[11.500655,47.5069846],[11.500614,47.5070215],[11.5005633,47.5070415],[11.5004788,47.5070604],[11.5003316,47.507053],[11.5002712,47.5070563],[11.5001869,47.5070569],[11.5000714,47.5070667],[11.4999193,47.5070833],[11.4996279,47.5071301],[11.4995137,47.507157],[11.499454,47.5071705],[11.499381,47.5072073],[11.4992595,47.5072276],[11.499157,47.5072986],[11.4990692,47.5073404],[11.4987222,47.5073651],[11.49864,47.5073772],[11.4983388,47.5074219],[11.4982922,47.5074052],[11.4982398,47.5074036],[11.4981711,47.5074082],[11.498019,47.5074239],[11.4979971,47.5074258],[11.4978503,47.5074024],[11.4978032,47.5074017],[11.4977033,47.5074177],[11.4976353,47.507419],[11.4975519,47.5074207],[11.4975009,47.5074168],[11.4974541,47.5074208],[11.4973729,47.5074156],[11.4973254,47.5074115],[11.4972493,47.5074096],[11.4971874,47.5073912],[11.497135,47.5073908],[11.4970501,47.5073823],[11.4969563,47.5073673],[11.496935,47.5073677],[11.4968979,47.5073682],[11.4968774,47.5073712],[11.4968119,47.5073746],[11.4967691,47.5073647],[11.4967283,47.5073387],[11.4966973,47.5073295],[11.496643,47.5073245],[11.4966145,47.5073061],[11.4965853,47.5072968],[11.49635,47.5072616],[11.496304,47.5072553],[11.4962424,47.5072643],[11.4959962,47.507306],[11.4958014,47.5073619],[11.495707,47.5073835],[11.4956582,47.5073829],[11.4956254,47.5073749],[11.4955263,47.5073543],[11.4954089,47.5073401],[11.4953533,47.5073421],[11.4952616,47.5073533],[11.4951824,47.5073538],[11.4951315,47.5073716],[11.4950822,47.5073881],[11.4949873,47.507404],[11.4948663,47.5074093],[11.4947896,47.5074189],[11.4947232,47.5074098],[11.4946276,47.5073937],[11.494532,47.5074004],[11.4944134,47.5074125],[11.4943528,47.5074158],[11.4943063,47.5074014],[11.4942418,47.5073957],[11.4942056,47.5073833],[11.494115,47.5073441],[11.49404,47.5073102],[11.4939575,47.5072686],[11.4938921,47.5072503],[11.4938502,47.50723],[11.4937987,47.5071736],[11.4937562,47.5071237],[11.4936897,47.5070917],[11.4936409,47.5070695],[11.4934179,47.507019],[11.493306,47.5069875],[11.4931915,47.5069674],[11.4930603,47.506948],[11.4929187,47.5069472],[11.4927711,47.5069352],[11.4926317,47.5069185],[11.492516,47.506903],[11.4924219,47.5068846],[11.4923201,47.5068528],[11.492235,47.5068191],[11.4921284,47.5067908],[11.4920434,47.5067813],[11.4919557,47.5067592],[11.4918321,47.5067498],[11.4916426,47.5067175],[11.4915629,47.5067113],[11.4914641,47.5067203],[11.4914118,47.5067176],[11.4913433,47.5067052],[11.4912649,47.5066931],[11.4911773,47.5066938],[11.4910767,47.5067225],[11.4910407,47.5067284],[11.4909536,47.5067428],[11.4908402,47.5067821],[11.4907229,47.5068124],[11.4905817,47.5068619],[11.4905007,47.5068818],[11.4903748,47.5069137],[11.490272,47.5069561],[11.4901611,47.5069599],[11.490081,47.5069708],[11.4899482,47.5069959],[11.489789,47.5070312],[11.4896139,47.5070544],[11.4895576,47.5070689],[11.4894772,47.5070775],[11.4893516,47.5071081],[11.4892402,47.5071507],[11.4891785,47.5071814],[11.4891094,47.5072044],[11.4890246,47.5072416],[11.4889271,47.5072896],[11.488837,47.5073682],[11.4887519,47.5074477],[11.4886275,47.507541],[11.4885209,47.5076224],[11.4884535,47.5076682],[11.4884177,47.5076842],[11.4883031,47.5077511],[11.4882584,47.5077847],[11.4882309,47.5078221],[11.4881804,47.5078673],[11.4881377,47.5079271],[11.4880846,47.5080705],[11.4880856,47.5081059],[11.488023,47.5082372],[11.4880256,47.5082724],[11.4879896,47.5083319],[11.4879338,47.5084413],[11.4879112,47.5084969],[11.4879016,47.5085498],[11.487885,47.5085972],[11.4878479,47.5086624],[11.4878017,47.5086994],[11.487744,47.508738],[11.4876847,47.5088463],[11.4876747,47.5088655],[11.4876501,47.508913],[11.487603,47.5090036],[11.4874664,47.5089904],[11.4855259,47.5088029],[11.4841879,47.5089468],[11.4839748,47.5089696],[11.4821251,47.5091685],[11.4811733,47.5092709],[11.4778562,47.5089773],[11.4750649,47.5087297],[11.4748966,47.5087147],[11.4744902,47.5086787],[11.4724715,47.5087299],[11.4717517,47.5087393],[11.4716611,47.5087582],[11.4715353,47.5087863],[11.4714193,47.5087995],[11.4712577,47.5087901],[11.4711194,47.5087761],[11.4710064,47.5087562],[11.4709524,47.5087417],[11.4709087,47.5087488],[11.4708653,47.5087707],[11.4708249,47.5087744],[11.4706868,47.5087637],[11.470665,47.5087752],[11.4705845,47.5087849],[11.4704682,47.5087753],[11.4703723,47.5087816],[11.4702528,47.5087822],[11.4701516,47.5087645],[11.4700907,47.50875],[11.4699259,47.5087555],[11.4697494,47.508776],[11.469659,47.5087948],[11.4694893,47.508822],[11.4693346,47.50884],[11.4691731,47.5088421],[11.4690218,47.5088464],[11.4688753,47.5088552],[11.4687561,47.5088776],[11.468684,47.5088883],[11.4685544,47.5088811],[11.4684568,47.508877],[11.4683254,47.5088733],[11.4682058,47.5088728],[11.4680644,47.5088587],[11.467943,47.5088572],[11.4677731,47.5088582],[11.4676062,47.5088363],[11.4674899,47.5088153],[11.4674207,47.508803],[11.4673804,47.5088022],[11.4673398,47.5088013],[11.4672284,47.50877],[11.4671842,47.5087416],[11.467147,47.5087247],[11.4671267,47.5087088],[11.4670895,47.5086966],[11.4670237,47.5086844],[11.4669376,47.5086701],[11.466885,47.5086293],[11.4668275,47.508609],[11.4667344,47.508573],[11.4666331,47.5085485],[11.4665521,47.5085284],[11.4665113,47.5084967],[11.4664908,47.508474],[11.4664788,47.5084615],[11.4664299,47.5084458],[11.4663439,47.5084393],[11.4662885,47.5084399],[11.4662328,47.5084309],[11.466204,47.5084173],[11.4661218,47.508435],[11.4660109,47.5084527],[11.4659032,47.5084545],[11.4657531,47.5084349],[11.4655712,47.5084096],[11.4655002,47.5083974],[11.4654061,47.5084014],[11.4650901,47.5084398],[11.464991,47.5084517],[11.4649187,47.5084522],[11.4648885,47.5084591],[11.4647846,47.5084929],[11.4646709,47.5085562],[11.4645742,47.5086208],[11.4645073,47.5086554],[11.4644305,47.5086958],[11.46434,47.5087294],[11.4642358,47.5087483],[11.4641098,47.5087627],[11.4640478,47.5087722],[11.4639774,47.5088057],[11.4639355,47.5088151],[11.4638933,47.5088074],[11.4638529,47.5087949],[11.4638121,47.5087815],[11.4637651,47.5087807],[11.4637149,47.5088061],[11.4636663,47.5088212],[11.4635485,47.5088252],[11.4633046,47.5088312],[11.4631884,47.5088296],[11.4630491,47.5088555],[11.4628929,47.5088826],[11.4628222,47.5088774],[11.4626888,47.5088404],[11.4626297,47.5088271],[11.462591,47.5088284],[11.4625206,47.5088448],[11.4624584,47.5088566],[11.4624011,47.5088466],[11.462293,47.5088141],[11.4621509,47.5087647],[11.4621004,47.5087583],[11.4620313,47.5087575],[11.4619758,47.5087611],[11.4619421,47.5087487],[11.4618944,47.5087126],[11.4617629,47.5086916],[11.4616061,47.5086696],[11.4612805,47.5086098],[11.4611398,47.5085341],[11.461055,47.5084787],[11.460899,47.5083928],[11.4608314,47.5083613],[11.4607926,47.5083546],[11.4607218,47.5083494],[11.4606711,47.5083359],[11.4606121,47.5083248],[11.460565,47.5083217],[11.4605415,47.5083264],[11.4604811,47.5083484],[11.4602705,47.5084534],[11.4602422,47.5084822],[11.4602191,47.5085211],[11.460189,47.5085396],[11.4601573,47.5085523],[11.4600984,47.5085527],[11.4600326,47.508553],[11.4599841,47.5085635],[11.4598669,47.5086088],[11.4597615,47.508671],[11.4596866,47.5087296],[11.4596153,47.5088066],[11.4595557,47.5088902],[11.4594896,47.5089785],[11.4594383,47.5090439],[11.4594065,47.5090634],[11.4593629,47.5090739],[11.4593225,47.5090764],[11.4592601,47.5090654],[11.4592128,47.509053],[11.459186,47.5090567],[11.4591155,47.50908],[11.4590937,47.509079],[11.4590464,47.5090666],[11.4588501,47.5089821],[11.4587841,47.5089573],[11.4587134,47.5089475],[11.4586645,47.5089477],[11.4586374,47.5089263],[11.4586265,47.5088784],[11.4586144,47.5088442],[11.4585888,47.5088215],[11.4585415,47.5088068],[11.4584758,47.508797],[11.4584285,47.5087848],[11.4584013,47.5087597],[11.4583002,47.5086165],[11.4582697,47.5086007],[11.4582054,47.508584],[11.4580875,47.5085698],[11.4580435,47.5085517],[11.4579741,47.508519],[11.4578217,47.5084525],[11.4576984,47.5084224],[11.4575518,47.5084005],[11.4574575,47.5083952],[11.457365,47.5083935],[11.4573263,47.5084005],[11.4572828,47.5084133],[11.4572156,47.5084366],[11.4571619,47.5084414],[11.4570778,47.5084408],[11.4569954,47.5084481],[11.4568879,47.5084669],[11.4568544,47.5084798],[11.4568262,47.5085083],[11.4567813,47.5085589],[11.4567103,47.5086598],[11.4566854,47.5086895],[11.4566638,47.508708],[11.4566168,47.5087196],[11.4565278,47.5087361],[11.4564457,47.5087628],[11.4563837,47.5087837],[11.4563102,47.5088286],[11.4562751,47.5088482],[11.4562049,47.508883],[11.4561282,47.5089325],[11.4560763,47.5089555],[11.4559889,47.5089663],[11.4559183,47.5089679],[11.455854,47.5089511],[11.4557829,47.5089127],[11.4557505,47.5088843],[11.4557061,47.5088229],[11.4556802,47.5087877],[11.4556394,47.5087503],[11.4555683,47.5087083],[11.4554787,47.5086838],[11.4553877,47.5086683],[11.4552899,47.5086644],[11.45512,47.5086652],[11.4549375,47.5086693],[11.4545704,47.5086951],[11.4542983,47.5087077],[11.4541959,47.5087035],[11.4541246,47.5086855],[11.4538929,47.508594],[11.4537954,47.5085649],[11.4537157,47.5085465],[11.4536753,47.5085168],[11.4535689,47.508444],[11.4535211,47.5084254],[11.4534397,47.5084345],[11.453337,47.5084315],[11.4532348,47.5084238],[11.4530835,47.508392],[11.4529698,47.5083532],[11.4528647,47.5083101],[11.4527523,47.5082771],[11.4526145,47.5082445],[11.4524312,47.5082106],[11.4522446,47.5081811],[11.4521319,47.5081777],[11.4520868,47.508173],[11.4520696,47.5081507],[11.4520773,47.5081064],[11.4520778,47.5080471],[11.452047,47.5080278],[11.4519679,47.5080004],[11.4518418,47.5079407],[11.4517449,47.5078761],[11.4516788,47.507857],[11.4515379,47.5078197],[11.4514758,47.5077916],[11.4512908,47.5076788],[11.4511979,47.5076304],[11.4511395,47.5076183],[11.4509736,47.5076055],[11.4507481,47.5076034],[11.4506739,47.5076035],[11.4505926,47.5075863],[11.4505022,47.5075504],[11.4504278,47.5075266],[11.4503897,47.5075186],[11.4503489,47.5074956],[11.4503158,47.5074604],[11.4502608,47.5074234],[11.4501914,47.5074042],[11.4501207,47.507401],[11.450032,47.5073926],[11.4498254,47.5073524],[11.4497758,47.5073428],[11.4497085,47.5073146],[11.4496866,47.5073101],[11.4493318,47.5072432],[11.4490679,47.5077371],[11.4490022,47.5079435],[11.4489776,47.5079786],[11.4488034,47.5083086],[11.4487614,47.5083881],[11.4486272,47.5085406],[11.4485822,47.508641],[11.4485758,47.5086616],[11.4485547,47.5087282],[11.4485265,47.5088542],[11.448535,47.5089607],[11.4485275,47.5090279],[11.4484899,47.5091422],[11.4484127,47.5092439],[11.4482961,47.5093554],[11.4482784,47.5093725],[11.448253,47.5093908],[11.4481265,47.5094822],[11.4480947,47.5095338],[11.4480675,47.5096439],[11.4480616,47.5098448],[11.4480493,47.5100912],[11.4480099,47.5102363],[11.4479109,47.5103858],[11.4479037,47.5103965],[11.4477176,47.5105442],[11.4474368,47.5106696],[11.4473937,47.5106829],[11.4471532,47.5107572],[11.4469075,47.5108608],[11.446679,47.5109329],[11.4465286,47.5109924],[11.4463476,47.5110579],[11.4462049,47.5111291],[11.4461592,47.5111861],[11.4461372,47.5112402],[11.4460976,47.5112551],[11.4459908,47.5112919],[11.4459415,47.5113271],[11.4458235,47.5114333],[11.4458104,47.511482],[11.4458049,47.5115173],[11.4457041,47.5116182],[11.4456174,47.5117368],[11.4456029,47.5117787],[11.4455895,47.5118331],[11.4454902,47.5119364],[11.4453932,47.5120068],[11.4452819,47.5120617],[11.4451664,47.5121268],[11.4451473,47.5121663],[11.445079,47.5122065],[11.4450425,47.5122774],[11.4449943,47.5123491],[11.4449572,47.5123743],[11.4448953,47.5124742],[11.4448545,47.5125061],[11.4448545,47.5125598],[11.4448122,47.512618],[11.4448128,47.5127139],[11.4447874,47.5127418],[11.4446232,47.5128066],[11.4445327,47.5128543],[11.444459,47.5129024],[11.4443839,47.5129424],[11.4442973,47.5129799],[11.4442437,47.5130548],[11.4442145,47.5131442],[11.4442,47.5132043],[11.444194,47.5132293],[11.4441893,47.5132486],[11.4441538,47.5133046],[11.4441334,47.5133429],[11.4441136,47.51338],[11.4441243,47.5134249],[11.4441625,47.5134603],[11.4441507,47.5135148],[11.4441132,47.5135743],[11.444128,47.513633],[11.4440861,47.5137082],[11.4440387,47.5137685],[11.4439025,47.5138423],[11.4437183,47.5139328],[11.4433771,47.5141055],[11.4433177,47.5141129],[11.4432545,47.5141282],[11.4431591,47.5142248],[11.4431509,47.5142999],[11.4431359,47.5144572],[11.4431266,47.5145243],[11.4430506,47.5146067],[11.4429715,47.5147391],[11.4429223,47.5148245],[11.442902,47.5149336],[11.4428989,47.5150626],[11.4428785,47.5151443],[11.4428279,47.515281],[11.4427446,47.5154225],[11.4426914,47.5154765],[11.4426548,47.5155136],[11.4425486,47.5155916],[11.4424762,47.515618],[11.4423253,47.5156879],[11.4421964,47.5157823],[11.4421682,47.5158808],[11.4421384,47.5160056],[11.4421649,47.516067],[11.4422282,47.5161854],[11.4423009,47.5162619],[11.4423572,47.516356],[11.4423792,47.5164892],[11.4423625,47.5165379],[11.4423726,47.5166193],[11.442389,47.516734],[11.442368,47.5167712],[11.442267,47.5168766],[11.442141,47.5169769],[11.4421091,47.5170549],[11.4420885,47.5171948],[11.4420829,47.5173089],[11.4420741,47.5174228],[11.4420796,47.5175224],[11.4421044,47.5176363],[11.4421381,47.5177161],[11.4421456,47.5178111],[11.4421529,47.5178799],[11.4421426,47.5179105],[11.44209,47.517917],[11.4420651,47.5179037],[11.4420052,47.5178721],[11.4419426,47.5178246],[11.4418691,47.5177607],[11.4418092,47.5176961],[11.4417228,47.5176226],[11.4416009,47.5175243],[11.4414432,47.517435],[11.4412801,47.5173502],[11.4411182,47.5173009],[11.4410337,47.5172779],[11.4409215,47.5172128],[11.4407319,47.5170678],[11.4406362,47.5169817],[11.4405315,47.5168528],[11.4403945,47.5167277],[11.4403022,47.5166678],[11.4401498,47.5165993],[11.4400423,47.516571],[11.4398993,47.5165669],[11.4396889,47.5165651],[11.4395958,47.5165442],[11.43948,47.516511],[11.4393466,47.5164876],[11.4392008,47.5164227],[11.4390853,47.5163576],[11.4387919,47.5161513],[11.4386494,47.516058],[11.4386109,47.5160032],[11.4385497,47.5159841],[11.4385207,47.5159616],[11.4385115,47.5159225],[11.4384729,47.5158917],[11.4384283,47.5158526],[11.4383868,47.5158172],[11.4383156,47.5157955],[11.438265,47.5157712],[11.4381427,47.5157344],[11.438061,47.5157184],[11.4379799,47.5157228],[11.4378927,47.515718],[11.4378178,47.5157295],[11.4377394,47.5157454],[11.4376506,47.5157622],[11.4375857,47.5157752],[11.4375708,47.5157976],[11.4375502,47.5158334],[11.4374727,47.5158849],[11.4373418,47.5159553],[11.4372566,47.5159722],[11.4372032,47.5159638],[11.4371524,47.5159405],[11.437073,47.515864],[11.4369826,47.5158019],[11.4368973,47.515741],[11.4367537,47.5156923],[11.4366992,47.5156758],[11.4366213,47.5156038],[11.436546,47.515541],[11.4364754,47.5154841],[11.436382,47.5154448],[11.4363019,47.515431],[11.4362009,47.5154313],[11.4361278,47.5154133],[11.4360151,47.5153574],[11.4359431,47.5153233],[11.4358831,47.5152609],[11.4358251,47.5152169],[11.4357288,47.5151694],[11.4356526,47.5151489],[11.435612,47.5151261],[11.4355636,47.5150915],[11.4355124,47.5150631],[11.4354089,47.5150058],[11.4353308,47.5149624],[11.4352919,47.5149121],[11.4352564,47.5148882],[11.4351282,47.5148649],[11.4349482,47.5148344],[11.4348258,47.5147966],[11.4347738,47.5147688],[11.4347047,47.5146902],[11.4346715,47.5146538],[11.4345828,47.5146191],[11.4345471,47.5145975],[11.4345317,47.5145468],[11.4344955,47.5145354],[11.4344277,47.5144866],[11.4342349,47.5143666],[11.4340773,47.5142751],[11.4339661,47.5142215],[11.4338861,47.5141803],[11.4336981,47.5140903],[11.433574,47.5140283],[11.4335034,47.5139988],[11.4334185,47.5139814],[11.4333587,47.5139705],[11.4333066,47.5139416],[11.4332163,47.5139058],[11.4331652,47.5138859],[11.4331358,47.5138451],[11.4330772,47.5137862],[11.4329322,47.5136836],[11.4328615,47.5136289],[11.4328156,47.5135819],[11.4327517,47.5135023],[11.4327112,47.5133948],[11.4327175,47.5133208],[11.4327195,47.5132637],[11.4326831,47.5131484],[11.4326849,47.5130924],[11.432726,47.5130297],[11.432725,47.5129919],[11.4326768,47.5129288],[11.4326517,47.5128984],[11.4325604,47.5128522],[11.4324587,47.5128081],[11.432403,47.5127813],[11.4323389,47.5127303],[11.4323193,47.5126942],[11.4323192,47.5126439],[11.4322785,47.51262],[11.4321935,47.512606],[11.4321339,47.5125917],[11.4320309,47.5125154],[11.4319632,47.5124667],[11.4319085,47.5124239],[11.431865,47.5123666],[11.4317868,47.5121941],[11.4317566,47.5121624],[11.4317064,47.5121322],[11.4316792,47.5121086],[11.431644,47.512055],[11.4316256,47.5120236],[11.4315895,47.5119837],[11.4315419,47.5119366],[11.431464,47.5118909],[11.4314127,47.5118482],[11.4313624,47.5118204],[11.4312972,47.5118094],[11.4311963,47.5118086],[11.4311203,47.5118121],[11.4310586,47.5118034],[11.431006,47.511779],[11.4309694,47.5117471],[11.4309302,47.5117014],[11.430871,47.5116528],[11.4307983,47.5116027],[11.4307384,47.5115642],[11.4306902,47.5115263],[11.4306452,47.5114415],[11.4306204,47.5113791],[11.4306337,47.5113041],[11.4306307,47.5112698],[11.4305907,47.5112115],[11.4305387,47.5111562],[11.4304956,47.5111195],[11.4304845,47.5110791],[11.4304628,47.5109952],[11.4304474,47.5109792],[11.4303612,47.5109406],[11.4302836,47.5109101],[11.4302074,47.5108567],[11.4301517,47.5108317],[11.4300473,47.5108116],[11.4299781,47.5107855],[11.4299072,47.5107457],[11.4298111,47.510722],[11.4297385,47.5107005],[11.429654,47.5106541],[11.4295847,47.5105995],[11.4294811,47.5104868],[11.4293812,47.5104117],[11.4293339,47.510389],[11.4292313,47.5103814],[11.4291372,47.5103851],[11.4290499,47.5104139],[11.428915,47.5103767],[11.4287751,47.5103372],[11.4287125,47.5102951],[11.42867,47.5102301],[11.4286373,47.5101549],[11.428595,47.5101128],[11.4284463,47.5100367],[11.4283009,47.5099378],[11.4281198,47.5098208],[11.427976,47.5097174],[11.4278948,47.5096652],[11.4277224,47.5095617],[11.4276245,47.5095095],[11.4275927,47.5094953],[11.4275688,47.5094846],[11.4275144,47.5094345],[11.4274451,47.50938],[11.4274096,47.5093583],[11.4273839,47.509291],[11.4273483,47.5092443],[11.4271251,47.5091195],[11.4270018,47.5090548],[11.4269275,47.5090185],[11.4268247,47.5089937],[11.4267285,47.5089461],[11.426617,47.5088961],[11.4265223,47.5088348],[11.4264344,47.5087894],[11.4263553,47.5087668],[11.4262576,47.5087649],[11.4261602,47.5087823],[11.4260208,47.5088113],[11.42591,47.5088287],[11.4258209,47.5088348],[11.4256895,47.5088192],[11.4256138,47.5088023],[11.4255546,47.5087626],[11.425421,47.5086796],[11.4253413,47.508601],[11.4253158,47.5085567],[11.4253187,47.5085144],[11.4253324,47.5083328],[11.4253295,47.5081684],[11.4253221,47.5081044],[11.4253015,47.5080451],[11.4252368,47.5079345],[11.4251721,47.5078548],[11.4251132,47.5078322],[11.4250558,47.507814],[11.4250218,47.5077924],[11.4249576,47.5077482],[11.4248077,47.50772],[11.424668,47.5076874],[11.4245059,47.5076343],[11.4243286,47.5075434],[11.4241428,47.5074356],[11.4240362,47.5073697],[11.4239098,47.5073209],[11.4237546,47.5072862],[11.423554,47.5072319],[11.4233501,47.5071732],[11.4232051,47.5071303],[11.4231291,47.5070939],[11.4230663,47.5070416],[11.4230256,47.5069858],[11.4230148,47.5069001],[11.4230191,47.5068122],[11.4230002,47.5067575],[11.4227435,47.5066236],[11.422556,47.5065385],[11.4224701,47.5065102],[11.4223673,47.5064877],[11.422246,47.5064743],[11.4221297,47.506444],[11.4219746,47.5063794],[11.4218866,47.5063237],[11.4218189,47.5062668],[11.4217696,47.5061973],[11.4217129,47.506057],[11.4216849,47.5059167],[11.4216992,47.5058276],[11.4217304,47.5057281],[11.4217399,47.5056458],[11.4217912,47.5055463],[11.4218362,47.5054697],[11.4218553,47.5053463],[11.4218963,47.5052205],[11.4219577,47.5051278],[11.4219676,47.5050901],[11.4219434,47.5050183],[11.4218807,47.5049544],[11.4218062,47.5049034],[11.4217067,47.5048523],[11.4215986,47.5048036],[11.4214567,47.5047331],[11.4213741,47.5047015],[11.4213149,47.5046651],[11.4212609,47.5046402],[11.4211666,47.5046279],[11.4210604,47.5046031],[11.420971,47.5045612],[11.4209471,47.5045098],[11.4209296,47.5044345],[11.4208789,47.5043924],[11.4208414,47.50434],[11.4208173,47.5042727],[11.4208267,47.5041847],[11.4208296,47.5041196],[11.4208137,47.5040193],[11.420755,47.503847],[11.4206848,47.5036827],[11.4205793,47.50353],[11.4205505,47.5034947],[11.4204373,47.5034448],[11.4202248,47.5033725],[11.4201541,47.5033738],[11.4201258,47.5033842],[11.4200214,47.5033937],[11.4199038,47.5033974],[11.4198264,47.5033954],[11.4197774,47.5033787],[11.4197304,47.5033626],[11.4196866,47.5033582],[11.4195907,47.5033653],[11.4194427,47.5033704],[11.4192577,47.5033618],[11.4191398,47.5033428],[11.419047,47.5033203],[11.4190065,47.5032975],[11.4189375,47.5032886],[11.4188968,47.5032625],[11.418873,47.5032215],[11.4188428,47.5032136],[11.4187755,47.5032206],[11.418713,47.5032014],[11.4186537,47.5031411],[11.4185996,47.5030978],[11.4185588,47.5030317],[11.4184535,47.5029201],[11.4184297,47.5028872],[11.4182948,47.5028362],[11.4181918,47.5027851],[11.4181392,47.5027453],[11.4181085,47.5026677],[11.4181031,47.5026358],[11.4181433,47.5026106],[11.4182017,47.5025578],[11.4182048,47.5025223],[11.4181759,47.5024906],[11.418132,47.5024644],[11.4180411,47.5024509],[11.417947,47.5024571],[11.4178781,47.5024572],[11.4177718,47.5024267],[11.4176507,47.502419],[11.417454,47.5024265],[11.4172605,47.502426],[11.4171461,47.5024184],[11.4170266,47.5023993],[11.4169172,47.5023848],[11.4167738,47.5023465],[11.4166811,47.5023102],[11.4166252,47.5022682],[11.4165897,47.5022306],[11.4165773,47.5021689],[11.4165922,47.5021266],[11.4166321,47.5020762],[11.416645,47.5020099],[11.4166396,47.5019597],[11.4165719,47.5018949],[11.4164807,47.5018438],[11.4163911,47.5017984],[11.4163404,47.5017643],[11.4162674,47.5016788],[11.4162334,47.501638],[11.4162315,47.5015979],[11.4162696,47.5015419],[11.4163211,47.5014697],[11.4163504,47.5013166],[11.4163499,47.5012664],[11.4163278,47.5012299],[11.4163174,47.5011956],[11.4163283,47.5011372],[11.4163381,47.5010824],[11.4163235,47.5010069],[11.4162805,47.5009241],[11.4162549,47.5008188],[11.4162288,47.500791],[11.4161116,47.5007677],[11.4160939,47.5007401],[11.4160507,47.5007167],[11.4159557,47.5006891],[11.4158841,47.500663],[11.4158045,47.5006208],[11.415739,47.5005595],[11.4156837,47.500489],[11.4155483,47.500397],[11.415372,47.5002712],[11.4152974,47.5002302],[11.4151923,47.500198],[11.4151375,47.5001721],[11.4150657,47.5000946],[11.4150014,47.5000505],[11.414912,47.5000001],[11.4147945,47.4999265],[11.4147234,47.4998822],[11.4146828,47.4998348],[11.4146389,47.4997794],[11.4145304,47.4997528],[11.4143484,47.4997594],[11.4142009,47.4997427],[11.414129,47.4997279],[11.4140377,47.4996867],[11.4139116,47.4996221],[11.4138173,47.4995615],[11.413673,47.4994317],[11.4135611,47.4993445],[11.4134859,47.4992659],[11.4134573,47.4992326],[11.4134191,47.4991884],[11.4134013,47.4991677],[11.4133311,47.4990913],[11.4132322,47.4990158],[11.4131481,47.4989599],[11.413102,47.4989215],[11.4130615,47.4988685],[11.4130395,47.4988123],[11.4130306,47.4987139],[11.4130403,47.4986091],[11.4130391,47.4985303],[11.4130172,47.4984729],[11.4129881,47.4984325],[11.4129199,47.4983449],[11.4128349,47.4982591],[11.4127348,47.4981654],[11.4126823,47.4981178],[11.4126155,47.4980416],[11.4125319,47.4979639],[11.412499,47.4979394],[11.4125069,47.4978997],[11.4124888,47.4978846],[11.4123858,47.4978409],[11.4123425,47.497822],[11.4123252,47.4977818],[11.4123252,47.497719],[11.412389,47.4976023],[11.4123976,47.4975419],[11.4123664,47.4974559],[11.4123309,47.4973995],[11.4122502,47.497283],[11.4121891,47.4971795],[11.4121106,47.4970425],[11.4120787,47.4969839],[11.4120251,47.4968575],[11.4119401,47.4967091],[11.4118967,47.4965795],[11.4118723,47.4964879],[11.4118735,47.4963943],[11.4118748,47.4963429],[11.4118478,47.4962867],[11.4117922,47.4961694],[11.4117515,47.4960627],[11.4117012,47.4958804],[11.4116632,47.4957373],[11.4116162,47.4955574],[11.4115797,47.4954804],[11.4115074,47.4954201],[11.411416,47.4953788],[11.4113535,47.4953277],[11.4113046,47.4952745],[11.4112436,47.4952281],[11.4112357,47.4951526],[11.4112176,47.4951352],[11.411151,47.4951104],[11.4110688,47.4951069],[11.4110115,47.4951084],[11.4109773,47.4951319],[11.4109065,47.4951926],[11.4108727,47.4952024],[11.4107869,47.4951943],[11.4107267,47.4951844],[11.4106739,47.4951494],[11.4106324,47.495126],[11.4106287,47.4951259],[11.4105284,47.4951235],[11.4104791,47.4951376],[11.4102898,47.4951325],[11.4102402,47.4951213],[11.4101019,47.4951109],[11.4100098,47.4950772],[11.4099259,47.4950409],[11.4098125,47.4949744],[11.4096878,47.4948805],[11.4096027,47.494809],[11.409533,47.4947005],[11.4095211,47.4946562],[11.409534,47.4945989],[11.4095277,47.4945625],[11.4094719,47.494512],[11.409421,47.4944558],[11.4093701,47.4943152],[11.4093343,47.4942553],[11.4092337,47.4941748],[11.4091493,47.4941248],[11.4090801,47.4940312],[11.4090843,47.4939627],[11.4090944,47.4939168],[11.4090511,47.4937543],[11.4090096,47.4937231],[11.408974,47.4937146],[11.4087504,47.4937195],[11.4086897,47.4937124],[11.4086331,47.4936827],[11.4085734,47.4936208],[11.4085441,47.4935586],[11.4085443,47.4932983],[11.4085797,47.493123],[11.4085806,47.4930156],[11.4086134,47.4928176],[11.4086182,47.4927205],[11.4085946,47.4926295],[11.4085743,47.4924506],[11.4085523,47.4923597],[11.4085483,47.4922969],[11.4085534,47.4922113],[11.4085356,47.4921408],[11.4085244,47.4920702],[11.4085117,47.4919996],[11.4084776,47.4919466],[11.408372,47.4918685],[11.408267,47.4917582],[11.4082165,47.4916679],[11.4081669,47.4916013],[11.4080793,47.4915091],[11.4079039,47.4913215],[11.4078801,47.4912706],[11.407967,47.4910374],[11.407983,47.490972],[11.4079683,47.490938],[11.4079171,47.490916],[11.4077138,47.4908761],[11.4076083,47.4908459],[11.407575,47.4908111],[11.4075739,47.4907792],[11.407622,47.4907212],[11.4076304,47.4906789],[11.4076219,47.4906299],[11.4075816,47.4905883],[11.4075028,47.4905475],[11.4074192,47.490517],[11.4073329,47.4905046],[11.4072468,47.4904947],[11.4069996,47.4904955],[11.4066361,47.4904902],[11.4064099,47.4904644],[11.4063437,47.4904518],[11.4062544,47.490403],[11.4061865,47.4903403],[11.4061597,47.490254],[11.406164,47.4901877],[11.4062048,47.4900706],[11.406216,47.4900098],[11.4061805,47.489918],[11.4061393,47.4898525],[11.4060385,47.4897663],[11.4059298,47.4896928],[11.4058527,47.4896575],[11.4058002,47.4896447],[11.4056572,47.4896438],[11.4054623,47.4896493],[11.4054147,47.4896353],[11.4053954,47.4896151],[11.4053623,47.4895415],[11.4053233,47.4894872],[11.4052934,47.4894546],[11.4052181,47.4894194],[11.4051338,47.4893694],[11.4050708,47.4893078],[11.4050338,47.4892615],[11.4050041,47.4891867],[11.4049002,47.4889762],[11.4048445,47.4889268],[11.4047966,47.4889082],[11.4047176,47.4889039],[11.4044268,47.4889089],[11.4043293,47.4889104],[11.4042191,47.4888883],[11.4039915,47.4887849],[11.4038989,47.4887362],[11.403641,47.4885419],[11.4035567,47.4884931],[11.4035124,47.4884768],[11.4034418,47.4884746],[11.4032536,47.4884823],[11.4031361,47.4884865],[11.4029639,47.4884701],[11.4029009,47.4884484],[11.4028674,47.4884078],[11.4028569,47.4883531],[11.4028601,47.4883074],[11.4028849,47.4882477],[11.4028902,47.4882099],[11.402875,47.4881644],[11.4028507,47.4881044],[11.4027913,47.4879969],[11.402754,47.4879016],[11.4027292,47.4878701],[11.4026862,47.4878423],[11.4025908,47.487812],[11.4024293,47.4877655],[11.4023717,47.4877517],[11.4022587,47.4877444],[11.4021495,47.4877464],[11.401903,47.4877676],[11.4017755,47.4877805],[11.4015872,47.4878014],[11.4014714,47.4878051],[11.4013486,47.4877873],[11.4012778,47.4877497],[11.4011899,47.4876769],[11.4011441,47.4876154],[11.4011116,47.4875105],[11.4010708,47.4873987],[11.4010164,47.4873087],[11.4009808,47.4872722],[11.4009202,47.4872519],[11.4008344,47.4872429],[11.4005791,47.4872459],[11.4005152,47.4872415],[11.400478,47.4872267],[11.4004459,47.4871834],[11.4004138,47.4871516],[11.4003482,47.4871312],[11.4002724,47.4870994],[11.4001425,47.4870187],[11.4000143,47.4869471],[11.3998594,47.4868858],[11.3997196,47.4868463],[11.3995296,47.4868217],[11.3994573,47.4868173],[11.3993732,47.4867992],[11.3993058,47.4867674],[11.3992366,47.4867139],[11.3991774,47.4866467],[11.3991213,47.4865704],[11.3990522,47.4865032],[11.3989711,47.4864486],[11.3988834,47.4863952],[11.398816,47.4863601],[11.3987166,47.4863237],[11.3986443,47.4862954],[11.3985884,47.4862544],[11.3985494,47.4861804],[11.3985071,47.4861211],[11.3984746,47.4860355],[11.3984976,47.4859464],[11.3985259,47.4858985],[11.3985644,47.4858665],[11.3986413,47.4858194],[11.3986948,47.4857724],[11.3987917,47.4856672],[11.3988149,47.4856227],[11.3988164,47.4855736],[11.3987943,47.4855382],[11.3987926,47.4855108],[11.3988124,47.4854868],[11.3988157,47.4854685],[11.3988054,47.48544],[11.3987886,47.4854162],[11.3987867,47.4853784],[11.3987948,47.4853294],[11.3988211,47.4852585],[11.3988426,47.4851991],[11.3988786,47.4850369],[11.3988682,47.4849616],[11.3988257,47.4848772],[11.3986853,47.4847451],[11.3986028,47.4846906],[11.3985216,47.484604],[11.3984066,47.4844686],[11.398251,47.4843148],[11.3981311,47.4842363],[11.3980014,47.4841761],[11.3978921,47.4841457],[11.3977912,47.4841379],[11.3976887,47.4841439],[11.3975946,47.4841613],[11.3974756,47.4842026],[11.3973346,47.4842292],[11.3972053,47.4842444],[11.397081,47.4842481],[11.3969751,47.4842461],[11.396896,47.4842326],[11.3967816,47.4841952],[11.396726,47.4841782],[11.3965411,47.4841457],[11.3963544,47.4841154],[11.3957353,47.4840049],[11.3956629,47.4839789],[11.3956207,47.4839561],[11.3955785,47.4839186],[11.3955447,47.4838833],[11.3955326,47.4838342],[11.395544,47.4837726],[11.3955773,47.4837189],[11.395681,47.4836524],[11.3957515,47.4836168],[11.3958204,47.4835996],[11.3958941,47.4835686],[11.3959911,47.4835158],[11.3961169,47.4834435],[11.3961937,47.4833886],[11.3962204,47.4833532],[11.3962216,47.4832823],[11.3962029,47.4832368],[11.3961623,47.4831992],[11.3960561,47.4831299],[11.3960106,47.4830945],[11.3959378,47.4830114],[11.3958446,47.4828838],[11.3957549,47.4827801],[11.3956975,47.4827347],[11.3956079,47.4826492],[11.3955372,47.4825981],[11.3953702,47.4824992],[11.3952352,47.482399],[11.3951253,47.4822863],[11.395078,47.4822419],[11.3950003,47.4822067],[11.3948674,47.4821637],[11.3947396,47.4821332],[11.3946269,47.4821084],[11.3945378,47.4820995],[11.3943713,47.4820942],[11.3940975,47.4820937],[11.3939462,47.4820953],[11.393864,47.482108],[11.3937801,47.4821379],[11.3937113,47.4821551],[11.3935704,47.4821852],[11.3934478,47.4822197],[11.3934028,47.4822518],[11.3933879,47.482294],[11.3933901,47.4823843],[11.3933904,47.4824424],[11.3933604,47.4824711],[11.3933049,47.482478],[11.3930731,47.4825186],[11.3929894,47.4825325],[11.3929069,47.4825327],[11.3927943,47.4825216],[11.3925958,47.4824832],[11.3925218,47.4824743],[11.3924445,47.4824665],[11.3922916,47.4824692],[11.3922261,47.4824659],[11.3921117,47.482448],[11.3920142,47.4824413],[11.3919453,47.4824438],[11.3918227,47.4824521],[11.3917269,47.4824558],[11.3916126,47.482456],[11.3914344,47.4824222],[11.3913083,47.482386],[11.3910472,47.4822897],[11.3909091,47.4822272],[11.3908127,47.4821578],[11.3907266,47.4820701],[11.3907077,47.482012],[11.3907312,47.4819811],[11.3908148,47.4819169],[11.3908667,47.4818815],[11.3908783,47.4818415],[11.3908848,47.481806],[11.3909266,47.4817775],[11.3909885,47.4817442],[11.3910236,47.4817155],[11.3911104,47.4816012],[11.3911737,47.4815303],[11.3912188,47.4814502],[11.3912068,47.4813989],[11.3911324,47.4813364],[11.3910665,47.4812954],[11.3909639,47.4812693],[11.3908344,47.4812468],[11.3905181,47.4811768],[11.3903432,47.4811362],[11.3902336,47.4810977],[11.390072,47.4810353],[11.3899743,47.4809819],[11.3899421,47.480934],[11.3899217,47.4808782],[11.3898944,47.4808325],[11.3898657,47.4808064],[11.3897916,47.4807792],[11.3897125,47.4807554],[11.389544,47.480669],[11.389394,47.4805815],[11.3893298,47.4805212],[11.3892941,47.4804745],[11.3892749,47.4803478],[11.3892525,47.4802338],[11.3892179,47.4800775],[11.3891701,47.4799485],[11.3890564,47.4797399],[11.3889969,47.4796442],[11.3889423,47.4794766],[11.3889133,47.4793944],[11.3888693,47.4793512],[11.3888019,47.4793217],[11.3886385,47.4792604],[11.3884701,47.4791764],[11.3883217,47.4791003],[11.388229,47.4790434],[11.3881128,47.4790061],[11.3879934,47.4789766],[11.3879843,47.4789739],[11.3879125,47.4789517],[11.3878321,47.4789074],[11.3877659,47.4788585],[11.3877117,47.4787821],[11.3876384,47.4786054],[11.3875945,47.4785392],[11.3875151,47.4784745],[11.3873043,47.4783356],[11.387267,47.4782957],[11.3872433,47.4782548],[11.3872127,47.4781954],[11.3871249,47.4781238],[11.3870525,47.4780863],[11.3869329,47.4780581],[11.3868455,47.4780354],[11.3867831,47.4780059],[11.3867477,47.4779626],[11.3867199,47.4778029],[11.3867278,47.4777401],[11.3867996,47.4776589],[11.3868614,47.4775994],[11.3869146,47.4774988],[11.3869647,47.4774119],[11.3869692,47.4773481],[11.3869419,47.4772819],[11.3868744,47.4772215],[11.3867682,47.4771658],[11.3866588,47.4771353],[11.3865781,47.4771104],[11.3865376,47.4770876],[11.3865071,47.4770421],[11.3864731,47.4769874],[11.3864477,47.4769281],[11.3863885,47.4768621],[11.3863242,47.4767867],[11.3862736,47.4767322],[11.3862277,47.4766421],[11.3861838,47.4766045],[11.3861299,47.4765818],[11.3857683,47.4765256],[11.3855866,47.4764838],[11.3854838,47.4764328],[11.3854063,47.4763805],[11.3853436,47.4762881],[11.3853027,47.4762048],[11.3852757,47.4761719],[11.3851829,47.4761242],[11.3850852,47.4760547],[11.3850446,47.4760011],[11.3850257,47.475943],[11.3850116,47.475822],[11.3850074,47.4756931],[11.3850252,47.4755732],[11.3850467,47.4755057],[11.3851234,47.475405],[11.3852102,47.4752976],[11.385272,47.4752142],[11.3852969,47.4751627],[11.3852931,47.475133],[11.3852844,47.4750486],[11.3852436,47.4749734],[11.3851642,47.4748789],[11.3849834,47.4747274],[11.384904,47.474649],[11.3848936,47.4745758],[11.3849233,47.4744685],[11.3849811,47.4742971],[11.3850276,47.4742171],[11.3850776,47.4741611],[11.3851076,47.4741255],[11.3851007,47.4740879],[11.3850617,47.4740161],[11.3850129,47.4739763],[11.3848289,47.4738535],[11.3847244,47.4737784],[11.3846754,47.4737317],[11.3846177,47.4736417],[11.3845686,47.4735619],[11.3844822,47.4734456],[11.3843876,47.4733454],[11.3842693,47.473243],[11.3841581,47.4731701],[11.3841107,47.4731315],[11.3840973,47.4730916],[11.384113,47.4730468],[11.3841184,47.4730252],[11.3841485,47.4729478],[11.3841501,47.4728577],[11.3841244,47.4727947],[11.3840749,47.4727418],[11.3840107,47.4726715],[11.3839822,47.4726292],[11.3839435,47.4725717],[11.3838831,47.4724719],[11.3838429,47.4723745],[11.383822,47.4722409],[11.3838224,47.4722089],[11.3838487,47.4721589],[11.3839173,47.4720773],[11.3839908,47.4720095],[11.3840965,47.4719282],[11.3842991,47.4717861],[11.3844079,47.4717231],[11.3845009,47.4716931],[11.3845751,47.4716789],[11.3846695,47.4716568],[11.3847508,47.4716244],[11.3847998,47.4716112],[11.3848707,47.4715957],[11.3849231,47.4715803],[11.3849768,47.4715796],[11.3850071,47.4715764],[11.3850345,47.4715538],[11.3850638,47.4715163],[11.3850578,47.4714752],[11.3850046,47.4714417],[11.3850304,47.4714122],[11.385088,47.4713876],[11.3851674,47.4713643],[11.385218,47.4713545],[11.3853688,47.4712828],[11.3853493,47.4712472],[11.3853448,47.4712152],[11.3853722,47.4711926],[11.3854317,47.471151],[11.3854848,47.4711033],[11.3855622,47.4710013],[11.3855977,47.4709012],[11.3856042,47.4708248],[11.3855996,47.4707691],[11.3856057,47.4707392],[11.3856346,47.4707155],[11.3856823,47.4706885],[11.3857334,47.4706501],[11.3858066,47.4706062],[11.3858614,47.4705394],[11.3858794,47.4704847],[11.3858791,47.4704059],[11.3858747,47.4703705],[11.3858986,47.4703468],[11.38597,47.470304],[11.386055,47.4702523],[11.3861047,47.4702002],[11.3861406,47.4701617],[11.3861799,47.4701289],[11.3862174,47.4700961],[11.3862267,47.4700516],[11.3862214,47.4699729],[11.3862354,47.4699399],[11.3862595,47.4699094],[11.3863684,47.4698395],[11.3864418,47.4697784],[11.3865172,47.4697004],[11.3866181,47.4696978],[11.3867765,47.4696752],[11.3868236,47.4696642],[11.3868477,47.4696346],[11.3868893,47.4695677],[11.3869118,47.4695291],[11.3869594,47.4694975],[11.3870256,47.4694684],[11.3870396,47.4694377],[11.3870602,47.4694196],[11.3871025,47.4693961],[11.3871282,47.4693666],[11.387303,47.4693646],[11.3873651,47.469372],[11.3874064,47.4693221],[11.3874105,47.4692811],[11.3873928,47.4692388],[11.387382,47.469185],[11.3873876,47.469152],[11.3874303,47.4691203],[11.3874827,47.4690968],[11.3875199,47.4690892],[11.3876025,47.4690785],[11.3877015,47.4690872],[11.3877804,47.4690856],[11.3878514,47.469068],[11.387912,47.4690582],[11.3879611,47.4690461],[11.3879931,47.4690305],[11.3880096,47.4689633],[11.388037,47.468936],[11.3880843,47.4689193],[11.388169,47.4688825],[11.38822,47.4688485],[11.3882594,47.4688169],[11.3882914,47.4688013],[11.38834,47.4688153],[11.3883988,47.4688158],[11.3884832,47.4687937],[11.3885411,47.4687565],[11.3885877,47.4686907],[11.3886326,47.4686193],[11.3886332,47.4685838],[11.3886135,47.4685631],[11.3885123,47.4684869],[11.388456,47.4684397],[11.3884251,47.468387],[11.3884225,47.4683435],[11.3884536,47.4682981],[11.3885321,47.4682349],[11.3885983,47.468199],[11.3886241,47.4681627],[11.3886047,47.4681294],[11.3885817,47.4680904],[11.3885874,47.4680608],[11.3886051,47.4680152],[11.388636,47.4679766],[11.3886666,47.4679495],[11.3887026,47.4679191],[11.3887099,47.4678838],[11.3887369,47.4678748],[11.3887606,47.4678648],[11.3887814,47.4678387],[11.3888289,47.4678117],[11.388875,47.4677665],[11.3889061,47.4677256],[11.388915,47.4676949],[11.3889542,47.4676655],[11.388998,47.4676613],[11.3890436,47.467648],[11.3891616,47.4676217],[11.3892796,47.4675998],[11.3892904,47.4675715],[11.3893245,47.4675443],[11.3894108,47.4675096],[11.389504,47.4674682],[11.3895366,47.4674308],[11.3895407,47.4673863],[11.3895402,47.4673212],[11.3895513,47.4672701],[11.3895788,47.4672428],[11.3896062,47.4672122],[11.3896237,47.4671736],[11.3896464,47.467127],[11.3897112,47.4670728],[11.3897976,47.4670245],[11.3898825,47.4669852],[11.3899958,47.4669484],[11.3900864,47.4669561],[11.3901734,47.4669682],[11.3902762,47.4669576],[11.390369,47.466939],[11.3904773,47.4668955],[11.3905264,47.46688],[11.3906005,47.4668726],[11.3907102,47.4668529],[11.3907779,47.4668227],[11.3908575,47.4667834],[11.3909607,47.4667444],[11.3910773,47.4667134],[11.3911649,47.4667004],[11.3912574,47.4666978],[11.3913432,47.4666951],[11.3914156,47.4666774],[11.3914865,47.4666666],[11.3916207,47.4666781],[11.3917349,47.4666836],[11.3918126,47.466666],[11.3917961,47.4666487],[11.3918933,47.4666609],[11.3919356,47.4666487],[11.3920317,47.4666233],[11.392099,47.4666239],[11.392148,47.4666106],[11.3921836,47.4665904],[11.3922214,47.4665404],[11.3922739,47.466525],[11.3923409,47.4665346],[11.3924468,47.4665332],[11.3925547,47.4665204],[11.3926403,47.4665246],[11.3927798,47.4665224],[11.392825,47.4665297],[11.3928793,47.4665951],[11.3929041,47.4666147],[11.3929377,47.4666172],[11.3931177,47.4666108],[11.3931667,47.4665906],[11.3932147,47.4665455],[11.3932593,47.4664966],[11.3932984,47.4664685],[11.3933423,47.4664541],[11.3934115,47.466433],[11.3934879,47.4663903],[11.3935389,47.4663678],[11.3936887,47.4663577],[11.3938416,47.4663555],[11.3938571,47.4663374],[11.3938992,47.466324],[11.3939252,47.4662821],[11.3939663,47.466239],[11.3940442,47.4662123],[11.3941184,47.4661981],[11.3941573,47.4661779],[11.3942017,47.4661428],[11.3942301,47.4661558],[11.3942633,47.4661742],[11.3942983,47.4661939],[11.39434,47.4662011],[11.3943854,47.4662061],[11.3944237,47.466227],[11.3944668,47.4662547],[11.3944883,47.4662789],[11.3945466,47.4663056],[11.3945952,47.4663128],[11.3946877,47.4663057],[11.3947756,47.4662836],[11.3948496,47.4662773],[11.394905,47.4662835],[11.3949969,47.4663094],[11.3950371,47.4663154],[11.3950677,47.4663009],[11.3951034,47.4662749],[11.3951306,47.4662603],[11.3951897,47.4662425],[11.3952486,47.4662418],[11.3953308,47.4662483],[11.3954163,47.4662605],[11.3954886,47.4662554],[11.3955593,47.4662445],[11.3956319,47.4662326],[11.3956773,47.466234],[11.3956939,47.4662422],[11.3957069,47.4662709],[11.3957298,47.4663053],[11.3957581,47.4663192],[11.3957982,47.4663196],[11.3958623,47.4663167],[11.3959096,47.4662977],[11.3959622,47.4662765],[11.396008,47.4662483],[11.3960469,47.4662395],[11.3961713,47.4662383],[11.396223,47.4662558],[11.3962747,47.4662848],[11.3963631,47.4663152],[11.3964269,47.4663282],[11.3964835,47.4663447],[11.3965402,47.4663748],[11.3965934,47.4663994],[11.3966554,47.4664135],[11.3966953,47.4664412],[11.3967507,47.4664485],[11.3967892,47.4664522],[11.3967987,47.4664855],[11.396793,47.4665208],[11.3968122,47.4665758],[11.3968547,47.4666354],[11.3969425,47.4667104],[11.3970315,47.4667089],[11.3970753,47.4667138],[11.3971235,47.4667416],[11.3971901,47.4667741],[11.3972602,47.4668009],[11.3972999,47.4668344],[11.3973475,47.4668918],[11.3974109,47.4669209],[11.3974864,47.4669295],[11.3975771,47.4669303],[11.3976595,47.4669276],[11.397681,47.466946],[11.3978019,47.4669516],[11.3978238,47.4669541],[11.3978771,47.4669717],[11.3979088,47.466989],[11.397935,47.4670224],[11.397965,47.4670576],[11.3980006,47.4671153],[11.398067,47.4671615],[11.3981408,47.4671759],[11.3982162,47.467181],[11.3982954,47.4671692],[11.3983479,47.4671457],[11.3983972,47.4671164],[11.3984187,47.467136],[11.3984482,47.4671739],[11.3984917,47.467188],[11.3985892,47.4671899],[11.398663,47.467194],[11.3987082,47.4672114],[11.3987562,47.4672495],[11.3988107,47.4673036],[11.3988808,47.4673247],[11.3989667,47.467314],[11.3990169,47.4673271],[11.3990909,47.4673254],[11.39915,47.4673098],[11.3991784,47.4673204],[11.3992554,47.4673359],[11.3993246,47.4673217],[11.399362,47.4673014],[11.3994081,47.4672584],[11.3994232,47.4672292],[11.3994697,47.4671927],[11.3995266,47.4672068],[11.3995804,47.4672107],[11.3996327,47.4671963],[11.3996987,47.4671764],[11.3997611,47.4671621],[11.3998299,47.4671604],[11.3999121,47.4671713],[11.4000075,47.4671972],[11.4001264,47.4672097],[11.4002354,47.4672322],[11.4002925,47.4672338],[11.4003397,47.4672274],[11.4003869,47.4672141],[11.4004055,47.4672154],[11.4004286,47.467235],[11.4004769,47.4672537],[11.4005457,47.4672679],[11.4006481,47.4672756],[11.400779,47.4672825],[11.4009723,47.4672829],[11.4010652,47.4672541],[11.4011747,47.4672413],[11.4012754,47.4672444],[11.4013676,47.4672531],[11.4014649,47.4672654],[11.4015421,47.4672751],[11.4015993,47.4672699],[11.4016885,47.4672593],[11.4018315,47.4672537],[11.4020149,47.4672437],[11.4022216,47.4672397],[11.4024673,47.4672259],[11.4026441,47.4672056],[11.4028397,47.4671719],[11.402951,47.46715],[11.4030063,47.4671584],[11.4030766,47.4671716],[11.4031572,47.46717],[11.4032786,47.4671596],[11.4034451,47.4671484],[11.4034936,47.4671557],[11.4035369,47.4671869],[11.4036985,47.4671687],[11.4039356,47.4671571],[11.4041087,47.4671574],[11.4041908,47.4671683],[11.4042277,47.4671824],[11.4042722,47.467225],[11.4043204,47.4672539],[11.4043573,47.467261],[11.4043854,47.4672659],[11.4044253,47.4672349],[11.4044923,47.4672084],[11.4045832,47.4672009],[11.4046467,47.4671744],[11.4047437,47.4671248],[11.4048124,47.4670981],[11.4048662,47.4670932],[11.4050887,47.4671079],[11.4052182,47.4670945],[11.4052902,47.4670713],[11.4054198,47.4670636],[11.4055157,47.4670517],[11.4055774,47.4670137],[11.4057109,47.4669388],[11.4058245,47.4668675],[11.4059467,47.466828],[11.4061769,47.4667844],[11.4062442,47.4667794],[11.4062656,47.4667486],[11.4064083,47.4667123],[11.4064619,47.4666995],[11.4065698,47.4667],[11.4067414,47.4666978],[11.406957,47.4666976],[11.4071287,47.4666908],[11.4073023,47.4666944],[11.4075015,47.4667227],[11.4077776,47.4667245],[11.4080873,47.4667191],[11.4083905,47.466715],[11.4085489,47.4667253],[11.4087429,47.4667447],[11.4089401,47.4667549],[11.4091167,47.466739],[11.4092833,47.4667276],[11.4094382,47.4667359],[11.4093811,47.4666303],[11.4093707,47.4665985],[11.4093528,47.4665449],[11.4093468,47.4664721],[11.4093422,47.4663912],[11.4093597,47.4663239],[11.4093638,47.4662567],[11.4093529,47.4661987],[11.4093435,47.4661315],[11.4092822,47.4660942],[11.4092093,47.4660583],[11.4091618,47.4660243],[11.4090917,47.4659655],[11.4091044,47.4659154],[11.409026,47.4658554],[11.4089547,47.465807],[11.4086858,47.4656263],[11.4086499,47.4655786],[11.4086245,47.4655777],[11.4084731,47.4654739],[11.4083913,47.4654082],[11.4081948,47.4652192],[11.4081688,47.4651749],[11.4081617,47.4651442],[11.4081846,47.4650986],[11.4082209,47.4650515],[11.4082488,47.4650047],[11.4082549,47.4649545],[11.4082488,47.4648828],[11.4082427,47.4648168],[11.4082404,47.4647769],[11.4082613,47.4647164],[11.4082873,47.4646479],[11.4082929,47.4645703],[11.4083039,47.4645144],[11.4083333,47.4644562],[11.4083375,47.4643958],[11.4083332,47.4643377],[11.4083509,47.4642794],[11.408409,47.4642211],[11.4084671,47.4641672],[11.4084953,47.4641384],[11.4085119,47.4641156],[11.4085452,47.464096],[11.4085972,47.4640809],[11.4086338,47.4640544],[11.4087205,47.4639958],[11.4088677,47.4639288],[11.409005,47.4638812],[11.4091355,47.4638143],[11.4093193,47.4637255],[11.4094748,47.4636425],[11.4096318,47.4635607],[11.4097772,47.4634846],[11.4099273,47.4633788],[11.4100122,47.4633134],[11.4100469,47.4632733],[11.4100898,47.4632138],[11.410136,47.4631565],[11.4102176,47.4630877],[11.4103107,47.463013],[11.4103438,47.4629729],[11.4103517,47.4629341],[11.4103489,47.4628612],[11.4103498,47.4628145],[11.4103612,47.4627826],[11.4103895,47.462763],[11.4104597,47.4627193],[11.410545,47.4626834],[11.4105953,47.4626627],[11.4106065,47.4626353],[11.4105994,47.4625988],[11.4105936,47.462453],[11.4105761,47.4622845],[11.4105816,47.4622082],[11.4105995,47.4621625],[11.4106375,47.4621098],[11.4106605,47.4620789],[11.4106551,47.4620539],[11.4106359,47.462005],[11.410599,47.4619062],[11.4105772,47.4617946],[11.4105688,47.461683],[11.4105725,47.4615896],[11.4105983,47.4615165],[11.4106327,47.461456],[11.4107189,47.4613529],[11.4108066,47.4612543],[11.4108641,47.4611629],[11.4108981,47.461068],[11.4109519,47.4609526],[11.4110073,47.4608304],[11.4110481,47.4607333],[11.4110717,47.4606272],[11.4110985,47.4605063],[11.4111119,47.4603831],[11.4111203,47.4602681],[11.4111388,47.4601608],[11.4111662,47.4600741],[11.4112155,47.4599884],[11.4112784,47.459923],[11.4113833,47.4598392],[11.4114795,47.4597406],[11.4115402,47.4596333],[11.4116212,47.4595324],[11.4116406,47.4594799],[11.4116376,47.4594046],[11.4118792,47.4591992],[11.4119357,47.4590164],[11.41199,47.4588406],[11.4120443,47.4587744],[11.4120707,47.4587366],[11.4120736,47.4587139],[11.412068,47.4586786],[11.4120571,47.4586252],[11.4120512,47.4585694],[11.4120556,47.4585237],[11.4120838,47.4584928],[11.4121238,47.4584594],[11.4121822,47.4584284],[11.4122573,47.4583755],[11.412307,47.4583319],[11.4123518,47.4582816],[11.4124083,47.4582401],[11.4124362,47.4581887],[11.4124608,47.4581339],[11.4124701,47.4580848],[11.4124743,47.4580267],[11.412504,47.4579821],[11.4125422,47.4579466],[11.4125366,47.4579146],[11.4125412,47.4578851],[11.4125679,47.4578644],[11.4126112,47.4578378],[11.4125315,47.4575752],[11.4125176,47.4575434],[11.4124938,47.4575298],[11.4124499,47.4575164],[11.4123972,47.457486],[11.4123856,47.4573904],[11.4123732,47.4573415],[11.4123458,47.4573143],[11.4123001,47.4572987],[11.4122309,47.4572911],[11.4121836,47.4572846],[11.4120989,47.4572476],[11.4120564,47.4572158],[11.4120556,47.4571634],[11.4120513,47.4571019],[11.4120423,47.4570667],[11.4120518,47.4570234],[11.4120597,47.4569857],[11.411967,47.4568587],[11.4119043,47.4568443],[11.4118553,47.4568292],[11.4118276,47.4568207],[11.411816,47.4562356],[11.4121722,47.4555558],[11.4123357,47.4554294],[11.4124738,47.4553228],[11.4129374,47.4549646],[11.4133405,47.4546534],[11.4145635,47.4531738],[11.4146037,47.4531251],[11.4172652,47.4499038],[11.421433,47.4448563],[11.4212084,47.444768],[11.4211525,47.444749],[11.4211303,47.4447275],[11.4211349,47.4446955],[11.4211547,47.4446692],[11.4212031,47.4446392],[11.4212195,47.4446164],[11.4211938,47.4445915],[11.4211669,47.4445791],[11.4210585,47.4445422],[11.4209707,47.4445223],[11.4209234,47.444518],[11.4208409,47.4445106],[11.4207565,47.444502],[11.4206889,47.4444796],[11.4206197,47.4444687],[11.4205558,47.4444725],[11.4204217,47.4444049],[11.420371,47.4443871],[11.4203305,47.4443793],[11.4202532,47.4443923],[11.4201577,47.4444145],[11.4201042,47.4444411],[11.4200726,47.4444744],[11.4200328,47.4445088],[11.4199896,47.4445501],[11.4199902,47.4445831],[11.4200123,47.4446],[11.4200445,47.4446158],[11.4200415,47.4446283],[11.4200047,47.4446594],[11.4198528,47.4447401],[11.4198195,47.4447664],[11.4197783,47.4448191],[11.4197349,47.4448502],[11.4196496,47.4448882],[11.4195964,47.4449273],[11.4195214,47.4449814],[11.4194835,47.4450318],[11.4194337,47.4450765],[11.4194001,47.4450915],[11.4193114,47.4451172],[11.4192122,47.4451304],[11.4191734,47.4451191],[11.4191241,47.4450909],[11.418914,47.4449898],[11.4188395,47.444972],[11.4187044,47.4449569],[11.4186643,47.4449617],[11.4186224,47.444979],[11.4185104,47.4450276],[11.4184138,47.4450976],[11.418255,47.4451727],[11.4181298,47.4452362],[11.4180162,47.4452973],[11.4178675,47.4453745],[11.4176721,47.4454874],[11.4176071,47.445522],[11.4175184,47.4455545],[11.4174681,47.445573],[11.4174515,47.4455879],[11.4174203,47.4456337],[11.4173924,47.4456851],[11.4173342,47.4457367],[11.4172893,47.4457781],[11.4172679,47.445802],[11.4172632,47.4458238],[11.4172894,47.4458862],[11.4172916,47.4459171],[11.4172667,47.4459445],[11.4172352,47.4459812],[11.4172171,47.4460086],[11.4172023,47.4460394],[11.4171707,47.4460613],[11.4171223,47.446081],[11.4171039,47.4460982],[11.4170909,47.4461233],[11.4170678,47.446152],[11.4170125,47.4461785],[11.4169376,47.446228],[11.4168944,47.4462647],[11.4168514,47.4463185],[11.4167914,47.4463611],[11.4167463,47.4463864],[11.4167078,47.446405],[11.4165432,47.4464229],[11.4164961,47.4464301],[11.4164376,47.4464533],[11.4163856,47.4464707],[11.416359,47.4464777],[11.4163323,47.4465041],[11.4163194,47.4465337],[11.4162952,47.4466182],[11.4162756,47.4466582],[11.4162524,47.4466755],[11.4161903,47.4466906],[11.4161536,47.4467057],[11.4160816,47.4467381],[11.4159795,47.4467797],[11.4159567,47.4468311],[11.4157923,47.4468629],[11.4156697,47.4468876],[11.4156178,47.4469016],[11.4155645,47.4469406],[11.4155047,47.44699],[11.4154242,47.4470178],[11.4153467,47.4470171],[11.4152776,47.4470085],[11.4152219,47.4469906],[11.4151304,47.4469616],[11.4150036,47.4469259],[11.4149159,47.4469174],[11.4148504,47.4469189],[11.4147696,47.4469263],[11.4146988,47.4469175],[11.4146613,47.4468928],[11.414629,47.446861],[11.4145999,47.4468338],[11.4145508,47.4468171],[11.4144833,47.4468027],[11.414394,47.4467986],[11.4142844,47.4467868],[11.4141949,47.4467738],[11.4140837,47.4467619],[11.4139961,47.4467511],[11.413917,47.4467664],[11.4138621,47.4468009],[11.4136024,47.4467717],[11.4134895,47.4467598],[11.4134318,47.4467409],[11.4133644,47.4467276],[11.4132767,47.4467248],[11.4131823,47.4467128],[11.413093,47.4467054],[11.4130204,47.4466956],[11.4129228,47.4466963],[11.4128621,47.4466875],[11.4128113,47.4466685],[11.412769,47.4466641],[11.4127238,47.4466701],[11.4126634,47.4466876],[11.4125848,47.4467165],[11.4125145,47.4467489],[11.4124161,47.4468076],[11.4123626,47.4468295],[11.4122782,47.4468244],[11.4121821,47.4468159],[11.4121163,47.4468049],[11.4120456,47.4467927],[11.4119917,47.4468023],[11.4119446,47.4468049],[11.4118938,47.4467778],[11.4118022,47.446734],[11.4117088,47.4466799],[11.4116156,47.446644],[11.4115075,47.4466218],[11.4113821,47.4465645],[11.4112837,47.4465115],[11.4111848,47.4465407],[11.4110589,47.4465609],[11.4108988,47.4465653],[11.4107847,47.4465819],[11.4107092,47.4466017],[11.4106422,47.4466158],[11.4106038,47.4466411],[11.4105587,47.4466597],[11.4105286,47.4466746],[11.4104301,47.4467368],[11.4103727,47.4467177],[11.410306,47.4467626],[11.4101922,47.44681],[11.4100951,47.4468459],[11.4099744,47.4468786],[11.4098502,47.4469078],[11.4097109,47.4469371],[11.4095958,47.4469464],[11.4093944,47.4469396],[11.4093021,47.4469397],[11.4091176,47.4469641],[11.4089827,47.4469723],[11.4088437,47.4469932],[11.4087446,47.4469932],[11.4086697,47.4469767],[11.4086189,47.4469492],[11.4086121,47.446916],[11.408587,47.44688],[11.4085447,47.4468504],[11.4085195,47.4468157],[11.4084364,47.4467601],[11.408378,47.4467164],[11.4083301,47.4466264],[11.4082779,47.4465601],[11.4082486,47.4465079],[11.4082157,47.4464558],[11.4080941,47.4463605],[11.408046,47.446315],[11.4080272,47.4462836],[11.4079873,47.4462416],[11.4079429,47.4462166],[11.4079077,47.4461838],[11.4078491,47.4461436],[11.4077338,47.4460577],[11.4076861,47.446036],[11.4076308,47.4460313],[11.4075911,47.4460213],[11.4075521,47.4459919],[11.4075283,47.4459274],[11.4075023,47.4458743],[11.4074746,47.4458553],[11.4074327,47.445851],[11.4073914,47.4458717],[11.4073578,47.4458733],[11.4072932,47.4458866],[11.4071844,47.4459115],[11.4070697,47.4459558],[11.4070276,47.445989],[11.4069937,47.4460294],[11.4069393,47.4460452],[11.4068745,47.4460643],[11.406793,47.4461161],[11.4066295,47.4461934],[11.4064968,47.4462613],[11.4064117,47.4463175],[11.4063093,47.4463506],[11.406165,47.4464124],[11.4060186,47.4464856],[11.4059672,47.4465073],[11.4058998,47.446508],[11.4058118,47.4465209],[11.4057315,47.4465487],[11.4056788,47.4465601],[11.4055832,47.4465579],[11.4054609,47.4466156],[11.4053725,47.4466707],[11.4052912,47.4467522],[11.4052331,47.4468057],[11.4051439,47.4468448],[11.4050651,47.446908],[11.4050243,47.446954],[11.405004,47.4469934],[11.4049758,47.4470191],[11.4049195,47.447035],[11.4048367,47.4470433],[11.4047565,47.4470346],[11.4047162,47.4470325],[11.4046785,47.4470499],[11.4046314,47.4470501],[11.4045849,47.4470387],[11.4045353,47.447017],[11.4044933,47.4470183],[11.4044592,47.4470312],[11.4044086,47.4470336],[11.4043755,47.4470213],[11.4042853,47.447081],[11.4041444,47.4472113],[11.4040806,47.4472795],[11.4039323,47.4473904],[11.4038931,47.4474374],[11.4038666,47.4474997],[11.4038202,47.4475545],[11.4037062,47.4476204],[11.4036212,47.4476721],[11.4034913,47.4477172],[11.403266,47.4477863],[11.4031864,47.4477982],[11.4031422,47.4478085],[11.4029346,47.4479305],[11.4028715,47.4479474],[11.4028118,47.4479644],[11.4027222,47.4480114],[11.4026353,47.4480334],[11.4025595,47.4480396],[11.4024801,47.4480481],[11.4024524,47.4480634],[11.4024132,47.4480728],[11.4023542,47.4480784],[11.4022136,47.4480625],[11.4021437,47.448053],[11.4020877,47.4480597],[11.4019982,47.4480668],[11.4019531,47.4480623],[11.4018513,47.4480131],[11.4018148,47.4480032],[11.4017844,47.4480036],[11.4017295,47.4479921],[11.4016853,47.4479682],[11.4016671,47.447929],[11.4016453,47.4478908],[11.4016132,47.4478604],[11.4015398,47.4478462],[11.4014814,47.4478391],[11.4014148,47.447825],[11.4013695,47.447824],[11.4013164,47.4478102],[11.4012721,47.4477875],[11.4012304,47.4477808],[11.4011621,47.4477645],[11.4011074,47.4477507],[11.4010482,47.4477584],[11.4009958,47.4477629],[11.4009255,47.4477567],[11.4007368,47.4477295],[11.4005581,47.4477072],[11.4004053,47.4476671],[11.4002547,47.4476181],[11.4001394,47.4476028],[11.4000187,47.4475966],[11.3998838,47.4476039],[11.3997773,47.4476174],[11.3997034,47.4476145],[11.399631,47.4475832],[11.3995017,47.4475414],[11.3993551,47.4475151],[11.399245,47.4474979],[11.3991876,47.4475033],[11.3991032,47.4475094],[11.3989895,47.4475296],[11.3988549,47.4475334],[11.3987226,47.4475223],[11.3985517,47.4475128],[11.3983991,47.4475058],[11.3981669,47.4475063],[11.3980615,47.4474981],[11.3979981,47.4474864],[11.3979279,47.4474426],[11.3978488,47.4474099],[11.3977889,47.4473971],[11.3977454,47.4473938],[11.3976377,47.4473949],[11.3975754,47.4473979],[11.3975257,47.4473808],[11.397494,47.4473778],[11.3974532,47.447386],[11.3973903,47.4474017],[11.3972922,47.4474132],[11.3972207,47.4474663],[11.3971696,47.4474445],[11.3971224,47.4474504],[11.3970594,47.4474649],[11.3969837,47.4475009],[11.3969074,47.4475151],[11.3968777,47.4475361],[11.3968697,47.4475644],[11.3968621,47.4475837],[11.396842,47.4475799],[11.396789,47.4475615],[11.3967473,47.4475594],[11.3967149,47.4475643],[11.3966958,47.4475788],[11.396663,47.4475974],[11.3966681,47.4476295],[11.3964881,47.4476334],[11.3964625,47.4476396],[11.396428,47.4476571],[11.3963572,47.4476977],[11.3963192,47.4477152],[11.3962688,47.4477151],[11.3960904,47.4476859],[11.3960586,47.4476829],[11.3960262,47.4476913],[11.3958914,47.4477694],[11.3958469,47.4477854],[11.3958128,47.4477927],[11.3957244,47.4477792],[11.3956367,47.4477521],[11.3955924,47.447727],[11.3955475,47.4476838],[11.3955132,47.4476624],[11.3954822,47.4476423],[11.3954613,47.4476258],[11.3954294,47.4476228],[11.3952957,47.4476392],[11.3952235,47.4476375],[11.3951818,47.4476319],[11.3951363,47.4476001],[11.3951161,47.4476019],[11.3950699,47.4476157],[11.3950234,47.4476387],[11.3949808,47.4476503],[11.3948293,47.4476547],[11.3947827,47.447648],[11.3945601,47.44766],[11.3945084,47.4476519],[11.3944788,47.4476353],[11.3944699,47.4476088],[11.3944702,47.4475734],[11.3944925,47.4475248],[11.3944996,47.4474849],[11.3944814,47.4474411],[11.3944464,47.4474027],[11.394415,47.4473917],[11.3943507,47.4474006],[11.394284,47.4474229],[11.3941828,47.4474663],[11.394138,47.4474858],[11.3940958,47.4474883],[11.3940741,47.4474867],[11.394032,47.4474583],[11.3939684,47.4473814],[11.3938962,47.4473078],[11.393816,47.4472604],[11.3937294,47.4472481],[11.3935851,47.4472425],[11.3934631,47.447226],[11.3932556,47.4472395],[11.3930554,47.4472406],[11.3930261,47.4471873],[11.3929212,47.4471999],[11.3927881,47.4472081],[11.3926468,47.4472095],[11.3925007,47.4471708],[11.3923496,47.4471684],[11.3922674,47.4471962],[11.3922139,47.447227],[11.3919294,47.4471634],[11.3918327,47.4471498],[11.3917966,47.4471306],[11.3916922,47.4470986],[11.3916142,47.4470784],[11.3915489,47.4470712],[11.3913542,47.4470668],[11.3912832,47.4470754],[11.3912262,47.4470696],[11.3911552,47.4470428],[11.3910497,47.4469982],[11.3910051,47.4469503],[11.3909241,47.4469552],[11.3908552,47.4469537],[11.3907876,47.4469259],[11.3907423,47.4468894],[11.3906807,47.4468788],[11.3906356,47.4468733],[11.3905596,47.4468796],[11.3904887,47.4468847],[11.3903925,47.4468608],[11.3903256,47.4468524],[11.3902319,47.4468435],[11.3901612,47.4468087],[11.3900792,47.4468022],[11.3900041,47.4467903],[11.3899236,47.4467849],[11.3898314,47.4467485],[11.3897764,47.4467028],[11.389745,47.4466552],[11.3896526,47.4466531],[11.3895236,47.4466455],[11.3893734,47.4466238],[11.389234,47.4465852],[11.3891705,47.4465758],[11.3891118,47.4465744],[11.3890333,47.4465966],[11.3889891,47.4466082],[11.3889341,47.4465977],[11.3889103,47.4465687],[11.3888679,47.4465414],[11.3888363,47.4465315],[11.3888117,47.4465207],[11.3887599,47.4465161],[11.3886618,47.4465276],[11.3885467,47.4465455],[11.3884445,47.4465351],[11.3884104,47.44658],[11.3883566,47.4466153],[11.3883193,47.446659],[11.3882785,47.4467345],[11.3882427,47.4467806],[11.3881929,47.4468011],[11.3881434,47.4468171],[11.3880663,47.4468485],[11.3880117,47.4468644],[11.3879574,47.4468734],[11.3879095,47.4468928],[11.3878832,47.4469105],[11.3878511,47.4469331],[11.3877879,47.4469711],[11.3877337,47.4470133],[11.387684,47.4470338],[11.3876776,47.44706],[11.3876442,47.4470923],[11.3876194,47.4471179],[11.3875804,47.4471228],[11.3875532,47.4471325],[11.3875164,47.4471293],[11.3875034,47.4471872],[11.3874852,47.4472861],[11.3874595,47.4474318],[11.3874426,47.4475056],[11.3873999,47.4475537],[11.3873846,47.447591],[11.3873555,47.4476373],[11.3872987,47.4476656],[11.38724,47.4477658],[11.3871842,47.4478435],[11.3871194,47.4479298],[11.3870848,47.4479485],[11.3870376,47.4479862],[11.3870055,47.4479924],[11.3869615,47.4479947],[11.3869158,47.4480017],[11.3868531,47.448014],[11.3867792,47.4480477],[11.3866785,47.4481104],[11.3866398,47.4481449],[11.3866192,47.4481914],[11.3865982,47.4482057],[11.3865559,47.4482127],[11.3865075,47.4482058],[11.3863843,47.4481801],[11.3862753,47.4481743],[11.3861367,47.4481904],[11.3860661,47.4482231],[11.3860031,47.4482399],[11.3858925,47.4483014],[11.3858589,47.4483372],[11.385773,47.4483718],[11.3857428,47.4484076],[11.3856825,47.4484358],[11.3856291,47.4484631],[11.3855734,47.4484688],[11.3855082,47.4484615],[11.3854086,47.4484352],[11.3853381,47.4484326],[11.3852667,47.448448],[11.3852027,47.4484831],[11.3851381,47.4485329],[11.3850693,47.448601],[11.3850316,47.4486128],[11.3849831,47.4486128],[11.3848763,47.4485933],[11.3847781,47.4485749],[11.3847088,47.4485471],[11.3845585,47.4485607],[11.384438,47.4485487],[11.3843292,47.4485395],[11.3840874,47.448567],[11.3836319,47.4486],[11.3833577,47.4486359],[11.3832037,47.4486918],[11.3830504,47.4487293],[11.3828376,47.4487541],[11.3825436,47.4487827],[11.3822937,47.4488043],[11.3821334,47.4488178],[11.3818796,47.4488142],[11.3817801,47.448821],[11.3817172,47.4488368],[11.381663,47.4488435],[11.3815786,47.4488441],[11.3814869,47.4488531],[11.380577,47.4487973],[11.3778994,47.449046],[11.3769449,47.4491734],[11.3754806,47.4491518],[11.3751707,47.4487817],[11.374284,47.4484152],[11.3741973,47.4483794],[11.3741002,47.4482782],[11.3740561,47.4482386],[11.3740174,47.4481902],[11.3740014,47.4481182],[11.3739798,47.4480644],[11.373937,47.448034],[11.3738789,47.448008],[11.3737853,47.4479905],[11.373705,47.4479801],[11.3736365,47.4479619],[11.3735773,47.4479256],[11.3735484,47.4478853],[11.3735354,47.4478235],[11.3735164,47.4477879],[11.3734703,47.447761],[11.3734079,47.4477167],[11.3733626,47.4476601],[11.3733229,47.4475957],[11.3732997,47.4475372],[11.3732706,47.4475026],[11.3732422,47.4474531],[11.3732366,47.4474177],[11.3732201,47.4473605],[11.373189,47.4473361],[11.3731221,47.4472735],[11.3730788,47.4472158],[11.3730266,47.4471672],[11.3729367,47.4470939],[11.3728273,47.4469953],[11.372777,47.4469398],[11.3727675,47.4468782],[11.3727353,47.4468367],[11.3727123,47.4467736],[11.3727018,47.4467335],[11.3726806,47.4467162],[11.3726332,47.446679],[11.3725959,47.4466374],[11.3726251,47.4466208],[11.3726143,47.4465944],[11.3726184,47.4465705],[11.3726295,47.4465444],[11.3726015,47.4465258],[11.3725707,47.4464934],[11.3725423,47.446485],[11.3725067,47.4464468],[11.3724693,47.4464075],[11.3724328,47.4463966],[11.3724003,47.4464041],[11.3723574,47.4464307],[11.3722561,47.4464381],[11.3722181,47.4464215],[11.3721805,47.4464334],[11.3721296,47.4464451],[11.3720862,47.4464341],[11.3720465,47.4464119],[11.3719868,47.4463426],[11.3719447,47.4462974],[11.3718951,47.4462692],[11.3718334,47.4462511],[11.3718085,47.446245],[11.3717855,47.4462264],[11.3717498,47.4461894],[11.3717245,47.4461423],[11.3717243,47.4461013],[11.3716396,47.446068],[11.3716137,47.4460403],[11.3715779,47.4460009],[11.3715555,47.4459709],[11.3715411,47.4459012],[11.3715065,47.4458813],[11.3714767,47.4458683],[11.3714706,47.44585],[11.3714363,47.4458209],[11.3713787,47.4457847],[11.3713363,47.4457452],[11.3713237,47.4457166],[11.3712998,47.4456808],[11.3712707,47.4456486],[11.3712753,47.4456099],[11.3712565,47.4455731],[11.3712194,47.4455236],[11.3711731,47.4454557],[11.3711221,47.4454217],[11.3710736,47.445413],[11.3709869,47.4453865],[11.3709081,47.4453772],[11.3708708,47.4453857],[11.3708365,47.4454045],[11.3707957,47.4454162],[11.3707452,47.4454131],[11.3706987,47.4453987],[11.3706282,47.4453896],[11.3705696,47.445384],[11.3704652,47.4453812],[11.3703662,47.4453784],[11.3703139,47.4453763],[11.3702645,47.4453916],[11.3702121,47.4454009],[11.3701515,47.4454033],[11.370081,47.4453919],[11.3700096,47.4453656],[11.3699777,47.4453628],[11.3699554,47.4453749],[11.3699351,47.4453791],[11.3698999,47.4453752],[11.3698797,47.4453725],[11.3698474,47.4453822],[11.3698004,47.4453781],[11.3697778,47.4453526],[11.3697265,47.4453278],[11.3696678,47.4453235],[11.3696133,47.4453362],[11.3695661,47.4453366],[11.3695041,47.445331],[11.3694605,47.4453269],[11.3694211,47.4453455],[11.3693111,47.4453597],[11.3692303,47.445364],[11.3691689,47.445388],[11.3691256,47.4454214],[11.3690531,47.445426],[11.3689741,47.4454201],[11.3689254,47.4454158],[11.3688545,47.4454204],[11.3687558,47.4454028],[11.3686861,47.4453754],[11.3686259,47.4453631],[11.3685234,47.4453579],[11.3684463,47.4453464],[11.368303,47.4453063],[11.3682656,47.4453183],[11.3682028,47.4453298],[11.3681608,47.445328],[11.3680927,47.4453018],[11.3679335,47.4452843],[11.3678714,47.4452799],[11.3677566,47.4452382],[11.3677234,47.4452238],[11.367676,47.4452311],[11.3676383,47.4452487],[11.367524,47.4452467],[11.3674756,47.4452323],[11.3673836,47.4451681],[11.3673365,47.4451252],[11.3672884,47.4451027],[11.3670855,47.4450789],[11.3669362,47.4450672],[11.3667917,47.445058],[11.3666728,47.4450401],[11.3664511,47.4450261],[11.3663801,47.4450296],[11.3663135,47.4450558],[11.3662602,47.4450458],[11.3661895,47.4450446],[11.3661429,47.445029],[11.3661054,47.4449964],[11.3659995,47.4449947],[11.365807,47.4450063],[11.3657481,47.4450064],[11.3657096,47.4450001],[11.365636,47.4449887],[11.3655553,47.4449827],[11.3655066,47.4449786],[11.3654611,47.4449823],[11.3653795,47.4450037],[11.3653318,47.44502],[11.365298,47.4450262],[11.3652326,47.4450161],[11.3650756,47.4449803],[11.3650327,47.444958],[11.3650046,47.4449428],[11.3649701,47.4449183],[11.3649382,47.4449143],[11.364891,47.4449169],[11.3647299,47.4449017],[11.3646614,47.4448859],[11.3645931,47.4448699],[11.3645723,47.4448365],[11.3645376,47.4448188],[11.3644904,47.4448226],[11.3644323,47.4448467],[11.3643632,47.4448934],[11.3642781,47.4449216],[11.3642463,47.4450132],[11.3642113,47.4450479],[11.3641842,47.4451022],[11.3641715,47.4451247],[11.3641483,47.4451631],[11.3640771,47.4452279],[11.364069,47.4452607],[11.3640548,47.4452822],[11.3637483,47.4455219],[11.3636854,47.4455869],[11.3636142,47.4456973],[11.3635906,47.4456969],[11.3635459,47.445769],[11.363514,47.4457696],[11.3634706,47.4458052],[11.3634276,47.445832],[11.3633716,47.4458423],[11.3632118,47.4458408],[11.3631731,47.4458869],[11.3631319,47.44591],[11.3630531,47.4459463],[11.3630702,47.4460355],[11.3629241,47.4461173],[11.362885,47.4461315],[11.3627974,47.4461335],[11.3627247,47.4461425],[11.3626478,47.4461707],[11.3625911,47.4462051],[11.3625698,47.4462355],[11.3625412,47.4463318],[11.3623497,47.4464595],[11.3623632,47.4465543],[11.362393,47.4465684],[11.3623919,47.4465992],[11.3623772,47.4466331],[11.3623949,47.446655],[11.3623923,47.44668],[11.3623659,47.4467114],[11.3622882,47.4467682],[11.3622896,47.4467763],[11.3622785,47.4468033],[11.3622543,47.4468212],[11.3621051,47.4468984],[11.3619122,47.4469715],[11.3617745,47.4470125],[11.3615016,47.4470648],[11.3614707,47.4471304],[11.3612603,47.44717],[11.3611999,47.4471703],[11.3611258,47.4472145],[11.3610816,47.4472274],[11.3610426,47.4472348],[11.3609852,47.4472407],[11.3609359,47.4472558],[11.3608572,47.4472886],[11.3608175,47.4473198],[11.3607924,47.4473581],[11.3607639,47.447401],[11.3607286,47.4474481],[11.3607176,47.4474764],[11.3606951,47.4474954],[11.3606188,47.4475055],[11.3605291,47.4475188],[11.3604805,47.4475123],[11.3604215,47.4475136],[11.3603573,47.4475217],[11.3602923,47.447549],[11.3602335,47.4475969],[11.3601752,47.447629],[11.3600988,47.4476916],[11.3599956,47.4477558],[11.3598706,47.447813],[11.3597957,47.4478333],[11.3597071,47.4478614],[11.3596386,47.4478933],[11.3596028,47.4479109],[11.3595723,47.4479139],[11.3595202,47.4479118],[11.3594897,47.447917],[11.3594199,47.4479386],[11.3590388,47.448004],[11.3589961,47.4480215],[11.3589718,47.4480416],[11.3589331,47.4480854],[11.3589065,47.4481247],[11.3588703,47.4481469],[11.3587582,47.4481746],[11.3586483,47.448191],[11.3585831,47.4482229],[11.3584646,47.4482904],[11.3583564,47.448349],[11.3583438,47.4483726],[11.3583277,47.4483997],[11.358252,47.4484452],[11.3581884,47.4484782],[11.3580848,47.448505],[11.3580785,47.4485436],[11.3579508,47.4485813],[11.35792,47.4485979],[11.3578629,47.4486391],[11.357717,47.4486684],[11.357688,47.4486806],[11.3576603,47.4487028],[11.3576094,47.4487156],[11.3575057,47.4487412],[11.3574294,47.4487571],[11.3573421,47.4487465],[11.3572496,47.4487483],[11.3571677,47.4487287],[11.3571086,47.4486913],[11.3570621,47.4487201],[11.3570009,47.4487316],[11.3569149,47.4487381],[11.3568147,47.4487148],[11.3567531,47.4486956],[11.3567112,47.4486903],[11.3566783,47.4486715],[11.3566388,47.4486435],[11.3565558,47.4486137],[11.356489,47.4485921],[11.3563955,47.4485722],[11.3563238,47.4485528],[11.3562409,47.448515],[11.3561898,47.4484892],[11.3561497,47.4484827],[11.3560939,47.4484875],[11.3560277,47.4485011],[11.3560045,47.4484951],[11.3559864,47.4484778],[11.3559824,47.4484493],[11.3559354,47.4484428],[11.3558515,47.4484368],[11.3557359,47.4484257],[11.3556736,47.4484235],[11.3556162,47.4484271],[11.3554115,47.4483588],[11.355332,47.4483256],[11.3552991,47.4483022],[11.3552488,47.4482478],[11.3551985,47.4481992],[11.3551467,47.4481813],[11.3549849,47.4481432],[11.3548846,47.4481245],[11.3547078,47.4480782],[11.3545647,47.4480337],[11.354477,47.4480345],[11.3543998,47.4480287],[11.3543717,47.4480144],[11.3543161,47.4480147],[11.3540046,47.4480641],[11.35394,47.4480767],[11.353785,47.4480355],[11.3537622,47.4479701],[11.3536883,47.4479666],[11.3535458,47.4479483],[11.3534399,47.4479397],[11.3533073,47.4479317],[11.3531766,47.4479113],[11.353111,47.4479124],[11.3530751,47.4479256],[11.3530219,47.4479554],[11.3529788,47.4479865],[11.3529188,47.4480083],[11.3528229,47.4480124],[11.3527745,47.4479991],[11.3527093,47.4479855],[11.3526637,47.4479869],[11.3525815,47.447981],[11.3525292,47.4479858],[11.3524667,47.4479927],[11.3523895,47.4479857],[11.3522887,47.4479761],[11.3522331,47.4479774],[11.3521024,47.4480094],[11.3520352,47.4480083],[11.35196,47.447991],[11.3519151,47.4479767],[11.351909,47.4479561],[11.351915,47.4479322],[11.3519093,47.4479014],[11.3518903,47.4478692],[11.3518383,47.4478614],[11.3518004,47.4478392],[11.3517447,47.4478473],[11.3516944,47.4478363],[11.3515883,47.447789],[11.351569,47.4477659],[11.3515719,47.4477329],[11.3516051,47.4476958],[11.3515738,47.4476782],[11.3515302,47.4476753],[11.3514577,47.4476763],[11.3514075,47.4476698],[11.3513692,47.4476577],[11.3512852,47.4476518],[11.3511315,47.4476652],[11.3510149,47.4476768],[11.3509513,47.4476723],[11.350893,47.4476531],[11.350809,47.447646],[11.350757,47.4476429],[11.3506594,47.4476413],[11.3505614,47.4476475],[11.3505206,47.4476605],[11.3504672,47.447695],[11.3503367,47.4476746],[11.3502982,47.4476636],[11.3502704,47.4476414],[11.3502228,47.4476077],[11.350162,47.4475656],[11.350073,47.4475129],[11.3500764,47.4475597],[11.3500671,47.4475846],[11.350025,47.4476328],[11.3499727,47.4476787],[11.34993,47.4476973],[11.3498485,47.4477175],[11.3498175,47.4477352],[11.349792,47.4477405],[11.3497058,47.4477539],[11.3496479,47.4477723],[11.3496115,47.4478013],[11.3495761,47.4478473],[11.3495177,47.4478805],[11.3494498,47.4478975],[11.3493563,47.4479211],[11.3492508,47.4479557],[11.3491547,47.448003],[11.3491354,47.4480266],[11.3491309,47.4480596],[11.3491182,47.4480798],[11.3490839,47.4481009],[11.3490225,47.4481204],[11.3489821,47.4481243],[11.3489213,47.4481289],[11.3488718,47.448144],[11.3488426,47.4481641],[11.3488215,47.448191],[11.3487971,47.4482566],[11.3487829,47.4482781],[11.3486712,47.4483434],[11.3486587,47.4483648],[11.3486564,47.4484251],[11.3486439,47.4484453],[11.3485918,47.4484878],[11.3485657,47.448517],[11.3485516,47.4485316],[11.3485193,47.44854],[11.348517,47.4485583],[11.3484598,47.4486052],[11.348374,47.4486504],[11.3483152,47.4486472],[11.3482906,47.4486751],[11.3482483,47.4486824],[11.3481517,47.4486978],[11.3480956,47.4487139],[11.3480811,47.4487388],[11.3480685,47.4487625],[11.3480448,47.4487666],[11.3479996,47.4487578],[11.3479412,47.4487455],[11.347879,47.4487456],[11.3477683,47.4487323],[11.3476913,47.4487209],[11.3475328,47.4486829],[11.3474821,47.4486843],[11.347453,47.4486997],[11.3474195,47.448738],[11.3472378,47.4487849],[11.3471883,47.4488034],[11.346893,47.448868],[11.3468332,47.4488885],[11.3467908,47.4489038],[11.34671,47.4489012],[11.3466557,47.448914],[11.3465875,47.4489346],[11.3464941,47.4489591],[11.3463937,47.4489916],[11.3463088,47.4490073],[11.3462652,47.4490054],[11.3462044,47.4490078],[11.346171,47.4490026],[11.3461243,47.4490371],[11.3460903,47.4490479],[11.3460041,47.4490579],[11.345972,47.4490631],[11.3459289,47.449085],[11.345883,47.449098],[11.3458121,47.4491047],[11.3457576,47.4491232],[11.3457231,47.4491465],[11.3456517,47.4492126],[11.3455855,47.4492739],[11.3455259,47.449338],[11.3454658,47.4493688],[11.3454146,47.4493907],[11.3452963,47.4494036],[11.3452268,47.4494172],[11.345135,47.4494417],[11.3450615,47.4494735],[11.3450205,47.4494865],[11.3449834,47.4494894],[11.3449393,47.4495],[11.344915,47.4495177],[11.3448677,47.4495694],[11.3448387,47.4495826],[11.3447625,47.4495938],[11.3446385,47.4496224],[11.3444617,47.4496707],[11.344277,47.4497064],[11.3441487,47.4497132],[11.3440187,47.4497235],[11.3438841,47.4497235],[11.3437508,47.4497315],[11.3435925,47.4497322],[11.3434258,47.4497363],[11.3432981,47.4497262],[11.3430812,47.4497203],[11.3429854,47.4497106],[11.3429144,47.4497196],[11.3428764,47.4496997],[11.3428017,47.4496711],[11.3427066,47.449649],[11.3425645,47.449641],[11.3425038,47.4496174],[11.3424553,47.4496123],[11.3423854,47.4496031],[11.3423359,47.4495867],[11.3422976,47.4495591],[11.3422472,47.4495551],[11.3421897,47.4495566],[11.3421157,47.4495781],[11.3420821,47.449577],[11.3419928,47.4495763],[11.3418713,47.4495813],[11.3418569,47.4495922],[11.3418405,47.4496089],[11.3417909,47.4496426],[11.3417387,47.4496671],[11.3416618,47.4496804],[11.341522,47.449702],[11.3413986,47.449708],[11.3413639,47.449699],[11.3413497,47.4497088],[11.3412863,47.4496998],[11.3412618,47.449691],[11.3412239,47.4496544],[11.3411925,47.4496466],[11.3411581,47.4496568],[11.3410987,47.4496615],[11.3409955,47.4496433],[11.3408747,47.4496359],[11.3407865,47.4496467],[11.3407348,47.4496609],[11.3407047,47.4496815],[11.3406704,47.4496884],[11.3406107,47.4496761],[11.3405235,47.449672],[11.3404558,47.4496743],[11.3404277,47.4496665],[11.3404094,47.4496397],[11.3403775,47.449617],[11.3403599,47.4496038],[11.3403386,47.4495952],[11.3403012,47.4495756],[11.340277,47.4495622],[11.3402479,47.4495671],[11.3402175,47.4495683],[11.3401566,47.4495719],[11.3401271,47.4495823],[11.340081,47.449615],[11.3400343,47.4496534],[11.3399896,47.4496656],[11.3399248,47.449676],[11.339893,47.4496978],[11.3398651,47.4497093],[11.3398217,47.4497044],[11.3397826,47.4496861],[11.3397588,47.4496898],[11.3397074,47.4497234],[11.3396605,47.4497208],[11.3396125,47.4497533],[11.3395539,47.449773],[11.339511,47.4497808],[11.3394865,47.4497959],[11.3394472,47.4498493],[11.3394088,47.4498663],[11.3393679,47.4498741],[11.3391854,47.4498565],[11.3391348,47.4498583],[11.339066,47.4498754],[11.3390029,47.4498892],[11.3389487,47.4498908],[11.3388343,47.4498904],[11.3387871,47.4498911],[11.338742,47.4499068],[11.3386838,47.4499196],[11.3386129,47.4499229],[11.3385586,47.4499051],[11.3385353,47.4498758],[11.3385001,47.4498507],[11.3384524,47.4498343],[11.3383811,47.4498205],[11.3383632,47.4497879],[11.3383494,47.4497681],[11.3383215,47.449758],[11.3382324,47.449755],[11.3381621,47.4497493],[11.3381229,47.4497309],[11.3380795,47.4496803],[11.338036,47.4496287],[11.3379956,47.4496056],[11.3378789,47.4495413],[11.337825,47.4495189],[11.3377669,47.4494599],[11.3377343,47.4494452],[11.3376804,47.4494445],[11.3376238,47.4494347],[11.3375862,47.4494197],[11.3375043,47.4493884],[11.3374599,47.4493722],[11.3373984,47.4493381],[11.337358,47.4493129],[11.3372509,47.4492818],[11.337133,47.4491867],[11.337079,47.4491643],[11.3370014,47.4491195],[11.3369648,47.4491366],[11.3369281,47.4491308],[11.3369011,47.4491094],[11.3368568,47.449093],[11.3367207,47.4490644],[11.3366934,47.4490464],[11.3366536,47.4490372],[11.3366156,47.4490267],[11.3365691,47.4489932],[11.3365053,47.4489443],[11.3364493,47.4489025],[11.3363935,47.4488607],[11.3363447,47.4488135],[11.3363191,47.4487487],[11.336293,47.4487137],[11.3362372,47.4486912],[11.336203,47.4486764],[11.3361806,47.4486608],[11.3361404,47.4486321],[11.3361021,47.4486286],[11.3360764,47.4484257],[11.3360874,47.4483885],[11.3361181,47.4483599],[11.3361175,47.4483234],[11.3360823,47.448297],[11.33601,47.4482718],[11.3359857,47.4482356],[11.3359483,47.4481933],[11.335876,47.448168],[11.3358158,47.4481615],[11.3357749,47.4481464],[11.3357269,47.4481083],[11.3356999,47.4480868],[11.3356394,47.4480631],[11.3355593,47.4480046],[11.3355152,47.4479632],[11.3354718,47.4479332],[11.3354006,47.4478932],[11.3353536,47.4478677],[11.3353353,47.4478419],[11.3353169,47.4477934],[11.3352775,47.44771],[11.3352488,47.4476622],[11.3352066,47.4476197],[11.3352015,47.4475967],[11.3352023,47.4475397],[11.3351797,47.4475024],[11.3351495,47.4474776],[11.3350641,47.4474473],[11.3349596,47.4474027],[11.3349174,47.4473796],[11.3348812,47.447343],[11.3348415,47.4473121],[11.334822,47.4473011],[11.3347694,47.4473051],[11.3347066,47.4473133],[11.3346586,47.447323],[11.3345925,47.447306],[11.3345045,47.4473134],[11.3343937,47.4472127],[11.3343293,47.4471478],[11.3342726,47.4470946],[11.3341942,47.4470827],[11.3341633,47.4470681],[11.3341296,47.4470452],[11.3340897,47.4470131],[11.3340937,47.4469356],[11.3341068,47.446895],[11.3340859,47.4468577],[11.3340478,47.4468029],[11.3340076,47.4467548],[11.333955,47.4467119],[11.3339538,47.4466366],[11.3339464,47.4465759],[11.33392,47.4465226],[11.3338628,47.4464283],[11.3338233,47.4463698],[11.3337686,47.4463099],[11.3337164,47.4462636],[11.3336396,47.4462292],[11.3336003,47.4462141],[11.3335819,47.4461907],[11.3335516,47.4461657],[11.3334506,47.4461428],[11.3334166,47.4461224],[11.3333896,47.4460998],[11.3333534,47.4460883],[11.333288,47.446085],[11.3332538,47.4460678],[11.3332435,47.446047],[11.3332243,47.4460109],[11.3331908,47.4459836],[11.3330064,47.4458566],[11.3329748,47.4456649],[11.332928,47.4456383],[11.332897,47.4455768],[11.3328787,47.4455283],[11.3328629,47.4454912],[11.3328199,47.4454316],[11.3327674,47.4453922],[11.3327118,47.4453208],[11.3326932,47.4452995],[11.3326684,47.4452908],[11.3326187,47.4452811],[11.3325805,47.4452707],[11.3325269,47.4452005],[11.3324924,47.4451868],[11.332452,47.4451626],[11.3323898,47.4450464],[11.3324057,47.444991],[11.3323995,47.4449578],[11.33238,47.444948],[11.3322994,47.4449213],[11.3322442,47.444916],[11.3322003,47.4448941],[11.3321491,47.4448354],[11.3321022,47.4448064],[11.3320492,47.4447932],[11.3320014,47.4447916],[11.3319653,47.4447903],[11.3319015,47.4447871],[11.3318585,47.4447753],[11.3318249,47.4447503],[11.3317973,47.444738],[11.3317179,47.4447398],[11.3316517,47.4447478],[11.331544,47.444767],[11.3314831,47.4447479],[11.3314064,47.4447385],[11.3313873,47.4446991],[11.3313622,47.4446732],[11.3312937,47.4446412],[11.3312651,47.4446175],[11.3312553,47.4445897],[11.3312441,47.4445609],[11.331222,47.4445385],[11.3311944,47.4444565],[11.3311626,47.4444064],[11.331123,47.444348],[11.3310829,47.4442987],[11.3310356,47.4442527],[11.3309991,47.4442],[11.3309671,47.4441305],[11.3309462,47.4440478],[11.3309612,47.4439799],[11.3309948,47.4439114],[11.3310102,47.4438627],[11.3310253,47.4437938],[11.331026,47.4437356],[11.3310206,47.4436966],[11.3310276,47.4436467],[11.331046,47.4435799],[11.3310489,47.443539],[11.3310361,47.4435067],[11.3310232,47.4434753],[11.3309808,47.4434329],[11.3309087,47.4433826],[11.3308756,47.4433747],[11.3308116,47.4433736],[11.3307683,47.4433642],[11.3307519,47.4433374],[11.3307428,47.4432994],[11.3307239,47.4432372],[11.330683,47.443197],[11.3306627,47.4431758],[11.3306568,47.4431174],[11.3306402,47.443045],[11.3306222,47.4430136],[11.3306128,47.4429552],[11.3306067,47.4428785],[11.3306092,47.4428215],[11.3306221,47.4427375],[11.3306583,47.4426566],[11.3306609,47.4425962],[11.3306185,47.4425549],[11.3305683,47.4425269],[11.3304994,47.4425258],[11.3304345,47.4424917],[11.3303817,47.4424523],[11.3303405,47.4424167],[11.3303121,47.4423667],[11.3302974,47.4423159],[11.3303112,47.4422411],[11.330333,47.4421734],[11.330331,47.4421311],[11.3302944,47.4420559],[11.330269,47.4420332],[11.3302245,47.4420204],[11.3301895,47.4420146],[11.3301707,47.4419957],[11.3301894,47.4419678],[11.3301969,47.4419362],[11.3302066,47.4418737],[11.3302147,47.4418318],[11.3302383,47.4418086],[11.3302678,47.4417742],[11.3303129,47.4417324],[11.3303453,47.4417038],[11.3303928,47.4416986],[11.3304162,47.4416789],[11.3304144,47.4416559],[11.3303838,47.4415911],[11.3303638,47.4415664],[11.3303481,47.441526],[11.3303591,47.4414694],[11.3303588,47.4414271],[11.3303487,47.4414028],[11.3303019,47.4413738],[11.3302628,47.4413098],[11.3302421,47.4412931],[11.3302261,47.4412583],[11.3302306,47.4412208],[11.3302633,47.4412117],[11.3303525,47.4412113],[11.3305291,47.4412183],[11.3305786,47.4412086],[11.3306472,47.4411687],[11.3306545,47.441137],[11.3305419,47.4408788],[11.3305404,47.4408547],[11.3305786,47.4408367],[11.3306348,47.4408055],[11.3306657,47.4407745],[11.330682,47.4407375],[11.3307154,47.4406246],[11.3307253,47.4405358],[11.3307147,47.4404945],[11.3306841,47.4404763],[11.3306823,47.4404547],[11.3307033,47.4404439],[11.330722,47.4404194],[11.3307157,47.4403895],[11.3306902,47.4403694],[11.3306262,47.4403009],[11.3306118,47.4402686],[11.3306136,47.4402413],[11.330585,47.4401262],[11.3306162,47.4400897],[11.3306344,47.4400719],[11.3306435,47.4400393],[11.3309162,47.4399958],[11.3310619,47.4399164],[11.3310807,47.4398885],[11.3310932,47.4398329],[11.3311037,47.439782],[11.3311337,47.4397385],[11.3311722,47.4396964],[11.3311881,47.4396399],[11.3311801,47.4395895],[11.3311696,47.4395241],[11.331164,47.4394635],[11.3311606,47.4394166],[11.3311537,47.439349],[11.3311942,47.4392557],[11.3312378,47.439191],[11.3312303,47.4391326],[11.3312437,47.4390851],[11.3312896,47.439033],[11.3312236,47.439016],[11.3311339,47.4389981],[11.3310584,47.4389705],[11.3309964,47.4389422],[11.3309402,47.4389255],[11.3308713,47.4389254],[11.3308243,47.4389227],[11.3307727,47.4389141],[11.3307166,47.4388986],[11.3306439,47.4388779],[11.3305899,47.4388578],[11.3305554,47.4388201],[11.3305577,47.4387427],[11.3305564,47.4387152],[11.3305463,47.4386932],[11.3305186,47.4386774],[11.3304452,47.4386464],[11.330393,47.4386207],[11.3303524,47.4386034],[11.3303336,47.4385823],[11.3303014,47.438539],[11.3302748,47.4385107],[11.3302414,47.4384823],[11.3302048,47.4384547],[11.3301621,47.4384157],[11.330076,47.4383946],[11.3300316,47.4383782],[11.3299895,47.4383575],[11.3299348,47.4383214],[11.3298605,47.4382778],[11.3297971,47.4382472],[11.3297464,47.438202],[11.3297122,47.4381632],[11.3296917,47.4381204],[11.3296715,47.4380969],[11.3296437,47.4380869],[11.3296148,47.4380882],[11.3295084,47.4380926],[11.3293726,47.4380846],[11.3293284,47.4380888],[11.329253,47.438108],[11.3291567,47.4381115],[11.3290545,47.4381035],[11.3289978,47.4380937],[11.3289586,47.4381003],[11.3289161,47.4381057],[11.3288897,47.438097],[11.3288411,47.4380713],[11.3287901,47.4380571],[11.3287479,47.4380568],[11.3286697,47.4380656],[11.3285972,47.4380666],[11.3285406,47.4380555],[11.3284821,47.4380274],[11.3284241,47.438014],[11.328362,47.4379868],[11.3282739,47.4379708],[11.3282171,47.4379632],[11.3281136,47.4379411],[11.3280102,47.4379156],[11.3278924,47.4378648],[11.3277658,47.4377784],[11.3277393,47.4377609],[11.3277089,47.4377639],[11.3276583,47.4377711],[11.3276014,47.4377624],[11.3274989,47.4377654],[11.3273832,47.437758],[11.3273247,47.4377491],[11.3272648,47.4377266],[11.3271748,47.4377036],[11.3270982,47.4376785],[11.3270599,47.4376676],[11.3270356,47.4376365],[11.3269931,47.4376529],[11.3269473,47.4376157],[11.3268904,47.4376081],[11.3268507,47.4375858],[11.3268092,47.437568],[11.326766,47.4375583],[11.3266602,47.4375533],[11.3266152,47.4375412],[11.3265726,47.4375052],[11.3264595,47.4375172],[11.3263991,47.4375198],[11.3263422,47.4375075],[11.3261494,47.4374396],[11.3260701,47.4374487],[11.3260358,47.4374734],[11.3260086,47.4374833],[11.3259244,47.4374888],[11.3259289,47.4375095],[11.3258767,47.4375087],[11.3257944,47.4375064],[11.325642,47.4374904],[11.3253864,47.4374445],[11.3253066,47.4374171],[11.32521,47.4373859],[11.3251652,47.4373648],[11.3251342,47.4373369],[11.3250546,47.4372512],[11.3249342,47.4372825],[11.3248491,47.4373202],[11.3247707,47.4373544],[11.3247046,47.4373729],[11.3245919,47.4373735],[11.3244373,47.4374272],[11.32429,47.4374651],[11.3241275,47.4375027],[11.3239742,47.4375154],[11.3237989,47.4375345],[11.3236916,47.4375753],[11.3235281,47.4375911],[11.3234941,47.4376031],[11.32344,47.4376195],[11.3233337,47.4376282],[11.3232828,47.4376435],[11.3230672,47.4376083],[11.3230383,47.4376227],[11.3229993,47.4376268],[11.3229391,47.4376201],[11.3228284,47.4376106],[11.3226589,47.4376058],[11.3226106,47.4376428],[11.3225651,47.4376479],[11.3224802,47.4376237],[11.3224383,47.4376209],[11.3223858,47.4376257],[11.3223393,47.437616],[11.3222877,47.4375981],[11.322151,47.4375608],[11.3220286,47.437503],[11.3219309,47.4374501],[11.3218843,47.4374403],[11.321852,47.4374501],[11.3218158,47.4374804],[11.3217618,47.4375356],[11.3217124,47.4375634],[11.3216512,47.4375843],[11.3216372,47.4375978],[11.3216331,47.437624],[11.321607,47.4376521],[11.3215714,47.4376653],[11.321514,47.4376748],[11.3214023,47.4377017],[11.3212636,47.4377249],[11.3212488,47.437663],[11.3212248,47.4376226],[11.3211922,47.4375913],[11.3211628,47.4375622],[11.3211502,47.4375382],[11.3211473,47.4375176],[11.3211807,47.4374735],[11.3212229,47.4374146],[11.3212604,47.4373421],[11.3212787,47.4372933],[11.3212849,47.4372053],[11.3212771,47.4371334],[11.3212703,47.4370807],[11.3212975,47.4370171],[11.3213342,47.4369708],[11.3213438,47.4369333],[11.3213348,47.4369001],[11.3213391,47.4368635],[11.3213335,47.4368315],[11.3213093,47.436798],[11.3212967,47.4367726],[11.3213045,47.4367373],[11.3213042,47.4366962],[11.3212765,47.4366638],[11.3212271,47.4366345],[11.3211945,47.4366021],[11.3211641,47.4365537],[11.3211517,47.4365215],[11.3211416,47.4364654],[11.3210956,47.4364292],[11.3210663,47.4363991],[11.3210086,47.4363629],[11.3209097,47.4363032],[11.3208501,47.4362727],[11.3208045,47.4362274],[11.3207612,47.4361651],[11.3207432,47.4361454],[11.3207117,47.4361312],[11.3206467,47.4361109],[11.3206003,47.4360908],[11.3205267,47.4360291],[11.3204674,47.4359907],[11.3203654,47.4359229],[11.3202859,47.4358807],[11.3202234,47.4358374],[11.3201653,47.4358183],[11.3200687,47.4357906],[11.3200289,47.4357718],[11.3200095,47.4357498],[11.319914,47.4356296],[11.3198784,47.4355845],[11.3198471,47.4355647],[11.3198078,47.4355332],[11.3197899,47.4355112],[11.3197625,47.4354732],[11.3197601,47.4354423],[11.3197792,47.4354243],[11.319807,47.4353962],[11.3198244,47.4353769],[11.3198419,47.4353509],[11.3198562,47.4353283],[11.3198555,47.4352986],[11.3198225,47.4352181],[11.3197994,47.4351539],[11.3197783,47.4351296],[11.319747,47.4351086],[11.3197327,47.4350809],[11.3197146,47.4350189],[11.319695,47.4349502],[11.3196957,47.4348702],[11.3197025,47.4348132],[11.3196883,47.4347833],[11.3196606,47.4347554],[11.3196396,47.4347278],[11.3196323,47.4346945],[11.3196132,47.4346588],[11.319576,47.4346171],[11.3195521,47.4345723],[11.3195428,47.4345481],[11.3194245,47.4344653],[11.319352,47.434414],[11.3192912,47.4343697],[11.3192051,47.4342725],[11.3191825,47.4342447],[11.3191543,47.4342363],[11.3191288,47.4342417],[11.3190763,47.4342569],[11.3190127,47.434248],[11.3189443,47.4342343],[11.3189063,47.4342122],[11.3188869,47.4341867],[11.3188818,47.4341352],[11.3188759,47.434054],[11.3188416,47.4340227],[11.3188405,47.4340055],[11.3188464,47.4339771],[11.3188168,47.4339526],[11.31879,47.4339008],[11.3187614,47.4338479],[11.3187504,47.4338214],[11.3187277,47.433796],[11.3187021,47.4337545],[11.3186509,47.4336738],[11.3185971,47.4336193],[11.3185195,47.4335748],[11.3184375,47.4335119],[11.318415,47.4334796],[11.3184142,47.4334476],[11.3184205,47.4334065],[11.318408,47.4333813],[11.3183852,47.4333523],[11.3183515,47.4333027],[11.3183176,47.433204],[11.3183022,47.4331638],[11.3182708,47.433144],[11.3182357,47.4331344],[11.3182092,47.4331247],[11.318178,47.4331038],[11.3181481,47.4330975],[11.3181127,47.4330959],[11.3181082,47.4330753],[11.3181387,47.4330118],[11.3181361,47.4329923],[11.3181116,47.4329702],[11.318079,47.4329355],[11.3180599,47.4329021],[11.3180192,47.4328581],[11.3179438,47.4327964],[11.3179197,47.4327653],[11.317882,47.432735],[11.3178375,47.432707],[11.3178114,47.4326791],[11.3177943,47.4326377],[11.3177753,47.4325975],[11.317741,47.4325662],[11.3177121,47.4325212],[11.3177038,47.4324673],[11.3176689,47.4324543],[11.3176392,47.4324368],[11.3176166,47.4324056],[11.3175915,47.4324041],[11.3175372,47.4324238],[11.3174527,47.4324386],[11.3173807,47.4324273],[11.3173235,47.4324321],[11.3172893,47.4323939],[11.3172618,47.4323649],[11.3172384,47.4323555],[11.3172228,47.432369],[11.317196,47.4323731],[11.3171542,47.4323634],[11.3170996,47.4323352],[11.3170137,47.4322894],[11.3169457,47.432261],[11.3168653,47.432253],[11.3167914,47.432253],[11.3167346,47.4322431],[11.3166648,47.4322157],[11.3166072,47.4321772],[11.3165311,47.4321395],[11.316478,47.4321148],[11.3163699,47.4320801],[11.3162506,47.432027],[11.3161713,47.4319823],[11.3161124,47.4319358],[11.316052,47.4318721],[11.3160208,47.4318533],[11.3159973,47.4318518],[11.3158698,47.4318466],[11.3158044,47.4318433],[11.3157545,47.4318278],[11.3156818,47.4317833],[11.315632,47.4317677],[11.3156069,47.4317639],[11.3155333,47.4317526],[11.3154919,47.4317302],[11.3154084,47.431665],[11.3153684,47.4316496],[11.3153207,47.4316192],[11.315177,47.4315394],[11.3150841,47.431498],[11.3150041,47.4314775],[11.314946,47.4314607],[11.3148851,47.4314175],[11.3148387,47.4313963],[11.3147674,47.4313644],[11.3147049,47.4313224],[11.3146726,47.4312807],[11.3146508,47.4312256],[11.314635,47.4311865],[11.314604,47.4311631],[11.3145542,47.4311476],[11.3144923,47.4311353],[11.314441,47.4311071],[11.3144081,47.4310861],[11.3143762,47.4310308],[11.3143555,47.4309916],[11.3143195,47.4309649],[11.3142889,47.4309256],[11.3142425,47.4308998],[11.3141909,47.4308853],[11.3141319,47.4308925],[11.3140792,47.4309111],[11.3140458,47.430906],[11.3140058,47.4308918],[11.3139476,47.4308772],[11.3139258,47.4308723],[11.3137262,47.4308625],[11.3136277,47.4308428],[11.3134745,47.4307937],[11.3134034,47.4307617],[11.3132906,47.4307145],[11.3132361,47.4306874],[11.3131846,47.4306683],[11.313054,47.4306505],[11.3128649,47.4306272],[11.3127997,47.4306159],[11.3127168,47.4305792],[11.3126618,47.4305624],[11.3126152,47.4305526],[11.3125329,47.4305469],[11.3124445,47.4305251],[11.3124241,47.430535],[11.3123515,47.4305466],[11.3122656,47.4305521],[11.3121397,47.430548],[11.3120259,47.4305349],[11.3118769,47.4305156],[11.3117767,47.430497],[11.3116437,47.4304527],[11.3115037,47.4304153],[11.311425,47.4304072],[11.3113599,47.4303903],[11.3113253,47.4303715],[11.3112879,47.4303298],[11.3111684,47.4302287],[11.3110959,47.4301819],[11.3110363,47.4301537],[11.3109644,47.430148],[11.3109084,47.4301632],[11.3108133,47.4301938],[11.3106723,47.4302432],[11.3105243,47.4302991],[11.3104269,47.4303538],[11.3103074,47.4304068],[11.3102262,47.4304319],[11.3101454,47.4304341],[11.3100838,47.4304173],[11.3099386,47.430382],[11.3098062,47.4303217],[11.3096991,47.430303],[11.3096152,47.430303],[11.3095106,47.4303128],[11.3093566,47.4303495],[11.3092018,47.4303597],[11.3091393,47.4303691],[11.3090924,47.4303639],[11.3090574,47.4303496],[11.3088823,47.4302568],[11.3088488,47.430254],[11.3087398,47.4302479],[11.3086308,47.4302394],[11.3085596,47.4302612],[11.3085025,47.4302603],[11.3084691,47.4302518],[11.3084254,47.43025],[11.308385,47.4302586],[11.3083173,47.4302679],[11.3082015,47.4302662],[11.3081682,47.4302543],[11.308147,47.4302368],[11.3081144,47.4302055],[11.308066,47.4301923],[11.3080094,47.4301799],[11.307983,47.4301636],[11.3079431,47.4301447],[11.3078879,47.4301404],[11.3077803,47.4301412],[11.3076608,47.4301485],[11.3075878,47.4301703],[11.30755,47.4301995],[11.307408,47.43017],[11.307362,47.4301408],[11.3073102,47.4301297],[11.3072394,47.4301367],[11.3071822,47.4301404],[11.3071276,47.4301692],[11.3068933,47.4301362],[11.3067295,47.4301087],[11.3066404,47.4301073],[11.3065661,47.430121],[11.3065292,47.4301228],[11.3065022,47.4301213],[11.3064769,47.4301266],[11.306439,47.4301523],[11.3064034,47.4301655],[11.3062805,47.4301763],[11.3062319,47.4301721],[11.3061786,47.4301519],[11.3060558,47.4301044],[11.3059925,47.4300898],[11.3059555,47.4300892],[11.3059098,47.4301045],[11.3058852,47.4301338],[11.3058481,47.4301402],[11.3058044,47.4301338],[11.3057384,47.4301523],[11.305682,47.4301823],[11.3056311,47.4301998],[11.3055318,47.4301994],[11.3054106,47.430208],[11.3053346,47.4302193],[11.3052766,47.4302494],[11.3051981,47.4302905],[11.3050955,47.4303461],[11.3049847,47.4303971],[11.3048776,47.43044],[11.3048288,47.4304872],[11.3047727,47.4305104],[11.3046812,47.4305354],[11.3046003,47.4305444],[11.3045795,47.4305647],[11.3045554,47.4305792],[11.3045167,47.4305843],[11.3044683,47.4305721],[11.3044087,47.4305438],[11.3043553,47.4305854],[11.3042925,47.430605],[11.304222,47.4306051],[11.3041227,47.4306082],[11.3040971,47.4306192],[11.3040866,47.4306339],[11.3040602,47.4306712],[11.3040094,47.4306876],[11.3039369,47.4306945],[11.303891,47.430711],[11.3038231,47.4307329],[11.3037356,47.4307361],[11.3036849,47.4307457],[11.3035361,47.4307206],[11.3033791,47.4307446],[11.3033148,47.4307585],[11.3031516,47.4308166],[11.3030368,47.4308627],[11.303036,47.4308629],[11.3029479,47.430881],[11.3028194,47.4308552],[11.3023124,47.4307369],[11.3021952,47.4307226],[11.3018844,47.4307151],[11.3012641,47.4305855],[11.3010363,47.4305466],[11.3009277,47.4305279],[11.3008351,47.4305311],[11.3007675,47.4305461],[11.3007011,47.4305714],[11.3006189,47.4306182],[11.3005399,47.4306763],[11.300471,47.4307279],[11.3004305,47.4307867],[11.3002751,47.4308026],[11.300186,47.4308117],[11.2999893,47.4308122],[11.2996213,47.4307657],[11.2994709,47.4307383],[11.2994252,47.430693],[11.2993425,47.4306473],[11.2992443,47.4306241],[11.2991979,47.4306028],[11.299167,47.4305739],[11.2991264,47.430523],[11.2990748,47.4305051],[11.29912,47.4304646],[11.2992109,47.4304054],[11.2991715,47.430374],[11.2991556,47.4303417],[11.2991722,47.4302439],[11.299166,47.4302266],[11.2991252,47.4301905],[11.2991007,47.430165],[11.2990753,47.4301224],[11.2990308,47.4300943],[11.2989677,47.4300706],[11.2989198,47.4300401],[11.2988606,47.4300016],[11.2988829,47.4299894],[11.2988043,47.4298694],[11.2987784,47.429788],[11.2987672,47.4297124],[11.298742,47.4296618],[11.2987081,47.4296179],[11.2987038,47.4295927],[11.2986261,47.4295526],[11.2985793,47.4295474],[11.2985528,47.4295298],[11.2984557,47.4294655],[11.2983475,47.429384],[11.2983198,47.4293562],[11.2982784,47.4293373],[11.2982507,47.429313],[11.2982297,47.4292806],[11.2981759,47.4291736],[11.2981008,47.4290559],[11.2980296,47.4289704],[11.297992,47.4289355],[11.2979778,47.4289033],[11.2979787,47.4288771],[11.2979939,47.4288236],[11.2979782,47.4287903],[11.2979553,47.4287694],[11.297897,47.4287503],[11.2978592,47.4287223],[11.2978217,47.4286909],[11.2977597,47.4286271],[11.2977262,47.4285718],[11.2977262,47.4285215],[11.2977216,47.4285043],[11.2977,47.4284972],[11.2974997,47.4284543],[11.2973829,47.4284297],[11.2973363,47.4284175],[11.2973081,47.4284057],[11.2972812,47.428403],[11.2971886,47.4284119],[11.2971485,47.4284033],[11.2971136,47.4283903],[11.2970393,47.4283526],[11.2969358,47.4282779],[11.2968332,47.4282228],[11.2967598,47.428215],[11.29674,47.4281563],[11.2967221,47.42814],[11.2966838,47.428128],[11.2965873,47.4280932],[11.2964745,47.428048],[11.2963844,47.4280259],[11.2961458,47.427966],[11.2959255,47.4279109],[11.2957005,47.4278478],[11.2955802,47.4278229],[11.295534,47.4277925],[11.2954368,47.4277338],[11.2953752,47.4277145],[11.2952205,47.4277085],[11.2950177,47.4276811],[11.2948727,47.4276877],[11.2947895,47.4277058],[11.294731,47.4277401],[11.2946858,47.4277817],[11.2946428,47.4278083],[11.2945953,47.4278143],[11.2944756,47.4278203],[11.2943366,47.4278009],[11.2942196,47.4277761],[11.2940898,47.4277316],[11.2939977,47.4277222],[11.2939133,47.4277241],[11.2938272,47.4277352],[11.2937668,47.4277252],[11.2936881,47.4277113],[11.2936493,47.4277151],[11.293605,47.4277292],[11.293498,47.4277583],[11.2934032,47.4277715],[11.2932795,47.4278869],[11.2932118,47.4278961],[11.2931657,47.4279125],[11.2930443,47.4279651],[11.2929546,47.4279282],[11.2928858,47.4279248],[11.2928494,47.4279049],[11.292793,47.4278822],[11.2927211,47.4278695],[11.2926372,47.427859],[11.2925855,47.4278489],[11.2925294,47.4278138],[11.2924522,47.4277634],[11.2923476,47.4277217],[11.2922478,47.4276812],[11.2921593,47.427666],[11.2921112,47.4276458],[11.2920666,47.4276211],[11.2920012,47.4275675],[11.291929,47.4275172],[11.2919017,47.427479],[11.2918695,47.4274363],[11.2918348,47.4274186],[11.291793,47.4274099],[11.2917498,47.4273955],[11.2917352,47.4273815],[11.2917076,47.4273537],[11.2916759,47.4273439],[11.2916188,47.4273374],[11.2915121,47.4273082],[11.2914238,47.4272837],[11.2913404,47.4272618],[11.2912775,47.4272288],[11.291225,47.4271914],[11.291179,47.427161],[11.2911273,47.4271464],[11.2911184,47.4271131],[11.2910304,47.4270797],[11.2910301,47.4269941],[11.2910431,47.4269132],[11.2910744,47.4267917],[11.2910727,47.4267472],[11.2910517,47.426724],[11.2910294,47.4266883],[11.2910108,47.42664],[11.2909816,47.4265641],[11.2909274,47.426481],[11.2909056,47.426427],[11.2909038,47.4263882],[11.2909122,47.4263404],[11.2909001,47.4263002],[11.2908965,47.4262647],[11.2909168,47.426216],[11.2909407,47.426156],[11.2909801,47.4260904],[11.2910033,47.4260554],[11.2910009,47.426028],[11.2909803,47.4259957],[11.2909376,47.4259619],[11.2908892,47.4259017],[11.2908629,47.4258373],[11.2908585,47.4257745],[11.2908545,47.4257471],[11.2908931,47.4256986],[11.2909095,47.4256669],[11.2909062,47.4256189],[11.2909256,47.4255484],[11.2909236,47.4255097],[11.2909538,47.425469],[11.2909647,47.4254418],[11.2909925,47.4254218],[11.2910222,47.4253447],[11.2910414,47.4252777],[11.2910471,47.4252161],[11.2910704,47.4251742],[11.2910854,47.4251311],[11.2910829,47.4251048],[11.2910655,47.4250782],[11.2910416,47.4250379],[11.2910247,47.4249965],[11.2910223,47.4249658],[11.2910053,47.424921],[11.2910022,47.4248695],[11.2910216,47.4248001],[11.2910373,47.4247366],[11.2910401,47.4247046],[11.291026,47.4246735],[11.2910129,47.4246209],[11.2910225,47.4245857],[11.2910199,47.4245171],[11.2909924,47.4244402],[11.2909707,47.4243906],[11.2909315,47.4243535],[11.2909004,47.4243324],[11.2908895,47.4243071],[11.2909046,47.4242595],[11.2909112,47.4242162],[11.2909005,47.4241887],[11.2908789,47.4241347],[11.2908617,47.4240499],[11.2908515,47.4239606],[11.2908311,47.4239215],[11.2908201,47.4238996],[11.2908215,47.423854],[11.2908198,47.4238118],[11.2907983,47.423752],[11.2908045,47.4236734],[11.2908053,47.4236083],[11.2907806,47.4235486],[11.2906917,47.423442],[11.2905841,47.4232941],[11.2905545,47.4232308],[11.2905468,47.4231646],[11.2904488,47.4230762],[11.2903782,47.4229847],[11.2904152,47.4228884],[11.2904453,47.4228489],[11.2904909,47.4228018],[11.2904966,47.4227836],[11.2904814,47.4227354],[11.2904759,47.4227034],[11.2904754,47.4226679],[11.2904647,47.4226403],[11.2904188,47.4226065],[11.2903929,47.4225775],[11.290379,47.4225442],[11.2903471,47.4224432],[11.290312,47.4223433],[11.2902684,47.4222889],[11.2902542,47.4222647],[11.2902618,47.4222443],[11.2902626,47.4222193],[11.2902351,47.4221902],[11.2902425,47.4221218],[11.2903423,47.4220642],[11.2903901,47.4220433],[11.2904834,47.4220266],[11.2905074,47.4220122],[11.2905471,47.4219878],[11.2906189,47.4219593],[11.2907138,47.4219403],[11.2908102,47.4219282],[11.2908408,47.4219185],[11.2908763,47.4219145],[11.2909164,47.4219198],[11.290951,47.4219443],[11.2909922,47.4219724],[11.291036,47.4219709],[11.2910966,47.4219662],[11.2911665,47.4219422],[11.2911451,47.4218848],[11.2911087,47.4218192],[11.2911072,47.4217689],[11.2911181,47.4217429],[11.2911565,47.4217081],[11.2911574,47.4216853],[11.2911837,47.4216584],[11.2912384,47.421633],[11.2912793,47.4216165],[11.291307,47.4215954],[11.291371,47.4215919],[11.2913926,47.4215546],[11.2914619,47.4215032],[11.2915387,47.4214692],[11.2916002,47.4214519],[11.2916443,47.4214424],[11.2916701,47.4214245],[11.2916693,47.4214005],[11.2916791,47.4213631],[11.2917466,47.4213562],[11.2917799,47.4213215],[11.2918575,47.4213159],[11.2919271,47.4212988],[11.2919703,47.4212675],[11.2920215,47.4212512],[11.2920622,47.4211047],[11.2920846,47.4210389],[11.2921199,47.4209961],[11.2921705,47.4209468],[11.2922059,47.4208983],[11.2922175,47.4208562],[11.2922138,47.4208173],[11.2922325,47.4207674],[11.2922412,47.4207139],[11.2923094,47.4205964],[11.2923677,47.4205175],[11.2924409,47.4204035],[11.2924967,47.4203496],[11.2925406,47.4203001],[11.2926192,47.4202204],[11.2926581,47.4201685],[11.292744,47.420074],[11.2927894,47.420027],[11.2928369,47.4200175],[11.2929296,47.4199209],[11.2929777,47.4198498],[11.2929859,47.4198076],[11.2929989,47.4197736],[11.2930304,47.4197411],[11.2930756,47.4197042],[11.293106,47.4196511],[11.2931687,47.4195494],[11.2931891,47.419495],[11.2931718,47.4194627],[11.2931689,47.4194454],[11.2931766,47.4194229],[11.2931877,47.4193921],[11.2931957,47.4193546],[11.2932013,47.4192966],[11.2932051,47.4192349],[11.2932394,47.4191693],[11.2932679,47.4191276],[11.2932623,47.4190977],[11.2932427,47.4190781],[11.2932237,47.4190492],[11.2932132,47.4190091],[11.2931943,47.4189745],[11.2931595,47.418958],[11.2931102,47.4189263],[11.2930137,47.4188916],[11.2929708,47.4188681],[11.2929372,47.4188675],[11.2929189,47.4188603],[11.2928844,47.4188358],[11.2928362,47.4188235],[11.2927686,47.4187812],[11.2927011,47.4187368],[11.2926162,47.4186646],[11.2926115,47.4186547],[11.2925943,47.4186185],[11.2925876,47.4185705],[11.2925936,47.4184964],[11.2925653,47.41844],[11.2925262,47.4184062],[11.2924832,47.4183838],[11.2924084,47.4183575],[11.2923214,47.4183422],[11.2922888,47.4183155],[11.2922698,47.418281],[11.2922662,47.4182375],[11.2922932,47.4181912],[11.2923452,47.4181509],[11.29238,47.4181173],[11.2924036,47.4180732],[11.292427,47.4180291],[11.2924566,47.4180022],[11.2924748,47.4179636],[11.2924801,47.4179113],[11.2924829,47.4178783],[11.2925143,47.4178456],[11.2925695,47.4178101],[11.2926157,47.4177914],[11.2926369,47.4177621],[11.2926394,47.4177347],[11.2926293,47.4176945],[11.29262,47.4176226],[11.2926364,47.4175429],[11.2926663,47.4175069],[11.292704,47.4174882],[11.292732,47.4174623],[11.2927433,47.4174249],[11.2927663,47.4173933],[11.2927843,47.4173639],[11.2927929,47.4173116],[11.2928093,47.4172765],[11.2928422,47.4172508],[11.2928532,47.4172258],[11.2928334,47.4171674],[11.2928349,47.4171228],[11.2928534,47.4170775],[11.2929288,47.4169498],[11.2929661,47.4168945],[11.2929775,47.4168582],[11.2929746,47.4167998],[11.2929883,47.4167465],[11.2930105,47.4166441],[11.2930465,47.4164872],[11.2930631,47.416443],[11.2930576,47.416412],[11.2930353,47.4163751],[11.2930302,47.4163317],[11.2930495,47.4163069],[11.2930502,47.4162886],[11.293049,47.4162738],[11.2930511,47.4162613],[11.2930604,47.4162397],[11.2930903,47.4162014],[11.2930871,47.4161524],[11.2930753,47.4160117],[11.2930554,47.4159075],[11.2930235,47.4158602],[11.2930146,47.4158235],[11.2929776,47.4157795],[11.2928727,47.4157001],[11.2928552,47.4156747],[11.2928902,47.4155874],[11.2928414,47.4154975],[11.2928118,47.4154708],[11.2927773,47.4154531],[11.2927273,47.4154363],[11.2926976,47.4154175],[11.2926639,47.4153758],[11.2926338,47.4153206],[11.2926163,47.4152963],[11.2925688,47.4152567],[11.2924603,47.4151852],[11.2922889,47.4150819],[11.2922495,47.4150527],[11.2921482,47.414922],[11.2920457,47.414821],[11.2920275,47.4147704],[11.2920187,47.4147303],[11.2919898,47.4146934],[11.2919157,47.4146453],[11.291847,47.4145905],[11.2918195,47.4145604],[11.2917665,47.4145378],[11.2917048,47.4145185],[11.2916837,47.414501],[11.2916578,47.4144264],[11.2916256,47.4143813],[11.2915945,47.4143568],[11.2915553,47.4143253],[11.2915278,47.4142918],[11.2915047,47.4142811],[11.2914599,47.4142632],[11.2914408,47.4142344],[11.2913959,47.4141686],[11.2913839,47.4141308],[11.2913836,47.4140942],[11.2913643,47.4140665],[11.2913381,47.4140466],[11.291302,47.4140186],[11.2912718,47.4139713],[11.2912341,47.4138953],[11.2912065,47.4138652],[11.291157,47.4138392],[11.2911221,47.4137804],[11.2911074,47.4137219],[11.2911046,47.4136581],[11.2911231,47.4136138],[11.2911105,47.4135873],[11.2910967,47.4135494],[11.2911067,47.4135074],[11.2910994,47.4134752],[11.2910702,47.4134439],[11.2912125,47.4133768],[11.2912123,47.4133322],[11.2912323,47.4132915],[11.2912818,47.4132228],[11.2913108,47.4131706],[11.2913108,47.4131238],[11.2913043,47.4130667],[11.2913001,47.412997],[11.2912596,47.4129073],[11.2912266,47.4128382],[11.2911623,47.412755],[11.2911244,47.4126905],[11.2911266,47.4126254],[11.2911152,47.4125704],[11.2910901,47.4125197],[11.291007,47.4124419],[11.29085,47.4123183],[11.2907882,47.4122545],[11.2907611,47.4122106],[11.2907404,47.4120824],[11.2907331,47.4120058],[11.2907056,47.4119277],[11.2906571,47.4118755],[11.2906151,47.4118246],[11.2905848,47.4117784],[11.2905391,47.4117354],[11.2904653,47.4116863],[11.2904207,47.4116604],[11.2903192,47.4115822],[11.2902199,47.4114817],[11.2902043,47.4110877],[11.2901938,47.4108209],[11.2901535,47.4097388],[11.2901186,47.4088456],[11.2901152,47.4087626],[11.2900645,47.4074558],[11.290057,47.4072642],[11.2899333,47.4072251],[11.2898734,47.4072115],[11.2898058,47.407176],[11.289723,47.407186],[11.2896222,47.4071386],[11.2895146,47.4070933],[11.2894537,47.4070567],[11.2893283,47.4070352],[11.289224,47.4069969],[11.28912,47.4069414],[11.2890543,47.4069002],[11.28874,47.4068069],[11.2886982,47.4067593],[11.288493,47.406717],[11.2883465,47.4066743],[11.2882158,47.4066196],[11.2881846,47.4065081],[11.2881785,47.4064441],[11.288162,47.4063923],[11.2881498,47.4063613],[11.2880777,47.4063098],[11.2880018,47.4062239],[11.2879391,47.4061486],[11.2879043,47.4060885],[11.287886,47.406038],[11.2878371,47.4059959],[11.2877949,47.4059575],[11.287771,47.4059217],[11.2877047,47.4058943],[11.2876334,47.4058667],[11.2876009,47.4058364],[11.2874955,47.4057774],[11.2874262,47.4057421],[11.2873892,47.4056957],[11.2873299,47.4056683],[11.2872676,47.4056113],[11.2872436,47.4055491],[11.2872542,47.4054888],[11.2872644,47.4054398],[11.2872891,47.4053636],[11.2871744,47.4052382],[11.2870701,47.4051496],[11.2870265,47.4051009],[11.2869889,47.4050762],[11.2869242,47.4050053],[11.286856,47.4049437],[11.2867686,47.4048941],[11.2866713,47.4047553],[11.286645,47.4047388],[11.2866395,47.4046599],[11.286406,47.4045187],[11.2862673,47.4044089],[11.2862384,47.404373],[11.2861751,47.4043536],[11.2860945,47.4042643],[11.2860104,47.4041737],[11.2859337,47.4040695],[11.2858817,47.4039737],[11.2858092,47.4038914],[11.2857225,47.4037802],[11.2855995,47.4036523],[11.2854654,47.4035083],[11.2854151,47.4034559],[11.2853848,47.4034166],[11.285326,47.4033699],[11.2852791,47.4033176],[11.2851877,47.4031972],[11.2851166,47.4030759],[11.2850279,47.4029316],[11.2849447,47.4028193],[11.2848593,47.4027229],[11.2846949,47.4026184],[11.2846095,47.4025655],[11.2845351,47.4025334],[11.2844114,47.4024684],[11.2842232,47.4023783],[11.2840365,47.4022905],[11.283953,47.4022308],[11.2839143,47.4021821],[11.283857,47.4021457],[11.2838105,47.4021266],[11.2837432,47.4020832],[11.2836482,47.4020165],[11.2835851,47.4019949],[11.2834426,47.4019397],[11.2833114,47.401894],[11.2831334,47.4018475],[11.2829348,47.4018064],[11.2829323,47.4018292],[11.2825881,47.4016816],[11.2825287,47.4016486],[11.2825194,47.401629],[11.2823899,47.4015879],[11.2823441,47.4015529],[11.2823088,47.4015065],[11.2822641,47.4014463],[11.2821623,47.4013772],[11.2820812,47.4013002],[11.2820162,47.4012409],[11.2819635,47.401208],[11.281924,47.4011867],[11.2818505,47.4011272],[11.2817988,47.4010714],[11.2816873,47.4010432],[11.2815911,47.4010119],[11.2815064,47.4009795],[11.2814568,47.4009136],[11.2813948,47.4008645],[11.2813508,47.400826],[11.2813458,47.4007825],[11.2813282,47.4007536],[11.2812903,47.4007369],[11.2812462,47.4007042],[11.2811892,47.4006495],[11.2811384,47.4006155],[11.2810571,47.4005912],[11.2809648,47.4005873],[11.280879,47.4005858],[11.2808255,47.4005758],[11.2807511,47.4005414],[11.2806564,47.4005123],[11.2805847,47.4004996],[11.280492,47.4005049],[11.2804102,47.4005332],[11.2802528,47.4005603],[11.2801745,47.4005863],[11.2801156,47.4006333],[11.2800895,47.400698],[11.2800649,47.4007731],[11.2799672,47.4006891],[11.2799152,47.4006413],[11.279691,47.4004774],[11.2796421,47.4004354],[11.2795575,47.4004042],[11.2794148,47.400355],[11.2793101,47.4003246],[11.2792062,47.4002668],[11.2791456,47.4002257],[11.2790895,47.4001974],[11.2790279,47.4001848],[11.278958,47.4001654],[11.2788943,47.4001129],[11.2788537,47.4000767],[11.2787871,47.4000596],[11.2787172,47.40004],[11.2786806,47.4000303],[11.2786276,47.4000065],[11.2785774,47.4000022],[11.2785321,47.3999981],[11.2784912,47.3999676],[11.2784311,47.3999117],[11.2783781,47.3998925],[11.2782389,47.3998821],[11.2780823,47.3998864],[11.2778621,47.3998859],[11.2776691,47.399878],[11.2774947,47.3998682],[11.2773342,47.3998414],[11.2771057,47.3997929],[11.2768947,47.3997275],[11.2767307,47.3996619],[11.2766781,47.3996289],[11.2766277,47.3995812],[11.2765922,47.3995451],[11.2765438,47.3995352],[11.2764737,47.399526],[11.2763954,47.3995018],[11.2763054,47.3994339],[11.2762372,47.3993722],[11.276196,47.3993509],[11.2761179,47.3993267],[11.2759661,47.3992955],[11.275829,47.3992737],[11.2756529,47.3991965],[11.2755925,47.3991702],[11.2754658,47.3991405],[11.2753414,47.3990984],[11.2751894,47.399026],[11.2750078,47.3989395],[11.2749349,47.3989097],[11.2747197,47.3988214],[11.2745011,47.3987308],[11.274394,47.398674],[11.2742302,47.3986039],[11.2740344,47.3985352],[11.2739026,47.398461],[11.2737771,47.398404],[11.2735555,47.3983499],[11.2733792,47.3982989],[11.2732168,47.3982388],[11.2731487,47.398216],[11.2730667,47.3982019],[11.2729988,47.3981757],[11.2729102,47.3981181],[11.272812,47.398049],[11.2727125,47.3980106],[11.2726013,47.3979745],[11.2724942,47.3979589],[11.2723473,47.3979735],[11.2721955,47.3979904],[11.2721065,47.3979865],[11.2719443,47.3979666],[11.271761,47.3979234],[11.2714981,47.397848],[11.2713394,47.397819],[11.2706609,47.3978918],[11.2705185,47.3978768],[11.270427,47.3978546],[11.2703948,47.3978609],[11.2703055,47.3979108],[11.2702483,47.3979098],[11.270165,47.3978901],[11.2701143,47.3978538],[11.2700315,47.3977301],[11.2699695,47.3975907],[11.2698847,47.3975653],[11.2698596,47.3975676],[11.2698249,47.3975708],[11.2693718,47.3976135],[11.2689019,47.3976503],[11.2687615,47.3976613],[11.2679653,47.397732],[11.2677361,47.3977496],[11.2677351,47.3977497],[11.2676093,47.3977593],[11.2675375,47.3977834],[11.2675024,47.3977953],[11.2674027,47.3978288],[11.2673788,47.3978368],[11.2672091,47.3978938],[11.2671705,47.3979068],[11.2667367,47.3980529],[11.2664503,47.3981493],[11.2663087,47.3981969],[11.2661803,47.3982402],[11.2659038,47.3983332],[11.2657021,47.3984011],[11.2655871,47.3984398],[11.2649157,47.3986659],[11.264743,47.398724],[11.2645502,47.398789],[11.2641307,47.3989302],[11.2633332,47.3991986],[11.2629719,47.3993202],[11.2628683,47.3993551],[11.2624086,47.3991988],[11.2623497,47.3991788],[11.2604896,47.3985467],[11.2603673,47.3985052],[11.2601297,47.3984244],[11.2600793,47.3984072],[11.2594804,47.3982038],[11.2567709,47.3983243],[11.2548987,47.3987268],[11.253042,47.3986279],[11.2496205,47.3984454],[11.2463759,47.3982726],[11.2438237,47.3981366],[11.2436111,47.398125],[11.2431051,47.3980812],[11.2428983,47.398112],[11.2418839,47.3982626],[11.2416314,47.3983001],[11.2415328,47.3983148],[11.239786,47.3980855],[11.2369269,47.3981011],[11.235549,47.3979437],[11.2328028,47.39763],[11.2306304,47.3959976],[11.2283116,47.3951076],[11.2249594,47.3952524],[11.2246678,47.395484],[11.2246445,47.3955025],[11.2243455,47.3957392],[11.2236712,47.3962729],[11.2223073,47.3973463],[11.2225187,47.3974352],[11.2225182,47.3974489],[11.2225312,47.3974628],[11.2225633,47.3975033],[11.2225749,47.3975594],[11.2226094,47.3975783],[11.2226301,47.3976129],[11.2227098,47.3976884],[11.2227408,47.3977141],[11.2228224,47.3977348],[11.2229072,47.3977601],[11.2229548,47.3977895],[11.2229965,47.3977994],[11.2230613,47.3978221],[11.2231072,47.3978537],[11.2231356,47.3979033],[11.2231591,47.3979094],[11.2232218,47.3979378],[11.2232677,47.3979716],[11.2232831,47.3980108],[11.2232666,47.3980471],[11.2232323,47.3980693],[11.2231949,47.3980812],[11.2231975,47.3981019],[11.2231853,47.3981132],[11.2231357,47.3981409],[11.2230705,47.3981763],[11.2229906,47.398199],[11.2229043,47.398217],[11.2228629,47.3982494],[11.2228464,47.3982834],[11.2228622,47.3983133],[11.2228965,47.3983436],[11.2229078,47.3983564],[11.2229044,47.398402],[11.2229244,47.398408],[11.2229807,47.3985735],[11.2230038,47.3985852],[11.2228564,47.3987598],[11.2228995,47.3987765],[11.2229322,47.3988044],[11.2229665,47.3988313],[11.2230044,47.3988502],[11.2230415,47.3988977],[11.2230863,47.3989588],[11.223107,47.39899],[11.2231197,47.3990588],[11.2231256,47.3991296],[11.2231555,47.3991849],[11.2231568,47.3991963],[11.2231659,47.3992743],[11.2231903,47.3993912],[11.2232327,47.3994729],[11.2232791,47.3995365],[11.2233249,47.3996195],[11.2234002,47.3996743],[11.2234603,47.3997359],[11.2235005,47.3997891],[11.2235223,47.3998363],[11.2235731,47.3998713],[11.2235938,47.399906],[11.2236053,47.3999587],[11.2236579,47.4000897],[11.2236951,47.4001737],[11.223725,47.4002325],[11.2237509,47.4003094],[11.2237672,47.400417],[11.2237701,47.4005712],[11.2237676,47.4006409],[11.2237914,47.4006824],[11.2238215,47.400732],[11.223803,47.4007774],[11.2238082,47.400822],[11.2238347,47.400884],[11.2238338,47.4009561],[11.2238256,47.4010415],[11.223829,47.4011352],[11.2238503,47.4012441],[11.2238748,47.401313],[11.223896,47.4013305],[11.2239466,47.4013724],[11.2239824,47.4014073],[11.2240038,47.4014179],[11.2240131,47.401442],[11.2240265,47.4015382],[11.2241205,47.4015866],[11.2241893,47.401638],[11.2242647,47.4016883],[11.2243535,47.401748],[11.2244521,47.401809],[11.2245358,47.4018674],[11.224653,47.4019253],[11.2247196,47.4019436],[11.2247575,47.4019624],[11.2247869,47.4019916],[11.2248633,47.4020167],[11.2250242,47.4020776],[11.2251102,47.4021167],[11.2251445,47.4021459],[11.2251709,47.4021577],[11.2252377,47.4021691],[11.225301,47.4021815],[11.2254044,47.4022061],[11.2255343,47.4022414],[11.2256688,47.4022926],[11.2259035,47.4023582],[11.2259639,47.4023558],[11.2260108,47.4023611],[11.2260643,47.4023722],[11.2261161,47.4023799],[11.2262249,47.402392],[11.2262945,47.4024193],[11.226311,47.4024514],[11.2263789,47.4024551],[11.226403,47.4024874],[11.2264169,47.4025241],[11.2264308,47.4026044],[11.2264476,47.4026515],[11.2264466,47.402676],[11.2264458,47.4027006],[11.2264001,47.4028049],[11.2263956,47.4028413],[11.2264115,47.4028621],[11.2264397,47.402874],[11.2265032,47.4028853],[11.2265937,47.4029045],[11.2267246,47.4029191],[11.2267629,47.4029502],[11.2267918,47.4029602],[11.2268069,47.4029654],[11.2268198,47.4029699],[11.2269153,47.4029991],[11.2269451,47.4030267],[11.2269699,47.4030611],[11.2269916,47.4030716],[11.2270854,47.4030916],[11.2271358,47.403101],[11.227169,47.4031252],[11.227199,47.4031461],[11.2272709,47.4031727],[11.2273097,47.4031719],[11.2273483,47.4031711],[11.2273918,47.4031976],[11.2274269,47.4032092],[11.2274672,47.4032128],[11.2274989,47.4032234],[11.2276011,47.4032572],[11.2276331,47.4032494],[11.2276887,47.4032452],[11.227744,47.4032559],[11.2277756,47.4032783],[11.2278122,47.4033043],[11.2278836,47.4033754],[11.2279497,47.4034524],[11.2279724,47.4035119],[11.2279846,47.4036011],[11.2279865,47.40369],[11.2279925,47.4037436],[11.2280274,47.4037735],[11.2280722,47.403815],[11.2280763,47.4038778],[11.2281094,47.4039191],[11.2281017,47.4039738],[11.2280991,47.4040411],[11.2280944,47.4041358],[11.2280885,47.4041996],[11.2281066,47.4042249],[11.2281598,47.4042537],[11.2282261,47.4043204],[11.2282739,47.404388],[11.228288,47.4044471],[11.2283518,47.4044776],[11.2284336,47.4045079],[11.2285391,47.4045485],[11.2285513,47.4046273],[11.2285845,47.4046584],[11.2286898,47.404707],[11.228805,47.4047614],[11.228813,47.4047935],[11.2288697,47.4048304],[11.2289651,47.4048595],[11.229081,47.4048747],[11.2291111,47.4048787],[11.2292183,47.4049127],[11.2292616,47.4049425],[11.2293232,47.4049806],[11.2293652,47.4049866],[11.2293937,47.4049869],[11.2294896,47.4049876],[11.2295281,47.4050038],[11.2295901,47.4050247],[11.2296991,47.4050449],[11.2298519,47.4050699],[11.2299827,47.4050936],[11.2300382,47.4050883],[11.230075,47.4050999],[11.2301737,47.4051417],[11.2302702,47.4052073],[11.2303434,47.4052706],[11.230403,47.4053384],[11.2304639,47.4054221],[11.2305134,47.4054852],[11.2305763,47.4055385],[11.2306112,47.4055818],[11.2306629,47.4056198],[11.2307144,47.4056486],[11.2306789,47.4056723],[11.2306448,47.405703],[11.2306239,47.4057462],[11.2306283,47.4057953],[11.2306526,47.4058513],[11.2306804,47.4059063],[11.2306477,47.4059631],[11.2306235,47.4060063],[11.2305912,47.4060312],[11.2305748,47.4060453],[11.23054,47.4060754],[11.2305227,47.4061026],[11.2305575,47.4061381],[11.2306076,47.4061671],[11.2306809,47.4062201],[11.2307272,47.4062729],[11.2307783,47.406345],[11.2308123,47.4064275],[11.230815,47.4064766],[11.2308069,47.4064904],[11.2307873,47.4065232],[11.2307359,47.4065948],[11.2307051,47.4066345],[11.2306929,47.4066629],[11.2306671,47.4066935],[11.2306325,47.4067561],[11.2306079,47.4068174],[11.2305941,47.4068516],[11.2305793,47.4069451],[11.2305797,47.4070421],[11.230579,47.4070827],[11.2305789,47.4070957],[11.2305633,47.4071161],[11.2305105,47.4071682],[11.2304932,47.4071978],[11.2304962,47.4072218],[11.230531,47.4072643],[11.2306254,47.4073562],[11.2306584,47.4074032],[11.2306596,47.4074374],[11.2306485,47.4075013],[11.2306631,47.4075402],[11.2307031,47.4075671],[11.2308779,47.4076843],[11.2309344,47.4077372],[11.2310012,47.4077673],[11.2310728,47.4078089],[11.2311593,47.4078848],[11.2312407,47.4079549],[11.2313177,47.4079794],[11.2313934,47.4079777],[11.2315126,47.4079956],[11.2316348,47.4080363],[11.2317332,47.4080963],[11.2317893,47.4081755],[11.2318331,47.408274],[11.2318579,47.4083095],[11.2319113,47.4083338],[11.2319461,47.4083638],[11.231954,47.4084094],[11.2319697,47.4084779],[11.2319975,47.4085318],[11.2320002,47.4085832],[11.2320127,47.4086392],[11.2320257,47.4086757],[11.2320606,47.4086999],[11.2321361,47.4087232],[11.2321525,47.4087311],[11.2322312,47.4087685],[11.232293,47.4088054],[11.2323226,47.4088513],[11.2323354,47.4088912],[11.2323636,47.4089268],[11.2323647,47.4089543],[11.2322901,47.4091077],[11.2322553,47.4091874],[11.2322027,47.4092315],[11.232126,47.4092949],[11.2320631,47.4093469],[11.2320064,47.4094139],[11.2319637,47.4094558],[11.2319496,47.4095036],[11.2319759,47.4095461],[11.2320225,47.4095874],[11.2320923,47.4096404],[11.232147,47.4097013],[11.232163,47.4097516],[11.2321942,47.4098031],[11.2322543,47.4098263],[11.232298,47.409837],[11.2322969,47.4099111],[11.2323079,47.4099671],[11.2323735,47.4100553],[11.2323698,47.4100964],[11.2323577,47.4101204],[11.2323046,47.410185],[11.2322857,47.4102191],[11.2323004,47.4102454],[11.2323148,47.4102854],[11.2322994,47.4103117],[11.232285,47.4103789],[11.2322971,47.4104645],[11.2323325,47.41058],[11.2323264,47.4106462],[11.2323173,47.4106974],[11.2323549,47.4107696],[11.2324232,47.4108157],[11.2324595,47.4108558],[11.2325346,47.4109055],[11.2325967,47.4109196],[11.2326499,47.4109553],[11.2327062,47.4110163],[11.2327807,47.4110944],[11.2328358,47.4111209],[11.2328881,47.4111304],[11.2329332,47.4111399],[11.2330188,47.4111496],[11.2330928,47.4111558],[11.2331499,47.4111493],[11.233206,47.4111292],[11.2332733,47.4111136],[11.233344,47.4111152],[11.2333875,47.4111361],[11.233409,47.4111602],[11.2334091,47.4111607],[11.2334186,47.4111945],[11.2334835,47.4112371],[11.2335605,47.4112674],[11.2336492,47.4112999],[11.233743,47.4113325],[11.2338029,47.4113706],[11.2338443,47.4114096],[11.2338959,47.4114511],[11.2339425,47.4114868],[11.2339706,47.4115247],[11.2340184,47.4115854],[11.2340598,47.4116359],[11.2340539,47.4116884],[11.23404,47.4117168],[11.2340831,47.4117524],[11.2342305,47.4118106],[11.2343023,47.4118351],[11.2343557,47.4118719],[11.2343722,47.411904],[11.2343749,47.4119393],[11.2343618,47.4120317],[11.2343587,47.4121299],[11.2343459,47.412189],[11.2343216,47.4122459],[11.2343544,47.4123043],[11.2344111,47.4123435],[11.2344508,47.412386],[11.2344833,47.4124581],[11.2345127,47.4125142],[11.2345156,47.4125496],[11.2345052,47.4125793],[11.2345177,47.4126149],[11.2345197,47.4126204],[11.2345442,47.4126651],[11.234579,47.4127064],[11.2345814,47.4127658],[11.2346012,47.4127979],[11.2346012,47.412798],[11.2346004,47.4128485],[11.2346002,47.4128571],[11.2346196,47.4129143],[11.2346591,47.412974],[11.2347173,47.4130234],[11.2348073,47.4130788],[11.2348878,47.4130999],[11.2350034,47.4131304],[11.2351073,47.4131539],[11.2352146,47.4131865],[11.235312,47.4131952],[11.2353771,47.4132311],[11.2354457,47.4132623],[11.2355711,47.4133402],[11.2360734,47.413626],[11.2373293,47.4143282],[11.2381774,47.4148025],[11.2397332,47.4156755],[11.239807,47.4161398],[11.2402255,47.4187726],[11.2402899,47.4191844],[11.2403488,47.4195505],[11.2410282,47.4197895],[11.2424216,47.4202837],[11.2437206,47.4208148],[11.2442684,47.421041],[11.2451952,47.4224729],[11.2462367,47.4232607],[11.2482552,47.4247874],[11.2489983,47.4251687],[11.2499618,47.4256655],[11.2502986,47.4258429],[11.250661,47.4260338],[11.2511339,47.4262836],[11.251649,47.426554],[11.2527029,47.4271048],[11.2530956,47.4273143],[11.2531145,47.4273286],[11.2531542,47.4273587],[11.2531884,47.4273846],[11.2536029,47.4276991],[11.2534161,47.4282377],[11.2532465,47.4283925],[11.252397,47.4291683],[11.2521403,47.4294044],[11.2520304,47.4295897],[11.2520065,47.42963],[11.2518963,47.4298162],[11.2517871,47.4300006],[11.2512791,47.4308567],[11.2509701,47.4313839],[11.2508484,47.4315963],[11.2503815,47.4317024],[11.2499874,47.4323321],[11.2489708,47.4325754],[11.2479766,47.4323214],[11.2452179,47.4322037],[11.2448114,47.4323103],[11.2443662,47.4324272],[11.2442004,47.4324707],[11.2436532,47.4319862],[11.243152,47.4319544],[11.2422965,47.4322805],[11.2403171,47.4315493],[11.2390022,47.432334],[11.2378211,47.4323292],[11.2366632,47.432322],[11.2354295,47.4321642],[11.2347812,47.4320808],[11.2312239,47.4316252],[11.2292014,47.4313659],[11.2269296,47.4310756],[11.2256389,47.4309092],[11.2252214,47.4309694],[11.2217093,47.4314571],[11.2214931,47.4309326],[11.2213137,47.4305061],[11.2205073,47.4305585],[11.2200393,47.4307876],[11.2186606,47.4314585],[11.2177064,47.4316631],[11.2153195,47.4321784],[11.2131754,47.4326417],[11.2129851,47.4326828],[11.2120572,47.4328826],[11.2097399,47.4330163],[11.207721,47.4333907],[11.2069902,47.4339396],[11.2054901,47.4338935],[11.2054076,47.4338183],[11.2049371,47.4333805],[11.2044803,47.4329578],[11.2037914,47.4323203],[11.2031071,47.4316864],[11.2027523,47.4313578],[11.201661,47.4303472],[11.2013863,47.4300914],[11.1991612,47.4280299],[11.1989912,47.4278723],[11.1989548,47.4278608],[11.1988911,47.4278455],[11.1988274,47.4278254],[11.1987125,47.4277742],[11.1985872,47.4277183],[11.1984705,47.4276636],[11.198392,47.4276344],[11.1983082,47.4276222],[11.1981457,47.4275855],[11.1980533,47.4275686],[11.1979732,47.4275451],[11.197928,47.4275242],[11.1978831,47.4274964],[11.1977016,47.4274937],[11.1974965,47.4274852],[11.1974425,47.4274973],[11.1972638,47.4275198],[11.1970884,47.4275446],[11.1969318,47.427558],[11.1968713,47.4275564],[11.1966654,47.4275946],[11.1966248,47.4275989],[11.196454,47.4275665],[11.1963755,47.4275338],[11.1963275,47.4274901],[11.1962577,47.4274438],[11.1962027,47.4274182],[11.1961407,47.4273994],[11.1960434,47.4273871],[11.1959526,47.4273852],[11.1958922,47.4273848],[11.1958415,47.4273968],[11.1957795,47.4273963],[11.195691,47.4274078],[11.1955707,47.427426],[11.1954808,47.4273874],[11.1954002,47.4273657],[11.195313,47.4273738],[11.1952356,47.4273736],[11.1951449,47.427351],[11.1951366,47.4273832],[11.19509,47.4273913],[11.1950248,47.4273725],[11.1949622,47.4273412],[11.1948502,47.427301],[11.19477,47.4272839],[11.1947574,47.4272968],[11.1947455,47.4273233],[11.194712,47.4273277],[11.1946625,47.4273176],[11.1946085,47.4273179],[11.1945509,47.4273127],[11.1945195,47.427293],[11.1944787,47.4272885],[11.1944231,47.4272877],[11.1943916,47.4272966],[11.1943339,47.4273164],[11.1942948,47.4273106],[11.1942463,47.4272891],[11.194174,47.4272672],[11.1940987,47.4272488],[11.1940158,47.4272418],[11.1939194,47.4272355],[11.1938762,47.4272172],[11.1938258,47.4272197],[11.1937614,47.4272431],[11.1936425,47.4272271],[11.1935619,47.42726],[11.1935203,47.4272418],[11.1934376,47.4272111],[11.19335,47.427185],[11.193279,47.4271802],[11.1932166,47.4272057],[11.1931095,47.4272462],[11.1930333,47.42727],[11.1929496,47.4272779],[11.1929225,47.4273037],[11.1928836,47.4273003],[11.1928541,47.4273421],[11.1928058,47.4273798],[11.1927524,47.4273608],[11.1926807,47.4273457],[11.1926225,47.4273302],[11.1925989,47.4273023],[11.1925454,47.4273107],[11.1925001,47.4273141],[11.1924148,47.4272983],[11.1923557,47.4272953],[11.1923106,47.4273],[11.1922512,47.4272948],[11.1921862,47.4272794],[11.1921113,47.4272656],[11.1920641,47.4272384],[11.1920076,47.4271956],[11.1919774,47.4271713],[11.1919349,47.4271634],[11.1918605,47.4271313],[11.1917992,47.4270942],[11.1917706,47.4270676],[11.1917308,47.4270221],[11.1916701,47.4269942],[11.1916331,47.426969],[11.1915868,47.4269543],[11.1915326,47.426949],[11.1914789,47.4269538],[11.191452,47.4269819],[11.1914187,47.4269908],[11.191362,47.4269992],[11.1912877,47.4269989],[11.1911927,47.4269879],[11.1911074,47.4269708],[11.1910639,47.426947],[11.1910344,47.426933],[11.1909953,47.4269284],[11.1909682,47.4269269],[11.1909027,47.4269298],[11.1908389,47.4269337],[11.1908049,47.426929],[11.1907721,47.4269151],[11.1907248,47.4269119],[11.1906816,47.4269232],[11.190635,47.4269348],[11.1905932,47.4269405],[11.1905763,47.4269388],[11.1905359,47.4269114],[11.1905064,47.426895],[11.1904895,47.4268979],[11.1904601,47.4269123],[11.1904397,47.4269379],[11.1904087,47.4269547],[11.1903668,47.4269582],[11.1901975,47.4269718],[11.1900562,47.4269768],[11.1898785,47.4269908],[11.1897705,47.4270154],[11.1896703,47.427033],[11.1895851,47.4270444],[11.1895061,47.4270488],[11.1894555,47.4270457],[11.189413,47.4270412],[11.1893574,47.4270393],[11.1893026,47.4270544],[11.1891861,47.4270781],[11.1891664,47.4270866],[11.1891256,47.4270808],[11.1891025,47.4270621],[11.1890862,47.4270433],[11.1890622,47.4270371],[11.1889355,47.4270326],[11.1889125,47.4270388],[11.1889012,47.4270483],[11.1888758,47.4270752],[11.1888402,47.4270989],[11.1888064,47.4270976],[11.1887581,47.4270807],[11.188677,47.4270214],[11.188577,47.4270116],[11.1884583,47.4270012],[11.1884017,47.4269823],[11.1883548,47.4269573],[11.1883324,47.4269249],[11.188287,47.4269251],[11.1882331,47.4269254],[11.188138,47.4269428],[11.1880552,47.4269655],[11.1879955,47.426982],[11.1879217,47.4269862],[11.1878195,47.4269958],[11.1876624,47.4269899],[11.1875858,47.4269784],[11.1875372,47.4269262],[11.1874782,47.4269005],[11.187427,47.4268905],[11.1873666,47.4268921],[11.1873359,47.4268873],[11.1872991,47.4268644],[11.1872521,47.4268691],[11.187229,47.4268481],[11.1871834,47.4268174],[11.1871058,47.4267876],[11.1870214,47.4267581],[11.1869425,47.4267352],[11.1868844,47.426722],[11.1868259,47.4267065],[11.1867497,47.4267257],[11.1866689,47.426729],[11.1865694,47.4267271],[11.1864948,47.4267178],[11.1864535,47.4267053],[11.1864251,47.4267356],[11.1863488,47.4267286],[11.1863124,47.4267103],[11.1862654,47.4266865],[11.1861984,47.4266656],[11.1861428,47.4266398],[11.1861182,47.4266223],[11.1860626,47.4266226],[11.1859789,47.4266306],[11.1858801,47.4266424],[11.1858413,47.42664],[11.1858136,47.4266294],[11.1857555,47.426615],[11.1856976,47.4266029],[11.1856161,47.4265961],[11.1855386,47.4265959],[11.185359,47.4266077],[11.1852915,47.4266072],[11.1852456,47.4265994],[11.1852046,47.4265903],[11.1851719,47.4265798],[11.1851501,47.4265826],[11.1851222,47.4265936],[11.1850867,47.4266197],[11.1849881,47.4266041],[11.1849573,47.4265696],[11.1849039,47.4265518],[11.184872,47.4265514],[11.1848356,47.4265628],[11.1847718,47.4265668],[11.1846958,47.4265654],[11.1846434,47.4265623],[11.1845947,47.4265921],[11.1845261,47.4266019],[11.1844494,47.4266165],[11.1843925,47.4266216],[11.1843214,47.4266155],[11.1841994,47.4266052],[11.1840622,47.4265941],[11.1839479,47.4265722],[11.1838825,47.426549],[11.1838207,47.4265302],[11.1837408,47.4265186],[11.1836728,47.4265091],[11.1836222,47.4264809],[11.1835585,47.4264576],[11.1834874,47.4264538],[11.1834154,47.4264591],[11.1833708,47.426474],[11.1833069,47.4264759],[11.1832588,47.4264897],[11.1832007,47.4265038],[11.183099,47.4265213],[11.1829876,47.4265198],[11.1828833,47.4265226],[11.1827659,47.4265327],[11.1827296,47.4265462],[11.1827089,47.426565],[11.1826649,47.4265605],[11.1826218,47.4265469],[11.182554,47.42651],[11.1824868,47.4264868],[11.1823782,47.4264738],[11.1822597,47.4264645],[11.1822328,47.426439],[11.1821897,47.4264232],[11.1821312,47.4264032],[11.1821281,47.4263793],[11.1821093,47.4263491],[11.1820718,47.4263399],[11.1820081,47.4263462],[11.1819588,47.4263384],[11.1818971,47.4263219],[11.1817554,47.4263211],[11.1816258,47.4263224],[11.1815682,47.4263183],[11.1814827,47.4263241],[11.1813639,47.4263376],[11.1812552,47.4263519],[11.1811661,47.4263555],[11.1810967,47.4263517],[11.1810953,47.4263278],[11.1810396,47.4263259],[11.1809936,47.4263168],[11.1809549,47.4262929],[11.1808967,47.4263047],[11.1808061,47.4263117],[11.1806866,47.4263389],[11.1806215,47.426351],[11.1805592,47.4263527],[11.1805216,47.4263457],[11.1804476,47.4263193],[11.1804121,47.4263168],[11.1803788,47.4263235],[11.1803473,47.4263299],[11.1802797,47.4263272],[11.1802294,47.4263321],[11.1801668,47.4263577],[11.1801044,47.4263811],[11.1800302,47.4263842],[11.1799923,47.4263692],[11.1799467,47.4263386],[11.1798927,47.4263093],[11.1798411,47.4262937],[11.1798072,47.4262616],[11.1797487,47.4262131],[11.1796845,47.4261842],[11.179618,47.4261438],[11.179551,47.4261217],[11.1794325,47.4260567],[11.179394,47.4260349],[11.1793509,47.426019],[11.179266,47.4260066],[11.179193,47.4259732],[11.1791075,47.4259516],[11.1789967,47.4259307],[11.1789062,47.425882],[11.1788133,47.4258503],[11.1787473,47.4258454],[11.1786871,47.4258264],[11.1784718,47.4257503],[11.1784351,47.4257285],[11.1783724,47.4257223],[11.1783313,47.4257131],[11.1782862,47.4256904],[11.1781957,47.4256713],[11.1780009,47.4256254],[11.1779644,47.425607],[11.1779069,47.4255767],[11.1778268,47.4255629],[11.1774596,47.4255069],[11.1774318,47.4254963],[11.1774241,47.4254783],[11.1773881,47.4253289],[11.1773384,47.4252894],[11.1773545,47.425249],[11.1773322,47.4251573],[11.1772784,47.4250791],[11.1772098,47.4250002],[11.1771381,47.4249019],[11.1770709,47.4248206],[11.1770062,47.4247541],[11.1769346,47.4247128],[11.1768632,47.4246487],[11.1768341,47.424613],[11.1768109,47.4245636],[11.1767882,47.4244924],[11.1767549,47.4244159],[11.1767558,47.4243772],[11.1767285,47.4243415],[11.1766966,47.4243173],[11.1766461,47.424264],[11.1766189,47.4242307],[11.1765999,47.4242219],[11.1765661,47.4242206],[11.1765258,47.4241967],[11.1764916,47.42416],[11.1764589,47.42412],[11.1764254,47.4240969],[11.176365,47.4240997],[11.1762947,47.4241085],[11.1762094,47.4241199],[11.176139,47.4241241],[11.1760897,47.4241186],[11.1759863,47.4241089],[11.1758876,47.4240923],[11.1758205,47.4240678],[11.1757725,47.4240555],[11.1757035,47.4240585],[11.1756116,47.4240417],[11.1755153,47.4240114],[11.175402,47.424003],[11.1753548,47.4240042],[11.1753238,47.4239914],[11.1752818,47.4239664],[11.1752011,47.4239413],[11.1750418,47.4239274],[11.1747939,47.4238932],[11.1746113,47.4238583],[11.1744283,47.423812],[11.1742561,47.4238064],[11.1740537,47.4237778],[11.1739255,47.4237494],[11.1738445,47.4237163],[11.1735926,47.4236219],[11.1734971,47.4235755],[11.1733979,47.4235486],[11.1732806,47.4235062],[11.1731249,47.4234375],[11.1729805,47.4233915],[11.1728886,47.423403],[11.1727585,47.4233416],[11.172707,47.4233248],[11.172661,47.4232896],[11.1722399,47.4232943],[11.17215,47.4232831],[11.1720491,47.4232573],[11.1719746,47.4232525],[11.1718916,47.4232469],[11.1718321,47.4232359],[11.171711,47.4232391],[11.1716326,47.4232539],[11.1715534,47.4232833],[11.171426,47.4232094],[11.1713409,47.4231673],[11.1711776,47.4231137],[11.1709904,47.4230834],[11.1705803,47.4229887],[11.1703178,47.4229139],[11.170171,47.4228541],[11.1700679,47.4228193],[11.16994,47.422767],[11.1698647,47.4227486],[11.169814,47.4227169],[11.169785,47.4226836],[11.1697365,47.4226325],[11.1696963,47.4226096],[11.1695906,47.4225887],[11.1693678,47.4225548],[11.1693116,47.4225461],[11.1692731,47.4225233],[11.169186,47.4224755],[11.1691298,47.4224645],[11.1690301,47.4224592],[11.1689394,47.4224503],[11.168862,47.4224512],[11.1688304,47.4224577],[11.1687961,47.4224801],[11.1687345,47.4224908],[11.168652,47.4224919],[11.1685003,47.4224889],[11.1684453,47.4225017],[11.1684171,47.4225081],[11.1683883,47.4225054],[11.1683386,47.4224897],[11.1682416,47.4224728],[11.1680879,47.4224619],[11.1679303,47.4224477],[11.1677678,47.4224325],[11.1675905,47.4224235],[11.1674476,47.4224305],[11.1673017,47.4224412],[11.1671681,47.4224298],[11.1670014,47.4224011],[11.1667646,47.422381],[11.1666082,47.4223576],[11.1665074,47.4223307],[11.1664166,47.4223022],[11.1663481,47.4222801],[11.1662955,47.4222428],[11.166233,47.4222091],[11.166125,47.422204],[11.1659839,47.4221803],[11.1658308,47.4221534],[11.1656988,47.4221113],[11.1654915,47.4221075],[11.1653583,47.4220957],[11.1652224,47.4220837],[11.1651978,47.422099],[11.1651751,47.4221133],[11.1651347,47.4221155],[11.1650737,47.4221079],[11.1650386,47.4221111],[11.1650072,47.4221211],[11.1649669,47.4221254],[11.1649381,47.4221206],[11.1647373,47.4220529],[11.1646641,47.4220399],[11.1646137,47.4220413],[11.1645432,47.4220453],[11.16434,47.4220585],[11.1642662,47.4220627],[11.164229,47.4220614],[11.1641761,47.4220479],[11.1641457,47.4220465],[11.1640198,47.4220553],[11.1639424,47.4220562],[11.1638666,47.4220558],[11.1637831,47.4220375],[11.1637303,47.4220263],[11.1635931,47.4220127],[11.1634204,47.4219955],[11.1632305,47.4219731],[11.1630193,47.4219625],[11.1629868,47.4219509],[11.1628623,47.4218938],[11.1628103,47.4218963],[11.1627377,47.4218936],[11.1626542,47.4218753],[11.1625634,47.4218468],[11.1624613,47.4218279],[11.1623069,47.4218068],[11.1622035,47.4217935],[11.1620834,47.4217886],[11.162033,47.4217893],[11.1620189,47.4217894],[11.1619681,47.4217839],[11.1618917,47.4217733],[11.1617646,47.4217574],[11.1616685,47.4217563],[11.1616083,47.4217658],[11.1615,47.4217561],[11.1614184,47.4217422],[11.1613701,47.4217207],[11.1613174,47.4216811],[11.1612372,47.4216297],[11.1611696,47.421595],[11.1610758,47.4215758],[11.1610104,47.4215832],[11.160933,47.4215806],[11.1608636,47.4215743],[11.1607745,47.4215471],[11.1607352,47.4215389],[11.1606922,47.4215504],[11.1606232,47.4215555],[11.1605413,47.4215633],[11.160482,47.4215591],[11.1603824,47.4215526],[11.160309,47.4215374],[11.1602487,47.4215413],[11.1601688,47.4215592],[11.1600586,47.4215768],[11.1599905,47.4215911],[11.1599417,47.4215934],[11.1598821,47.4215836],[11.1598038,47.4215674],[11.1597149,47.4215446],[11.1596622,47.4215357],[11.1596021,47.4215453],[11.1595532,47.4215431],[11.1594522,47.4215433],[11.1593898,47.421545],[11.1593036,47.421537],[11.1592387,47.4215511],[11.1591897,47.4215797],[11.1591148,47.4215964],[11.159023,47.4216113],[11.1589121,47.4216163],[11.1587922,47.4216126],[11.1586832,47.4216187],[11.1585437,47.4216234],[11.1584862,47.4216193],[11.1584487,47.42161],[11.1583017,47.4215705],[11.1582439,47.4215617],[11.158209,47.4215705],[11.1580758,47.421599],[11.1580288,47.4216002],[11.1579911,47.4215898],[11.1579341,47.4215628],[11.1578602,47.4215363],[11.1577384,47.421495],[11.1576087,47.4214665],[11.1575077,47.4214349],[11.157425,47.4214029],[11.1573778,47.4213688],[11.1573359,47.4213448],[11.1572523,47.4212924],[11.1571883,47.4212622],[11.1571325,47.4212568],[11.1570517,47.4212577],[11.1569539,47.4212568],[11.1568626,47.4212477],[11.1567574,47.4212357],[11.1566319,47.4211899],[11.1565689,47.4211768],[11.1564746,47.4211758],[11.1563139,47.4211617],[11.1561473,47.421166],[11.1560903,47.4211697],[11.1559917,47.4211551],[11.1559354,47.4211395],[11.1558309,47.4211069],[11.1557399,47.4210762],[11.1556767,47.4210596],[11.1556183,47.4210418],[11.1555099,47.4209967],[11.1554485,47.4210119],[11.1554089,47.4209981],[11.1553846,47.4209545],[11.1553554,47.4209119],[11.1553102,47.420888],[11.1552344,47.4208866],[11.1552062,47.4208031],[11.1550581,47.4207421],[11.1549637,47.4207081],[11.1548958,47.42067],[11.1548036,47.4206166],[11.154691,47.4205615],[11.1545873,47.4205084],[11.1545781,47.4204972],[11.1545652,47.4204737],[11.1545406,47.420455],[11.1544992,47.4204389],[11.1544257,47.420418],[11.154345,47.4203917],[11.1543069,47.4203733],[11.1542564,47.4203405],[11.154161,47.4202894],[11.1540654,47.420235],[11.1540105,47.4202171],[11.1539397,47.4202143],[11.1538538,47.4202154],[11.1537141,47.4202166],[11.1535484,47.4202072],[11.1535252,47.4201805],[11.1534966,47.4201517],[11.1534257,47.4201171],[11.1533283,47.4200923],[11.1532249,47.4200813],[11.1531487,47.4200718],[11.1530806,47.4200599],[11.1529924,47.4200485],[11.1529216,47.4200161],[11.1528679,47.4199868],[11.1528238,47.4199812],[11.1527927,47.4199683],[11.1527761,47.4199414],[11.1527431,47.4199218],[11.1526983,47.4199059],[11.1526424,47.4198674],[11.1525956,47.4198413],[11.1525517,47.4198413],[11.152468,47.4198492],[11.1523961,47.4198589],[11.1523032,47.4198852],[11.152252,47.4198444],[11.1522048,47.4198115],[11.1521584,47.4197944],[11.1521319,47.4197735],[11.1520781,47.4197123],[11.1519638,47.4196527],[11.1519341,47.4196352],[11.1519084,47.4195972],[11.1518683,47.419571],[11.151817,47.4195563],[11.1517831,47.4195526],[11.1517648,47.4195269],[11.1517273,47.419487],[11.151668,47.4194475],[11.1516162,47.4193953],[11.1515911,47.4193652],[11.1515725,47.4193316],[11.1515391,47.4193097],[11.1514869,47.4193099],[11.1514402,47.4193156],[11.1513938,47.4193338],[11.1513749,47.4193536],[11.1513395,47.4193535],[11.1512452,47.4193229],[11.1511785,47.4193052],[11.1511309,47.4192974],[11.1511074,47.4192684],[11.1510931,47.4192221],[11.1510838,47.4190824],[11.1510514,47.4191981],[11.1510123,47.4192822],[11.150954,47.4192961],[11.1508591,47.4193168],[11.1507687,47.419327],[11.1506646,47.4193331],[11.1505661,47.4193163],[11.1504565,47.4192826],[11.1503667,47.4192429],[11.1502778,47.4191894],[11.1501983,47.4191186],[11.1500853,47.419085],[11.1499527,47.4190315],[11.1499228,47.4190119],[11.149922,47.4189937],[11.1499429,47.4189739],[11.149944,47.4189351],[11.1499583,47.4189188],[11.1499828,47.4189045],[11.1499931,47.4188792],[11.1499918,47.4188247],[11.1499785,47.4187966],[11.1499086,47.4187506],[11.1498768,47.4187207],[11.1497967,47.4186727],[11.1496629,47.4185976],[11.1496161,47.4185704],[11.1495661,47.41855],[11.1494945,47.4185336],[11.1494423,47.418536],[11.1493587,47.4185462],[11.1493165,47.418546],[11.149284,47.4185356],[11.1491099,47.4184308],[11.1490852,47.4184098],[11.1490828,47.4183677],[11.1490742,47.4183316],[11.1490545,47.4183105],[11.149053,47.4182843],[11.1490401,47.418263],[11.1489983,47.418238],[11.1489731,47.4182102],[11.1489735,47.4181828],[11.1489537,47.4181606],[11.1488539,47.4180926],[11.1488151,47.4180584],[11.1487653,47.4180095],[11.1487215,47.4179799],[11.1487069,47.4179553],[11.1487085,47.4179257],[11.1487058,47.4179053],[11.1486693,47.4178858],[11.148657,47.4178485],[11.1485926,47.417807],[11.1485373,47.4177833],[11.1484816,47.4177791],[11.1484297,47.4177848],[11.1483438,47.4177223],[11.1482814,47.417692],[11.1482476,47.4176872],[11.1481957,47.417693],[11.1481673,47.4176687],[11.1481098,47.4176634],[11.1480605,47.4176555],[11.1480253,47.4176553],[11.1479997,47.4176513],[11.147979,47.4176428],[11.1479763,47.4175927],[11.1479597,47.4175648],[11.1479298,47.4175416],[11.1478763,47.4175191],[11.1478321,47.4175112],[11.1477187,47.4175312],[11.1476793,47.4175196],[11.1476386,47.4175139],[11.1475968,47.4174887],[11.1475338,47.4174471],[11.1474608,47.4173739],[11.1473942,47.4172936],[11.1472966,47.4172041],[11.1472277,47.4171443],[11.1471582,47.417104],[11.1470839,47.4170705],[11.1470165,47.4170701],[11.146914,47.4170112],[11.1468499,47.4169787],[11.1467903,47.4169665],[11.1467336,47.4169464],[11.1466203,47.4169038],[11.1465581,47.4168792],[11.1465109,47.4168463],[11.1464954,47.4168103],[11.1464704,47.4167825],[11.1464251,47.4167563],[11.1463692,47.4167486],[11.1462876,47.4167336],[11.1462441,47.4167394],[11.1460963,47.4166851],[11.1459915,47.4166468],[11.1459132,47.4166317],[11.1458445,47.416638],[11.145792,47.4166326],[11.1457557,47.4166152],[11.1457091,47.4165948],[11.1456599,47.4165892],[11.1456026,47.4165873],[11.1455566,47.4165782],[11.1454706,47.416544],[11.1453168,47.4164728],[11.145235,47.4164226],[11.1451883,47.416401],[11.14516,47.4163779],[11.1451312,47.4163433],[11.1451027,47.4163156],[11.1450779,47.4162298],[11.1450175,47.4162017],[11.1449822,47.4161707],[11.1449358,47.4161253],[11.1448818,47.4160926],[11.1448533,47.4160637],[11.1448565,47.4160273],[11.1447605,47.4159979],[11.1447285,47.415968],[11.1446848,47.4159383],[11.1446232,47.4159205],[11.1445334,47.415908],[11.1444803,47.4158934],[11.1444336,47.4158707],[11.1443609,47.4158658],[11.1443057,47.4158717],[11.1442136,47.4158831],[11.1441565,47.4158835],[11.1441106,47.4158767],[11.1440473,47.4158886],[11.1439622,47.4159054],[11.1439346,47.4158914],[11.1438816,47.4158757],[11.1437731,47.4158636],[11.1437019,47.4158541],[11.143642,47.4158374],[11.1435579,47.4158372],[11.1434771,47.4158085],[11.1433968,47.4157879],[11.1432948,47.4157689],[11.1431827,47.4157512],[11.1430532,47.4157238],[11.1429648,47.4157101],[11.1428951,47.4156983],[11.1428654,47.4156785],[11.14286,47.4156412],[11.142815,47.4156195],[11.1427561,47.415588],[11.142722,47.4155809],[11.1426628,47.4155767],[11.1426301,47.4155616],[11.1426102,47.4155395],[11.1425784,47.4155084],[11.142518,47.4154849],[11.1424725,47.4154815],[11.1424189,47.4154555],[11.1423761,47.4154441],[11.1423009,47.4153914],[11.1422234,47.4153593],[11.1422035,47.4153325],[11.1421789,47.4152865],[11.1421304,47.4152592],[11.1420205,47.4151926],[11.1420045,47.4151441],[11.1419853,47.4151014],[11.1419478,47.4150625],[11.1418681,47.415019],[11.1417627,47.4149717],[11.1417162,47.4149513],[11.1416964,47.4149278],[11.1416892,47.4148916],[11.1416693,47.4148636],[11.1416281,47.4148487],[11.1415906,47.4148385],[11.1415537,47.4148155],[11.1415085,47.414787],[11.1415242,47.4147343],[11.1415373,47.4146361],[11.1415554,47.4145947],[11.1415643,47.4145433],[11.1415533,47.4144946],[11.1415221,47.4144488],[11.1414556,47.4144004],[11.1413947,47.4143667],[11.1413629,47.414338],[11.141317,47.4142686],[11.141176,47.414213],[11.1410663,47.4141498],[11.1410105,47.4141137],[11.1409494,47.414105],[11.1408356,47.414084],[11.1407291,47.4140776],[11.1406832,47.4140685],[11.140643,47.4140412],[11.1405277,47.4140304],[11.1404641,47.4140047],[11.1404354,47.4139725],[11.1403674,47.413932],[11.1402953,47.4139066],[11.1402377,47.4138967],[11.1401768,47.4138926],[11.1400499,47.4138832],[11.1398958,47.4138678],[11.139836,47.4138215],[11.1397875,47.4137932],[11.1397583,47.4137848],[11.1397056,47.4137782],[11.139674,47.4137835],[11.1396512,47.4137967],[11.139625,47.4138099],[11.1395909,47.4138027],[11.1395479,47.4137857],[11.1395039,47.4137811],[11.1394422,47.4137929],[11.139284,47.4137332],[11.1392466,47.4137262],[11.1391876,47.4137266],[11.1391785,47.413712],[11.1391747,47.4136746],[11.1391306,47.4136358],[11.1390861,47.4136234],[11.1389907,47.4136018],[11.1389576,47.4135834],[11.1389019,47.4135507],[11.1388554,47.4135313],[11.1388085,47.4135359],[11.1387544,47.4135305],[11.1387045,47.4135136],[11.1386385,47.4134743],[11.1385744,47.413411],[11.1384901,47.4133779],[11.1384283,47.4133545],[11.1383721,47.4133457],[11.1381501,47.4133502],[11.1380696,47.4133568],[11.1380052,47.4133789],[11.1379583,47.4133824],[11.1378928,47.4133863],[11.1377277,47.4134155],[11.1377229,47.4133906],[11.1376862,47.4133653],[11.1376457,47.4133219],[11.1375877,47.4132873],[11.1375066,47.4132592],[11.1374851,47.4132406],[11.1374681,47.4131911],[11.1373981,47.4131559],[11.1373055,47.4131294],[11.1371813,47.4130891],[11.137079,47.4130469],[11.1370487,47.4130002],[11.1369738,47.4130117],[11.1368689,47.4130265],[11.1368249,47.4130245],[11.1367655,47.4129946],[11.136686,47.4129676],[11.1365649,47.4129455],[11.1364973,47.412942],[11.1364325,47.4129294],[11.1363463,47.4128525],[11.1362344,47.412772],[11.1361812,47.412734],[11.1361192,47.4127154],[11.1360778,47.4127236],[11.1360285,47.4127423],[11.1359853,47.4127733],[11.135923,47.412797],[11.135871,47.4127988],[11.1358057,47.4127805],[11.1357217,47.4127593],[11.1356529,47.4127411],[11.1355921,47.4127385],[11.1355474,47.4127479],[11.1355057,47.4127072],[11.13548,47.4127001],[11.1354569,47.4127066],[11.135413,47.4127274],[11.1353268,47.4127017],[11.1352434,47.4126874],[11.1351779,47.4126896],[11.1351107,47.4126917],[11.1350851,47.412687],[11.1350289,47.4126546],[11.1349856,47.4126356],[11.1349674,47.4126408],[11.1349252,47.4126637],[11.1348622,47.4127011],[11.1347949,47.4127022],[11.1347053,47.4126972],[11.1346383,47.4127017],[11.1345149,47.4126955],[11.1343844,47.4126828],[11.1342731,47.4126579],[11.134203,47.412642],[11.1341306,47.4126433],[11.1340675,47.4126089],[11.1339592,47.4125522],[11.1338968,47.4125053],[11.1337895,47.4124861],[11.1337204,47.4124849],[11.1336454,47.4124954],[11.1336052,47.4124989],[11.1335695,47.4124945],[11.1335341,47.4124706],[11.133498,47.4124603],[11.133468,47.4124637],[11.1332967,47.4124693],[11.1332616,47.412475],[11.1332201,47.4124832],[11.1331835,47.4125117],[11.1331352,47.4125213],[11.1330905,47.4125307],[11.1330543,47.4125433],[11.1330148,47.4125788],[11.1329869,47.4125899],[11.132953,47.4125877],[11.1329186,47.4125762],[11.1328858,47.4125876],[11.1328478,47.4125991],[11.1327002,47.4125584],[11.1325427,47.4125226],[11.1325047,47.4125068],[11.1324277,47.4124684],[11.1323615,47.4124592],[11.1322779,47.4124448],[11.1321946,47.4124328],[11.132143,47.4124196],[11.1320684,47.412363],[11.1320056,47.412332],[11.1319295,47.4123038],[11.1318959,47.4123061],[11.1318498,47.4123201],[11.1318076,47.4123191],[11.1317561,47.4123026],[11.1317165,47.4122915],[11.1316865,47.412297],[11.1315373,47.4123997],[11.1313803,47.4125131],[11.1312303,47.4125363],[11.131197,47.4125635],[11.1311289,47.4125795],[11.1309836,47.4125944],[11.1309128,47.4126172],[11.1307941,47.4126531],[11.1307197,47.4126715],[11.1306025,47.4126583],[11.1304961,47.4126299],[11.1304103,47.4126315],[11.1303082,47.4126383],[11.1302123,47.4126393],[11.1301237,47.4126251],[11.1300533,47.4126296],[11.1300135,47.412639],[11.1299271,47.4126316],[11.1298145,47.4126102],[11.1297534,47.4126042],[11.1297219,47.4125871],[11.1296845,47.4125826],[11.129638,47.412591],[11.1295617,47.4126071],[11.1295006,47.4126478],[11.1294483,47.4126701],[11.1293808,47.4126677],[11.1293002,47.4126499],[11.1292205,47.4126161],[11.1291555,47.4125773],[11.1291072,47.4125368],[11.1290553,47.4124702],[11.1290284,47.4124005],[11.1289329,47.4123593],[11.1288335,47.4123352],[11.1287368,47.4123008],[11.1286483,47.4122627],[11.1285866,47.4122477],[11.1285256,47.4122407],[11.1284865,47.4122135],[11.1284249,47.4121757],[11.1283448,47.4121385],[11.1283029,47.4121409],[11.1282633,47.4121525],[11.1282211,47.4121744],[11.128173,47.4122078],[11.1281244,47.4122139],[11.1280711,47.4121964],[11.1280063,47.4121598],[11.1279361,47.4120961],[11.1278253,47.4119824],[11.1277659,47.4119048],[11.1277323,47.4118353],[11.1276968,47.411783],[11.1276588,47.411749],[11.1275072,47.4116514],[11.1274409,47.4116172],[11.127418,47.4115827],[11.1274013,47.4115354],[11.1273632,47.4114491],[11.127308,47.4113826],[11.1272451,47.4113278],[11.127161,47.4112805],[11.1270707,47.4112173],[11.1269687,47.4111342],[11.1268888,47.4110742],[11.1268352,47.4110304],[11.1267994,47.4110009],[11.1267403,47.4109254],[11.1266631,47.4108358],[11.1266106,47.4107829],[11.1265456,47.4107224],[11.1264927,47.410641],[11.1264832,47.4106015],[11.1264972,47.4105384],[11.1265306,47.4104622],[11.1265478,47.4103957],[11.1265763,47.4103469],[11.126596,47.4103167],[11.1266328,47.4102881],[11.1266311,47.4102666],[11.1266104,47.4102342],[11.126576,47.4102012],[11.1265674,47.4101742],[11.1265586,47.4101221],[11.1265645,47.4100365],[11.1265645,47.4099899],[11.1265424,47.4099632],[11.1265025,47.4099464],[11.1264573,47.4099251],[11.1264122,47.4099084],[11.1263872,47.4098864],[11.1263735,47.4098607],[11.1263447,47.4098104],[11.1263117,47.4097728],[11.1262758,47.4097399],[11.1261906,47.4097017],[11.1261152,47.4096836],[11.1260414,47.4096883],[11.125961,47.4096898],[11.1259415,47.4096552],[11.1258954,47.4095998],[11.1258663,47.4095689],[11.1258529,47.4095466],[11.1258499,47.4095034],[11.1258289,47.4094699],[11.125793,47.4094381],[11.1257711,47.4093911],[11.1257707,47.4093375],[11.1257771,47.4092861],[11.1257733,47.4092533],[11.1257489,47.4092415],[11.1256911,47.4092343],[11.1256898,47.4091923],[11.1256865,47.4091206],[11.1255335,47.4090539],[11.125307,47.4089453],[11.125231,47.4089194],[11.1251727,47.4088791],[11.1251138,47.4088094],[11.1250517,47.4087875],[11.1249772,47.4087808],[11.1248889,47.4087473],[11.1248003,47.4087082],[11.1247325,47.4086785],[11.124663,47.4086261],[11.1245839,47.4085547],[11.1244984,47.4085098],[11.1244501,47.4084965],[11.1243858,47.4084906],[11.1243443,47.4084749],[11.1243116,47.4084419],[11.1242877,47.4084142],[11.1242469,47.4084065],[11.1242092,47.4083974],[11.124179,47.4083746],[11.1241418,47.4083257],[11.1241097,47.4082528],[11.1240874,47.4081988],[11.1240615,47.4081655],[11.1240064,47.4081503],[11.123965,47.4081358],[11.1239374,47.4081026],[11.1239255,47.4080755],[11.1239485,47.408044],[11.1239755,47.4079987],[11.1239899,47.4079414],[11.1239937,47.4078991],[11.1239796,47.4078427],[11.1239309,47.4078192],[11.1239038,47.407794],[11.1238945,47.4077579],[11.1238739,47.4077027],[11.1238328,47.4076244],[11.1237759,47.4075557],[11.1236646,47.4074365],[11.1236133,47.4073755],[11.1235743,47.4073256],[11.1235748,47.4072369],[11.1235708,47.4071801],[11.1235379,47.4071423],[11.1234587,47.4070722],[11.1233673,47.406992],[11.1232915,47.4069694],[11.1232369,47.406936],[11.1231913,47.4068852],[11.1231355,47.4068335],[11.1230843,47.4067999],[11.1230569,47.406721],[11.1230024,47.406666],[11.1229061,47.4065883],[11.1227664,47.406495],[11.1226708,47.4064276],[11.1225861,47.4063951],[11.1225528,47.4063541],[11.1225437,47.4063202],[11.1226822,47.4063042],[11.122793,47.4062767],[11.1228799,47.4062431],[11.1229515,47.4062066],[11.1229782,47.4061807],[11.1230268,47.406104],[11.1230353,47.4060355],[11.1230317,47.4059855],[11.1230152,47.4059644],[11.1229617,47.405924],[11.1229256,47.4058876],[11.1229243,47.4058456],[11.1229703,47.4058076],[11.122993,47.4057716],[11.1229916,47.4057261],[11.1229705,47.4056892],[11.1228953,47.4056268],[11.1228117,47.4055419],[11.12278,47.4054974],[11.122772,47.4054544],[11.122772,47.4054077],[11.1227717,47.4053543],[11.1227553,47.4053127],[11.1227237,47.4052944],[11.1226755,47.4052573],[11.1226364,47.4052039],[11.1226162,47.4051556],[11.122612,47.4051217],[11.1225803,47.4050782],[11.1225629,47.4050458],[11.1225625,47.40499],[11.1225864,47.4049494],[11.1226215,47.4048982],[11.1226213,47.4048469],[11.1226085,47.404786],[11.1225915,47.4047353],[11.1225598,47.404693],[11.1225488,47.404657],[11.1225458,47.4046149],[11.1225627,47.4045665],[11.1225874,47.4045112],[11.1225949,47.4044734],[11.122627,47.4044279],[11.1226522,47.4043576],[11.1226502,47.4042575],[11.1226556,47.4041402],[11.1226544,47.4040058],[11.1226446,47.4039401],[11.1226208,47.4039114],[11.122601,47.4038471],[11.1225816,47.4038102],[11.1225297,47.4037652],[11.122483,47.4037246],[11.1224146,47.4036859],[11.1223742,47.4036633],[11.1223332,47.4036054],[11.1223009,47.4035542],[11.1222836,47.4034989],[11.1222376,47.4034697],[11.1221275,47.4033869],[11.1220822,47.4033645],[11.1219956,47.403332],[11.1219758,47.4033133],[11.1219845,47.4032936],[11.1220907,47.4032002],[11.1221312,47.4031522],[11.1221596,47.4031046],[11.1222027,47.4030702],[11.1222638,47.4030294],[11.1223045,47.4029871],[11.1223101,47.4029699],[11.1223215,47.4029184],[11.1223604,47.4028738],[11.1223831,47.4028355],[11.1223823,47.4028014],[11.1224013,47.4027381],[11.1224283,47.4026678],[11.1224425,47.402582],[11.122462,47.4025221],[11.1224826,47.4025032],[11.1225991,47.4024868],[11.1226383,47.4024696],[11.1226516,47.402443],[11.1226686,47.4023992],[11.1227986,47.4022834],[11.122845,47.402232],[11.1228932,47.4022111],[11.1229178,47.4021836],[11.1229185,47.4021313],[11.1229061,47.4020235],[11.1229052,47.4019848],[11.1229443,47.4019242],[11.122983,47.4018488],[11.1230374,47.4017914],[11.1230684,47.4017446],[11.123064,47.4017003],[11.1230498,47.4016641],[11.1230157,47.4016484],[11.1229753,47.4016408],[11.1229496,47.4016229],[11.1229475,47.4016025],[11.1229702,47.4015614],[11.1230097,47.4015246],[11.1230034,47.4014678],[11.1230038,47.4014007],[11.1230214,47.4012778],[11.1230365,47.4012015],[11.1230557,47.4011593],[11.1230986,47.4011179],[11.1231481,47.4010709],[11.123195,47.4009841],[11.123214,47.4009293],[11.1232161,47.4008736],[11.1232001,47.4008294],[11.1231807,47.4007796],[11.1231264,47.4006813],[11.1231849,47.4006671],[11.1232146,47.4006418],[11.1232511,47.4006129],[11.1233178,47.4005873],[11.1233715,47.4005879],[11.1234505,47.4005814],[11.1235175,47.4005672],[11.1235711,47.4005577],[11.1236484,47.4005545],[11.1237122,47.4005552],[11.1237403,47.4005378],[11.1237585,47.4005172],[11.1239111,47.4004987],[11.1240089,47.4005091],[11.1240582,47.4005325],[11.1241348,47.4004294],[11.1241806,47.400362],[11.1242314,47.4003035],[11.1242522,47.4002544],[11.1242259,47.4002013],[11.124176,47.400146],[11.1241106,47.4000785],[11.1240591,47.4000278],[11.1240091,47.3999692],[11.1239525,47.3999129],[11.1239213,47.3998768],[11.1239106,47.3998406],[11.1238812,47.3998045],[11.1238076,47.3997404],[11.1238312,47.3996686],[11.1238288,47.3996333],[11.1237792,47.3995951],[11.1236958,47.3995493],[11.1236312,47.3995113],[11.1235967,47.3994776],[11.123574,47.3994323],[11.1235447,47.399403],[11.1234839,47.3993832],[11.1234394,47.3993551],[11.1234136,47.3993225],[11.1233771,47.3992705],[11.1233345,47.3992425],[11.123248,47.3992092],[11.1232046,47.399191],[11.1231819,47.3991814],[11.123134,47.3991388],[11.1230607,47.3990929],[11.1229861,47.3990674],[11.122888,47.3990365],[11.1228026,47.3989793],[11.1227327,47.3989255],[11.1226422,47.3988638],[11.122572,47.3988088],[11.1225272,47.398758],[11.1224975,47.3987027],[11.1224723,47.3986222],[11.122464,47.3985507],[11.1224393,47.3984929],[11.1223977,47.3984342],[11.1223258,47.3983735],[11.1222863,47.3983398],[11.1222837,47.3982967],[11.1222658,47.3982468],[11.122228,47.3982096],[11.122212,47.3981631],[11.1221024,47.3981506],[11.1219675,47.3981303],[11.121932,47.3981227],[11.1219128,47.3980933],[11.1218802,47.3980641],[11.1218161,47.3980465],[11.1217471,47.3980426],[11.121685,47.3980581],[11.1216261,47.3980517],[11.1215719,47.3980296],[11.1215378,47.3980094],[11.1214869,47.3979882],[11.1214396,47.3979785],[11.1213854,47.3979563],[11.1213409,47.3979169],[11.1213097,47.3978751],[11.12127,47.3978244],[11.1212312,47.397818],[11.1211557,47.3978289],[11.1210783,47.3978239],[11.1210475,47.397806],[11.1210453,47.397781],[11.121023,47.3977551],[11.1210224,47.3977323],[11.1209116,47.3977335],[11.1208426,47.3977295],[11.1207719,47.3977313],[11.1207228,47.3977125],[11.120667,47.397696],[11.1206332,47.3976849],[11.1206306,47.397651],[11.120625,47.3976191],[11.1206029,47.3976068],[11.120559,47.397597],[11.1205122,47.3975417],[11.1204834,47.3975262],[11.1204398,47.3975299],[11.1203423,47.3975286],[11.1202805,47.3974701],[11.120268,47.3974395],[11.1202556,47.3974056],[11.1202232,47.3973821],[11.1201468,47.3973521],[11.1201129,47.3973319],[11.1200733,47.3972902],[11.1200338,47.3972531],[11.1199769,47.3971877],[11.1198965,47.397126],[11.119842,47.3970878],[11.1196964,47.3970437],[11.1196671,47.39701],[11.1196199,47.3970024],[11.1195745,47.3969984],[11.1195368,47.3969657],[11.119474,47.3969356],[11.1193962,47.3969238],[11.1193237,47.3969143],[11.119278,47.3968966],[11.1192118,47.3968688],[11.1191412,47.3968638],[11.1190419,47.3968601],[11.1189723,47.3968313],[11.1189318,47.3968272],[11.1188207,47.3968964],[11.1187436,47.3969086],[11.1186663,47.3969127],[11.1186036,47.3968849],[11.1185493,47.3968591],[11.1185098,47.3968221],[11.118371,47.3967825],[11.1183278,47.3967988],[11.1182471,47.3968098],[11.1181716,47.3968163],[11.1180943,47.3968112],[11.118018,47.3967836],[11.1178958,47.3967268],[11.1178645,47.3966759],[11.1177745,47.3966392],[11.1177511,47.3966474],[11.117689,47.396648],[11.117613,47.3966317],[11.1175149,47.3966042],[11.1174232,47.3965653],[11.1173452,47.3965307],[11.1172802,47.3964792],[11.1172004,47.3964413],[11.1171778,47.3964063],[11.1171453,47.3963827],[11.117091,47.3963616],[11.1170356,47.3963598],[11.1170014,47.3963409],[11.116967,47.3962992],[11.1169392,47.3962596],[11.1168952,47.3962441],[11.1168294,47.3962312],[11.1167683,47.3962078],[11.1166953,47.3961733],[11.1166074,47.3961445],[11.1165276,47.3961124],[11.1164916,47.3960808],[11.1163886,47.3960557],[11.1163431,47.3960515],[11.1162889,47.3960306],[11.1161681,47.3959669],[11.1161391,47.3959434],[11.1161098,47.3959106],[11.1160775,47.395895],[11.1160373,47.3958976],[11.1159983,47.3958856],[11.1159354,47.3958554],[11.1158888,47.3958798],[11.115805,47.3958953],[11.1157495,47.3958879],[11.1156888,47.3958794],[11.1156044,47.3958733],[11.1155639,47.3958544],[11.1155326,47.3958059],[11.1155213,47.3957536],[11.1155167,47.3956912],[11.1154868,47.3956368],[11.1154408,47.3955987],[11.115378,47.3955732],[11.1153103,47.3955544],[11.1152397,47.3955552],[11.115152,47.3955457],[11.1150963,47.3955349],[11.1150318,47.3955049],[11.1149388,47.3954762],[11.114824,47.3954556],[11.1147585,47.3954585],[11.1146829,47.3954581],[11.1145692,47.3954865],[11.1144616,47.3954909],[11.114194,47.3954798],[11.1140546,47.3954823],[11.113937,47.3954891],[11.1137965,47.39552],[11.1136276,47.395566],[11.113502,47.3955898],[11.1133796,47.3956069],[11.113244,47.3956343],[11.1131168,47.3956617],[11.1130034,47.3957002],[11.1128799,47.3957469],[11.1128093,47.3957499],[11.1127102,47.395753],[11.112603,47.3957735],[11.1125292,47.3957844],[11.1124876,47.3958006],[11.1124107,47.395823],[11.1123337,47.3958316],[11.1122545,47.3958313],[11.1121735,47.3958195],[11.1121466,47.3958199],[11.1120949,47.3958339],[11.1120479,47.3958344],[11.1120069,47.3958097],[11.1119527,47.3957864],[11.111892,47.3957768],[11.1118313,47.3957739],[11.1117473,47.3957736],[11.1116935,47.395774],[11.1115472,47.3958528],[11.1114903,47.3958647],[11.1114481,47.3958616],[11.1114376,47.3958367],[11.111417,47.3958222],[11.1113817,47.3958213],[11.1113129,47.3958232],[11.1112549,47.3957885],[11.111211,47.3957775],[11.1111179,47.39575],[11.1110585,47.3957221],[11.1110148,47.3957203],[11.1109763,47.3957286],[11.1108609,47.3957581],[11.1108069,47.395754],[11.1106994,47.3957528],[11.1105884,47.3957505],[11.1105473,47.3957213],[11.1104971,47.3957252],[11.1104027,47.3957158],[11.1103268,47.3957041],[11.1102347,47.3957242],[11.1101923,47.3957077],[11.110152,47.3957079],[11.1101189,47.3957321],[11.1100734,47.395728],[11.110016,47.3957126],[11.109994,47.3957095],[11.1099455,47.3957235],[11.1097995,47.3956511],[11.1096574,47.3956183],[11.1095831,47.3956031],[11.1094835,47.395579],[11.1094297,47.3955728],[11.1093626,47.3955825],[11.1092952,47.3955774],[11.1092347,47.395578],[11.109142,47.3954879],[11.1090116,47.3955198],[11.1089241,47.3955241],[11.1088148,47.3955206],[11.1087391,47.395519],[11.1086817,47.3955036],[11.1086225,47.3954894],[11.1085417,47.395488],[11.1084508,47.3954796],[11.1083547,47.3954647],[11.1082249,47.3954534],[11.1081204,47.3954418],[11.1080445,47.3954221],[11.1079571,47.3954275],[11.1078832,47.3954316],[11.1077989,47.3954211],[11.1077438,47.3954387],[11.107635,47.3954646],[11.1075296,47.3954838],[11.1074455,47.3954846],[11.1074157,47.3954269],[11.1073861,47.395375],[11.1073718,47.3953387],[11.1073673,47.3952785],[11.1072694,47.3952624],[11.1071613,47.3952406],[11.107084,47.3952391],[11.1070237,47.3952533],[11.1069568,47.3952676],[11.1068578,47.3952776],[11.1067537,47.3952865],[11.1067254,47.3952936],[11.1066785,47.3953111],[11.1066065,47.3953221],[11.1064924,47.3953322],[11.1064335,47.3953271],[11.1063947,47.3953217],[11.1062838,47.3953251],[11.1061947,47.3953271],[11.1060871,47.3953224],[11.1060043,47.3953845],[11.10598,47.3954314],[11.1059483,47.3954476],[11.1059031,47.3954491],[11.105752,47.3954562],[11.1056547,47.3954709],[11.1054559,47.3955318],[11.1053387,47.3955578],[11.10523,47.3955828],[11.1049112,47.3956097],[11.104802,47.3956175],[11.1046829,47.3956357],[11.104579,47.3956503],[11.1045186,47.3956542],[11.1044489,47.3956185],[11.1043949,47.3956066],[11.1043343,47.395606],[11.1043055,47.3955949],[11.1042598,47.3955828],[11.1041976,47.3955811],[11.1041406,47.3955885],[11.104015,47.3956113],[11.1039574,47.3955936],[11.1039152,47.3955826],[11.1038666,47.3955933],[11.1038296,47.3955914],[11.1037772,47.3955782],[11.1037182,47.3955629],[11.1036522,47.3955431],[11.1035897,47.3955357],[11.1035389,47.3955123],[11.1034778,47.3954856],[11.1034287,47.3954758],[11.1033862,47.395449],[11.1032934,47.395435],[11.1032459,47.3954173],[11.103173,47.3953827],[11.1031521,47.3953545],[11.1031098,47.3953345],[11.103084,47.3953109],[11.1030463,47.3952737],[11.1030033,47.395232],[11.1029469,47.3951825],[11.1028806,47.3951491],[11.102811,47.3951213],[11.102769,47.3951229],[11.1027288,47.3951267],[11.102693,47.3951077],[11.1026506,47.3950842],[11.1025963,47.3950608],[11.1025803,47.3950269],[11.1025647,47.3950042],[11.1025542,47.3949748],[11.10255,47.3949408],[11.1024923,47.3949164],[11.1024346,47.3948885],[11.1023854,47.3948639],[11.1023427,47.3948336],[11.1022765,47.3948046],[11.1021868,47.3947794],[11.1021107,47.3947574],[11.1020469,47.3947557],[11.1019594,47.3947508],[11.1019253,47.394734],[11.1018767,47.3947391],[11.1018145,47.3947363],[11.1017236,47.3947349],[11.1016425,47.3947174],[11.1015715,47.3947011],[11.1014991,47.3946926],[11.1014501,47.3946772],[11.1013791,47.3946597],[11.1013131,47.3946353],[11.1012769,47.3945982],[11.1012375,47.3945609],[11.1011864,47.3945342],[11.1011477,47.3945288],[11.1010704,47.3945296],[11.101038,47.3945083],[11.1009754,47.3944918],[11.1009047,47.3944903],[11.1008358,47.3944852],[11.1008146,47.3944424],[11.1007708,47.3944116],[11.1006812,47.3943719],[11.1005766,47.3943678],[11.1004384,47.39436],[11.1003669,47.3943481],[11.1003061,47.3943123],[11.1002707,47.3942824],[11.1001388,47.3942983],[11.1000479,47.3943576],[11.1000091,47.3943575],[11.0999254,47.3943631],[11.0998231,47.3943691],[11.0998003,47.3943538],[11.09975,47.3943255],[11.0996941,47.394319],[11.0996157,47.394329],[11.0995258,47.394346],[11.0993912,47.3943757],[11.0992741,47.3944197],[11.0991837,47.3944561],[11.0990941,47.3944812],[11.0990573,47.394514],[11.0989937,47.3945793],[11.0987866,47.3945744],[11.0986574,47.3945813],[11.098477,47.3946041],[11.0983173,47.3946071],[11.0982781,47.3946275],[11.098212,47.3946792],[11.0981495,47.3947047],[11.0980793,47.3947145],[11.0980147,47.3947025],[11.0979788,47.3946898],[11.0979432,47.3947191],[11.0978737,47.3947676],[11.0977967,47.3948037],[11.0977354,47.3948212],[11.0976775,47.394809],[11.0976135,47.3948073],[11.0975665,47.3948085],[11.0975191,47.3948029],[11.0975035,47.394825],[11.0974625,47.3948465],[11.097409,47.3948523],[11.0973148,47.3948525],[11.097273,47.3948583],[11.0972026,47.3948896],[11.0970178,47.3948943],[11.0969084,47.3948926],[11.0968501,47.3949055],[11.0967219,47.3949282],[11.0965892,47.39496],[11.0964773,47.3950061],[11.0964175,47.3950202],[11.0963488,47.3950231],[11.0962558,47.3950483],[11.0961774,47.3950605],[11.0961009,47.395075],[11.0960475,47.3950821],[11.0959826,47.395094],[11.0959571,47.3951208],[11.0959401,47.395177],[11.0957384,47.395181],[11.0956605,47.3952024],[11.0955424,47.3952237],[11.0954502,47.3952613],[11.0953489,47.395314],[11.0952254,47.3953649],[11.0950592,47.3954307],[11.094939,47.3954781],[11.0948604,47.3955188],[11.0947787,47.3955607],[11.094693,47.3955948],[11.0946295,47.3956295],[11.0945482,47.3956828],[11.0944652,47.3957292],[11.0943923,47.3957823],[11.0943428,47.3958291],[11.0942794,47.3958695],[11.0942053,47.3959282],[11.0941303,47.3959119],[11.0940324,47.3959031],[11.093967,47.3959082],[11.0938856,47.3959273],[11.0937821,47.3959107],[11.0936949,47.3958856],[11.0936137,47.3958468],[11.093513,47.3957902],[11.0933994,47.3957738],[11.0933159,47.3957555],[11.0932295,47.3957134],[11.0931588,47.3956845],[11.0930892,47.3956703],[11.0929542,47.3956648],[11.0928922,47.3956686],[11.0928345,47.3956587],[11.0926969,47.3956066],[11.0925915,47.3955843],[11.0925259,47.3955848],[11.0924253,47.3955908],[11.0923684,47.395598],[11.0922923,47.3956204],[11.0921713,47.3955917],[11.0920369,47.3955622],[11.091877,47.395531],[11.0918171,47.3955144],[11.0917631,47.3954816],[11.0916943,47.3954539],[11.0916384,47.3954462],[11.091554,47.3954415],[11.0914806,47.3954513],[11.0913681,47.3954873],[11.0913153,47.3955045],[11.0912632,47.3955048],[11.091186,47.3955101],[11.0911364,47.395524],[11.0910935,47.3955092],[11.0910273,47.3954972],[11.0909836,47.3954984],[11.0909243,47.3955249],[11.0908504,47.3955847],[11.0907976,47.3956043],[11.0907127,47.395619],[11.090666,47.3956282],[11.0905386,47.3956633],[11.0904895,47.3956623],[11.090402,47.3956908],[11.0903013,47.3956945],[11.0902467,47.3957118],[11.0902098,47.3957129],[11.0901628,47.3957129],[11.0901254,47.3957059],[11.0901032,47.3956713],[11.0900543,47.395669],[11.0899813,47.3956561],[11.0899115,47.395642],[11.0898754,47.3956577],[11.0898172,47.3956717],[11.0897683,47.3956685],[11.0897019,47.3956543],[11.0896473,47.395642],[11.0896295,47.3956527],[11.0895468,47.395681],[11.0894578,47.3957106],[11.0893813,47.3956966],[11.0892783,47.3956891],[11.0892093,47.3956897],[11.0891293,47.395702],[11.0890334,47.3957022],[11.0888462,47.395756],[11.088705,47.3957868],[11.0886217,47.3957708],[11.0885707,47.3957608],[11.0885019,47.3957659],[11.0884045,47.3957685],[11.0883783,47.395752],[11.0883406,47.3957383],[11.088317,47.3957378],[11.0882639,47.3957504],[11.0881926,47.3957409],[11.0881417,47.395732],[11.0881067,47.3957374],[11.0880576,47.3957637],[11.0880114,47.3957798],[11.0879658,47.3957774],[11.0878648,47.3957744],[11.0877478,47.395848],[11.087624,47.3958613],[11.0874653,47.3958517],[11.0873561,47.3958546],[11.0872334,47.3958532],[11.0871678,47.3958549],[11.0871207,47.395855],[11.0870664,47.3958757],[11.0869965,47.3958912],[11.086943,47.3958982],[11.0868847,47.3959076],[11.0868376,47.3958783],[11.0867614,47.3958676],[11.0867054,47.3958588],[11.0866304,47.395871],[11.0865701,47.395876],[11.0865343,47.3958689],[11.0865078,47.3958446],[11.0864492,47.3958177],[11.0863997,47.3958053],[11.0863712,47.3958095],[11.0863019,47.3958317],[11.0862215,47.3958395],[11.0861458,47.3958391],[11.0861038,47.3958402],[11.0860825,47.3958499],[11.0860392,47.3958897],[11.0858881,47.3958958],[11.0858275,47.395894],[11.0858013,47.3959071],[11.0857586,47.3959253],[11.0856849,47.3959317],[11.0856326,47.3959275],[11.0855961,47.3959079],[11.0854936,47.3959378],[11.0853937,47.3959563],[11.0853147,47.3959595],[11.0852503,47.3959486],[11.0852139,47.3959326],[11.0850657,47.3959898],[11.0848866,47.3960354],[11.0848551,47.3960134],[11.0847668,47.3960293],[11.084678,47.3960363],[11.0846008,47.3960393],[11.0845533,47.396061],[11.0845334,47.3960375],[11.0845118,47.3960109],[11.0844875,47.3959659],[11.0844448,47.3959546],[11.0843993,47.3959558],[11.0842973,47.395997],[11.0842395,47.3960156],[11.0841819,47.3960079],[11.0841312,47.3959752],[11.08409,47.3959581],[11.0840043,47.395958],[11.0839574,47.3959637],[11.0839293,47.3959428],[11.0838782,47.3958998],[11.0838172,47.3958616],[11.0837113,47.3958324],[11.0836296,47.3958175],[11.0835456,47.3958173],[11.0834906,47.3957983],[11.0833992,47.3958779],[11.0832872,47.3958604],[11.0832629,47.3958782],[11.0832149,47.395893],[11.0831653,47.3959045],[11.0831041,47.3959265],[11.083032,47.3959591],[11.0829088,47.395985],[11.0828676,47.3959679],[11.0827554,47.3959787],[11.082638,47.3959863],[11.0825295,47.3959698],[11.082516,47.3959371],[11.0824879,47.3959185],[11.0824526,47.3959172],[11.0824247,47.3959304],[11.082403,47.3959343],[11.0823865,47.3959393],[11.082361,47.3959662],[11.0822503,47.3959713],[11.0821639,47.3959894],[11.0819932,47.3960382],[11.0819203,47.3959969],[11.0818551,47.3959747],[11.0817825,47.3959685],[11.0816835,47.3959722],[11.0816415,47.395946],[11.0815864,47.3959497],[11.081488,47.3958771],[11.0814399,47.3958567],[11.0813804,47.395848],[11.0813238,47.3958256],[11.0812221,47.3958123],[11.0810975,47.395812],[11.0810102,47.3958121],[11.0809325,47.395806],[11.0808728,47.3957917],[11.0807918,47.3957881],[11.0806577,47.3957961],[11.0805504,47.3958034],[11.0804909,47.3957935],[11.0804145,47.3957774],[11.0803269,47.3957466],[11.0802313,47.395782],[11.0801349,47.3958027],[11.0800884,47.3957857],[11.0800262,47.3958146],[11.0799766,47.3958307],[11.0799178,47.3958322],[11.0798583,47.3958224],[11.0798266,47.3957935],[11.0797214,47.3957781],[11.0795516,47.3957506],[11.0795063,47.3957551],[11.0794376,47.395758],[11.0793549,47.3957522],[11.0792793,47.3957542],[11.0791995,47.3957402],[11.0791578,47.3957186],[11.0790373,47.3957001],[11.0789819,47.3956993],[11.0789166,47.3957032],[11.0788575,47.3957002],[11.0788026,47.3957141],[11.0787547,47.3957279],[11.0786853,47.3957239],[11.0786568,47.3957234],[11.078616,47.3957461],[11.0785419,47.3957435],[11.0785139,47.395726],[11.0784419,47.3957302],[11.078365,47.3956787],[11.0782546,47.3956599],[11.0781902,47.3956514],[11.0781621,47.3956589],[11.0781314,47.3956813],[11.0780751,47.3956975],[11.0780421,47.3957109],[11.0779419,47.3958147],[11.0779181,47.3958403],[11.0778848,47.3958469],[11.0778388,47.3958662],[11.0777471,47.3958503],[11.0776282,47.395833],[11.0775623,47.3958255],[11.0775257,47.3958038],[11.0774795,47.3957891],[11.0774426,47.3957888],[11.0773471,47.395797],[11.0772741,47.3957841],[11.0772135,47.3957844],[11.0771575,47.3958064],[11.0770903,47.3958388],[11.0770723,47.395878],[11.0770501,47.3959012],[11.0769796,47.395935],[11.076947,47.3959551],[11.0769172,47.3959923],[11.0768916,47.3960158],[11.0768327,47.3960195],[11.0767671,47.3960178],[11.0766722,47.3960339],[11.0765649,47.3960422],[11.0765357,47.3960613],[11.076365,47.39611],[11.0762586,47.3961002],[11.0760661,47.3961177],[11.0760314,47.3961583],[11.0759812,47.396163],[11.0758852,47.3961928],[11.0757753,47.396215],[11.0756729,47.3962165],[11.0756198,47.3962008],[11.0755812,47.3961722],[11.0755507,47.3961673],[11.0754878,47.3961563],[11.0754233,47.3961136],[11.0753616,47.3961244],[11.0753175,47.3960879],[11.0752304,47.396064],[11.0751011,47.3960377],[11.0750127,47.3960207],[11.0749509,47.3959961],[11.0749045,47.3959779],[11.0748212,47.3959641],[11.0746586,47.3960036],[11.074583,47.395976],[11.0741968,47.3959882],[11.0741055,47.3959814],[11.073996,47.3959773],[11.073892,47.3959846],[11.0738006,47.3960028],[11.0737613,47.3959936],[11.073682,47.3959889],[11.0736115,47.395994],[11.0735476,47.3960231],[11.0735128,47.3960307],[11.0734499,47.3960175],[11.0734,47.3960313],[11.0733035,47.3960497],[11.0732211,47.3960825],[11.0731582,47.3960693],[11.0730952,47.3960551],[11.07304,47.396028],[11.0729655,47.3960208],[11.0728971,47.3960305],[11.0728095,47.3960306],[11.0726752,47.3960329],[11.0725114,47.3960234],[11.0723321,47.3960053],[11.0721628,47.3959868],[11.0720639,47.3959928],[11.0719667,47.3959976],[11.0718547,47.3959811],[11.0716775,47.3960005],[11.0715064,47.3960117],[11.0714663,47.3960149],[11.0714453,47.3960007],[11.0714029,47.3959324],[11.0710507,47.3958902],[11.0710227,47.3958727],[11.0709657,47.3958446],[11.0709075,47.3958278],[11.0707812,47.3958232],[11.0706033,47.3958323],[11.0704672,47.3958335],[11.0704087,47.3958418],[11.0703429,47.3958401],[11.0702635,47.3958319],[11.0702121,47.3958161],[11.0701751,47.3957865],[11.0699493,47.3957148],[11.0698129,47.3956831],[11.0697281,47.3956716],[11.0696773,47.3956649],[11.0696515,47.3956531],[11.0696024,47.3956168],[11.0694627,47.3956169],[11.069276,47.3955865],[11.0692142,47.3955619],[11.0691723,47.3955698],[11.0691114,47.3955611],[11.0690539,47.3955843],[11.0690029,47.3955753],[11.0689422,47.3956041],[11.0688896,47.3955952],[11.0688141,47.3955995],[11.0687544,47.3956146],[11.0687021,47.3956136],[11.0686232,47.395585],[11.0685617,47.3955672],[11.0683227,47.3955654],[11.0681192,47.3955672],[11.0680293,47.3955831],[11.06795,47.3955794],[11.067854,47.3955773],[11.0677511,47.3956016],[11.0676378,47.3956227],[11.0675483,47.3956454],[11.0674668,47.3956316],[11.0673886,47.3956496],[11.0673004,47.3956667],[11.067202,47.3956817],[11.0670941,47.3956776],[11.0670381,47.39567],[11.0669924,47.3956631],[11.0669474,47.3956722],[11.0668778,47.3956911],[11.0667574,47.3957022],[11.0666217,47.3957124],[11.0665808,47.3956749],[11.0665192,47.3956547],[11.0664576,47.3956347],[11.0663587,47.3956099],[11.0662623,47.3956011],[11.0661599,47.3956049],[11.0660592,47.3956108],[11.0659762,47.39563],[11.0658717,47.3956576],[11.0657999,47.3956674],[11.0657445,47.3956689],[11.0657043,47.3957017],[11.0656485,47.3957282],[11.0655837,47.3957423],[11.0654775,47.3957701],[11.065422,47.3957977],[11.0653885,47.3958327],[11.0653489,47.3958484],[11.065291,47.3958636],[11.065206,47.3958794],[11.0651365,47.3958982],[11.0650888,47.3958892],[11.0650188,47.3958851],[11.0648874,47.395985],[11.0646503,47.3960155],[11.064531,47.3960415],[11.0644503,47.396062],[11.0644015,47.3960586],[11.0642419,47.3960323],[11.0641393,47.3960493],[11.064062,47.3960527],[11.063988,47.396081],[11.0639443,47.3960901],[11.0638754,47.3960821],[11.0638233,47.3960854],[11.0637107,47.3961262],[11.063655,47.3961228],[11.0635878,47.3961285],[11.0635291,47.3961488],[11.0633608,47.3961852],[11.0632919,47.3961851],[11.0632617,47.3961953],[11.0631977,47.3962066],[11.0631053,47.3962214],[11.0629774,47.3962451],[11.0629153,47.3962337],[11.0628952,47.3962383],[11.0627961,47.3962576],[11.0626497,47.3962801],[11.0624917,47.3963119],[11.0623756,47.3963323],[11.0622932,47.3963368],[11.0621789,47.3963618],[11.0620226,47.3963991],[11.0619131,47.3964229],[11.0618627,47.3964615],[11.0617415,47.3965353],[11.0616995,47.3965387],[11.0615987,47.3965454],[11.0615533,47.3965466],[11.061508,47.3965238],[11.0614492,47.3965021],[11.0614307,47.3964657],[11.061387,47.3964498],[11.061345,47.3964509],[11.0613014,47.3964384],[11.0612492,47.3964395],[11.0611887,47.3964372],[11.0610879,47.3964371],[11.0610307,47.3964336],[11.0609231,47.3964131],[11.0608544,47.3964017],[11.0607635,47.3964028],[11.0606929,47.3963845],[11.0606291,47.3963686],[11.0605652,47.3963617],[11.0605485,47.396314],[11.0605267,47.396298],[11.0605099,47.3962684],[11.0605033,47.396231],[11.0604614,47.3962298],[11.0604041,47.3962206],[11.0603234,47.3961991],[11.0602883,47.3961729],[11.0602312,47.3961455],[11.0601673,47.3961216],[11.0601118,47.3961147],[11.0600531,47.396092],[11.0600095,47.3960748],[11.0599826,47.3960237],[11.0599558,47.3960169],[11.0599053,47.3960089],[11.0598162,47.396035],[11.0596028,47.395986],[11.0595928,47.3959586],[11.0595626,47.3958995],[11.0595157,47.3958358],[11.0594282,47.3958096],[11.059324,47.3957868],[11.0592301,47.3957504],[11.0592219,47.3956959],[11.0592001,47.3956708],[11.0591664,47.3956332],[11.059101,47.3955639],[11.0590507,47.395532],[11.0589986,47.3954433],[11.0589651,47.3953909],[11.0589298,47.3953978],[11.0588576,47.3954023],[11.0587635,47.3954011],[11.058629,47.3953976],[11.0585467,47.3953816],[11.0584744,47.3953781],[11.0583769,47.3953588],[11.0583516,47.3953747],[11.0583012,47.3953974],[11.0582559,47.3954098],[11.0581987,47.3954245],[11.0581483,47.3954166],[11.0580843,47.3954222],[11.0580086,47.3954449],[11.0579161,47.395479],[11.0578252,47.3955163],[11.0577277,47.3955504],[11.057669,47.3955617],[11.0576185,47.3955537],[11.0575816,47.3955855],[11.0575108,47.3956104],[11.0574419,47.3956308],[11.0573881,47.3956241],[11.0573058,47.3956092],[11.0572319,47.3955966],[11.0571175,47.3956215],[11.0568938,47.3956749],[11.0568065,47.3956895],[11.0567325,47.395694],[11.0566182,47.3956655],[11.0566181,47.3956883],[11.0565795,47.3957076],[11.0565037,47.3957382],[11.0564163,47.3957733],[11.0562885,47.3957983],[11.0560614,47.3958254],[11.0559252,47.3958821],[11.0558075,47.3958763],[11.055727,47.3958854],[11.0556446,47.3959114],[11.0555873,47.3959273],[11.05552,47.3959364],[11.0554377,47.3959466],[11.0553604,47.3959556],[11.0552813,47.3959601],[11.0552176,47.3959589],[11.0551655,47.3959292],[11.0550882,47.3958895],[11.0549823,47.3958825],[11.0549151,47.3958722],[11.0548395,47.3958517],[11.0547925,47.3958483],[11.054673,47.3958732],[11.0543317,47.3959321],[11.0542629,47.3959388],[11.0541838,47.3959297],[11.0541232,47.3959387],[11.0539433,47.3959887],[11.0539062,47.3959727],[11.0538493,47.3959908],[11.0538089,47.395984],[11.0537854,47.3959828],[11.0537533,47.396001],[11.0537231,47.3960236],[11.053676,47.3960362],[11.0535515,47.3960428],[11.0534001,47.3961121],[11.0532844,47.3960359],[11.0532541,47.3960211],[11.0532239,47.3960199],[11.0531886,47.3960131],[11.0531045,47.3959743],[11.0530828,47.3959549],[11.0530862,47.3959198],[11.0530729,47.3958822],[11.0530259,47.3958572],[11.0529503,47.3958276],[11.0529201,47.3958071],[11.0528932,47.3957776],[11.052868,47.3957502],[11.0527605,47.395716],[11.052717,47.3956296],[11.05268,47.3955648],[11.0526466,47.3955432],[11.0525693,47.3954987],[11.0524736,47.3954226],[11.052346,47.3953315],[11.0522337,47.3952382],[11.0521599,47.3951927],[11.0520439,47.3951199],[11.0519786,47.3950585],[11.0519399,47.3950459],[11.0519012,47.3950232],[11.0518325,47.3949889],[11.0517991,47.3949734],[11.0517518,47.3949514],[11.0516426,47.3949354],[11.0515082,47.3949137],[11.0512981,47.3948829],[11.0512443,47.3948647],[11.0511587,47.3948475],[11.0510797,47.3948418],[11.0509721,47.3948383],[11.05091,47.3948212],[11.0507923,47.3948188],[11.0507319,47.3948097],[11.0506915,47.3947926],[11.0506176,47.3947528],[11.0505722,47.3947368],[11.0505186,47.3946868],[11.050349,47.3946139],[11.0502936,47.3946014],[11.0502584,47.3945798],[11.050171,47.3945308],[11.0501307,47.3945137],[11.0500954,47.3945091],[11.0500146,47.3945204],[11.0499709,47.3945271],[11.0499576,47.3945146],[11.049961,47.3944794],[11.0499595,47.3944283],[11.0499572,47.3944235],[11.0499461,47.3943998],[11.0499191,47.3943817],[11.0498436,47.3943464],[11.0496555,47.3942974],[11.0495849,47.3942723],[11.0495378,47.394253],[11.0494354,47.3942119],[11.0491852,47.3940764],[11.0490946,47.3940355],[11.0490156,47.3940195],[11.0489215,47.3940148],[11.0488258,47.3940067],[11.0487081,47.3939806],[11.0486427,47.393951],[11.0486024,47.3939066],[11.048488,47.3939122],[11.0482678,47.3939529],[11.0481939,47.3939472],[11.0481367,47.3939631],[11.0480526,47.3939778],[11.0479602,47.3939709],[11.0478814,47.3939435],[11.0478292,47.393923],[11.0477822,47.3939276],[11.0476626,47.3939547],[11.0475653,47.3939706],[11.0474861,47.3939591],[11.047414,47.3939431],[11.0473618,47.393942],[11.0472476,47.3939681],[11.0470777,47.394002],[11.0469113,47.3940315],[11.0468677,47.3940303],[11.0467869,47.3940381],[11.0466624,47.3940687],[11.0465278,47.3941005],[11.0464842,47.394072],[11.0464152,47.3941049],[11.0463867,47.3941514],[11.0462908,47.3941764],[11.0461932,47.3941797],[11.0461628,47.3942365],[11.0461108,47.3942683],[11.0460889,47.3942956],[11.04605,47.3943649],[11.0460247,47.3943786],[11.0458952,47.3944273],[11.0458464,47.3944942],[11.0457421,47.3945283],[11.0456597,47.3945601],[11.0455589,47.3945633],[11.0454597,47.3945622],[11.0454075,47.3945427],[11.0453606,47.3945246],[11.0452849,47.3945382],[11.0452376,47.3945836],[11.0451956,47.3946052],[11.0451386,47.3946096],[11.0450916,47.3946005],[11.0450562,47.3945539],[11.0448528,47.3945776],[11.0445773,47.394574],[11.0444445,47.3945465],[11.0443822,47.3945226],[11.0443453,47.3945305],[11.0442983,47.3945385],[11.0441367,47.3946032],[11.0441468,47.3946247],[11.0440929,47.3946565],[11.0440593,47.3946804],[11.0440122,47.3946974],[11.043987,47.3946917],[11.0439283,47.3946745],[11.0437988,47.3946926],[11.0437952,47.3947437],[11.0436725,47.3947904],[11.0435396,47.394805],[11.0435095,47.394797],[11.0434641,47.394789],[11.0434153,47.3947981],[11.0433345,47.3948139],[11.0432555,47.3948195],[11.0432101,47.394832],[11.0431379,47.3948148],[11.0430909,47.3948102],[11.0429563,47.3948579],[11.0429478,47.3948874],[11.0428419,47.39491],[11.0427477,47.394943],[11.0426367,47.3949724],[11.0425358,47.395003],[11.0423794,47.3950381],[11.0423372,47.3950552],[11.0422431,47.3951392],[11.042201,47.3951471],[11.0421554,47.3952233],[11.0421352,47.395255],[11.0420728,47.3952948],[11.042024,47.3953424],[11.0419852,47.3953776],[11.0419063,47.3954105],[11.0417649,47.3954707],[11.0416406,47.3955081],[11.041548,47.3955318],[11.0415193,47.3955705],[11.0414654,47.3955852],[11.041457,47.3956216],[11.041346,47.3956783],[11.0412736,47.395751],[11.0412449,47.395776],[11.0412062,47.3957862],[11.0410246,47.3957974],[11.040981,47.3958098],[11.0409675,47.3958281],[11.0409169,47.3958894],[11.04089,47.3959201],[11.040821,47.3959484],[11.0407957,47.3959837],[11.0407401,47.3960335],[11.040597,47.3960971],[11.0405112,47.396122],[11.0404338,47.3961436],[11.0403986,47.396164],[11.0403547,47.396198],[11.0402826,47.3962139],[11.0401833,47.3962354],[11.0401094,47.3962627],[11.0398386,47.3962726],[11.039805,47.3963045],[11.0397192,47.3963157],[11.0396586,47.3963088],[11.0396251,47.3962816],[11.0395849,47.3962667],[11.0395394,47.3962655],[11.0394957,47.3962666],[11.0393931,47.3962984],[11.0393428,47.3963154],[11.0393075,47.3963108],[11.0392621,47.396288],[11.0392167,47.3962664],[11.0391544,47.3962732],[11.0391074,47.3962958],[11.0390553,47.396331],[11.0390098,47.3963503],[11.038929,47.3963731],[11.0388717,47.3964037],[11.038828,47.3964116],[11.038776,47.3964103],[11.0387071,47.3964194],[11.0386718,47.3964296],[11.0386414,47.3964557],[11.038596,47.3964841],[11.0385354,47.3964932],[11.0384682,47.3965101],[11.0383454,47.3965725],[11.0382982,47.396577],[11.0382091,47.3965894],[11.0381756,47.3965622],[11.0381135,47.3965371],[11.0380714,47.3965291],[11.0379707,47.3965267],[11.037937,47.3965221],[11.0379119,47.3964903],[11.0378548,47.3965051],[11.0377757,47.3965118],[11.037663,47.3965049],[11.0376026,47.3964945],[11.037527,47.3964854],[11.0374613,47.3964876],[11.0373087,47.3963795],[11.03726,47.3963556],[11.0372112,47.396359],[11.0371323,47.3963463],[11.03706,47.396336],[11.0369692,47.3963372],[11.0368668,47.3963348],[11.0368107,47.3963316],[11.0367739,47.3962804],[11.0367421,47.3962565],[11.0366917,47.3962452],[11.0366564,47.3962269],[11.0366363,47.3961985],[11.0366095,47.3961712],[11.0365641,47.3961564],[11.0365407,47.396137],[11.0364702,47.396054],[11.036445,47.3960404],[11.0364013,47.3960221],[11.0363392,47.3959879],[11.0362888,47.3959459],[11.0362301,47.3958878],[11.03618,47.395823],[11.0361195,47.3957684],[11.0360474,47.3957297],[11.0359868,47.3957057],[11.0359079,47.3956772],[11.0358577,47.3956454],[11.0357636,47.395568],[11.035703,47.3955284],[11.0356712,47.3955076],[11.0355822,47.3954553],[11.0355169,47.3954098],[11.035475,47.395304],[11.0354282,47.3952233],[11.0353801,47.3951687],[11.0353129,47.3951107],[11.0352675,47.3950936],[11.0351616,47.395073],[11.0351165,47.3950161],[11.0350827,47.3950036],[11.035029,47.3949877],[11.0349334,47.3949318],[11.0348862,47.394908],[11.0348611,47.3948841],[11.0348377,47.3948385],[11.0347604,47.3948442],[11.0347249,47.3948407],[11.0346678,47.394818],[11.0346341,47.3948111],[11.0345687,47.3948008],[11.0344812,47.3947939],[11.0344307,47.3947802],[11.0343401,47.3947256],[11.0342679,47.3946789],[11.0342226,47.3946368],[11.0342025,47.3946118],[11.0341723,47.3946073],[11.0341033,47.3945822],[11.034053,47.3945548],[11.0339943,47.3944968],[11.0339475,47.39444],[11.0339291,47.3943854],[11.0338954,47.3943557],[11.0338501,47.3943421],[11.0337662,47.3943057],[11.0336604,47.3942464],[11.033573,47.3941895],[11.0335378,47.3941405],[11.0334975,47.3940849],[11.0334489,47.3940587],[11.0333868,47.394037],[11.033328,47.3940041],[11.0332778,47.393946],[11.033234,47.3939073],[11.0332072,47.3938993],[11.0331029,47.3938936],[11.0330002,47.3938934],[11.0329011,47.3938752],[11.0328221,47.3938582],[11.032765,47.3938308],[11.0326775,47.3937985],[11.0326125,47.3937662],[11.0325573,47.3937431],[11.032475,47.3937438],[11.0323492,47.3937293],[11.0322185,47.3937012],[11.0321117,47.3936585],[11.0320416,47.3936148],[11.0318578,47.393541],[11.0316572,47.3934704],[11.0315335,47.3934264],[11.03139,47.3933482],[11.0310342,47.3934516],[11.030853,47.3934277],[11.0307691,47.3934203],[11.0306952,47.3934233],[11.0305515,47.3934859],[11.0304494,47.3934716],[11.0302827,47.3934979],[11.0300519,47.393544],[11.0299123,47.3935568],[11.029806,47.3935901],[11.0296645,47.3936211],[11.0295147,47.3936406],[11.0293854,47.3936409],[11.029253,47.393623],[11.0290989,47.3935856],[11.0289651,47.3935371],[11.0288502,47.3934693],[11.0287367,47.3934038],[11.0286563,47.3933931],[11.0285673,47.3933879],[11.028455,47.393369],[11.0283992,47.3934062],[11.0283482,47.3934376],[11.0283223,47.3934942],[11.0282266,47.3934902],[11.0281543,47.3934965],[11.0280817,47.3935234],[11.0280309,47.3935549],[11.0279844,47.3936477],[11.0279063,47.3937051],[11.027845,47.3937627],[11.0277904,47.3938203],[11.0277041,47.3938754],[11.0276631,47.3939319],[11.0276304,47.3939761],[11.0275632,47.3939892],[11.0274922,47.3940194],[11.0274346,47.3940532],[11.0274092,47.3940768],[11.0273785,47.3941063],[11.0273229,47.3941093],[11.0272431,47.39417],[11.0271433,47.3942353],[11.0270516,47.3943063],[11.0270173,47.394356],[11.0269681,47.3943966],[11.0269084,47.3944598],[11.0268573,47.3945152],[11.0268081,47.3945444],[11.0267457,47.3945667],[11.0267167,47.3946075],[11.0266843,47.3946379],[11.0266285,47.3946614],[11.0266011,47.3946999],[11.0265522,47.3947097],[11.0265003,47.3948253],[11.0264756,47.394916],[11.0264309,47.3949896],[11.026383,47.395063],[11.0263301,47.3951218],[11.0262884,47.3952159],[11.0262351,47.3953166],[11.0261836,47.3954004],[11.0261187,47.3954828],[11.0260433,47.3955903],[11.0259816,47.3956751],[11.0259522,47.3957351],[11.0259016,47.3957621],[11.0258738,47.3958222],[11.025821,47.3958763],[11.0257621,47.3958839],[11.0257168,47.3958949],[11.0256643,47.3959161],[11.0256143,47.3960146],[11.025518,47.396047],[11.0254773,47.3960809],[11.0254147,47.3961077],[11.0253453,47.3961413],[11.0252776,47.3961897],[11.0252298,47.3962428],[11.0252032,47.396285],[11.0252006,47.3962892],[11.0251651,47.3963117],[11.0251456,47.3963866],[11.0251347,47.3964479],[11.0250822,47.3964725],[11.0250282,47.3964914],[11.024971,47.3965025],[11.0249623,47.3965228],[11.0249537,47.396541],[11.0249301,47.3965521],[11.0248541,47.3965675],[11.0248305,47.3965753],[11.0248016,47.3966116],[11.0247626,47.3966317],[11.0246936,47.3966471],[11.0246395,47.3966707],[11.0245699,47.3967146],[11.0245327,47.3967336],[11.0244638,47.3967491],[11.0244199,47.3967658],[11.0243535,47.3968221],[11.0242855,47.3968808],[11.0242747,47.3969398],[11.0242176,47.3969371],[11.0241135,47.3969285],[11.0239792,47.3969243],[11.0238867,47.3969282],[11.0238248,47.3969176],[11.0237812,47.3969026],[11.0237382,47.3968602],[11.0236352,47.396897],[11.0235624,47.3969375],[11.0234675,47.3969993],[11.0232759,47.3970038],[11.0231808,47.3970782],[11.0231508,47.3970631],[11.0230784,47.3970695],[11.0230537,47.3970375],[11.0230033,47.3970383],[11.0229769,47.3970064],[11.0228673,47.3970272],[11.022844,47.397018],[11.0228173,47.397002],[11.0228012,47.3969564],[11.0227512,47.3969242],[11.022706,47.3969126],[11.0226303,47.3969132],[11.0225411,47.3969206],[11.0225044,47.396909],[11.0224523,47.3968995],[11.0224104,47.3969061],[11.0223665,47.3969149],[11.022306,47.3969202],[11.0222472,47.3969176],[11.0222069,47.3969229],[11.0221594,47.3969408],[11.0220803,47.3969641],[11.0220383,47.396965],[11.0219863,47.3969601],[11.0219176,47.3969381],[11.0218326,47.3968887],[11.0217974,47.3968863],[11.0217322,47.3968744],[11.0216768,47.3968649],[11.0216365,47.3968545],[11.0216146,47.3968611],[11.0215643,47.3968585],[11.0215157,47.3968549],[11.0214502,47.3968453],[11.0213795,47.3968471],[11.0213311,47.3968422],[11.0213076,47.3968284],[11.0212678,47.3967874],[11.0212529,47.3967759],[11.0212212,47.3967711],[11.0212028,47.3967619],[11.021195,47.3967175],[11.0211801,47.3966924],[11.0211602,47.3966798],[11.0209821,47.3966706],[11.0208127,47.3966559],[11.0206736,47.3966392],[11.0206098,47.3966251],[11.0205715,47.3965999],[11.0205129,47.3965869],[11.0204422,47.3966013],[11.0203832,47.3966088],[11.0203225,47.3966255],[11.0202555,47.396617],[11.0201751,47.3966064],[11.0200505,47.3966112],[11.0199868,47.3966074],[11.0199181,47.3965967],[11.0198526,47.3965894],[11.0197166,47.3965909],[11.0195688,47.3965842],[11.0193575,47.3965601],[11.0192762,47.3965528],[11.0192349,47.3965491],[11.0191996,47.3965533],[11.0191489,47.396569],[11.0191001,47.3965811],[11.0190039,47.3966202],[11.0189414,47.3966403],[11.018896,47.3966491],[11.0187414,47.3966504],[11.0185933,47.3966698],[11.0185578,47.3966821],[11.0185003,47.3967274],[11.0184866,47.3967384],[11.0183706,47.3967445],[11.0182263,47.3968492],[11.018146,47.3968316],[11.0180972,47.3968347],[11.0180664,47.3968595],[11.0180226,47.3968865],[11.0179955,47.3968953],[11.017962,47.3968895],[11.0178666,47.3968594],[11.017751,47.3968381],[11.0176991,47.3968253],[11.0176225,47.3967702],[11.017554,47.3967448],[11.0175175,47.3967139],[11.0174608,47.3966885],[11.0174041,47.3966585],[11.0173105,47.3966092],[11.0172653,47.3966031],[11.0171233,47.3965408],[11.0170936,47.3965089],[11.0170235,47.3964721],[11.016948,47.3964682],[11.0168656,47.39647],[11.0168272,47.3964629],[11.0167871,47.3964399],[11.0167472,47.3964056],[11.0166939,47.3963779],[11.0165999,47.3963603],[11.0165212,47.396354],[11.01637,47.3963496],[11.0163454,47.3963028],[11.0163357,47.3962745],[11.0163124,47.3962595],[11.0162722,47.3962546],[11.0162521,47.3962465],[11.0162207,47.3962145],[11.0161792,47.3961701],[11.0161092,47.3961286],[11.0160196,47.3960722],[11.0159451,47.396027],[11.0157314,47.396],[11.0152206,47.395883],[11.0151127,47.395904],[11.0149585,47.3958745],[11.0149026,47.395915],[11.0146348,47.3958406],[11.0145428,47.3958127],[11.0145195,47.3957989],[11.0145098,47.395767],[11.0144315,47.3957256],[11.0142987,47.3957259],[11.0142234,47.3957039],[11.0141364,47.3956749],[11.0140625,47.395672],[11.0139482,47.395677],[11.0138967,47.3956335],[11.0138535,47.395606],[11.013808,47.3956056],[11.0137578,47.3955951],[11.0137245,47.3955732],[11.013664,47.3955775],[11.0136154,47.3955624],[11.0135302,47.3955311],[11.0132075,47.3954267],[11.0130435,47.3953847],[11.0129643,47.3953876],[11.0129405,47.3954205],[11.0129164,47.3954624],[11.0128842,47.3954791],[11.0128204,47.3954821],[11.0127146,47.3954678],[11.0126079,47.3954204],[11.0125457,47.3954098],[11.0124938,47.3954004],[11.0124553,47.3953957],[11.0123836,47.3953485],[11.0122555,47.3952648],[11.0121671,47.3952188],[11.0121067,47.3952092],[11.0118475,47.3951212],[11.0118123,47.3951164],[11.0116335,47.3950517],[11.0114946,47.3950029],[11.0114483,47.3949596],[11.0113776,47.3949648],[11.0112689,47.3949288],[11.0112542,47.394906],[11.0111754,47.3948805],[11.0110778,47.394898],[11.0110275,47.3948988],[11.0109755,47.3948906],[11.0109452,47.3948994],[11.0108861,47.3949104],[11.0108307,47.3949032],[11.0107705,47.3948857],[11.0107154,47.3948683],[11.0106682,47.3948749],[11.0106465,47.3948712],[11.0106217,47.394837],[11.0105594,47.3948378],[11.010508,47.394792],[11.0102931,47.3947838],[11.010209,47.3948002],[11.0101569,47.3948032],[11.0101114,47.3948064],[11.0100247,47.3947638],[11.0099828,47.3947601],[11.0099393,47.3947393],[11.0098485,47.394749],[11.009778,47.3947451],[11.0096742,47.3947217],[11.0096016,47.3947417],[11.0095552,47.3946971],[11.0095102,47.3946752],[11.0094766,47.3946693],[11.0094346,47.3946713],[11.0093927,47.394663],[11.0093744,47.3946492],[11.0093784,47.3946096],[11.0093923,47.3945722],[11.0093826,47.3945402],[11.0093377,47.3945104],[11.0092861,47.3944806],[11.0092389,47.3944871],[11.0091783,47.3945003],[11.0091243,47.3945056],[11.0090624,47.3944995],[11.0089702,47.3944808],[11.0089131,47.3944746],[11.008883,47.3944699],[11.00883,47.3944173],[11.0088097,47.3944206],[11.0087695,47.394417],[11.0087293,47.3944019],[11.0087355,47.3944416],[11.0085586,47.3944814],[11.0085323,47.3944449],[11.0084921,47.3944298],[11.0084468,47.3944261],[11.0084148,47.3944384],[11.0083791,47.3944621],[11.0083218,47.3944753],[11.0082711,47.3944943],[11.0082038,47.3945052],[11.0081786,47.3945038],[11.0080699,47.3944782],[11.0080241,47.3945006],[11.0079767,47.3945354],[11.0079092,47.3945567],[11.0078353,47.394547],[11.0077347,47.3945384],[11.0076847,47.3945131],[11.0076461,47.3944992],[11.0075993,47.3944875],[11.0075928,47.3944716],[11.0076132,47.3944558],[11.0076334,47.3944503],[11.0076252,47.3944377],[11.0075351,47.3943951],[11.0074947,47.3943971],[11.0074192,47.3943943],[11.0073691,47.3943791],[11.007247,47.3943295],[11.0071934,47.394311],[11.0071549,47.3943085],[11.0070775,47.3943148],[11.0069683,47.3943198],[11.0069111,47.3943204],[11.0068592,47.3943145],[11.0067137,47.3942691],[11.0065457,47.3942669],[11.006463,47.3942845],[11.0064161,47.3942898],[11.006309,47.3942563],[11.0062351,47.3942569],[11.0062423,47.3942138],[11.0060955,47.3941469],[11.00603,47.3941362],[11.0059646,47.3941381],[11.005902,47.3941661],[11.0057356,47.3941718],[11.0055406,47.3941773],[11.0054013,47.3941696],[11.0052765,47.3942028],[11.0051727,47.3941805],[11.0050791,47.3941549],[11.0049719,47.3941292],[11.004904,47.3941787],[11.0048568,47.3941875],[11.0047912,47.3941972],[11.0047404,47.3942185],[11.0046948,47.3942455],[11.0046543,47.3942577],[11.0045955,47.3942505],[11.0044951,47.3942305],[11.0043369,47.3942568],[11.0042861,47.3942768],[11.0042336,47.3943072],[11.0041881,47.394317],[11.004146,47.3943191],[11.0041043,47.3943074],[11.0040506,47.3942945],[11.0039615,47.3942973],[11.0038825,47.3943037],[11.0038036,47.3943145],[11.0036891,47.3943183],[11.0035428,47.3943298],[11.0035074,47.3943432],[11.003455,47.3943645],[11.0033691,47.3943923],[11.0033687,47.3944138],[11.0033582,47.3944478],[11.0033106,47.394485],[11.0032699,47.3945063],[11.0031774,47.3945171],[11.0030967,47.3945302],[11.0030649,47.394521],[11.0030262,47.3945171],[11.0029875,47.3945306],[11.0029536,47.394552],[11.0029062,47.3945686],[11.0028339,47.3945886],[11.0027865,47.3945985],[11.0027562,47.3946119],[11.0027187,47.3946446],[11.0026881,47.3946672],[11.0026545,47.3946749],[11.0025788,47.3946801],[11.0025601,47.3947004],[11.0025209,47.3947342],[11.0024685,47.3947635],[11.0024077,47.3947846],[11.0023203,47.3947875],[11.002218,47.3947674],[11.0021513,47.3947375],[11.0021686,47.3947],[11.002137,47.3946805],[11.0020935,47.3946643],[11.0019981,47.3946364],[11.0018891,47.3946198],[11.0017518,47.3945939],[11.0016193,47.3945748],[11.0015002,47.3945706],[11.0014433,47.3945498],[11.0013965,47.3945358],[11.001341,47.3945354],[11.0012152,47.3945301],[11.0011713,47.3945367],[11.0011105,47.3945635],[11.0010362,47.3945891],[11.0009602,47.3946238],[11.0008589,47.3946538],[11.0007877,47.3947067],[11.0007441,47.3947052],[11.000697,47.3946993],[11.0006619,47.3946854],[11.0006266,47.3946806],[11.000588,47.3946952],[11.0005404,47.3947243],[11.0004994,47.3947684],[11.0004653,47.3948091],[11.0004366,47.3948214],[11.000403,47.3948235],[11.0003595,47.3948106],[11.0003294,47.3948059],[11.0003075,47.394816],[11.0002752,47.3948339],[11.0002299,47.3948223],[11.0001796,47.394822],[11.0001208,47.3948215],[11.0000839,47.3948213],[11.0000653,47.3948188],[11.0000321,47.3947994],[11.000005,47.3948071],[10.9999782,47.3948126],[10.9999396,47.394809],[10.9998993,47.3948053],[10.9998574,47.3948107],[10.999793,47.394833],[10.9997339,47.394861],[10.9997002,47.3948664],[10.9996077,47.394876],[10.9995624,47.394878],[10.9995372,47.3948676],[10.9995104,47.3948629],[10.9994885,47.3948649],[10.9994296,47.3948805],[10.9993893,47.3948801],[10.9993709,47.3948676],[10.9993526,47.3948527],[10.9993292,47.3948446],[10.9992974,47.3948432],[10.9992351,47.3948496],[10.999134,47.3948705],[10.9990989,47.3948658],[10.9990321,47.3948404],[10.9989514,47.3948375],[10.9989079,47.3948293],[10.9988625,47.39483],[10.9988039,47.3948201],[10.9987485,47.394811],[10.9987166,47.3947967],[10.9986929,47.3947861],[10.9986241,47.394784],[10.9985871,47.3947727],[10.99852,47.3948229],[10.9984697,47.3948263],[10.9984109,47.3948446],[10.9983369,47.3948754],[10.9982074,47.394869],[10.9981637,47.3948417],[10.9980192,47.3948157],[10.9979654,47.3948397],[10.9979335,47.3948375],[10.9978948,47.3948183],[10.9978377,47.3948195],[10.9978174,47.39479],[10.9977586,47.3948036],[10.9976527,47.3947858],[10.9976291,47.3947938],[10.9975823,47.3948507],[10.9975184,47.3948598],[10.9974663,47.3948452],[10.9974143,47.3948715],[10.9973538,47.3948659],[10.9973252,47.394858],[10.9972746,47.3948295],[10.9972311,47.3948639],[10.9972126,47.3948592],[10.9971689,47.3948389],[10.9971722,47.394873],[10.9971034,47.3948901],[10.9970917,47.3949107],[10.9970446,47.3948914],[10.9970378,47.3948516],[10.9969839,47.3948347],[10.9969418,47.3948018],[10.996888,47.3947756],[10.9968324,47.3947484],[10.9967348,47.39471],[10.9966743,47.3946964],[10.996651,47.3947284],[10.9965921,47.3947375],[10.9965972,47.3947717],[10.9965098,47.3947547],[10.9963904,47.3947618],[10.9962444,47.3947973],[10.9960984,47.3948555],[10.9956737,47.3950451],[10.9955411,47.3950499],[10.9955309,47.3950715],[10.9954739,47.395083],[10.9953982,47.395082],[10.995326,47.3950935],[10.9951698,47.3951291],[10.9950474,47.3951782],[10.994975,47.3951931],[10.994876,47.3952046],[10.994834,47.3952092],[10.9947852,47.3952309],[10.9947164,47.3952606],[10.9946442,47.3952755],[10.9945988,47.3952745],[10.9944947,47.3952747],[10.9944207,47.3952804],[10.9943248,47.3952829],[10.9941653,47.3953001],[10.9940427,47.3953141],[10.9939673,47.395345],[10.9939286,47.395378],[10.9938733,47.3954407],[10.993786,47.3954942],[10.9936738,47.3955717],[10.9935612,47.3956333],[10.9934187,47.395695],[10.9933245,47.3957283],[10.9932612,47.3958831],[10.9932311,47.3959354],[10.993179,47.3959775],[10.9931404,47.395989],[10.9931137,47.3960311],[10.993092,47.3960971],[10.9930402,47.3961552],[10.9929412,47.396219],[10.9928809,47.3962704],[10.9928104,47.3963444],[10.9927568,47.3963844],[10.9926594,47.3964414],[10.9925904,47.3963959],[10.9925265,47.396378],[10.9924358,47.3963837],[10.9923886,47.3963633],[10.9923416,47.3963611],[10.9923164,47.3963487],[10.9922491,47.3963067],[10.9922103,47.3962988],[10.9921498,47.3962932],[10.9921296,47.3963058],[10.9921131,47.3963445],[10.9920709,47.3963434],[10.9920237,47.3963343],[10.9919498,47.396314],[10.9918876,47.3963074],[10.9918541,47.3963017],[10.9917834,47.3962518],[10.9917311,47.3962291],[10.9916638,47.3962189],[10.9915748,47.3962271],[10.9915329,47.3962317],[10.991501,47.3962261],[10.9914201,47.3961967],[10.9912621,47.3961322],[10.9912066,47.3961117],[10.9911808,47.3961094],[10.991141,47.396105],[10.9910736,47.3960972],[10.991013,47.3960791],[10.9908903,47.3960315],[10.9907489,47.395984],[10.9907002,47.395967],[10.990643,47.395933],[10.99051,47.3958831],[10.9904006,47.3958504],[10.9903066,47.3958482],[10.9902191,47.3958723],[10.9901519,47.3958428],[10.990083,47.3958304],[10.9899956,47.3958499],[10.9898714,47.3958764],[10.9898461,47.3958695],[10.9898025,47.3958685],[10.98972,47.3958789],[10.9895568,47.3958052],[10.9893149,47.3958215],[10.9892209,47.395824],[10.9891501,47.3958206],[10.9890645,47.3957969],[10.9890123,47.3958004],[10.9889535,47.3957937],[10.9887516,47.3957121],[10.9885785,47.3957033],[10.9884742,47.3957046],[10.9882942,47.3956618],[10.9882558,47.3956924],[10.9882172,47.3957062],[10.9881667,47.3957164],[10.9880105,47.3957145],[10.9879501,47.3957431],[10.9878744,47.3957455],[10.9878308,47.3957591],[10.9877468,47.3958003],[10.9876714,47.3958493],[10.9876143,47.3958949],[10.9875656,47.3958973],[10.9874568,47.3959872],[10.9873442,47.3960591],[10.9872352,47.3961139],[10.9870858,47.3961687],[10.9869178,47.39621],[10.9867952,47.396217],[10.9866893,47.3962149],[10.9866034,47.3962093],[10.9864808,47.3962254],[10.986454,47.3962425],[10.9864138,47.3962802],[10.9863146,47.3962895],[10.9862575,47.3962759],[10.9861936,47.3962681],[10.9861164,47.396275],[10.9860727,47.3962989],[10.9860493,47.396316],[10.9859029,47.39633],[10.9857619,47.3963461],[10.985619,47.3963714],[10.9855453,47.3964078],[10.9854512,47.396466],[10.9853874,47.3964787],[10.9853086,47.3964901],[10.9851992,47.3964846],[10.9850714,47.3964769],[10.984942,47.396468],[10.9848212,47.3964784],[10.9847154,47.3965059],[10.984591,47.3965528],[10.9845508,47.3965653],[10.9845138,47.3965699],[10.9844783,47.3965529],[10.9844161,47.3965235],[10.9843776,47.3965269],[10.9843491,47.3965532],[10.9843054,47.3965817],[10.9842533,47.3965887],[10.9841709,47.3965865],[10.9840449,47.3965673],[10.9839541,47.3965652],[10.9838617,47.3965882],[10.983756,47.3966292],[10.9836687,47.3966907],[10.9836066,47.3967307],[10.9834339,47.3968129],[10.9833851,47.3968312],[10.9833616,47.3968585],[10.9833029,47.3968756],[10.9832073,47.3969122],[10.9830931,47.3969465],[10.9829586,47.3969717],[10.982799,47.3969846],[10.9827351,47.3969743],[10.982688,47.3969608],[10.9826426,47.3969745],[10.9825552,47.3969793],[10.9825234,47.3969963],[10.9824443,47.397001],[10.9823805,47.3969932],[10.9823519,47.3969727],[10.9822241,47.3969889],[10.9820092,47.3969927],[10.9817889,47.3970032],[10.9817284,47.3970044],[10.9816661,47.3969909],[10.9816395,47.396991],[10.9815404,47.3970332],[10.9813404,47.3970642],[10.9811789,47.3970019],[10.9811403,47.396994],[10.9810412,47.3970204],[10.9809217,47.396992],[10.9808983,47.3970148],[10.980868,47.397032],[10.9807775,47.397056],[10.980757,47.3969878],[10.9807368,47.3969617],[10.9807049,47.3969514],[10.9804763,47.3969542],[10.9804479,47.3969702],[10.9803974,47.396985],[10.9803403,47.396993],[10.980278,47.3969807],[10.980246,47.3969512],[10.9801653,47.3969534],[10.9801621,47.3969944],[10.980137,47.3970093],[10.9800999,47.397006],[10.9800545,47.3969901],[10.9799723,47.3969993],[10.979846,47.3969256],[10.9797687,47.3969439],[10.9796729,47.3969611],[10.9795552,47.3969636],[10.9795066,47.3969967],[10.9794293,47.3970184],[10.9793992,47.3970321],[10.9793489,47.3971004],[10.9793237,47.3971244],[10.9792903,47.3971494],[10.9792465,47.3971529],[10.9791944,47.3971473],[10.9791407,47.3971428],[10.9790886,47.3971531],[10.9790349,47.3971793],[10.9788904,47.3972057],[10.9788401,47.3972558],[10.9788031,47.3972685],[10.9787595,47.3972936],[10.9787211,47.3973176],[10.9786925,47.3973505],[10.9786606,47.3973654],[10.9785748,47.3973724],[10.9785211,47.3974042],[10.9784742,47.3974134],[10.978407,47.3974704],[10.9783399,47.3975058],[10.9782829,47.3975252],[10.978172,47.3975289],[10.9781468,47.3975743],[10.9780847,47.3975937],[10.9779872,47.3976247],[10.9779035,47.3976646],[10.977838,47.3977091],[10.9777506,47.3977262],[10.9776986,47.3977445],[10.9776397,47.3977583],[10.9775274,47.3977983],[10.9774635,47.3978302],[10.9774484,47.3978632],[10.977447,47.3979246],[10.9772022,47.3981366],[10.9771214,47.3981276],[10.9770323,47.3981323],[10.9769198,47.3981438],[10.9767383,47.3981499],[10.9767013,47.3981408],[10.9765735,47.398141],[10.9764709,47.398148],[10.9763335,47.3981994],[10.9761859,47.3982163],[10.9761015,47.3982259],[10.9760495,47.398251],[10.9759789,47.3982579],[10.9759219,47.3982819],[10.9758849,47.3982888],[10.9758361,47.3982774],[10.9757571,47.3982788],[10.9756748,47.3982959],[10.9755959,47.3983007],[10.975522,47.3983087],[10.9754648,47.3983326],[10.9753757,47.3983487],[10.9753528,47.3983527],[10.9753287,47.3983567],[10.975233,47.3984172],[10.9751272,47.3984662],[10.975035,47.3985142],[10.974956,47.3985564],[10.9749108,47.3985701],[10.9748722,47.3985793],[10.974805,47.398626],[10.9747632,47.3986557],[10.974726,47.3986614],[10.9746941,47.3986728],[10.9746389,47.3987229],[10.9746441,47.3987798],[10.9746357,47.398798],[10.9745786,47.3988197],[10.9745317,47.3988732],[10.9744174,47.3988826],[10.9743368,47.3988667],[10.9742913,47.3988702],[10.9742377,47.3988862],[10.9741839,47.3989113],[10.974068,47.3989434],[10.973984,47.3989617],[10.9739269,47.3989698],[10.9738563,47.3989903],[10.9738077,47.399004],[10.9737404,47.3989939],[10.9736479,47.3989918],[10.9735505,47.3989953],[10.9735136,47.3990113],[10.97347,47.3990455],[10.9734212,47.3990422],[10.9733893,47.3990286],[10.9733237,47.3990651],[10.9732499,47.3990947],[10.9732046,47.399137],[10.9731627,47.3991528],[10.9731374,47.3991734],[10.9731117,47.3991825],[10.9730922,47.3991894],[10.9729931,47.3992203],[10.9729527,47.3992385],[10.9729176,47.3992772],[10.9728689,47.3992853],[10.9727984,47.3993036],[10.9727564,47.3993298],[10.9727497,47.3993583],[10.9727212,47.3993913],[10.972659,47.3993869],[10.9725197,47.3994132],[10.972402,47.3994236],[10.9723481,47.3994339],[10.972328,47.3994738],[10.9719736,47.3995584],[10.9718964,47.3995575],[10.9718562,47.3995768],[10.9718092,47.3996213],[10.9717269,47.3996408],[10.9716815,47.3996795],[10.9716413,47.3996989],[10.9715926,47.3997366],[10.9715489,47.3997423],[10.9715154,47.3998026],[10.9714032,47.3998949],[10.9713325,47.3998939],[10.9712183,47.3999566],[10.9711545,47.3999464],[10.9710889,47.3999295],[10.9710317,47.3999091],[10.9709846,47.399924],[10.9709159,47.3999559],[10.9708604,47.399972],[10.9707513,47.4000097],[10.9706824,47.4000428],[10.9706372,47.4000678],[10.970607,47.4000747],[10.9705632,47.4000759],[10.9704474,47.4001659],[10.9704256,47.4002012],[10.9704224,47.4002456],[10.9704276,47.4002717],[10.9704563,47.4002911],[10.9704747,47.4003183],[10.9704783,47.4003581],[10.9704834,47.4004321],[10.9704786,47.4005549],[10.9704655,47.4006652],[10.9704573,47.4007199],[10.9704354,47.4007631],[10.970402,47.4008177],[10.970387,47.4008599],[10.9703756,47.400952],[10.9703739,47.401018],[10.9703606,47.4010385],[10.9703052,47.4010863],[10.9702633,47.4011227],[10.9702566,47.4011603],[10.9702835,47.4011842],[10.9703357,47.4012216],[10.9704773,47.4013249],[10.97059,47.4014203],[10.9706526,47.4015203],[10.9706932,47.4016146],[10.970695,47.4016908],[10.9707085,47.4017374],[10.9707272,47.4017726],[10.9707475,47.401834],[10.9707375,47.401883],[10.970778,47.4019807],[10.9708084,47.4020148],[10.9708303,47.4020558],[10.9708255,47.4021308],[10.970814,47.4022321],[10.9707736,47.4023244],[10.970808,47.4023477],[10.9708224,47.4023736],[10.9708131,47.4023987],[10.9707817,47.402414],[10.9707574,47.4024395],[10.9707585,47.4024724],[10.9707906,47.4025264],[10.9707786,47.4025721],[10.970744,47.4026421],[10.970708,47.4026733],[10.9704639,47.4028115],[10.9704265,47.4028506],[10.9704022,47.4028771],[10.9703743,47.4029015],[10.9703203,47.4029433],[10.9702805,47.4030087],[10.9702521,47.4030638],[10.9702285,47.4031131],[10.9701935,47.4031204],[10.9701589,47.403146],[10.9701454,47.4032383],[10.9701462,47.4033622],[10.9701106,47.4034038],[10.9701335,47.4035387],[10.9701804,47.4035333],[10.9701576,47.4036019],[10.9701405,47.4036478],[10.9701246,47.4037196],[10.9700986,47.4037474],[10.9700911,47.403777],[10.9700574,47.4038241],[10.9699821,47.4038856],[10.969901,47.4039199],[10.9698542,47.4039264],[10.9698008,47.4039397],[10.9696958,47.4039697],[10.969715,47.4040378],[10.9697645,47.4041097],[10.9698048,47.4041102],[10.9698416,47.4041551],[10.9698431,47.4041995],[10.9698756,47.404266],[10.969949,47.4043478],[10.9699745,47.4044054],[10.9698344,47.4046385],[10.9697784,47.4047736],[10.969769,47.4048465],[10.9697845,47.4049009],[10.9697803,47.4049771],[10.9697736,47.4050284],[10.9697726,47.4050989],[10.9697491,47.4051504],[10.9696992,47.4052171],[10.9696809,47.4052743],[10.9696909,47.4053174],[10.9697222,47.405351],[10.9697722,47.4053855],[10.9697988,47.4054271],[10.969805,47.4054623],[10.9699137,47.4054947],[10.969992,47.4055218],[10.9700236,47.4055634],[10.9700643,47.4056275],[10.9701096,47.4056723],[10.9701697,47.4057044],[10.9702029,47.4057459],[10.9702196,47.4057878],[10.9702279,47.4058365],[10.9702774,47.4058596],[10.9703,47.4058797],[10.9703093,47.4059091],[10.9703056,47.4059478],[10.9703533,47.4060199],[10.9703495,47.4061018],[10.9703719,47.4061186],[10.9704558,47.4061661],[10.9704891,47.4062053],[10.9705023,47.4062473],[10.9705084,47.4063278],[10.9705175,47.4063993],[10.9705536,47.4064682],[10.9706246,47.4065831],[10.9707396,47.4067484],[10.9706919,47.4068298],[10.9706969,47.4068832],[10.9706905,47.4069412],[10.9707171,47.4069852],[10.9707309,47.4070385],[10.9707616,47.407154],[10.9707947,47.4072376],[10.9708369,47.4073461],[10.9708876,47.4074499],[10.9709175,47.4075369],[10.9709164,47.4076075],[10.9709187,47.4076768],[10.9709356,47.4077778],[10.9709671,47.4078625],[10.9709798,47.4079431],[10.9710066,47.4080359],[10.9710495,47.4081125],[10.9710772,47.4081872],[10.9710887,47.4082291],[10.9711022,47.4082778],[10.9711211,47.4083354],[10.9711265,47.4084001],[10.9711117,47.4084619],[10.9710733,47.4085227],[10.9709889,47.4086101],[10.9709094,47.4086425],[10.9708087,47.408673],[10.9706774,47.408695],[10.9705695,47.4087376],[10.970426,47.4088241],[10.9703212,47.408903],[10.9702624,47.4089585],[10.9702287,47.4090046],[10.970217,47.4090548],[10.9702243,47.4091195],[10.9702261,47.4091752],[10.9702199,47.4091946],[10.9702095,47.4092312],[10.9702087,47.4092608],[10.9701644,47.4092911],[10.970135,47.4093176],[10.9701288,47.4093359],[10.9701235,47.4093735],[10.970106,47.4094056],[10.9700687,47.4094449],[10.9700215,47.4094946],[10.9699864,47.409544],[10.9699595,47.4095968],[10.9699437,47.4096743],[10.9699092,47.4097511],[10.9698803,47.4097948],[10.9698559,47.4098156],[10.969862,47.4098473],[10.9698592,47.409911],[10.9698715,47.4099779],[10.9698971,47.410039],[10.9699023,47.4100957],[10.9698956,47.4101493],[10.9698663,47.4101725],[10.9698063,47.4102382],[10.9697697,47.4103014],[10.9697158,47.4103954],[10.9696397,47.4104876],[10.9695841,47.4105318],[10.9695743,47.4105899],[10.9695864,47.4106534],[10.9695935,47.410709],[10.9695828,47.4107467],[10.9695521,47.410779],[10.9695395,47.4108088],[10.9695333,47.4108737],[10.9695231,47.4109193],[10.9694876,47.4109654],[10.9693258,47.4111522],[10.9692723,47.411211],[10.9692107,47.4112791],[10.9691453,47.4113313],[10.9691139,47.4113488],[10.9690836,47.4114016],[10.9690271,47.4114685],[10.9689948,47.4115088],[10.968986,47.4115487],[10.9689711,47.4115834],[10.9689531,47.4116153],[10.9689151,47.4116565],[10.9688521,47.4117115],[10.9688157,47.4117606],[10.9687948,47.4118211],[10.968792,47.4118666],[10.9688518,47.4119276],[10.9688701,47.4120356],[10.9688904,47.4120457],[10.9689262,47.4120784],[10.9689469,47.4121101],[10.9689995,47.4121507],[10.9690423,47.4121948],[10.9690598,47.4122447],[10.9690739,47.4122936],[10.9691391,47.4123693],[10.9691817,47.4124191],[10.969206,47.4124724],[10.9692362,47.4125734],[10.9692435,47.4126177],[10.9692893,47.4126436],[10.9693365,47.4126558],[10.9694568,47.4127176],[10.969552,47.4127806],[10.9696168,47.4128416],[10.9697775,47.4129032],[10.9698487,47.4129448],[10.9698542,47.4129676],[10.969848,47.4130051],[10.9698317,47.4130506],[10.9698526,47.4131006],[10.9698637,47.4131641],[10.9698577,47.4132212],[10.9698465,47.413253],[10.969874,47.4132903],[10.9699213,47.4133093],[10.9699233,47.4133287],[10.9699556,47.4133592],[10.9699896,47.4133749],[10.9700118,47.413402],[10.9700194,47.4134634],[10.9700256,47.4135442],[10.970005,47.4136284],[10.9699924,47.4136808],[10.9700385,47.4137442],[10.9700524,47.4137692],[10.9700462,47.4137965],[10.970013,47.4138377],[10.970039,47.4138898],[10.97008,47.4139316],[10.9701396,47.4140486],[10.9701874,47.4141425],[10.9702388,47.4142059],[10.9702661,47.4142398],[10.9702961,47.4143272],[10.9703442,47.4143984],[10.9704025,47.4144778],[10.970425,47.4145197],[10.9704137,47.4145596],[10.970418,47.4146165],[10.9704272,47.4146755],[10.9704235,47.4147688],[10.970435,47.4148551],[10.9704472,47.4148903],[10.970529,47.4149705],[10.970533,47.4150058],[10.9705138,47.4150729],[10.9705164,47.4151333],[10.9705339,47.4151855],[10.9705499,47.4152468],[10.9705574,47.4152968],[10.9705798,47.4153365],[10.9706108,47.4153897],[10.9706254,47.4154555],[10.9706395,47.4155067],[10.9706769,47.4155405],[10.9707264,47.4155914],[10.9707436,47.4156152],[10.9707305,47.4156255],[10.9706837,47.4156576],[10.9707028,47.4156939],[10.9707051,47.4157337],[10.9706751,47.4157577],[10.9706841,47.4158089],[10.9707083,47.415844],[10.9707207,47.4158781],[10.9707869,47.4159277],[10.9708265,47.4159888],[10.9708085,47.4160219],[10.9708005,47.4160459],[10.9708096,47.4160935],[10.9708139,47.4161595],[10.9708327,47.4161844],[10.9708536,47.41624],[10.970868,47.4162979],[10.970877,47.4163399],[10.9709234,47.4164034],[10.9709602,47.416502],[10.9709882,47.4165894],[10.9710776,47.4166082],[10.9711623,47.4166349],[10.9712335,47.4166698],[10.9712979,47.4167069],[10.971332,47.4167407],[10.9713375,47.4167816],[10.9713187,47.4168648],[10.9713307,47.4168875],[10.9713596,47.4169066],[10.9713852,47.4169315],[10.9713891,47.4169668],[10.9713951,47.4170406],[10.9714625,47.4170413],[10.9714964,47.4170605],[10.971553,47.4171363],[10.9715851,47.4171474],[10.9716411,47.4171766],[10.9716718,47.4172105],[10.9716929,47.4172673],[10.9718037,47.4172484],[10.9718172,47.4172631],[10.9718261,47.4172879],[10.9718582,47.4173072],[10.9718924,47.4173421],[10.9719195,47.4173534],[10.9719571,47.4173952],[10.9719789,47.4173974],[10.972003,47.4174245],[10.9720507,47.4174697],[10.9720945,47.4174739],[10.9721367,47.4174873],[10.9721608,47.4175202],[10.9722919,47.4175215],[10.9723047,47.4175863],[10.9723368,47.4175997],[10.9724027,47.4176152],[10.9724884,47.4176124],[10.9725573,47.4176097],[10.972578,47.4176493],[10.9726656,47.4176466],[10.97276,47.4176652],[10.9729219,47.4176937],[10.9729618,47.4176616],[10.9730137,47.4176454],[10.9730436,47.4176123],[10.9730803,47.4175983],[10.9731191,47.4175992],[10.9731716,47.4176308],[10.9732122,47.4176464],[10.973249,47.4176393],[10.9733295,47.4176217],[10.9733932,47.4176054],[10.9734694,47.4176334],[10.9735471,47.4176544],[10.9736346,47.4176584],[10.9737758,47.4176496],[10.9738816,47.4176444],[10.9739089,47.4176634],[10.9739578,47.4176826],[10.9740982,47.4177304],[10.9741334,47.41772],[10.9741905,47.4177253],[10.9743728,47.4177639],[10.9743995,47.4177513],[10.9744465,47.417743],[10.9745342,47.4177504],[10.9746755,47.4177586],[10.9747598,47.4177705],[10.9748207,47.4177894],[10.9749018,47.4178095],[10.9749808,47.4178112],[10.9750395,47.4178051],[10.9751206,47.417825],[10.9751726,47.4178122],[10.9752513,47.4178003],[10.9753103,47.4178067],[10.9753814,47.4178302],[10.9754404,47.4178491],[10.975572,47.4178665],[10.9756849,47.4178816],[10.9757958,47.4178718],[10.9758634,47.4178965],[10.9759896,47.4179025],[10.9760301,47.4179124],[10.9762284,47.4178997],[10.9763108,47.4178913],[10.9763843,47.4178634],[10.9764551,47.4178664],[10.9765995,47.4178529],[10.9766434,47.4178652],[10.9767088,47.4178545],[10.9768313,47.4178389],[10.9768903,47.4178419],[10.9770237,47.4178887],[10.9771318,47.4179513],[10.9772588,47.4179525],[10.9772817,47.4179246],[10.9773356,47.4179232],[10.9773912,47.4179228],[10.9774451,47.4179395],[10.9775024,47.4179449],[10.9775728,47.4179296],[10.97763,47.417927],[10.9777597,47.4179364],[10.9778373,47.4179541],[10.9779319,47.4179852],[10.9780075,47.4179825],[10.9780971,47.4180023],[10.9782181,47.4180061],[10.9783372,47.4180392],[10.9784045,47.4180936],[10.9784513,47.418122],[10.9785614,47.4181188],[10.978756,47.4180902],[10.9788132,47.4180933],[10.979012,47.4181113],[10.9791012,47.4181176],[10.9791901,47.4181033],[10.9792675,47.4181016],[10.9793268,47.4181297],[10.9793813,47.4181851],[10.9794191,47.4182258],[10.979473,47.4182299],[10.9795371,47.4182151],[10.9795788,47.418215],[10.9795975,47.4182371],[10.9796214,47.4182574],[10.9796938,47.4182649],[10.979845,47.4182503],[10.9799593,47.4182461],[10.9800253,47.4182696],[10.980066,47.4182989],[10.98011,47.4183133],[10.9801586,47.4183051],[10.9802092,47.4183058],[10.980342,47.4183417],[10.9804132,47.4183432],[10.9804486,47.4183487],[10.980464,47.4183668],[10.9805056,47.4184031],[10.9805524,47.4184249],[10.9806482,47.4184235],[10.9806959,47.4184608],[10.9807787,47.4184876],[10.9808094,47.4185112],[10.9808568,47.4185372],[10.9809349,47.4185462],[10.9811175,47.4186087],[10.9812955,47.4187096],[10.9813289,47.4187678],[10.9814684,47.4188424],[10.9816425,47.4189674],[10.9817917,47.4190605],[10.981938,47.4191802],[10.9821814,47.4193628],[10.9825339,47.4195366],[10.982726,47.4196581],[10.9827724,47.4197221],[10.9827752,47.4197736],[10.9828781,47.4197939],[10.9829862,47.4198735],[10.9829917,47.4199988],[10.9829571,47.4200728],[10.982936,47.4201101],[10.983094,47.4201452],[10.9835985,47.4203559],[10.9837656,47.4204488],[10.9842044,47.4205628],[10.9843604,47.4207269],[10.9844268,47.4208043],[10.9845114,47.4209598],[10.984616,47.4209797],[10.9846562,47.421036],[10.9846214,47.4213579],[10.9836122,47.4300177],[10.976975,47.4348972],[10.9754884,47.4359904],[10.9741805,47.436952],[10.9729277,47.4378726],[10.972469,47.4382681],[10.9707211,47.4397819],[10.9698766,47.4405129],[10.9678428,47.4422711],[10.9670751,47.4429361],[10.9666403,47.4433117],[10.9655995,47.4442107],[10.963515,47.4460155],[10.9633882,47.4461252],[10.9624484,47.446938],[10.9614769,47.4477781],[10.9610094,47.4481828],[10.9606674,47.4484788],[10.9593507,47.4500974],[10.9581723,47.4515472],[10.9572175,47.4521959],[10.9526908,47.455271],[10.9512084,47.4562776],[10.9511433,47.456321],[10.9492685,47.4572934],[10.9478738,47.4580188],[10.9468186,47.4585702],[10.9412954,47.4614304],[10.9412576,47.4614529],[10.9395752,47.46252],[10.9392613,47.462798],[10.9386504,47.4633391],[10.9379416,47.463968],[10.9362186,47.4654982],[10.9359636,47.4657232],[10.9358285,47.465837],[10.9356954,47.4659499],[10.935581,47.4660679],[10.9354758,47.4662255],[10.9353755,47.4664103],[10.9352444,47.4665868],[10.9350574,47.4667285],[10.9349018,47.4668601],[10.9347583,47.46697],[10.9346404,47.467054],[10.934488,47.4671253],[10.9343481,47.4671826],[10.9342733,47.467228],[10.9341731,47.4673275],[10.934051,47.4674014],[10.9338817,47.4674469],[10.9337915,47.4674721],[10.9337305,47.4675083],[10.9336386,47.467579],[10.9335461,47.4676338],[10.9334278,47.4676708],[10.9333088,47.4676909],[10.9332374,47.4677193],[10.9331631,47.4677613],[10.933084,47.4678137],[10.9330127,47.4678432],[10.9328233,47.4678757],[10.9327285,47.4679101],[10.9326157,47.4679377],[10.9324993,47.4680456],[10.9323676,47.4681418],[10.9323388,47.4681615],[10.9322866,47.4681971],[10.9322308,47.4682352],[10.9318515,47.4684947],[10.9310876,47.4690548],[10.930248,47.4696688],[10.930144,47.4697449],[10.929951,47.469886],[10.9297694,47.4700189],[10.9295387,47.4702317],[10.9281071,47.4719238],[10.9288081,47.473178],[10.9301464,47.4739672],[10.9306533,47.4742679],[10.9316715,47.4748683],[10.9318888,47.47503],[10.9329491,47.4758287],[10.9351726,47.4774977],[10.9371091,47.4789472],[10.9376345,47.4793417],[10.9379694,47.4795969],[10.9384622,47.4799665],[10.93844,47.480023],[10.9384151,47.4800192],[10.9380225,47.480422],[10.9371742,47.4811371],[10.9360352,47.4819325],[10.9351926,47.4823675],[10.9349484,47.4825303],[10.9343493,47.4827218],[10.933476,47.482852],[10.9326836,47.482892],[10.9320264,47.4827877],[10.931342,47.4827016],[10.9303825,47.4824643],[10.9296427,47.4823067],[10.9289625,47.4822591],[10.9284507,47.4822974],[10.9275927,47.4823353],[10.9264459,47.4824579],[10.9253533,47.4825353],[10.9245625,47.4827008],[10.9231724,47.4830758],[10.9223538,47.4832055],[10.9203894,47.4835566],[10.9197909,47.4838198],[10.9191102,47.4840564],[10.9182651,47.4842761],[10.9179726,47.4842977],[10.9172149,47.4842736],[10.9168815,47.4842148],[10.9163333,47.4841479],[10.9161068,47.4841474],[10.9159067,47.4841965],[10.9157164,47.4842782],[10.9155334,47.4843768],[10.9152152,47.4846251],[10.9150744,47.4847003],[10.9149874,47.484724],[10.9147235,47.4847563],[10.9143316,47.4847397],[10.9134938,47.4847331],[10.9131519,47.4847644],[10.9128886,47.4848727],[10.9125165,47.4851413],[10.9122156,47.4852669],[10.9119291,47.4852971],[10.9112241,47.485285],[10.9109019,47.485326],[10.9106555,47.4853769],[10.9101153,47.485521],[10.9099244,47.4855481],[10.9098208,47.4855407],[10.9097209,47.4855098],[10.9093718,47.4852708],[10.9092597,47.4852137],[10.9088484,47.4851215],[10.9084258,47.4850869],[10.9077049,47.4850827],[10.9067964,47.4850428],[10.9061745,47.4849961],[10.9056828,47.4848337],[10.9054071,47.4847617],[10.9051521,47.4847447],[10.9045626,47.4847397],[10.9044586,47.4846957],[10.9043782,47.4846359],[10.9041767,47.4844118],[10.9037556,47.4841468],[10.9035716,47.4840639],[10.9033963,47.4840569],[10.9028868,47.4840961],[10.9026557,47.484092],[10.9025159,47.4840509],[10.9017357,47.4837248],[10.9015841,47.4836941],[10.9008307,47.4836404],[10.9005113,47.4835712],[10.9003234,47.4834988],[10.9000957,47.483445],[10.8998607,47.4834462],[10.8996861,47.483502],[10.8991866,47.4837217],[10.8990833,47.4837328],[10.8989674,47.4837045],[10.8988634,47.4836527],[10.8987947,47.4835692],[10.8987937,47.483475],[10.8988481,47.4833386],[10.8988277,47.4832915],[10.8987755,47.4832499],[10.8986517,47.4832191],[10.8980302,47.4832117],[10.8977197,47.4832367],[10.8975007,47.48323],[10.8968382,47.4831077],[10.8967149,47.4831161],[10.8965917,47.4831507],[10.8964134,47.4832327],[10.8960718,47.4833287],[10.8959407,47.4833502],[10.8958092,47.4833378],[10.8956732,47.483286],[10.8951549,47.4828697],[10.8946992,47.4827044],[10.8939894,47.4826293],[10.8938177,47.4825909],[10.8936019,47.4825186],[10.8933936,47.4824045],[10.893152,47.4821596],[10.892942,47.4818883],[10.8924185,47.4813437],[10.8921535,47.4811434],[10.8915071,47.4810131],[10.8912481,47.4810038],[10.8910093,47.4810285],[10.8909021,47.4810605],[10.8906644,47.4811768],[10.8904183,47.4812565],[10.8900804,47.4813132],[10.8899568,47.4813086],[10.8896813,47.4812419],[10.8893617,47.481136],[10.8890981,47.4810693],[10.8887383,47.4810661],[10.8885761,47.4810404],[10.8879527,47.4808444],[10.8872995,47.4808423],[10.8871121,47.4808118],[10.88698,47.4807548],[10.8868207,47.4806223],[10.8865314,47.4801649],[10.8865189,47.480134],[10.8864363,47.4800491],[10.8863346,47.4799522],[10.8862519,47.4798651],[10.8862139,47.4798334],[10.8861507,47.4797807],[10.8860272,47.4797204],[10.8859531,47.4796966],[10.8859334,47.4796904],[10.8858224,47.4796573],[10.885739,47.4796349],[10.8855438,47.4796123],[10.8855378,47.4796116],[10.8854096,47.479606],[10.8853415,47.479588],[10.8852606,47.479543],[10.8851691,47.4794867],[10.8849891,47.4794094],[10.8848099,47.4793493],[10.8846001,47.4793248],[10.8844621,47.4793251],[10.8843748,47.4793314],[10.8837422,47.479506],[10.8834491,47.4795823],[10.88323,47.4796194],[10.8830605,47.4796317],[10.8828366,47.4796326],[10.8826647,47.4796257],[10.8825461,47.4796075],[10.8824317,47.4795699],[10.8821157,47.4794213],[10.8819494,47.4793449],[10.8816551,47.4791856],[10.8814595,47.479178],[10.8812601,47.4792852],[10.8810488,47.4793894],[10.8808963,47.4794469],[10.8804829,47.4795446],[10.8802717,47.4795713],[10.8800597,47.4795732],[10.8799448,47.4795605],[10.8796954,47.4795142],[10.8793474,47.4794457],[10.8790894,47.4793904],[10.8788759,47.4793581],[10.8787326,47.4793564],[10.8785879,47.4793568],[10.8784872,47.4793633],[10.878381,47.4794005],[10.8782887,47.4794512],[10.8781383,47.479541],[10.87809,47.4795699],[10.8778018,47.4797664],[10.8777046,47.479838],[10.877514,47.4799788],[10.8773657,47.4800976],[10.8772534,47.4801599],[10.8770063,47.4802967],[10.8769937,47.4803037],[10.8767707,47.4804114],[10.87659,47.4804775],[10.8764289,47.480493],[10.8762719,47.4804779],[10.8760819,47.4804439],[10.8758944,47.4803849],[10.8756768,47.4802947],[10.8755776,47.4802568],[10.875515,47.480249],[10.8752353,47.4802463],[10.8749404,47.4802792],[10.8747229,47.4803107],[10.8745987,47.4803503],[10.8744802,47.4803881],[10.8743632,47.4804354],[10.8742764,47.4804703],[10.8741309,47.4805766],[10.8739987,47.4807178],[10.8739142,47.480873],[10.8738779,47.4809533],[10.873857,47.4809992],[10.8738061,47.4810701],[10.8737884,47.4810949],[10.873713,47.4811827],[10.8736197,47.4812515],[10.8735736,47.4812753],[10.8734153,47.4813566],[10.8732913,47.4814102],[10.8731612,47.4814809],[10.8729554,47.4815997],[10.8727073,47.4817033],[10.8724362,47.4817847],[10.8723011,47.4818179],[10.8721857,47.481835],[10.8720642,47.4818315],[10.8719224,47.4818195],[10.8718223,47.4818043],[10.8717437,47.4817739],[10.8716298,47.4817045],[10.8715451,47.4816493],[10.8714476,47.4816147],[10.8713464,47.4816076],[10.8712648,47.4816319],[10.8712077,47.4816751],[10.8711663,47.4817315],[10.8711381,47.4818231],[10.8711035,47.4819271],[10.8710656,47.4820291],[10.8710161,47.4821381],[10.8709259,47.4823217],[10.8708311,47.4824747],[10.8707353,47.4825993],[10.8706486,47.4827033],[10.8705391,47.4828282],[10.8704549,47.4829094],[10.8704031,47.4829593],[10.8702917,47.4830364],[10.8701773,47.4831194],[10.8700894,47.483196],[10.8700396,47.483255],[10.8699979,47.4833457],[10.8699634,47.4834475],[10.8699346,47.4835265],[10.8699282,47.4835789],[10.8699448,47.483656],[10.8700174,47.4837842],[10.8700351,47.4838487],[10.8700414,47.4839168],[10.8700369,47.4839714],[10.8700074,47.4840323],[10.8699654,47.4840796],[10.8699247,47.4841122],[10.8698655,47.4841453],[10.8697811,47.4841787],[10.869629,47.4842509],[10.8695749,47.4842872],[10.8695204,47.4843531],[10.8695105,47.4844033],[10.8695146,47.484543],[10.8695354,47.4846392],[10.8695367,47.4846733],[10.8695254,47.4847248],[10.8694977,47.48479],[10.8694915,47.4848425],[10.8694936,47.4848937],[10.8695076,47.4849502],[10.8695372,47.4850156],[10.869567,47.4850867],[10.8695838,47.4851239],[10.8696046,47.485185],[10.8696057,47.4852497],[10.8695795,47.4853116],[10.8695194,47.4854037],[10.8694568,47.485522],[10.8694321,47.4855781],[10.869419,47.4856274],[10.8694281,47.4856863],[10.8694468,47.4857314],[10.8694753,47.4857718],[10.8695242,47.4858141],[10.8695923,47.4858743],[10.8696173,47.4859079],[10.8696236,47.4859384],[10.8696206,47.4859896],[10.8696106,47.4860341],[10.8696106,47.4860706],[10.8696195,47.4861145],[10.869626,47.4861655],[10.8696385,47.4862426],[10.8696335,47.4863006],[10.8696007,47.4863852],[10.869551,47.4864666],[10.8694092,47.4866788],[10.8693855,47.4867347],[10.8693985,47.486771],[10.8694774,47.4868731],[10.8695027,47.486933],[10.8695038,47.4869694],[10.8694882,47.4870105],[10.8694831,47.4870639],[10.8695013,47.487108],[10.8695294,47.487145],[10.8695865,47.4871977],[10.869666,47.4872646],[10.8696942,47.4873028],[10.8697197,47.4873729],[10.869723,47.4874228],[10.8697173,47.4874581],[10.8696777,47.4875417],[10.8696522,47.4875875],[10.8696247,47.4876844],[10.8696061,47.4877358],[10.8695455,47.4878469],[10.8695258,47.4879221],[10.8695266,47.4880005],[10.8695404,47.4880662],[10.8695747,47.4881452],[10.8696457,47.4882624],[10.8696825,47.488314],[10.8696903,47.4883469],[10.8696881,47.4883843],[10.8696894,47.4884288],[10.8697113,47.4884875],[10.8697593,47.4886242],[10.869783,47.4887397],[10.8698038,47.4888121],[10.8698282,47.4888436],[10.8698576,47.4888715],[10.869918,47.4889196],[10.8699731,47.4889608],[10.8700143,47.4889886],[10.8700532,47.4890436],[10.870087,47.4891057],[10.8701123,47.489161],[10.8701314,47.489239],[10.8701344,47.4892777],[10.8701267,47.489355],[10.8701286,47.4894221],[10.8701474,47.4894854],[10.8701985,47.4895653],[10.8702602,47.489653],[10.8703945,47.4898044],[10.8704609,47.4898876],[10.8704922,47.4899258],[10.8705338,47.4899592],[10.8705895,47.4900209],[10.8706383,47.490077],[10.8707074,47.4901862],[10.870751,47.4902356],[10.8707941,47.4902712],[10.8708338,47.4903037],[10.8708842,47.4903586],[10.8709026,47.4904037],[10.8709002,47.4904389],[10.8708848,47.4904812],[10.8708776,47.490528],[10.8708876,47.4905767],[10.8709246,47.4906317],[10.8710105,47.4907475],[10.871046,47.4908096],[10.8710848,47.4908612],[10.8711042,47.4908881],[10.8711014,47.4909109],[10.8710853,47.4909362],[10.8710565,47.4909831],[10.8710477,47.4910287],[10.871044,47.4910731],[10.8710279,47.4910937],[10.8709797,47.4911205],[10.870952,47.4911471],[10.8709425,47.49117],[10.8709387,47.4912087],[10.8709282,47.4912508],[10.8709219,47.4913202],[10.8709112,47.4913579],[10.8709074,47.4914],[10.8709357,47.4914394],[10.8709806,47.4914819],[10.8710073,47.4915302],[10.8710254,47.4915743],[10.8710781,47.4916406],[10.8711445,47.4917225],[10.8712224,47.4917907],[10.8712892,47.4918284],[10.871383,47.4918703],[10.8714159,47.491897],[10.8714169,47.4919277],[10.8714169,47.4919867],[10.871413,47.4920265],[10.8714046,47.4920824],[10.8714146,47.4921322],[10.871465,47.4921871],[10.8715033,47.4922274],[10.8715111,47.4922614],[10.8714808,47.4923141],[10.8714178,47.492407],[10.8714141,47.4924514],[10.8714253,47.4924898],[10.8714826,47.4925469],[10.8715692,47.4926229],[10.8716533,47.4926773],[10.8717357,47.4927296],[10.8717725,47.4927768],[10.8717722,47.4928211],[10.8717522,47.4928827],[10.8717319,47.4929353],[10.8717214,47.4929763],[10.8717258,47.4930138],[10.8717578,47.4930667],[10.8717779,47.4931197],[10.8717698,47.4931903],[10.8717491,47.4932815],[10.8716921,47.4933982],[10.8716213,47.4935094],[10.8715717,47.4935976],[10.8715652,47.4936613],[10.8715644,47.4937431],[10.8715691,47.4938453],[10.8715631,47.4939794],[10.8715513,47.4940364],[10.8715303,47.4940685],[10.8714956,47.4940873],[10.8714386,47.4940971],[10.8713492,47.4940927],[10.8712841,47.4941095],[10.8712445,47.4941385],[10.8712269,47.4941695],[10.8712129,47.4942049],[10.8711997,47.4942698],[10.8711939,47.4942994],[10.8711692,47.4943214],[10.8711392,47.4943332],[10.8710978,47.4943543],[10.8710417,47.4943903],[10.8709939,47.4944273],[10.8709632,47.4944675],[10.870956,47.4945086],[10.870964,47.4945459],[10.8709819,47.4945831],[10.8710199,47.4946167],[10.8710849,47.494651],[10.8711344,47.4946718],[10.8711588,47.494701],[10.8712823,47.4948287],[10.8713976,47.4949679],[10.8714733,47.4950759],[10.8714894,47.4951074],[10.8714832,47.4951234],[10.871459,47.495159],[10.8714469,47.4952092],[10.8714414,47.4952467],[10.8714561,47.495285],[10.8714839,47.4953142],[10.8715186,47.4953455],[10.8715547,47.4953723],[10.8715758,47.4954016],[10.8715749,47.4954299],[10.8715715,47.4954822],[10.8715473,47.4955145],[10.8714706,47.495595],[10.8714082,47.4956516],[10.8713973,47.495679],[10.8713997,47.4957017],[10.8714265,47.4957593],[10.8714347,47.4958024],[10.8714378,47.4958522],[10.8714324,47.4958933],[10.8714407,47.4959443],[10.8714491,47.4960021],[10.8714612,47.4960666],[10.8714646,47.4961256],[10.871459,47.4961598],[10.871441,47.4961771],[10.8714128,47.4961901],[10.8712982,47.4962416],[10.8712464,47.4962583],[10.871207,47.4962872],[10.8711642,47.4963231],[10.8711381,47.4963519],[10.8711134,47.4963705],[10.8710769,47.4963903],[10.8710354,47.4964091],[10.8710239,47.4964194],[10.8710211,47.4964331],[10.871015,47.4964593],[10.8709971,47.49648],[10.8709774,47.4964973],[10.8709441,47.4965035],[10.8708887,47.4965112],[10.8708619,47.4965206],[10.8708369,47.4965288],[10.8708341,47.4965493],[10.870832,47.4965858],[10.8708339,47.4966494],[10.8708382,47.4966811],[10.8708274,47.4967097],[10.87081,47.4967507],[10.8707992,47.4967839],[10.8707999,47.4968635],[10.8708055,47.4968838],[10.8707839,47.4968943],[10.8707638,47.4968969],[10.8706918,47.496907],[10.8706365,47.496918],[10.8705914,47.4969335],[10.870584,47.4969608],[10.8705598,47.4969976],[10.8705359,47.4970467],[10.8705147,47.4970652],[10.8704863,47.4970725],[10.8704495,47.4970809],[10.8704008,47.4970896],[10.8703778,47.4971058],[10.8703718,47.4971331],[10.8703733,47.4971785],[10.8703715,47.4972309],[10.8703607,47.497265],[10.8703153,47.4973215],[10.8702619,47.4973949],[10.8702354,47.4974646],[10.8702297,47.4974964],[10.8702072,47.497532],[10.8701793,47.4975574],[10.8701186,47.4976116],[10.8701014,47.4976539],[10.8701176,47.4976912],[10.8701611,47.4977383],[10.8702375,47.4978144],[10.8702638,47.4978481],[10.8702635,47.4978925],[10.8702552,47.4979527],[10.8702396,47.4979916],[10.8701973,47.4980422],[10.8701021,47.4981265],[10.8700648,47.4981747],[10.8700574,47.4982079],[10.8700677,47.4982433],[10.8700552,47.4982856],[10.870075,47.4983342],[10.8701358,47.4984084],[10.8701834,47.4985011],[10.8702566,47.4986742],[10.8702879,47.4987796],[10.8702929,47.4988511],[10.8702639,47.4990402],[10.8702701,47.4990867],[10.8702945,47.4991193],[10.8703475,47.4991539],[10.8703774,47.4991756],[10.8704109,47.4991999],[10.8704574,47.4992391],[10.8705159,47.4992885],[10.8705924,47.4993183],[10.8706602,47.4993356],[10.870729,47.4993304],[10.8707844,47.4993195],[10.8708551,47.4993186],[10.8709021,47.4993136],[10.8709354,47.4992984],[10.8710215,47.4992405],[10.8710613,47.4992117],[10.8711266,47.4991938],[10.8711939,47.499193],[10.8712851,47.4992022],[10.8713552,47.4992481],[10.8714984,47.4993202],[10.8715997,47.4994009],[10.8716981,47.4994965],[10.871714,47.4995269],[10.8717137,47.4995861],[10.8717338,47.4996495],[10.8717772,47.499699],[10.8717973,47.4997636],[10.8718308,47.499828],[10.8718702,47.4998594],[10.871925,47.499894],[10.8719636,47.4999538],[10.8719818,47.5000127],[10.8719546,47.5000697],[10.871911,47.5001464],[10.8719023,47.5002092],[10.8719313,47.5002895],[10.8719887,47.5003627],[10.8720635,47.5003903],[10.8721178,47.5004089],[10.8721765,47.5004662],[10.8722255,47.5004736],[10.8724973,47.5005022],[10.8727703,47.5005105],[10.8728867,47.5005159],[10.8730664,47.5005684],[10.8732722,47.5006502],[10.8734136,47.5007168],[10.8734689,47.5007718],[10.8735459,47.5008233],[10.8736316,47.5008858],[10.8737686,47.5009764],[10.8738662,47.5010446],[10.8739722,47.5011035],[10.8741174,47.5011917],[10.8742323,47.5012756],[10.8743384,47.5013381],[10.8744048,47.501368],[10.8744477,47.5014027],[10.874501,47.5014487],[10.8745543,47.5014947],[10.8746501,47.5015515],[10.8746967,47.5016011],[10.874723,47.5016417],[10.8747889,47.5017204],[10.8749671,47.5018491],[10.8750512,47.501914],[10.8751006,47.5019327],[10.8751363,47.5019461],[10.8752191,47.5020291],[10.8752809,47.5020717],[10.875352,47.5020935],[10.875415,47.5021246],[10.8754634,47.5021719],[10.875503,47.5022078],[10.8755422,47.5022288],[10.875651,47.5023379],[10.8758132,47.5024872],[10.8758848,47.5025262],[10.8759424,47.5025391],[10.8760003,47.5025669],[10.8760448,47.502594],[10.8761029,47.5026293],[10.8762255,47.5026893],[10.8763478,47.5027311],[10.8764208,47.5027507],[10.8765005,47.5027782],[10.8765707,47.5028206],[10.8767632,47.5029763],[10.8768235,47.5030416],[10.8768338,47.5030426],[10.8768731,47.5030694],[10.8769112,47.5031099],[10.8769519,47.503123],[10.8771096,47.5031655],[10.8772405,47.5032151],[10.8772879,47.5032248],[10.8774292,47.5032164],[10.8774732,47.5032295],[10.877502,47.5032315],[10.8775913,47.5032384],[10.8776352,47.503239],[10.877698,47.503261],[10.8777401,47.5032594],[10.8778324,47.5032424],[10.8778894,47.5032383],[10.8780366,47.5032616],[10.8780928,47.5032882],[10.8781409,47.5033264],[10.8782109,47.5033687],[10.8782534,47.5033784],[10.8783107,47.5033846],[10.8783737,47.5034123],[10.8784401,47.5034411],[10.8785689,47.5034749],[10.8787084,47.5035289],[10.8788139,47.5035765],[10.8788651,47.5036043],[10.8788793,47.5036303],[10.8788953,47.5036609],[10.8789394,47.5036796],[10.8790327,47.5037058],[10.8791108,47.50373],[10.8792038,47.5037482],[10.8792594,47.5037464],[10.8792894,47.5037381],[10.8793209,47.5037207],[10.8793496,47.503717],[10.8793966,47.5037141],[10.8794558,47.5037191],[10.8794966,47.5037402],[10.8796222,47.5038513],[10.8796819,47.503879],[10.8797534,47.5039089],[10.8798047,47.5039367],[10.8798505,47.5039543],[10.879944,47.503993],[10.8800203,47.5040137],[10.8800708,47.5040109],[10.8801328,47.5039942],[10.880171,47.5039756],[10.880201,47.5039594],[10.8802441,47.5039328],[10.8802861,47.5039266],[10.8803385,47.5039351],[10.8804757,47.5039698],[10.8808764,47.5040982],[10.8809188,47.5041101],[10.8811932,47.5041036],[10.8812115,47.5040965],[10.8812897,47.5040626],[10.8813785,47.5040389],[10.8814543,47.5040392],[10.8815084,47.5040499],[10.8815658,47.504056],[10.8816395,47.5040415],[10.8817619,47.5040162],[10.8818438,47.5039925],[10.8818836,47.5039819],[10.8819375,47.5039676],[10.8820267,47.5039699],[10.8820845,47.5039886],[10.8821292,47.5040199],[10.8821401,47.5040538],[10.8821236,47.5041381],[10.8821198,47.5041928],[10.8821599,47.5042389],[10.8822195,47.5042735],[10.8822871,47.5042818],[10.8823612,47.5042809],[10.882397,47.5042987],[10.8824437,47.5043459],[10.8824844,47.5043625],[10.8825517,47.5043617],[10.8827441,47.5043708],[10.8827978,47.5043644],[10.8828485,47.5043764],[10.8830144,47.5044096],[10.8831313,47.5044367],[10.883233,47.5044617],[10.8832824,47.5044839],[10.8833485,47.5045024],[10.8834997,47.5045575],[10.8836327,47.5046184],[10.8836703,47.504643],[10.8837125,47.5046459],[10.8838021,47.5046562],[10.8838462,47.5046683],[10.8838668,47.5046919],[10.8838711,47.5046961],[10.8839135,47.5047391],[10.8839409,47.5047581],[10.8840023,47.5047847],[10.8841767,47.5048236],[10.8843048,47.5048596],[10.8843937,47.5048847],[10.8844718,47.5049099],[10.8845128,47.504931],[10.8845764,47.5049826],[10.8846052,47.5049936],[10.8846322,47.5049956],[10.8846796,47.5050007],[10.8847409,47.5050272],[10.8847956,47.5050664],[10.8848788,47.505162],[10.8849218,47.5051934],[10.8849556,47.5051997],[10.8850601,47.5052077],[10.8851325,47.5052022],[10.8851714,47.505211],[10.885211,47.50524],[10.8852711,47.5052916],[10.885331,47.5053295],[10.8854005,47.5053492],[10.8855125,47.5053786],[10.8855698,47.5053847],[10.885652,47.5053667],[10.8857306,47.5053465],[10.8857886,47.5053072],[10.8858297,47.5052657],[10.8858677,47.5052368],[10.8859027,47.5052239],[10.8859598,47.5052164],[10.8860003,47.5052217],[10.8860614,47.5052392],[10.8861297,47.5052747],[10.8861727,47.5053117],[10.8862293,47.5053566],[10.886276,47.5054071],[10.8863173,47.5054442],[10.8863856,47.5054752],[10.8864518,47.5054938],[10.8864874,47.505507],[10.8865229,47.5055145],[10.8865402,47.5055314],[10.8865595,47.505563],[10.8865939,47.505592],[10.8866523,47.5056357],[10.886813,47.5057305],[10.8868725,47.5057537],[10.8869029,47.5057579],[10.8869346,47.5057496],[10.8869828,47.5057194],[10.8870611,47.5056878],[10.8871266,47.5056803],[10.887193,47.5056784],[10.8872007,47.5056782],[10.8872833,47.5056864],[10.8873547,47.5057094],[10.8874264,47.5057461],[10.8875066,47.5057895],[10.8875712,47.505816],[10.8876798,47.5058465],[10.8877612,47.5058729],[10.8877853,47.5058896],[10.8878099,47.5059338],[10.8878581,47.5059752],[10.887895,47.5059942],[10.8879468,47.5060208],[10.888013,47.5060359],[10.8881011,47.5060621],[10.8881783,47.5061169],[10.8882412,47.5061446],[10.8883027,47.5061757],[10.8883305,47.5062139],[10.8883868,47.5063054],[10.8884232,47.5063505],[10.8885413,47.5064208],[10.8886871,47.5064951],[10.8887442,47.506524],[10.8887917,47.5065394],[10.8888949,47.5065621],[10.8889661,47.5065772],[10.8890258,47.5066071],[10.8891274,47.5066935],[10.8892084,47.5067698],[10.8892735,47.5068157],[10.8893298,47.5068445],[10.8893906,47.5068518],[10.88945,47.5068715],[10.8895199,47.506906],[10.8896121,47.5069561],[10.8897022,47.5069903],[10.8898021,47.5070084],[10.8898678,47.5070167],[10.8899003,47.5070288],[10.8899121,47.5070333],[10.8899516,47.507059],[10.8900029,47.5070958],[10.8900453,47.5071033],[10.8901182,47.5071217],[10.8902195,47.5071365],[10.8903258,47.5071409],[10.8903998,47.5071412],[10.890478,47.5071631],[10.8905307,47.5071875],[10.8905754,47.5072244],[10.8906649,47.5073722],[10.8907023,47.5074469],[10.8907256,47.5075091],[10.8907707,47.507562],[10.8908218,47.5075829],[10.8908739,47.5075778],[10.8909258,47.5075625],[10.8909726,47.5075482],[10.8910772,47.5075539],[10.89119,47.507556],[10.8912308,47.5075668],[10.891263,47.5075801],[10.8913472,47.5075814],[10.8914329,47.5075701],[10.8915033,47.5075613],[10.8915856,47.5075467],[10.8916847,47.5075376],[10.8919846,47.507542],[10.8922696,47.5075558],[10.8923982,47.5075758],[10.8924715,47.5076091],[10.8925126,47.5076438],[10.8925491,47.5076877],[10.8925925,47.5077441],[10.8926491,47.5077809],[10.8926931,47.5077895],[10.8927589,47.5077899],[10.892964,47.5077771],[10.8930343,47.5077616],[10.8930825,47.5077394],[10.8931206,47.5077116],[10.8931521,47.5076864],[10.8931868,47.5076632],[10.8932186,47.5076571],[10.8933532,47.5076476],[10.893461,47.5076486],[10.8935606,47.5076566],[10.8936336,47.5076784],[10.8937642,47.5077167],[10.8938895,47.5077436],[10.8940301,47.5077749],[10.8941316,47.5077908],[10.8941963,47.5078218],[10.8942609,47.5078495],[10.8943032,47.5078501],[10.8945929,47.5078524],[10.8948169,47.5078543],[10.8949469,47.5078665],[10.8951139,47.507878],[10.8954377,47.5078936],[10.8957162,47.5079165],[10.8959342,47.5079446],[10.8960113,47.5079433],[10.8961884,47.5079405],[10.8965357,47.5079523],[10.896765,47.5079666],[10.8969137,47.5079841],[10.8969663,47.5079973],[10.8971301,47.5080828],[10.8971997,47.5081025],[10.897262,47.5081062],[10.8974492,47.5081165],[10.8976562,47.5081118],[10.8977287,47.5081156],[10.8978089,47.5081544],[10.8979008,47.5081885],[10.8980302,47.5082484],[10.8981267,47.5082643],[10.898198,47.5082918],[10.8982641,47.5083093],[10.8983155,47.5083405],[10.898372,47.5083751],[10.8984468,47.5084026],[10.8984913,47.5084317],[10.8985101,47.5084461],[10.8985315,47.5084902],[10.898542,47.5085049],[10.898615,47.5085336],[10.898656,47.5085502],[10.8987428,47.5085924],[10.8987886,47.5086044],[10.8988359,47.5086071],[10.898863,47.5086159],[10.8989245,47.5086494],[10.8989786,47.5086578],[10.8990359,47.5086548],[10.8990833,47.5086656],[10.8991529,47.5086887],[10.8992466,47.5087342],[10.8993026,47.5087516],[10.8993429,47.5087466],[10.8995248,47.5087445],[10.8995991,47.5087505],[10.8996466,47.5087681],[10.8997507,47.5088226],[10.8998136,47.508848],[10.8998847,47.5088551],[10.8999707,47.5088643],[10.9000476,47.5088626],[10.9000885,47.5088617],[10.9001461,47.5088713],[10.9001923,47.5089025],[10.9002591,47.5089451],[10.9003087,47.5089706],[10.9003617,47.5090086],[10.9003994,47.5090343],[10.9004351,47.5090441],[10.9004908,47.5090503],[10.9005417,47.5090621],[10.9005944,47.5090866],[10.9006691,47.5091118],[10.9007405,47.5091303],[10.9008825,47.5091582],[10.9009519,47.5091699],[10.9009946,47.509191],[10.9010474,47.5092176],[10.9010967,47.5092296],[10.901159,47.5092333],[10.9012381,47.509229],[10.9012801,47.5092273],[10.9013202,47.5092121],[10.9013486,47.5092038],[10.9013569,47.509202],[10.9013904,47.5091943],[10.9014091,47.5091986],[10.9014366,47.5092244],[10.9014438,47.5092414],[10.9014599,47.5092764],[10.9014856,47.5092943],[10.9015418,47.5093254],[10.9015797,47.50935],[10.9016275,47.5093767],[10.9017126,47.5094132],[10.9017891,47.509443],[10.9018701,47.5094534],[10.9019174,47.5094529],[10.9019441,47.5094423],[10.9019706,47.5094249],[10.9020154,47.5094028],[10.9020605,47.5093852],[10.9020924,47.5093826],[10.9021381,47.5093877],[10.902216,47.5094073],[10.9022973,47.5094267],[10.9023737,47.5094441],[10.9025026,47.5094801],[10.9026141,47.5094969],[10.9027564,47.5095281],[10.9028512,47.5095487],[10.9029392,47.5095624],[10.9030203,47.5095774],[10.9030832,47.5096005],[10.9031299,47.5096333],[10.9031853,47.509654],[10.9032558,47.5096658],[10.9033467,47.5096764],[10.9034375,47.5096872],[10.9035264,47.509708],[10.9036222,47.5097313],[10.9036962,47.5097429],[10.9038054,47.5097549],[10.9038712,47.5097586],[10.9039198,47.5097702],[10.9040186,47.5098242],[10.904047,47.5098402],[10.9041023,47.5098564],[10.9041492,47.5098749],[10.9041877,47.5099023],[10.9042359,47.5099433],[10.9042657,47.5099845],[10.9043007,47.5100097],[10.9043511,47.5100292],[10.9043792,47.5100578],[10.904401,47.5100829],[10.9044342,47.5101115],[10.904489,47.510152],[10.9045159,47.5101721],[10.904589,47.5102497],[10.9046357,47.5102954],[10.9046804,47.5103536],[10.9047085,47.5103844],[10.9047502,47.5104221],[10.9047766,47.5104711],[10.9047892,47.5105268],[10.904809,47.5105576],[10.9048488,47.5106022],[10.9048869,47.5106511],[10.9049487,47.5107003],[10.9050154,47.5107473],[10.9051043,47.5107807],[10.9052302,47.5108142],[10.9053191,47.510842],[10.9053608,47.5108683],[10.9054161,47.5108982],[10.9055019,47.5109122],[10.9056026,47.5109298],[10.9057017,47.5109553],[10.9057772,47.5109852],[10.9058392,47.5110003],[10.9059654,47.5110111],[10.9061385,47.511046],[10.9062795,47.511082],[10.9063602,47.5111007],[10.9064527,47.5111147],[10.9065519,47.5111254],[10.9067248,47.5111751],[10.9068691,47.5112145],[10.9069547,47.5112377],[10.9070589,47.5112597],[10.9070667,47.5112602],[10.9071363,47.5112648],[10.9072087,47.5112628],[10.9072659,47.5112767],[10.9073297,47.5112884],[10.9073717,47.5113034],[10.9074803,47.5113619],[10.907586,47.5114034],[10.9076429,47.5114241],[10.9076766,47.5114242],[10.9077879,47.5114135],[10.9078117,47.511409],[10.9078436,47.511416],[10.9078938,47.5114378],[10.9079575,47.5114608],[10.9080095,47.5114691],[10.9081237,47.5115038],[10.9082847,47.5115511],[10.9084157,47.5115904],[10.9085772,47.5116106],[10.9087169,47.5116238],[10.9087706,47.5116309],[10.9088292,47.5116618],[10.9088747,47.5116621],[10.9089734,47.511668],[10.9090819,47.5116744],[10.9093749,47.5116794],[10.9096375,47.511684],[10.9096752,47.5116838],[10.909919,47.511682],[10.9100333,47.5116986],[10.9101543,47.511715],[10.9102165,47.5117256],[10.9102349,47.511736],[10.91029,47.5117714],[10.9103655,47.511799],[10.9104341,47.5118233],[10.9105183,47.5118395],[10.9106342,47.5118515],[10.9106966,47.5118575],[10.9108042,47.5118819],[10.9109081,47.5119108],[10.9110173,47.5119398],[10.911056,47.5119456],[10.9111014,47.5119447],[10.9112699,47.5119444],[10.9113183,47.511981],[10.9113942,47.5119802],[10.9114227,47.5119884],[10.9114846,47.5120206],[10.9115567,47.5120538],[10.9116367,47.5121099],[10.911707,47.5121455],[10.911749,47.5121502],[10.9117845,47.5121493],[10.9118485,47.5121428],[10.9119362,47.5121364],[10.9120221,47.5121425],[10.9121061,47.5121543],[10.9122071,47.5121639],[10.9123198,47.5121804],[10.9124425,47.5122048],[10.9125502,47.5122155],[10.9126559,47.5122445],[10.9127331,47.5122642],[10.9128473,47.512292],[10.9129447,47.5123084],[10.9130372,47.5123249],[10.9130857,47.512358],[10.9131712,47.5123822],[10.9132838,47.5124147],[10.9134099,47.51243],[10.9134789,47.5124282],[10.9135225,47.512442],[10.9135728,47.512473],[10.9136532,47.5125074],[10.9137352,47.5125464],[10.9137973,47.5125684],[10.9138476,47.5125856],[10.9139027,47.5126109],[10.9139649,47.5126249],[10.9140153,47.5126365],[10.9141297,47.512653],[10.9142238,47.5126647],[10.9143063,47.5126698],[10.9143837,47.5126827],[10.9144308,47.5126953],[10.9145213,47.5127208],[10.914612,47.5127384],[10.9146997,47.5127421],[10.9148173,47.5127552],[10.9148931,47.5127658],[10.9149617,47.5127888],[10.9150628,47.5128041],[10.9151653,47.5128205],[10.9152511,47.5128278],[10.9153622,47.512834],[10.9154531,47.512839],[10.9155777,47.5128465],[10.9156602,47.5128469],[10.9156989,47.5128596],[10.9157542,47.5128803],[10.9158111,47.5129022],[10.9159048,47.5129549],[10.9160036,47.5129986],[10.9160941,47.513032],[10.9161865,47.5130495],[10.9162151,47.5130552],[10.9162854,47.5130966],[10.9163724,47.5131425],[10.9164663,47.5131792],[10.9165415,47.5132239],[10.9165833,47.5132479],[10.9166268,47.5132675],[10.9167511,47.5132999],[10.916904,47.5133348],[10.9170063,47.513358],[10.9170836,47.5133868],[10.9171253,47.5134188],[10.9171839,47.5134441],[10.9173199,47.5134755],[10.9174846,47.5135104],[10.9176056,47.513528],[10.917693,47.5135467],[10.9178274,47.513586],[10.918007,47.5136312],[10.9179761,47.5136696],[10.9179537,47.5137104],[10.9179277,47.5137671],[10.9178931,47.5138329],[10.9178702,47.5139065],[10.9178641,47.5139826],[10.91784,47.5140303],[10.9178093,47.5140665],[10.9177479,47.5141241],[10.9177068,47.5141808],[10.9176634,47.5142692],[10.9176272,47.5143394],[10.9175976,47.5144041],[10.9175801,47.5144562],[10.9175779,47.514496],[10.917571,47.5145175],[10.9175335,47.5145503],[10.9174687,47.5146068],[10.9173851,47.514694],[10.9173678,47.5147199],[10.9173622,47.5147552],[10.9173786,47.5149189],[10.9173965,47.5149679],[10.9174061,47.5150098],[10.9174007,47.5150416],[10.9173682,47.5150744],[10.917346,47.5150993],[10.9173404,47.5151402],[10.9173316,47.5151686],[10.9173111,47.515197],[10.9172923,47.5152207],[10.9172833,47.5152546],[10.9172856,47.5153387],[10.9172952,47.5153706],[10.9173032,47.5154104],[10.9173044,47.5154479],[10.9173242,47.5154742],[10.9173676,47.515513],[10.9174192,47.5155644],[10.9174626,47.515593],[10.9174876,47.5156136],[10.9174991,47.5156432],[10.9175052,47.5156842],[10.9175199,47.5157161],[10.9175448,47.5157491],[10.917556,47.5157969],[10.9175734,47.5158822],[10.9176138,47.5160176],[10.9176335,47.5160552],[10.9176568,47.5160815],[10.9177618,47.5161593],[10.917765,47.516182],[10.9178013,47.5162446],[10.9178458,47.5163153],[10.9178702,47.5163757],[10.9178817,47.516403],[10.9181107,47.516678],[10.9181574,47.5167111],[10.9182224,47.5167637],[10.9182522,47.5168014],[10.918277,47.5168435],[10.9183153,47.5168755],[10.9183335,47.5169086],[10.9183264,47.5169415],[10.9183325,47.516979],[10.9183639,47.5170246],[10.9184818,47.5171581],[10.9185151,47.5171992],[10.9185296,47.5172368],[10.9185528,47.5172801],[10.91857,47.5173017],[10.9185975,47.5173359],[10.9185534,47.5173641],[10.9185244,47.5173891],[10.918472,47.5174012],[10.9183909,47.5174111],[10.9183284,47.5174198],[10.9182742,47.5174503],[10.9182368,47.517482],[10.9182212,47.5175102],[10.9182089,47.5175443],[10.9181985,47.517576],[10.9182266,47.5176069],[10.9182479,47.5176603],[10.9182438,47.5177217],[10.9182096,47.5177511],[10.9181858,47.5177748],[10.9181398,47.5178166],[10.9181039,47.517846],[10.9180376,47.5178867],[10.918007,47.517907],[10.9179733,47.5179181],[10.9179157,47.5179314],[10.91787,47.5179561],[10.9178292,47.5179765],[10.9178154,47.5180093],[10.917793,47.5180445],[10.9177692,47.5180682],[10.9177235,47.5180862],[10.9176489,47.5181187],[10.9176065,47.518139],[10.9176048,47.5181401],[10.9175405,47.518158],[10.9174441,47.5181881],[10.9173456,47.5182434],[10.9172369,47.5183202],[10.917155,47.5183867],[10.9170631,47.5184601],[10.916988,47.5185416],[10.9169334,47.518597],[10.9168852,47.5186639],[10.9168341,47.5187045],[10.9167732,47.5187338],[10.9167088,47.5187607],[10.9165565,47.5188076],[10.9164162,47.5188399],[10.9163333,47.5188713],[10.9162587,47.5189198],[10.9162414,47.5189436],[10.9162426,47.5189765],[10.9162626,47.5190016],[10.9162555,47.5190209],[10.9162281,47.5190616],[10.9162071,47.5191229],[10.9162115,47.5191729],[10.9162079,47.5191911],[10.9161604,47.5192102],[10.9160674,47.5192393],[10.9159522,47.5192876],[10.9159014,47.5193043],[10.9158416,47.5193689],[10.9157878,47.519364],[10.9157238,47.5193511],[10.9156432,47.5193338],[10.9156013,47.5193211],[10.9154347,47.5193042],[10.9151923,47.5192781],[10.915046,47.5192649],[10.914935,47.5192517],[10.9148325,47.5192298],[10.9146208,47.5191832],[10.9144999,47.5191542],[10.9144527,47.5191507],[10.9143229,47.519159],[10.9141205,47.5191683],[10.9140059,47.5191734],[10.9139267,47.5191719],[10.9138663,47.5191579],[10.9138274,47.5191566],[10.9137416,47.519163],[10.9136168,47.5191782],[10.9135339,47.5191949],[10.9134393,47.5192036],[10.9133483,47.5192042],[10.9131917,47.5192011],[10.9130236,47.5191798],[10.9128239,47.5191232],[10.9127332,47.5190989],[10.9126677,47.5190701],[10.9126278,47.5190358],[10.912549,47.5190025],[10.9124215,47.5189621],[10.9123175,47.518923],[10.9122538,47.5189022],[10.9121951,47.5188814],[10.9121484,47.5188494],[10.9120464,47.5187842],[10.9118958,47.5187141],[10.9117651,47.5186588],[10.9116357,47.5186264],[10.9114928,47.5185951],[10.9113348,47.5185704],[10.9112375,47.5185471],[10.9111634,47.5185343],[10.9111166,47.5185102],[10.9110529,47.5184871],[10.910947,47.5184763],[10.9108376,47.5184531],[10.9107688,47.5184312],[10.9106699,47.5184],[10.9105693,47.5183631],[10.9103742,47.5183371],[10.9101672,47.5183247],[10.9100341,47.5183185],[10.9099028,47.5183053],[10.9098002,47.5182922],[10.9097011,47.518277],[10.9096186,47.518263],[10.9095597,47.518257],[10.9095077,47.5182465],[10.909474,47.5182418],[10.9093902,47.5182039],[10.9092982,47.5181534],[10.9092496,47.5181349],[10.9091774,47.5181176],[10.9090647,47.5181023],[10.9089672,47.5180848],[10.9089035,47.5180639],[10.9087253,47.5180324],[10.9084882,47.517996],[10.9081943,47.5179275],[10.9080178,47.517889],[10.9078713,47.5178781],[10.9077506,47.5178445],[10.9075674,47.5177982],[10.9075184,47.5177888],[10.9074868,47.5177829],[10.9074063,47.5177644],[10.9072536,47.5177137],[10.9070857,47.5176707],[10.9069596,47.5176485],[10.9068063,47.5176432],[10.9067053,47.5176382],[10.9066701,47.5176301],[10.906529,47.5175873],[10.9064064,47.5175605],[10.9062214,47.5175335],[10.9060449,47.5175041],[10.9058499,47.5174805],[10.9057304,47.5174742],[10.9056492,47.5174707],[10.9056124,47.517469],[10.9055145,47.5174765],[10.9053725,47.5175133],[10.9052997,47.5175425],[10.905164,47.5176134],[10.9050433,47.5176934],[10.9048784,47.5178017],[10.9047255,47.5179032],[10.9046235,47.5179686],[10.9045237,47.5180009],[10.9044473,47.5180449],[10.904386,47.5180912],[10.9043483,47.5181354],[10.904307,47.5182091],[10.9042692,47.5182588],[10.9041994,47.518313],[10.904155,47.5183583],[10.9041392,47.518407],[10.9041363,47.5185013],[10.9041343,47.5185274],[10.9041085,47.5185625],[10.9040674,47.5186169],[10.9040533,47.518661],[10.9040556,47.5187395],[10.9040366,47.5187826],[10.9040253,47.5187971],[10.9040092,47.5188177],[10.903968,47.5188629],[10.9039471,47.5189196],[10.9039545,47.5189924],[10.9039786,47.5190846],[10.903983,47.5191357],[10.9039827,47.5191584],[10.9039622,47.5191799],[10.9039351,47.5191934],[10.9038946,47.5192001],[10.9038556,47.5192089],[10.9038266,47.5192372],[10.9038192,47.5192894],[10.9038236,47.5193383],[10.9038548,47.5193907],[10.9038594,47.5194191],[10.9038556,47.5194635],[10.9038211,47.5195189],[10.903753,47.5195754],[10.9036986,47.5196138],[10.9036712,47.5196522],[10.903516,47.5199231],[10.9034294,47.5199646],[10.9033686,47.5199802],[10.9033074,47.5200242],[10.9032408,47.5200886],[10.9031893,47.5201543],[10.9031568,47.5202053],[10.9031108,47.5202392],[10.9030496,47.5202729],[10.9029668,47.5202929],[10.9029276,47.5202992],[10.9025937,47.5203525],[10.9025192,47.5203725],[10.9024751,47.5203939],[10.9024275,47.5204288],[10.9023375,47.5204817],[10.9022951,47.5204998],[10.902216,47.5205051],[10.9021318,47.5205035],[10.902044,47.5205031],[10.9019799,47.5205163],[10.9019272,47.5205457],[10.9018882,47.5205647],[10.9018524,47.5205941],[10.9018165,47.520636],[10.9017461,47.5207356],[10.9017273,47.5207571],[10.9016884,47.5207671],[10.9016429,47.5207691],[10.9015013,47.5207628],[10.9014507,47.5207727],[10.9013898,47.5207872],[10.901329,47.5208096],[10.9012813,47.5208412],[10.901237,47.5208784],[10.9011944,47.5209225],[10.9011705,47.5209441],[10.9009892,47.5210124],[10.9009368,47.5210314],[10.9009027,47.5210562],[10.9008769,47.5210937],[10.9007333,47.521377],[10.9007024,47.5214188],[10.9006648,47.5214573],[10.9006173,47.5214877],[10.9005902,47.5215023],[10.9005626,47.5215443],[10.9005262,47.5216248],[10.9004832,47.5216939],[10.9004097,47.5217709],[10.9003669,47.5218206],[10.900353,47.5218501],[10.9003644,47.5218808],[10.9003707,47.5219092],[10.9003687,47.5219376],[10.900329,47.5220056],[10.9003104,47.5220156],[10.9002969,47.5220246],[10.9002832,47.5220337],[10.9002378,47.5220278],[10.9001133,47.5220124],[10.8999927,47.5220033],[10.8998563,47.5220099],[10.8998089,47.5220223],[10.8997598,47.5220667],[10.8997108,47.5221336],[10.8996566,47.5221882],[10.8996224,47.5222495],[10.8995764,47.522345],[10.8995356,47.5224359],[10.8994133,47.5226096],[10.8993318,47.5227016],[10.8992741,47.5227835],[10.8992485,47.5228448],[10.899238,47.5229175],[10.899226,47.5229527],[10.8992408,47.5230289],[10.8992369,47.5231336],[10.8992239,47.5232145],[10.8992229,47.5232199],[10.8991904,47.5233131],[10.8991563,47.523396],[10.8990699,47.5234789],[10.8989615,47.523589],[10.8988885,47.5236936],[10.8987614,47.5238231],[10.8986157,47.5239502],[10.8984921,47.5240615],[10.8983122,47.5242874],[10.8981155,47.524526],[10.8980288,47.5246543],[10.8979764,47.5247099],[10.8979304,47.5247975],[10.8979049,47.5248599],[10.8978367,47.5249633],[10.897762,47.5250837],[10.8977128,47.5251519],[10.8977026,47.5251825],[10.8977157,47.525236],[10.897692,47.5252712],[10.8976615,47.5253156],[10.8976441,47.5253654],[10.8974983,47.5255609],[10.8974388,47.5256494],[10.8974183,47.5257086],[10.8973929,47.5257506],[10.8973166,47.5258142],[10.8972486,47.5259096],[10.8971894,47.52598],[10.8970946,47.5260412],[10.8970455,47.5260734],[10.8969526,47.5261343],[10.8968528,47.5261944],[10.8967885,47.5262478],[10.8967307,47.5263364],[10.8966678,47.5264363],[10.8966084,47.5265068],[10.8965507,47.5265931],[10.896493,47.5266805],[10.8964218,47.526751],[10.8963777,47.5267929],[10.8963588,47.5268509],[10.8963349,47.5268952],[10.8962842,47.5269406],[10.8962771,47.5269986],[10.8962227,47.5270975],[10.8961854,47.527161],[10.8961868,47.5272077],[10.8962034,47.5272418],[10.8962201,47.5272839],[10.8962197,47.527368],[10.8962124,47.527459],[10.8961985,47.527526],[10.896178,47.5275726],[10.896186,47.5276465],[10.8961893,47.5276898],[10.8961926,47.5277011],[10.8961773,47.5277125],[10.8961485,47.5277238],[10.8959343,47.5277917],[10.8957804,47.5278507],[10.895745,47.52787],[10.8957364,47.5278938],[10.8957178,47.5279267],[10.8956854,47.5279574],[10.8956568,47.5279824],[10.8956413,47.5280199],[10.8956327,47.5280824],[10.8956221,47.5281495],[10.895612,47.5281745],[10.8953673,47.5282321],[10.8951952,47.5282557],[10.8950635,47.5282988],[10.8948827,47.5283872],[10.8946594,47.5285188],[10.8943313,47.5287264],[10.8941519,47.528865],[10.8939454,47.5290443],[10.893864,47.5291227],[10.8936168,47.5293383],[10.8933626,47.5295824],[10.8931896,47.5297731],[10.892918,47.5301513],[10.8927753,47.5303616],[10.8926869,47.530491],[10.8926324,47.5306012],[10.8926317,47.530716],[10.8927138,47.5310947],[10.8927417,47.5312767],[10.8927375,47.5314347],[10.8926839,47.5316654],[10.8926446,47.531745],[10.8922964,47.5322686],[10.8920208,47.5327082],[10.8918542,47.532982],[10.8916209,47.5334364],[10.8915408,47.5335955],[10.8914665,47.5337241],[10.8913763,47.5338419],[10.891336,47.5339918],[10.8912863,47.5341414],[10.891231,47.53431],[10.8911699,47.5345001],[10.8911176,47.5346453],[10.8910382,47.5348927],[10.8909767,47.5351566],[10.8909435,47.5353479],[10.890912,47.5355194],[10.8908615,47.5357095],[10.8908307,47.5358486],[10.8908077,47.5359932],[10.8907817,47.5361567],[10.8907447,47.536338],[10.8907019,47.5364761],[10.8906391,47.5366212],[10.8905673,47.5368085],[10.8905049,47.5369986],[10.890368,47.5372527],[10.8903231,47.5373012],[10.890311,47.5373142],[10.8902632,47.5373146],[10.8901485,47.5372767],[10.8900099,47.5372304],[10.8898608,47.5371916],[10.8898303,47.5371836],[10.889586,47.5371147],[10.8894522,47.5371026],[10.8893498,47.5371026],[10.8892814,47.5371108],[10.889246,47.537115],[10.8891422,47.5371248],[10.8890547,47.5371177],[10.8889794,47.537099],[10.8888859,47.5370594],[10.8888054,47.5370361],[10.8886902,47.5370197],[10.8885232,47.5370037],[10.8883693,47.5369977],[10.888215,47.5370025],[10.8881443,47.5370072],[10.8880369,47.5370142],[10.887767,47.5370216],[10.8875549,47.5370087],[10.8874794,47.5369977],[10.8873894,47.5369846],[10.8872265,47.536956],[10.8870958,47.5369233],[10.8869584,47.5368895],[10.8868117,47.5368495],[10.8866647,47.5368273],[10.8864833,47.5368262],[10.8861562,47.5368197],[10.8861023,47.5367427],[10.8860635,47.5366873],[10.8846317,47.5366171],[10.8820161,47.5364887],[10.8802348,47.536401],[10.878575,47.5363204],[10.8773782,47.536262],[10.876052,47.5361972],[10.874775,47.5361339],[10.8723991,47.5360181],[10.8708396,47.5359411],[10.8701687,47.5359079],[10.8690304,47.5358521],[10.8688631,47.535844],[10.8686123,47.5358318],[10.8681592,47.5358098],[10.8669186,47.5357475],[10.8667168,47.5353763],[10.8664073,47.5348033],[10.8654958,47.5346319],[10.8641777,47.5343846],[10.8633591,47.5342312],[10.8631598,47.534194],[10.8626189,47.5340929],[10.862118,47.5339992],[10.8616522,47.5341852],[10.8609399,47.5344694],[10.8607054,47.5344828],[10.8588219,47.5345906],[10.8581932,47.5343887],[10.8573434,47.5341158],[10.8556104,47.5341341],[10.854713,47.5344356],[10.8544983,47.534684],[10.853562,47.5346673],[10.8534592,47.5343964],[10.8533451,47.5340946],[10.8531642,47.533616],[10.8530735,47.533377],[10.8529534,47.533296],[10.8518045,47.5325215],[10.8514216,47.5322634],[10.8511132,47.5320554],[10.8501646,47.5314161],[10.8496932,47.5310982],[10.8494466,47.530921],[10.8484803,47.5302265],[10.8470411,47.530074],[10.8466646,47.530034],[10.8452036,47.5291468],[10.8436891,47.5282276],[10.8429307,47.5277675],[10.8418757,47.5280459],[10.8417124,47.5280891],[10.8413477,47.5281853],[10.8403594,47.5278689],[10.8399842,47.5277489],[10.8398565,47.5275472],[10.8397394,47.5273625],[10.8397052,47.5273084],[10.8395411,47.5270491],[10.8389343,47.5260901],[10.8385263,47.5254472],[10.8383135,47.52567],[10.8381207,47.5258719],[10.8379001,47.5261027],[10.837571,47.5262568],[10.8371705,47.5264443],[10.8368253,47.5268819],[10.8354048,47.5276067],[10.8344054,47.5281175],[10.832075,47.528328],[10.8320747,47.528328],[10.8316544,47.5283659],[10.8287799,47.5284439],[10.82807,47.5284649],[10.8272775,47.5281435],[10.8254446,47.5281262],[10.8245189,47.5276613],[10.824432,47.5276176],[10.8224537,47.5273285],[10.8219454,47.5272543],[10.8212036,47.5270074],[10.8209603,47.5269265],[10.8189539,47.5262589],[10.817893,47.526176],[10.8163395,47.5260548],[10.8131433,47.5264301],[10.8130449,47.5263732],[10.8129345,47.5263271],[10.8128634,47.526293],[10.8126785,47.5262543],[10.8126566,47.5262234],[10.8126266,47.5261989],[10.8125155,47.5261186],[10.8124645,47.5260874],[10.8124157,47.5260689],[10.8123286,47.5260474],[10.8122839,47.5260262],[10.8122369,47.5259915],[10.8122098,47.5259535],[10.8121833,47.5258965],[10.8121642,47.5258622],[10.8121497,47.5258512],[10.8121337,47.525851],[10.8120053,47.5258398],[10.8119441,47.525787],[10.8119182,47.5257553],[10.8118629,47.5257322],[10.81183,47.5257183],[10.8117974,47.5256362],[10.8117867,47.5255803],[10.8117875,47.5255453],[10.8118033,47.5254906],[10.8118175,47.5254484],[10.811817,47.5254151],[10.8118084,47.5253818],[10.8117971,47.5253565],[10.8117656,47.5253372],[10.8116947,47.5253032],[10.8116421,47.5252775],[10.8116202,47.5252494],[10.8115516,47.5251722],[10.8115153,47.5251359],[10.8114904,47.5251221],[10.8114284,47.5251007],[10.8114129,47.5250817],[10.8113677,47.5250237],[10.8112574,47.5248535],[10.8111718,47.5247024],[10.8111188,47.5245777],[10.8110936,47.5244632],[10.8110744,47.5243722],[10.8110676,47.5243217],[10.8110777,47.5242805],[10.8111085,47.5242124],[10.8111273,47.5241488],[10.811128,47.5241119],[10.8111329,47.5240732],[10.8111512,47.5240267],[10.8111848,47.5239514],[10.8112087,47.5238932],[10.8112404,47.5238423],[10.8112546,47.5238002],[10.8112555,47.5237633],[10.8112596,47.5236977],[10.8112462,47.5236382],[10.8112423,47.5235842],[10.8112471,47.5235464],[10.8112468,47.5234969],[10.8112362,47.523442],[10.8112308,47.5233826],[10.8112291,47.5233403],[10.8112352,47.5233062],[10.8112575,47.5232561],[10.8112915,47.5231664],[10.8113199,47.5230849],[10.8113481,47.5230087],[10.8113739,47.5229307],[10.8113972,47.522895],[10.8114297,47.5228702],[10.8115013,47.5228125],[10.8115772,47.5227449],[10.8116074,47.5226993],[10.8116246,47.5226437],[10.8116277,47.52257],[10.8116351,47.5224729],[10.8116294,47.5223766],[10.8116235,47.5223215],[10.8116149,47.522247],[10.8116185,47.5222102],[10.8116391,47.522178],[10.8116668,47.5221297],[10.8116864,47.5220876],[10.8117223,47.5220241],[10.8117276,47.521963],[10.811729,47.5219045],[10.8117459,47.5218607],[10.8117772,47.5217656],[10.8118186,47.5216384],[10.8118648,47.521539],[10.8119084,47.5214261],[10.8119637,47.5213889],[10.8119911,47.5213496],[10.812028,47.5213041],[10.8120485,47.5212225],[10.8120605,47.521156],[10.8120659,47.5210967],[10.8120616,47.521049],[10.8120448,47.5209706],[10.8120313,47.520921],[10.8120378,47.5208707],[10.8120682,47.5207577],[10.8120895,47.5206967],[10.8120971,47.5205916],[10.8121058,47.520562],[10.8121288,47.5205442],[10.8123296,47.5204726],[10.812382,47.5204461],[10.8124281,47.5204016],[10.8124813,47.5203374],[10.8125381,47.5202903],[10.8125522,47.5202563],[10.81255,47.5201798],[10.8125666,47.5201476],[10.8125685,47.5201224],[10.8125639,47.52009],[10.8125722,47.5200731],[10.8126224,47.5200321],[10.8124647,47.5200144],[10.8123455,47.5200014],[10.8122504,47.5199779],[10.8121856,47.51997],[10.8121269,47.5199856],[10.8120295,47.5200008],[10.8118413,47.5200448],[10.8116707,47.5200736],[10.8116188,47.5200811],[10.8115977,47.5200719],[10.8115638,47.5200437],[10.811527,47.520028],[10.8115006,47.520025],[10.8113397,47.5200333],[10.811276,47.5200272],[10.8112204,47.5200248],[10.8111581,47.5200197],[10.8110639,47.5200151],[10.8110238,47.5199662],[10.8109852,47.5199163],[10.810946,47.5198888],[10.8109169,47.5198814],[10.8108759,47.5198783],[10.8108469,47.519869],[10.8107887,47.5197991],[10.8107639,47.5197773],[10.8107283,47.5197661],[10.8106754,47.5197583],[10.8106516,47.5197545],[10.81057,47.5197213],[10.8105396,47.519712],[10.8105118,47.5197135],[10.8104076,47.5197412],[10.8103582,47.5197478],[10.8103132,47.5197447],[10.8102772,47.5197516],[10.8102224,47.519768],[10.8101399,47.5197752],[10.8100816,47.5197701],[10.8100327,47.5197633],[10.8099668,47.5197411],[10.8098814,47.5196953],[10.8097972,47.5196674],[10.8097562,47.5196588],[10.8097217,47.5196549],[10.8096937,47.5196573],[10.8096244,47.5196719],[10.8095122,47.519704],[10.8094079,47.5197317],[10.8093757,47.5197493],[10.8093391,47.5197787],[10.8092542,47.5197814],[10.809149,47.5197956],[10.8090342,47.5198187],[10.8088741,47.5198521],[10.8087378,47.5198884],[10.8085627,47.5199451],[10.8083715,47.519998],[10.8081893,47.5200725],[10.8080797,47.5201038],[10.8079451,47.5201284],[10.8078155,47.5201613],[10.8077766,47.5201779],[10.8077442,47.5202019],[10.8076701,47.5202515],[10.8075153,47.5202814],[10.8074262,47.5203506],[10.8073645,47.520376],[10.8073028,47.5204024],[10.8070617,47.5204961],[10.8070378,47.5204968],[10.8070178,47.5205038],[10.8068954,47.5205717],[10.8067239,47.5206383],[10.8066932,47.5206461],[10.8066575,47.5206385],[10.8058767,47.5203453],[10.8058615,47.5203155],[10.8054811,47.5201703],[10.8054291,47.5201796],[10.8053236,47.5201452],[10.8053038,47.5201378],[10.805272,47.5201393],[10.8051585,47.5201651],[10.8050026,47.5201347],[10.8048359,47.520105],[10.8047196,47.5200804],[10.8045804,47.5200691],[10.8044321,47.5200541],[10.8042596,47.5200478],[10.8041058,47.5200417],[10.8040098,47.5200569],[10.8039288,47.5200588],[10.8037894,47.52006],[10.803712,47.5200708],[10.803636,47.5200862],[10.8035723,47.5200865],[10.8033968,47.5200982],[10.8033104,47.5201036],[10.8032184,47.5201206],[10.8031187,47.5201223],[10.803019,47.5201311],[10.8028925,47.520146],[10.802823,47.5201642],[10.8027653,47.5201896],[10.8026406,47.520245],[10.8025831,47.5202623],[10.8025231,47.5202716],[10.8024441,47.5203005],[10.8023945,47.5203179],[10.8023173,47.5203316],[10.8022636,47.520358],[10.8021815,47.5204048],[10.8020991,47.5204066],[10.8020497,47.5204168],[10.8019867,47.5204423],[10.8019467,47.5204536],[10.8018721,47.5204663],[10.8018131,47.5204899],[10.8017394,47.5205171],[10.8016899,47.5205336],[10.8015635,47.5205431],[10.8015501,47.5205501],[10.8015285,47.520567],[10.8014828,47.5205909],[10.8014146,47.5206099],[10.8013335,47.5206181],[10.8012169,47.5206042],[10.8009723,47.5205594],[10.800865,47.5205493],[10.80075,47.5205283],[10.80064,47.5205164],[10.8005511,47.5205172],[10.8004514,47.5205189],[10.8003496,47.5204999],[10.8002705,47.5204766],[10.8001621,47.5204547],[10.7995463,47.5203242],[10.7994708,47.5203207],[10.7993695,47.5203339],[10.7992392,47.5203425],[10.7991652,47.52033],[10.7991319,47.5202766],[10.7990598,47.5202318],[10.7990042,47.520225],[10.7989659,47.52022],[10.798913,47.5202114],[10.7988007,47.5201832],[10.7986673,47.5201548],[10.7986326,47.5201554],[10.7985444,47.520185],[10.7984818,47.5201925],[10.7983754,47.5202004],[10.7975206,47.5203631],[10.7974426,47.5203498],[10.7974132,47.5203539],[10.7972518,47.5203855],[10.7971612,47.5203999],[10.7970386,47.5204229],[10.7969705,47.5204338],[10.7969185,47.5204432],[10.7968411,47.5204666],[10.7967742,47.5204876],[10.7967327,47.5205015],[10.7966751,47.5205198],[10.7966431,47.5205284],[10.7965945,47.5205603],[10.7965543,47.520577],[10.7964821,47.5205978],[10.796383,47.5206372],[10.7962329,47.5206995],[10.796177,47.5207043],[10.7961352,47.5207291],[10.7960641,47.5207652],[10.7959957,47.5207969],[10.7959619,47.5208163],[10.7959201,47.520851],[10.795873,47.5208757],[10.7957791,47.5209169],[10.7957468,47.5209346],[10.7956785,47.5210167],[10.7956568,47.521038],[10.7956287,47.5210476],[10.7955539,47.5210675],[10.7955445,47.5210755],[10.7955346,47.5210969],[10.7955119,47.5211075],[10.7954809,47.5211233],[10.7954499,47.5211473],[10.7954152,47.521195],[10.7937618,47.5203501],[10.7925324,47.5197169],[10.7913136,47.5190918],[10.7903204,47.5185843],[10.7883683,47.5175841],[10.7875667,47.5171705],[10.7870291,47.516891],[10.7869752,47.5168503],[10.7869025,47.5168361],[10.7868559,47.5167825],[10.7868244,47.5167696],[10.7867731,47.5167484],[10.7867382,47.5167084],[10.7867226,47.5166381],[10.7866974,47.5166351],[10.7866404,47.5166309],[10.7865459,47.5166443],[10.7864386,47.5166855],[10.786374,47.5167244],[10.7863451,47.5167681],[10.786238,47.5169226],[10.7862375,47.5169433],[10.7862271,47.5169899],[10.7862101,47.5170428],[10.7862162,47.5171184],[10.7861326,47.5171752],[10.7860531,47.5172246],[10.7859123,47.5172834],[10.7858498,47.5173502],[10.7857363,47.5173742],[10.7856165,47.5173882],[10.7853678,47.5176905],[10.7853438,47.5177568],[10.7853301,47.5177958],[10.7852488,47.517767],[10.7851946,47.517764],[10.7850952,47.5177592],[10.785048,47.5177653],[10.7849912,47.5177852],[10.7849343,47.5178073],[10.7848671,47.5178215],[10.7848148,47.5178186],[10.7847657,47.5178077],[10.7847302,47.5177978],[10.7846909,47.5177754],[10.7846672,47.5177607],[10.7846315,47.5177543],[10.7845506,47.5177551],[10.7845085,47.5177554],[10.7844815,47.5177489],[10.7844442,47.5177344],[10.7844035,47.5177222],[10.7843713,47.5177158],[10.7843374,47.5177001],[10.7843067,47.5176821],[10.784271,47.5176677],[10.784242,47.5176508],[10.7842129,47.5176273],[10.7841749,47.5175855],[10.7841202,47.5175371],[10.7840589,47.5175036],[10.7839944,47.5174745],[10.7838977,47.5174436],[10.7837962,47.517424],[10.7837067,47.5174134],[10.7836206,47.5174085],[10.7835801,47.5174031],[10.7835546,47.5173932],[10.7834917,47.517363],[10.7834559,47.5173429],[10.783412,47.5173364],[10.7833564,47.5173426],[10.7833091,47.5173363],[10.7832649,47.5173196],[10.7832023,47.5172985],[10.7831411,47.517274],[10.7830795,47.5172257],[10.7830454,47.5171976],[10.7830098,47.5171922],[10.782984,47.5171708],[10.782824,47.5170824],[10.7827407,47.5170468],[10.7827116,47.5170196],[10.7826821,47.5169745],[10.7826615,47.5169508],[10.782641,47.516935],[10.7826204,47.5169181],[10.7825963,47.5168888],[10.7825628,47.516814],[10.7825334,47.5167699],[10.7824958,47.5167361],[10.7824666,47.5167147],[10.7824526,47.5166899],[10.7824487,47.5166559],[10.7824106,47.5166072],[10.7823899,47.5165756],[10.7823632,47.5165041],[10.7823372,47.5164612],[10.7823027,47.5164159],[10.782278,47.516365],[10.7822622,47.5163311],[10.7822383,47.5163107],[10.7822129,47.5163019],[10.7821213,47.51628],[10.7820132,47.5162571],[10.78194,47.516227],[10.7818887,47.5161911],[10.7818151,47.5161212],[10.7817525,47.5161047],[10.7817082,47.5160801],[10.7816586,47.516043],[10.7816107,47.5160104],[10.7815548,47.5159939],[10.7814901,47.5159637],[10.7814136,47.5159144],[10.7812786,47.5158279],[10.7812056,47.5157945],[10.781146,47.5157643],[10.7811068,47.5157306],[10.781067,47.5156729],[10.7809734,47.5156373],[10.780914,47.5156083],[10.7808728,47.5155711],[10.7808145,47.5155182],[10.7807616,47.5154811],[10.7806544,47.5154252],[10.7805899,47.5154064],[10.7805478,47.5154069],[10.7805157,47.5154048],[10.7804653,47.515371],[10.7796465,47.5149696],[10.777508,47.5139211],[10.7764126,47.5156782],[10.7757551,47.5158872],[10.7726423,47.5156537],[10.7688583,47.5176803],[10.7668454,47.5187581],[10.7667217,47.5187557],[10.7666679,47.5187596],[10.7666311,47.5187724],[10.7664817,47.5188067],[10.7663776,47.5188338],[10.7663373,47.5188387],[10.7663053,47.5188356],[10.7662326,47.518826],[10.7661938,47.5188218],[10.7661669,47.5188289],[10.7661167,47.518852],[10.7659599,47.5188511],[10.7658234,47.5188433],[10.7657299,47.5188964],[10.7656474,47.5189039],[10.7655783,47.5189068],[10.7654876,47.5189247],[10.7654377,47.5189513],[10.765371,47.5189963],[10.7653362,47.5190238],[10.7652471,47.5190394],[10.7651562,47.5190482],[10.7650657,47.5190728],[10.7650122,47.5190939],[10.7649755,47.519118],[10.7649476,47.5191592],[10.7649176,47.5191845],[10.7648842,47.5191984],[10.7647804,47.5192335],[10.7647352,47.5192498],[10.7647152,47.5192693],[10.7646723,47.5193163],[10.7646211,47.5193691],[10.7645678,47.5194037],[10.7645242,47.5194245],[10.7644471,47.5194412],[10.7642992,47.5194629],[10.7641528,47.519479],[10.764094,47.519483],[10.7640348,47.5194788],[10.7637989,47.5195721],[10.7637598,47.5195919],[10.7637108,47.5196353],[10.7636939,47.5197253],[10.7636791,47.5197528],[10.7636575,47.5197655],[10.7636122,47.5197817],[10.76355,47.5197937],[10.7635285,47.5198076],[10.7635171,47.5198304],[10.763521,47.5198622],[10.7635327,47.5199508],[10.7635283,47.5199839],[10.7635103,47.5200136],[10.763477,47.5200355],[10.7634336,47.5200597],[10.7633449,47.5200981],[10.763305,47.5201223],[10.7630603,47.5203804],[10.7630405,47.5204045],[10.7630291,47.520433],[10.7630138,47.5205162],[10.7629959,47.5205482],[10.7629726,47.5205665],[10.7629125,47.5206001],[10.7628859,47.520614],[10.7628447,47.5206701],[10.7627938,47.52074],[10.7627808,47.5207685],[10.7627688,47.5208482],[10.7627534,47.5209314],[10.7627444,47.5209906],[10.7627316,47.5210293],[10.7626473,47.5212121],[10.7625831,47.5213889],[10.7625494,47.5214792],[10.7625249,47.5215294],[10.7625023,47.5215706],[10.7624579,47.5216335],[10.76241,47.5216965],[10.7623526,47.5217823],[10.7623232,47.521828],[10.7623104,47.5218657],[10.7623058,47.521901],[10.7623103,47.5219555],[10.7623318,47.5220258],[10.762341,47.5220611],[10.7623466,47.5220997],[10.7623406,47.5221327],[10.7623328,47.5221481],[10.7623457,47.5221744],[10.7623632,47.5222065],[10.7623839,47.5222476],[10.7623862,47.5222853],[10.7623802,47.5223193],[10.7623619,47.5223645],[10.7623493,47.5223962],[10.7623532,47.5224315],[10.7623574,47.5224611],[10.7623464,47.5224929],[10.7623237,47.5225165],[10.7622722,47.5225442],[10.762224,47.5225823],[10.7621989,47.5226321],[10.7621865,47.5227115],[10.7622087,47.5228745],[10.7622424,47.5229329],[10.7623355,47.5230284],[10.762358,47.5230697],[10.7623873,47.5231622],[10.7624118,47.523192],[10.7625026,47.5232569],[10.7625338,47.5232823],[10.7625517,47.5233042],[10.7625574,47.5233395],[10.7625849,47.5233819],[10.7626669,47.5234602],[10.7628114,47.5235895],[10.7628241,47.5236169],[10.7628166,47.5236464],[10.7628302,47.5236955],[10.7628521,47.5237014],[10.7628934,47.5237258],[10.7629495,47.5237708],[10.7630286,47.5238322],[10.7631566,47.5238941],[10.7633146,47.52397],[10.7634377,47.5240249],[10.7635609,47.5240777],[10.7635864,47.5241292],[10.7636321,47.5241832],[10.7637179,47.5242435],[10.7638377,47.5243018],[10.7638645,47.5243636],[10.7639163,47.5243802],[10.7639911,47.5244163],[10.7640459,47.5244477],[10.7641067,47.524503],[10.7641859,47.5245632],[10.7642475,47.5246448],[10.7642651,47.524678],[10.7643015,47.5246954],[10.7643359,47.5247311],[10.7643555,47.5247598],[10.764413,47.5248072],[10.7644794,47.5248444],[10.7645361,47.5248645],[10.7646029,47.5248846],[10.7646093,47.5248972],[10.7646039,47.5249119],[10.7645554,47.5249534],[10.7645173,47.5249882],[10.7644452,47.5251454],[10.7644225,47.5251735],[10.7643811,47.5252026],[10.7643719,47.5252263],[10.7643644,47.5252581],[10.7643401,47.525276],[10.764277,47.5253002],[10.764288,47.525389],[10.7642735,47.5254231],[10.7642335,47.5254601],[10.7641817,47.5255059],[10.7641274,47.5255679],[10.7641127,47.5256098],[10.7640454,47.5257795],[10.7640206,47.5258179],[10.7639821,47.5258663],[10.7639706,47.5259117],[10.7639761,47.5259572],[10.7639668,47.5259879],[10.7639285,47.5260271],[10.7638906,47.5260528],[10.763881,47.5260892],[10.7638725,47.5261504],[10.7637839,47.5262415],[10.7637542,47.5262718],[10.7637455,47.5262831],[10.7637429,47.5263126],[10.7637419,47.5263502],[10.7637242,47.526376],[10.7636909,47.5264177],[10.7636526,47.5264594],[10.7636453,47.5264797],[10.7636495,47.5265082],[10.7636731,47.5265676],[10.7636793,47.5265837],[10.7636737,47.526604],[10.7636385,47.5266502],[10.7636029,47.5267158],[10.7635671,47.526787],[10.763548,47.5268595],[10.7635444,47.5269265],[10.7635566,47.5270267],[10.7635774,47.5271214],[10.7636204,47.5272654],[10.7636484,47.5273453],[10.7637083,47.5274302],[10.7637343,47.5274658],[10.7637534,47.5275035],[10.7637655,47.5275492],[10.7637863,47.5275892],[10.7638771,47.5277109],[10.7639171,47.5277854],[10.7639172,47.5278365],[10.7639217,47.5279151],[10.7639119,47.5280128],[10.7639204,47.5280743],[10.7639405,47.5281349],[10.763958,47.5281692],[10.763962,47.5282091],[10.7639606,47.5282523],[10.763958,47.5282841],[10.7639183,47.5283177],[10.7638165,47.528395],[10.763767,47.5284137],[10.7637209,47.5284289],[10.7636896,47.5284627],[10.7636431,47.5285009],[10.7635665,47.5285226],[10.7635351,47.5285541],[10.7635358,47.5285882],[10.7635117,47.5286084],[10.7634822,47.5286341],[10.7634595,47.5286566],[10.7634415,47.5286962],[10.7634067,47.5287344],[10.763376,47.5287466],[10.7632247,47.5287878],[10.7631888,47.5288044],[10.763161,47.5288314],[10.7631467,47.5288608],[10.7631399,47.5289164],[10.7631377,47.528996],[10.7631255,47.529005],[10.7630793,47.5290271],[10.7630533,47.5290484],[10.763006,47.5290547],[10.7629667,47.5290712],[10.7629376,47.529088],[10.7629104,47.5290956],[10.7628832,47.5291032],[10.762864,47.5291268],[10.7628614,47.5291541],[10.7628507,47.5291744],[10.7628234,47.5291809],[10.7627558,47.529188],[10.762747,47.5292004],[10.7627045,47.5292693],[10.7626602,47.5293427],[10.7626077,47.5294046],[10.7625413,47.529481],[10.7625005,47.529551],[10.7624697,47.5295688],[10.7624007,47.5296192],[10.7623075,47.5296919],[10.7622377,47.5297707],[10.7621796,47.5298518],[10.7621303,47.5299263],[10.7620996,47.529993],[10.7620879,47.5300463],[10.7619918,47.5301031],[10.7619806,47.5301394],[10.7619644,47.5301709],[10.7619499,47.5302095],[10.761928,47.5302627],[10.7618751,47.5302836],[10.7617906,47.5303474],[10.7617611,47.5303732],[10.7617359,47.5303763],[10.7616659,47.5304016],[10.7615991,47.5304349],[10.7615477,47.5304638],[10.7614931,47.5304824],[10.7614655,47.5305003],[10.7614568,47.5305104],[10.7614477,47.5305387],[10.7614354,47.5305534],[10.7614058,47.530586],[10.7613689,47.530631],[10.7613511,47.5306649],[10.7613483,47.5307047],[10.7613552,47.5307525],[10.7613408,47.5307865],[10.7613067,47.5308589],[10.7612887,47.5309496],[10.7612814,47.5310258],[10.7612762,47.5310905],[10.7612817,47.5311849],[10.7612928,47.5312658],[10.761295,47.5313102],[10.7612874,47.5313375],[10.7612668,47.5313508],[10.7612293,47.531364],[10.7611376,47.5313833],[10.7610599,47.5313892],[10.7609957,47.5313952],[10.7609311,47.5314114],[10.7608576,47.5314412],[10.7608536,47.5314662],[10.760846,47.53149],[10.7608255,47.5315023],[10.7608068,47.5315054],[10.7607427,47.5315035],[10.7605971,47.5315198],[10.7605531,47.5315295],[10.7605389,47.5315544],[10.760545,47.5315749],[10.7605648,47.5315912],[10.7605979,47.5316108],[10.7606224,47.5316362],[10.7606648,47.5316867],[10.7607239,47.5317455],[10.7607615,47.5317835],[10.7608114,47.531808],[10.7608732,47.5318281],[10.7609612,47.5318736],[10.761056,47.5319192],[10.7610807,47.5319377],[10.7610836,47.5319571],[10.7610779,47.5319774],[10.7610433,47.5320055],[10.7609506,47.5320611],[10.760856,47.5321248],[10.7607422,47.5322098],[10.7607095,47.5322299],[10.7606755,47.5322351],[10.7606417,47.5322426],[10.7605668,47.532261],[10.7605396,47.5322709],[10.7605254,47.532297],[10.7605229,47.532323],[10.760515,47.532365],[10.7605076,47.532382],[10.7604783,47.5324009],[10.760434,47.5324152],[10.7603934,47.5324226],[10.7603479,47.5324221],[10.760309,47.5324261],[10.7601548,47.5324515],[10.7601104,47.5324668],[10.7600915,47.5324814],[10.7600788,47.5325154],[10.7600526,47.5325435],[10.7600091,47.532585],[10.759956,47.532614],[10.7599028,47.532644],[10.7598799,47.5326789],[10.759848,47.5327309],[10.7597941,47.5327859],[10.7597611,47.5328196],[10.75976,47.5328548],[10.7597429,47.5329206],[10.7597123,47.5329828],[10.7596885,47.5330451],[10.7596771,47.5330937],[10.7596741,47.5331313],[10.759648,47.5331628],[10.7595335,47.5332706],[10.7594799,47.5333154],[10.7594469,47.533349],[10.7594203,47.5333919],[10.7593207,47.5335624],[10.7592923,47.533611],[10.7592472,47.5336559],[10.7591404,47.5337251],[10.7590703,47.5337583],[10.758992,47.5337881],[10.7588963,47.5338301],[10.7588188,47.5338803],[10.7587824,47.533914],[10.758747,47.5339681],[10.7587162,47.5340405],[10.7586849,47.5341288],[10.7586647,47.5341877],[10.7586582,47.5342377],[10.7586615,47.534298],[10.7585233,47.5342325],[10.7584948,47.5342254],[10.7584677,47.5342307],[10.7584504,47.5342453],[10.7584514,47.534268],[10.7584751,47.5343241],[10.7585032,47.5344017],[10.7585132,47.5344622],[10.7585038,47.5344939],[10.7583975,47.5344971],[10.7583583,47.5345069],[10.7583362,47.5345168],[10.7583052,47.5345346],[10.7582462,47.5345327],[10.7581618,47.5345351],[10.758128,47.5345382],[10.7580815,47.5345728],[10.7580377,47.5346257],[10.7580001,47.5346434],[10.7579399,47.5346858],[10.7579106,47.5347003],[10.7578718,47.5347032],[10.7577144,47.5347206],[10.7575583,47.534747],[10.7574887,47.5347666],[10.7574022,47.5347984],[10.7572217,47.534804],[10.757075,47.534803],[10.7568642,47.5350063],[10.7567985,47.5350081],[10.7567714,47.5350159],[10.7567172,47.535028],[10.7566597,47.5350333],[10.7565752,47.5350407],[10.7565329,47.5350665],[10.7564937,47.5350788],[10.7563385,47.5350823],[10.7562763,47.5350773],[10.7562614,47.5350612],[10.7562773,47.535017],[10.7562625,47.5349885],[10.7562239,47.5349769],[10.7561666,47.5349719],[10.7560753,47.534977],[10.7559907,47.5349946],[10.7558791,47.5350211],[10.7557984,47.5350439],[10.7557097,47.5350689],[10.7556284,47.5350887],[10.7555355,47.5350938],[10.7554298,47.5350704],[10.7553812,47.5350472],[10.7552993,47.5350058],[10.755257,47.53501],[10.7551619,47.5350481],[10.7550976,47.5350658],[10.7549841,47.5350911],[10.7549317,47.5350999],[10.7549011,47.5351145],[10.7548294,47.5351696],[10.7548039,47.5351843],[10.7547803,47.5351864],[10.7547501,47.535177],[10.7547065,47.5351564],[10.7546678,47.5351515],[10.7546272,47.535157],[10.7545815,47.5351668],[10.7545307,47.5351734],[10.7544514,47.5351785],[10.7543774,47.5351723],[10.7543257,47.5351623],[10.7542983,47.535157],[10.7542665,47.535142],[10.7542331,47.535119],[10.7542013,47.5351006],[10.7541462,47.535074],[10.7540892,47.5350532],[10.7540187,47.5350276],[10.7539397,47.53501],[10.7538622,47.5349982],[10.7538168,47.5350024],[10.7537761,47.5350169],[10.7537504,47.5350349],[10.7537315,47.535061],[10.753726,47.5350917],[10.7537269,47.5351428],[10.753731,47.5351986],[10.7537523,47.5352431],[10.7537685,47.5352749],[10.7538267,47.5353299],[10.7538848,47.5353873],[10.7539278,47.5354421],[10.7539542,47.5354775],[10.7539874,47.5355187],[10.753995,47.5355654],[10.7539993,47.5356097],[10.7540023,47.5356394],[10.7540001,47.53567],[10.753996,47.5357109],[10.7539769,47.5357506],[10.753961,47.5357846],[10.7539421,47.5358174],[10.7539128,47.5358457],[10.7538703,47.5358693],[10.753762,47.5359048],[10.7536094,47.5359516],[10.753357,47.5360169],[10.7532504,47.536039],[10.7530476,47.5360638],[10.7530205,47.5360681],[10.7530018,47.5360862],[10.7529822,47.5361486],[10.7529627,47.5362099],[10.752928,47.5362585],[10.7528954,47.5363004],[10.752851,47.5363387],[10.7528048,47.536377],[10.7527387,47.5364062],[10.7526368,47.5364374],[10.7524676,47.5364805],[10.7522339,47.5365368],[10.7521612,47.5365524],[10.7521238,47.5365703],[10.752103,47.5365986],[10.7520647,47.5366756],[10.7520354,47.5367106],[10.7520064,47.5367297],[10.7519607,47.5367454],[10.7518661,47.5367641],[10.7517693,47.5367918],[10.7516608,47.5368263],[10.7516081,47.5368555],[10.7515313,47.5369096],[10.7514206,47.5369815],[10.7512977,47.5370728],[10.7511883,47.5371619],[10.7510858,47.5372443],[10.7510481,47.537277],[10.7510194,47.537287],[10.7509686,47.5372934],[10.7508588,47.5373086],[10.7507034,47.5373269],[10.7504756,47.5373332],[10.7503121,47.5373207],[10.7500827,47.5373192],[10.7500458,47.5373155],[10.7499937,47.5372969],[10.7499651,47.5372934],[10.7499313,47.5372943],[10.7497318,47.5373236],[10.7496946,47.5373313],[10.7496441,47.5373275],[10.7495549,47.5373189],[10.7495161,47.5373141],[10.7494705,47.5373138],[10.7494047,47.5373168],[10.7493795,47.5373178],[10.7493525,47.5373095],[10.7493275,47.5372946],[10.7492856,47.5372807],[10.749252,47.537269],[10.7487928,47.5371863],[10.7487222,47.5371722],[10.7486802,47.5371708],[10.7486176,47.5371759],[10.7482273,47.5372177],[10.7480769,47.5372383],[10.7479838,47.5372433],[10.7479656,47.5372442],[10.7478676,47.5372493],[10.7478101,47.5372568],[10.7477797,47.5372634],[10.7477421,47.5372916],[10.7477012,47.5373198],[10.7476723,47.5373321],[10.7476486,47.5373342],[10.7475998,47.5373327],[10.7475745,47.5373359],[10.7475438,47.5373517],[10.7474776,47.5373819],[10.7474198,47.5374066],[10.7473911,47.5374132],[10.747349,47.5374105],[10.7472783,47.5374056],[10.7472512,47.5374099],[10.7472155,47.5374244],[10.7471679,47.5374479],[10.7470008,47.5375537],[10.7469669,47.537566],[10.7469401,47.5375613],[10.7469232,47.5375543],[10.7469102,47.5375349],[10.746892,47.5375052],[10.7468705,47.5374823],[10.7468487,47.5374741],[10.7468118,47.5374705],[10.7467627,47.5374667],[10.7467155,47.5374654],[10.7466716,47.537465],[10.7466465,47.5374615],[10.7466248,47.5374498],[10.746608,47.5374395],[10.7465311,47.5373912],[10.7464496,47.5373259],[10.7464031,47.5372835],[10.7463597,47.5372501],[10.7463244,47.5372443],[10.746289,47.5372418],[10.7462603,47.5372495],[10.7461373,47.5373431],[10.7461168,47.5373633],[10.7460745,47.5373733],[10.7460019,47.5373762],[10.7458468,47.5373774],[10.7456732,47.5373694],[10.7455549,47.5373766],[10.7453943,47.5373902],[10.7452373,47.5374039],[10.7451934,47.5374069],[10.7451631,47.5374067],[10.7451126,47.5374008],[10.7450672,47.5373936],[10.745013,47.5374034],[10.744964,47.5374134],[10.7449011,47.5374402],[10.7448096,47.5374657],[10.7447472,47.5374732],[10.7447015,47.5374752],[10.7446561,47.5374693],[10.7445468,47.5374536],[10.7445215,47.5374512],[10.7445029,47.5374556],[10.7444228,47.5374983],[10.7443838,47.5375151],[10.7443535,47.5375161],[10.7442828,47.5375018],[10.744224,47.5374935],[10.7441852,47.5374887],[10.743974,47.5375122],[10.7435449,47.537557],[10.7434738,47.5375735],[10.743377,47.5376081],[10.7431684,47.5376874],[10.7429749,47.53776],[10.7428947,47.5378151],[10.7428026,47.5378862],[10.7427817,47.5379236],[10.7427641,47.5379597],[10.7427351,47.5379835],[10.7426755,47.5380171],[10.7426058,47.5380542],[10.7425277,47.5380912],[10.742441,47.5381259],[10.742387,47.5381311],[10.7423484,47.5381229],[10.7423165,47.5381124],[10.7422896,47.5381088],[10.7422641,47.5381132],[10.7422302,47.5381266],[10.7421637,47.5381672],[10.7420873,47.5382063],[10.7420432,47.5382219],[10.7420041,47.5382308],[10.7419468,47.5382361],[10.7418203,47.5382375],[10.7417966,47.5382407],[10.7417135,47.5382731],[10.7416625,47.538292],[10.7415827,47.5383291],[10.7415553,47.538346],[10.7414928,47.5383592],[10.7414642,47.5383544],[10.7414475,47.538343],[10.7414174,47.5383211],[10.7413973,47.538321],[10.7413601,47.5383218],[10.7413042,47.5383385],[10.7412683,47.5383643],[10.7412382,47.5383518],[10.7412148,47.5383436],[10.7411843,47.5383445],[10.7411555,47.5383535],[10.7411164,47.5383838],[10.7410718,47.5384222],[10.7410443,47.5384573],[10.7410234,47.5385003],[10.7410008,47.5385377],[10.7409664,47.5385716],[10.740936,47.5385804],[10.7409039,47.5385858],[10.74086,47.5385844],[10.7408062,47.5385727],[10.7407693,47.5385656],[10.7407337,47.5385665],[10.7407208,47.5385708],[10.7407032,47.5385766],[10.7406695,47.5385843],[10.7405748,47.5385938],[10.7405377,47.5385936],[10.7405227,47.5385854],[10.7404992,47.5385706],[10.7404607,47.5385566],[10.7404238,47.5385496],[10.7403849,47.5385247],[10.7386583,47.5386921],[10.7377913,47.5387717],[10.7373619,47.5387489],[10.7363698,47.5386963],[10.7349495,47.5378006],[10.7343504,47.5379788],[10.7333037,47.5386299],[10.7329981,47.5386376],[10.73153,47.53819],[10.7302977,47.5389119],[10.7295462,47.5387322],[10.7284637,47.5384735],[10.7270343,47.5381344],[10.7259674,47.5378813],[10.7242949,47.5376256],[10.7229331,47.5377859],[10.7219674,47.5379004],[10.7204416,47.5380807],[10.7199921,47.5381334],[10.7191705,47.5382308],[10.7183807,47.538138],[10.7182006,47.5384317],[10.7175552,47.5388075],[10.7173536,47.5389454],[10.7171141,47.5391091],[10.7169354,47.5392293],[10.7160551,47.5398338],[10.7159151,47.5400464],[10.7158678,47.540118],[10.7155842,47.5405587],[10.7149801,47.5407313],[10.7144506,47.5408239],[10.714117,47.5408823],[10.712978,47.5412682],[10.7122084,47.5419942],[10.7118687,47.5425079],[10.7113927,47.5428381],[10.7108988,47.5431292],[10.7094157,47.5435833],[10.7089737,47.5437178],[10.7079295,47.5437378],[10.7077438,47.5437651],[10.7068236,47.5439],[10.7049595,47.544062],[10.7026382,47.5438916],[10.7001738,47.543574],[10.6987992,47.5436774],[10.6975591,47.544146],[10.6968431,47.5444263],[10.6949955,47.5447179],[10.6947446,47.5447575],[10.6945958,47.5447809],[10.6945007,47.5451246],[10.6939813,47.5469147],[10.6939147,47.5471531],[10.6923902,47.5498479],[10.6920305,47.5505838],[10.6918876,47.5509344],[10.6918589,47.550991],[10.6917206,47.5512909],[10.691584,47.551556],[10.6910882,47.5529456],[10.6906433,47.5541944],[10.6902266,47.5553646],[10.6908385,47.5555459],[10.6924026,47.5560098],[10.6919585,47.5572027],[10.6919214,47.5572636],[10.6918832,47.5573264],[10.6918464,47.5573864],[10.6916607,47.5576912],[10.6916195,47.5577589],[10.6913538,47.5581951],[10.6912591,47.5583506],[10.6911937,47.558458],[10.6911399,47.5585463],[10.6910027,47.5587703],[10.6905629,47.5587305],[10.6902249,47.5586147],[10.6898816,47.5584626],[10.6897153,47.5583757],[10.6894578,47.5582852],[10.6887819,47.5582056],[10.6875427,47.5578363],[10.687076,47.5576988],[10.6868292,47.5576481],[10.686443,47.5574997],[10.6857456,47.5574055],[10.6853701,47.5572788],[10.6847639,47.5570363],[10.6845172,47.5569277],[10.6840397,47.5567539],[10.6835408,47.5566562],[10.6827845,47.5566489],[10.6823982,47.5566308],[10.681953,47.5566851],[10.6814326,47.5566851],[10.6808157,47.55662],[10.680172,47.5565476],[10.6798555,47.5564933],[10.6795765,47.5564064],[10.6790079,47.5562616],[10.6785251,47.5562435],[10.6782301,47.5562688],[10.6780074,47.5562275],[10.6774691,47.5576817],[10.6773069,47.5578193],[10.6771066,47.558538],[10.6770161,47.5587712],[10.6768135,47.5589796],[10.6765632,47.559003],[10.6749233,47.5589669],[10.6732209,47.5588325],[10.6719166,47.5588241],[10.6708371,47.5588178],[10.6695286,47.5588526],[10.6675924,47.5589045],[10.6666575,47.558947],[10.6659798,47.5589765],[10.6654307,47.5588287],[10.6653099,47.5587963],[10.6642785,47.5584004],[10.6635582,47.5585715],[10.6627509,47.558761],[10.6618856,47.5589637],[10.6618824,47.5589643],[10.6609705,47.5591453],[10.6603812,47.5593981],[10.6590146,47.5589756],[10.6584478,47.5589284],[10.6583799,47.5589227],[10.6576861,47.5590673],[10.6568325,47.559245],[10.6563246,47.5593508],[10.6563109,47.5593493],[10.6562188,47.559339],[10.6561288,47.5593288],[10.6553548,47.5592419],[10.6544179,47.5591624],[10.6539224,47.5591204],[10.6533117,47.5589529],[10.6519138,47.558739],[10.6507437,47.5588473],[10.6494113,47.5589354],[10.6479204,47.5589608],[10.646471,47.5589924],[10.6451582,47.5590516],[10.6432428,47.5591947],[10.641884,47.5594134],[10.6405347,47.5593299],[10.6389587,47.5592525],[10.6382487,47.5591941],[10.6382002,47.5591909],[10.6372046,47.5591259],[10.6367517,47.5590156],[10.6362963,47.5589042],[10.6347529,47.559044],[10.6340358,47.5592938],[10.633504,47.5594507],[10.6319055,47.5597167],[10.630351,47.5601486],[10.6292509,47.5604008],[10.6287643,47.5605644],[10.6276104,47.5608475],[10.6266524,47.5608156],[10.6260938,47.5610121],[10.6259866,47.5611963],[10.625943,47.561271],[10.6259146,47.5613198],[10.6259326,47.5615959],[10.6259752,47.5622518],[10.6260881,47.5629565],[10.6251555,47.5635617],[10.6248402,47.5638222],[10.624252,47.564306],[10.6231873,47.5646346],[10.6227481,47.5651169],[10.6227312,47.5651333],[10.6223861,47.5654658],[10.6223005,47.5655482],[10.6213058,47.5659752],[10.620095,47.566539],[10.6194421,47.5667469],[10.6190545,47.5668703],[10.6183613,47.5669206],[10.6181503,47.566936],[10.6175938,47.5668486],[10.6165905,47.5667416],[10.6157518,47.5667004],[10.6151177,47.5666789],[10.6146036,47.5666618],[10.6142747,47.566014],[10.6141127,47.5659203],[10.6133093,47.5654564],[10.6132543,47.5654892],[10.6131595,47.56549],[10.613065,47.5654716],[10.6128332,47.5654779],[10.6126151,47.5654774],[10.6125665,47.5654736],[10.6124966,47.5654681],[10.6121908,47.5654433],[10.6120774,47.5654545],[10.6120199,47.5654703],[10.6118997,47.5654895],[10.6116967,47.5655119],[10.6115698,47.5655414],[10.6113614,47.5656323],[10.6112463,47.5656515],[10.6111127,47.5657243],[10.6110212,47.5657538],[10.6109039,47.5657437],[10.6108165,47.5657362],[10.610754,47.565735],[10.6105695,47.5657757],[10.6104831,47.5658098],[10.6103986,47.5658119],[10.6103053,47.56587],[10.6099536,47.5658543],[10.6098845,47.5658518],[10.6096744,47.5658469],[10.6096695,47.5658468],[10.6095615,47.5658374],[10.609303,47.5657831],[10.6092287,47.5657772],[10.6089884,47.5657732],[10.608787,47.5657785],[10.6086738,47.5657633],[10.6084625,47.5657651],[10.6083869,47.5657735],[10.608131,47.5658021],[10.6080537,47.5658196],[10.607911,47.5658519],[10.6077924,47.5658985],[10.6076095,47.5659666],[10.6074756,47.5660601],[10.6073622,47.5660736],[10.6071725,47.5661828],[10.6069575,47.5662247],[10.6066522,47.5664675],[10.6064828,47.5665528],[10.6061425,47.566656],[10.6057296,47.5667224],[10.605498,47.5667186],[10.6053003,47.5666666],[10.6052394,47.5666791],[10.6051203,47.566849],[10.6050525,47.566906],[10.6047587,47.5672289],[10.6045859,47.5673302],[10.6044078,47.5674326],[10.6041977,47.5675671],[10.604069,47.5676216],[10.60394,47.5677413],[10.6035384,47.5679565],[10.6032367,47.5681353],[10.6031857,47.5681866],[10.6027543,47.5682598],[10.6026797,47.5682836],[10.6025948,47.5683418],[10.602463,47.5683541],[10.6023158,47.5683491],[10.6022197,47.5683123],[10.6019914,47.5683038],[10.6018646,47.5682829],[10.6017175,47.5682939],[10.6016311,47.5683224],[10.6014706,47.5682991],[10.6013151,47.5682541],[10.6012038,47.5682081],[10.6010688,47.5681039],[10.6008706,47.5682119],[10.6007232,47.5682596],[10.6005745,47.5682433],[10.6004798,47.5682002],[10.6001687,47.5685149],[10.5992497,47.5690364],[10.5990698,47.5691387],[10.5989712,47.5691917],[10.5979477,47.5697413],[10.5979156,47.5697004],[10.5976775,47.5693967],[10.5973797,47.5689999],[10.5969831,47.5687472],[10.5964997,47.5681961],[10.5961786,47.5677353],[10.5961276,47.5676565],[10.595798,47.567109],[10.5956982,47.5667772],[10.595749,47.5655902],[10.5959083,47.5649107],[10.5956657,47.5647518],[10.5954462,47.5646081],[10.5946444,47.5643968],[10.5939819,47.5640739],[10.5933515,47.5636915],[10.5932277,47.5636163],[10.5931709,47.5635469],[10.5926283,47.5628825],[10.5925461,47.562782],[10.5924805,47.5627052],[10.5924304,47.562647],[10.5924187,47.5626332],[10.5922856,47.5624779],[10.5918322,47.5619493],[10.5914146,47.5614618],[10.5905663,47.5605313],[10.5905334,47.5604952],[10.5904081,47.5603577],[10.5903054,47.5602452],[10.5902595,47.5601948],[10.5900848,47.5600198],[10.5900787,47.5600146],[10.5898528,47.5598248],[10.5896186,47.5596677],[10.5891318,47.5594482],[10.5890248,47.5593777],[10.5887915,47.5592698],[10.5887476,47.5592637],[10.5886196,47.5592365],[10.5884228,47.5591642],[10.5883808,47.5591514],[10.588249,47.5591402],[10.5882002,47.5591319],[10.588052,47.5590931],[10.5878244,47.5590492],[10.5876641,47.5589257],[10.587653,47.5588765],[10.5875966,47.5588155],[10.5875546,47.5587992],[10.587499,47.5587804],[10.5874522,47.5587504],[10.5873459,47.5587337],[10.5873143,47.5587003],[10.5872383,47.5586917],[10.5871129,47.5587091],[10.586971,47.5587048],[10.5867922,47.5586795],[10.5867047,47.5586514],[10.5866056,47.558613],[10.5865602,47.5586024],[10.5864927,47.5585906],[10.5863586,47.5585199],[10.5857913,47.5583604],[10.5857256,47.5583451],[10.5856531,47.5583389],[10.5855925,47.5583179],[10.5855502,47.5583095],[10.5854522,47.5583109],[10.5852444,47.5582186],[10.5852119,47.558181],[10.5851283,47.5581428],[10.5850679,47.5580598],[10.5849574,47.558017],[10.5849166,47.5579945],[10.5848734,47.5579376],[10.5846803,47.5577914],[10.5846594,47.557756],[10.5846432,47.5576955],[10.5845156,47.5576369],[10.5844217,47.5575781],[10.5843195,47.5575274],[10.584233,47.5575018],[10.5840661,47.5574251],[10.5840511,47.5574196],[10.5840083,47.5574038],[10.5838037,47.5573938],[10.5836407,47.5573434],[10.5835189,47.5573306],[10.5834765,47.5573149],[10.5834031,47.5572719],[10.5833606,47.5572516],[10.5831575,47.5572383],[10.5830194,47.5571558],[10.5829617,47.557131],[10.5827308,47.5570686],[10.5826678,47.5570405],[10.5826182,47.5569995],[10.5826089,47.5569872],[10.5825717,47.5569382],[10.5824661,47.5566713],[10.5824289,47.5564564],[10.5823656,47.5563001],[10.5823241,47.5562329],[10.5822705,47.5561669],[10.5818897,47.5558036],[10.5818406,47.5557845],[10.5817675,47.5557678],[10.5816187,47.5557541],[10.5813854,47.5557488],[10.5812235,47.5557603],[10.5811728,47.5557641],[10.5809053,47.5558324],[10.5808429,47.5558385],[10.5805635,47.5557982],[10.5804395,47.5557613],[10.580397,47.5557387],[10.5803298,47.5556614],[10.5802652,47.5555338],[10.5801827,47.5552255],[10.5800433,47.555175],[10.579942,47.5550705],[10.5799138,47.5549917],[10.5798102,47.5548449],[10.5797594,47.5547366],[10.5797476,47.5544095],[10.5797518,47.554366],[10.5798369,47.5541835],[10.5798425,47.5540999],[10.5798363,47.5540371],[10.5798297,47.55394],[10.5798106,47.553908],[10.5797697,47.5538865],[10.5796916,47.5538562],[10.5794589,47.5536737],[10.5794354,47.5535777],[10.5793167,47.5534437],[10.5793036,47.5532447],[10.5793411,47.5531621],[10.5793468,47.5530899],[10.5793846,47.5530348],[10.5793976,47.55299],[10.5795489,47.5528461],[10.5795787,47.5527978],[10.5795731,47.5527611],[10.5795755,47.5527062],[10.5796102,47.5526568],[10.5796677,47.5525523],[10.579777,47.5524097],[10.5797842,47.5523307],[10.5798165,47.5522412],[10.5799114,47.5521434],[10.5799256,47.5520758],[10.5799837,47.5520204],[10.5800877,47.5519706],[10.5801796,47.551953],[10.580182,47.5519526],[10.5802945,47.5519062],[10.580433,47.5518022],[10.5805178,47.5517135],[10.5805584,47.5516034],[10.580603,47.5515436],[10.5806468,47.5513179],[10.5806669,47.551245],[10.5807032,47.5511494],[10.5807266,47.5511251],[10.5808342,47.551065],[10.580884,47.5510371],[10.5810371,47.5510075],[10.5812166,47.5509216],[10.5812564,47.5508697],[10.5813299,47.5508212],[10.5814171,47.5507772],[10.5814865,47.5506851],[10.5814802,47.5506085],[10.5815147,47.5505408],[10.5815797,47.5504865],[10.5816922,47.5504354],[10.58178,47.5504325],[10.5818471,47.5504126],[10.5820378,47.5503872],[10.5821983,47.5502843],[10.5822146,47.5502464],[10.5823338,47.5501976],[10.582347,47.550178],[10.5823459,47.5501071],[10.5822974,47.5500388],[10.582302,47.5500022],[10.5823548,47.5498245],[10.5822937,47.5496669],[10.5819757,47.5488547],[10.5817954,47.5479661],[10.5816109,47.5475975],[10.5813614,47.547098],[10.5809107,47.5463809],[10.5802573,47.5449263],[10.5798851,47.5441122],[10.5795043,47.5434496],[10.5785109,47.54247],[10.5778694,47.5413768],[10.5773554,47.5400563],[10.5766849,47.5392583],[10.5761868,47.5381017],[10.5760289,47.5378327],[10.5757064,47.5372829],[10.5750577,47.5363862],[10.5744309,47.5355119],[10.5738111,47.5346473],[10.5733588,47.5340164],[10.5729847,47.5337474],[10.572875,47.5337449],[10.5728198,47.5337763],[10.5727617,47.5337458],[10.5726481,47.5337523],[10.5726148,47.5337382],[10.5725656,47.5337445],[10.5724126,47.5337106],[10.5723056,47.5336715],[10.5722376,47.5336854],[10.5721386,47.5336591],[10.5720289,47.533653],[10.5719921,47.5336378],[10.5717228,47.5336572],[10.5716614,47.5336781],[10.5715802,47.5336761],[10.5715354,47.5336458],[10.5714704,47.5336141],[10.5713708,47.5336082],[10.5712197,47.5335708],[10.5711833,47.5335453],[10.5711414,47.5335334],[10.5711338,47.5334989],[10.5711058,47.5334723],[10.5710634,47.5334774],[10.5710065,47.5335773],[10.571015,47.533638],[10.5709585,47.5337311],[10.5708892,47.5337279],[10.5708577,47.5337675],[10.5707352,47.5337945],[10.5706789,47.5338144],[10.570593,47.5338626],[10.5704843,47.5338211],[10.5703812,47.5338175],[10.5702813,47.5338231],[10.5701535,47.5337381],[10.5700975,47.5336905],[10.5700283,47.5336176],[10.5699994,47.5335623],[10.5698656,47.5335744],[10.5698273,47.5335522],[10.5697902,47.5335506],[10.5696416,47.5336058],[10.5695174,47.5336386],[10.5694475,47.5337143],[10.5694257,47.533834],[10.5693858,47.5338714],[10.5692949,47.5338576],[10.5691733,47.533856],[10.5690492,47.5338202],[10.5687579,47.5338416],[10.5686698,47.5337228],[10.568625,47.5336924],[10.5685371,47.5337085],[10.5685129,47.5337129],[10.5684719,47.5337237],[10.5684137,47.5336955],[10.5681904,47.5337019],[10.5680845,47.5336754],[10.5679611,47.5336761],[10.567828,47.5337201],[10.5677941,47.53373],[10.5677326,47.5338092],[10.567667,47.533861],[10.5674244,47.5338911],[10.567327,47.5338682],[10.5672234,47.5338874],[10.5671327,47.5339275],[10.5668757,47.5339276],[10.5667749,47.5339011],[10.5667345,47.5339006],[10.5666695,47.5339273],[10.5664765,47.533934],[10.5664335,47.5339072],[10.5663838,47.5339271],[10.5663211,47.5339355],[10.5662309,47.5339723],[10.5660764,47.5339153],[10.5659823,47.5338992],[10.5657958,47.5339162],[10.5656165,47.5339186],[10.5656312,47.5338776],[10.5655319,47.5338649],[10.5653331,47.5338383],[10.565231,47.5338656],[10.5649705,47.5338704],[10.564899,47.5338912],[10.5647854,47.5339652],[10.5646728,47.5340003],[10.5646546,47.533983],[10.5643969,47.5340117],[10.5642728,47.5340388],[10.5641545,47.5340779],[10.5639853,47.5341059],[10.5638827,47.5341493],[10.5638135,47.5342079],[10.5637636,47.5342335],[10.563699,47.5343093],[10.5636911,47.5343705],[10.5635141,47.5343904],[10.5632721,47.5344617],[10.5631621,47.5345312],[10.5630463,47.5346592],[10.5629239,47.5354898],[10.5629052,47.5356169],[10.5628417,47.5360504],[10.5628016,47.5363176],[10.5626026,47.5363533],[10.5623063,47.5363678],[10.5620632,47.5363555],[10.5617549,47.5363184],[10.5617201,47.5362895],[10.5616226,47.5362756],[10.5615388,47.5363077],[10.5614178,47.5362867],[10.5611799,47.5363261],[10.5610262,47.5363264],[10.5608861,47.5363749],[10.5606387,47.5363351],[10.5605421,47.5363476],[10.5604063,47.5363047],[10.5601885,47.5362357],[10.5600531,47.5362431],[10.5598772,47.5362397],[10.559898,47.5363429],[10.5599141,47.5363706],[10.5599323,47.5365125],[10.5598818,47.5365656],[10.5597368,47.5366095],[10.5595704,47.5366394],[10.5595153,47.5366696],[10.5593666,47.5366712],[10.559246,47.5366925],[10.5591442,47.5368844],[10.5591558,47.5370114],[10.5590872,47.5369911],[10.5590016,47.5370278],[10.5590176,47.5370611],[10.5589794,47.5370938],[10.5589914,47.5372128],[10.558885,47.5373323],[10.5587159,47.5372722],[10.5584686,47.5372314],[10.5582868,47.5372613],[10.5578368,47.5373353],[10.5577294,47.5372483],[10.5576072,47.5372344],[10.5571838,47.5372219],[10.5552087,47.5371636],[10.5546827,47.5371481],[10.5546488,47.537147],[10.5543324,47.5371377],[10.553539,47.5371143],[10.5531956,47.5371041],[10.5516855,47.5370594],[10.550811,47.5370333],[10.5498776,47.5370057],[10.5483877,47.5369612],[10.5468939,47.5369169],[10.5465943,47.5369079],[10.5456725,47.5368803],[10.5451964,47.536866],[10.5427423,47.5367936],[10.5396636,47.5367025],[10.5378617,47.536649],[10.5365231,47.536609],[10.5362196,47.5365726],[10.5353018,47.5364624],[10.5328704,47.5361723],[10.5281522,47.5356047],[10.526832,47.5354457],[10.5265544,47.5354122],[10.5257851,47.5353195],[10.5255519,47.5352913],[10.5249296,47.5352162],[10.5245223,47.535167],[10.5237917,47.535275],[10.5228994,47.5354056],[10.5208107,47.5357142],[10.5187609,47.5360155],[10.5183861,47.5360705],[10.5163595,47.5363675],[10.5146973,47.5366124],[10.5127212,47.5369029],[10.5110642,47.5371466],[10.5086069,47.5375095],[10.5085465,47.5375184],[10.5033033,47.5382894],[10.5028863,47.5383516],[10.5024215,47.538421],[10.5001097,47.5387566],[10.4993966,47.538862],[10.4987884,47.5389518],[10.4987868,47.538952],[10.4977627,47.5391034],[10.4969852,47.5392171],[10.4946915,47.5395525],[10.4938907,47.5396708],[10.49293,47.5398128],[10.4916708,47.5399989],[10.4889121,47.540403],[10.4863516,47.5420541],[10.484361,47.5433404],[10.4838952,47.5436414],[10.4816072,47.5451196],[10.4789622,47.546828],[10.4759033,47.5488044],[10.4758093,47.5488651],[10.4756048,47.5489971],[10.4737687,47.5501816],[10.4730629,47.5506369],[10.4729946,47.5506811],[10.4723343,47.5511101],[10.4719124,47.5511641],[10.4700189,47.5514062],[10.4699274,47.551418],[10.4698342,47.55143],[10.4696375,47.5514551],[10.4695874,47.5514615],[10.4671917,47.551767],[10.4670872,47.5517804],[10.4669833,47.5517937],[10.4667194,47.5518273],[10.4655194,47.5519806],[10.4643889,47.552125],[10.4634235,47.5522484],[10.4623663,47.5523833],[10.4610335,47.5525534],[10.4604899,47.5526228],[10.4591702,47.553313],[10.458709,47.5535543],[10.4558078,47.5550719],[10.4556876,47.5551352],[10.4544285,47.5557972],[10.454028,47.5549554],[10.4533127,47.5534525],[10.4525789,47.5519105],[10.4522966,47.551317],[10.4522684,47.5512575],[10.4515544,47.5497556],[10.450455,47.5474579],[10.4499733,47.546444],[10.4489898,47.5443742],[10.4489744,47.5443419],[10.4488136,47.5440034],[10.448788,47.5439497],[10.4482326,47.5427805],[10.4481852,47.5426807],[10.4480793,47.5424575],[10.4479814,47.5422512],[10.4474772,47.5411902],[10.4468189,47.539805],[10.4463337,47.5387839],[10.445352,47.5367164],[10.444883,47.5357283],[10.4446378,47.5352123],[10.4442912,47.5344783],[10.444286,47.5344671],[10.4439901,47.5338443],[10.4432583,47.5323029],[10.4431322,47.5320376],[10.4431244,47.5320214],[10.4425861,47.5308879],[10.442056,47.5298764],[10.4419819,47.5297352],[10.4418685,47.5295193],[10.4407223,47.5273377],[10.4403015,47.5265376],[10.4401734,47.5262936],[10.4398614,47.5256993],[10.439341,47.5247076],[10.4392509,47.5245355],[10.4391456,47.5243351],[10.4390869,47.524223],[10.4390387,47.5241312],[10.4389965,47.5240507],[10.4389082,47.523883],[10.4388524,47.523777],[10.4387193,47.5235235],[10.4387487,47.5234822],[10.438762,47.5234637],[10.4391343,47.5229457],[10.4402418,47.5214193],[10.441586,47.5195619],[10.4420386,47.5189373],[10.4421462,47.5187888],[10.4416987,47.5173261],[10.4410649,47.515259],[10.4407008,47.5140658],[10.4405555,47.5135893],[10.4405295,47.5134758],[10.4405093,47.5134541],[10.4404533,47.5134256],[10.4404177,47.5133972],[10.4403376,47.5132577],[10.4403208,47.5132338],[10.4402834,47.5132133],[10.4402545,47.5132001],[10.4401937,47.5131723],[10.4401412,47.5131416],[10.4400669,47.5131303],[10.4400212,47.5131212],[10.4399179,47.5130688],[10.4398012,47.5129959],[10.4397672,47.5129628],[10.4396824,47.5128817],[10.4396075,47.5127642],[10.4395803,47.512739],[10.4395295,47.5127106],[10.4395006,47.5126888],[10.4394158,47.5125976],[10.4393837,47.5125702],[10.4392825,47.5124899],[10.4391496,47.5123843],[10.4391226,47.5123569],[10.4390716,47.5122997],[10.4389174,47.5121686],[10.4388918,47.5121412],[10.4387778,47.5119675],[10.4387742,47.5119354],[10.4387573,47.511915],[10.4385509,47.511817],[10.438527,47.5117725],[10.4384795,47.5117292],[10.4384689,47.5116479],[10.4384197,47.5116023],[10.438406,47.5115577],[10.4383907,47.5115383],[10.4383552,47.5115167],[10.4383276,47.5114954],[10.4381551,47.5113616],[10.4381431,47.5113182],[10.4380701,47.5112336],[10.4380547,47.5112085],[10.4380461,47.511165],[10.4380273,47.5111388],[10.4379407,47.5110394],[10.4378424,47.5109562],[10.4377695,47.5109049],[10.4375733,47.5108058],[10.4375259,47.5107899],[10.4374926,47.5107842],[10.4374531,47.5107774],[10.4374244,47.5107672],[10.4374007,47.5107478],[10.4373582,47.5106758],[10.437297,47.5106051],[10.4370751,47.5104592],[10.4370395,47.510433],[10.4370007,47.5104228],[10.4369347,47.510424],[10.4368723,47.5104104],[10.4367597,47.5103727],[10.4367313,47.5102609],[10.4366974,47.5102198],[10.436624,47.510053],[10.4365899,47.5100142],[10.4365138,47.5099709],[10.4364833,47.5099412],[10.4364594,47.5098954],[10.4364233,47.5097743],[10.4363553,47.50966],[10.4362738,47.5095916],[10.4362213,47.5095585],[10.4361047,47.5095245],[10.436086,47.5095132],[10.436086,47.5094982],[10.4360926,47.5094754],[10.4360525,47.5092122],[10.4360271,47.5091768],[10.4359457,47.5091141],[10.4359303,47.509081],[10.4359301,47.5090421],[10.4359416,47.508986],[10.4359313,47.5089483],[10.4358922,47.5089015],[10.4358567,47.5088775],[10.4358145,47.5088663],[10.4356114,47.5088336],[10.435641,47.5087975],[10.4356684,47.5087636],[10.4356843,47.5087248],[10.4356816,47.5086974],[10.4356769,47.5086687],[10.4356755,47.5086549],[10.4356981,47.5085384],[10.4357102,47.5085111],[10.4357428,47.5084941],[10.4357548,47.5084794],[10.4357622,47.5084417],[10.4357744,47.5084258],[10.4358679,47.5083945],[10.4359432,47.5083392],[10.4360029,47.5083054],[10.4360151,47.5082895],[10.436007,47.5082745],[10.4358288,47.5081412],[10.4357722,47.5080972],[10.4357102,47.5080691],[10.4356837,47.5080517],[10.4356606,47.5080216],[10.4356562,47.5079896],[10.4356507,47.5079242],[10.4356442,47.507907],[10.4355911,47.5078585],[10.4355731,47.5078308],[10.4355301,47.5076965],[10.4354956,47.5076526],[10.4354736,47.5075585],[10.4355073,47.5075577],[10.4354971,47.5074843],[10.4355025,47.5074603],[10.435523,47.5074468],[10.4356044,47.507435],[10.4356283,47.5074158],[10.435634,47.507386],[10.4355732,47.5072961],[10.4355415,47.5072764],[10.4355318,47.507258],[10.4355224,47.5072178],[10.4355075,47.5071993],[10.4354657,47.5071807],[10.4354423,47.5071713],[10.4354032,47.5070988],[10.4353919,47.5069807],[10.4353673,47.5067664],[10.4353629,47.5067355],[10.4352688,47.5066212],[10.4352487,47.5066072],[10.4351949,47.5065964],[10.4351516,47.506572],[10.4350525,47.5064577],[10.4349879,47.5063873],[10.4349701,47.5063482],[10.4349494,47.5062838],[10.4349279,47.5062665],[10.434866,47.5062361],[10.434841,47.5062142],[10.4347967,47.5061497],[10.4347304,47.5060849],[10.4346369,47.5060314],[10.4345816,47.5060091],[10.4344892,47.505991],[10.4344624,47.5059782],[10.4344261,47.5059355],[10.4343911,47.5059112],[10.4343106,47.5058794],[10.4342668,47.5058757],[10.4341706,47.5058816],[10.4341553,47.5058814],[10.4341353,47.5058676],[10.434112,47.5058524],[10.4340934,47.5058488],[10.4340631,47.505852],[10.4340445,47.5058472],[10.4340248,47.505728],[10.4340083,47.5057083],[10.433965,47.5056816],[10.4337761,47.5055035],[10.4337394,47.505478],[10.4336674,47.5054509],[10.4335429,47.5054245],[10.4335212,47.5054129],[10.4334699,47.5053632],[10.4334361,47.5053526],[10.4332956,47.505335],[10.4332137,47.5051536],[10.4331957,47.5051317],[10.4331323,47.5050898],[10.433106,47.5050552],[10.4330038,47.5049284],[10.4329604,47.5049061],[10.4329423,47.5048774],[10.4328883,47.5047945],[10.4328356,47.5047218],[10.432699,47.504622],[10.4326522,47.5045987],[10.4326136,47.5045881],[10.4324221,47.5045462],[10.4324036,47.5045357],[10.4323954,47.5044303],[10.4322892,47.5043434],[10.4322489,47.5043293],[10.4321968,47.5043151],[10.4321701,47.5043],[10.4320786,47.5042304],[10.431992,47.5041712],[10.4319439,47.5041284],[10.4318246,47.5040238],[10.4317646,47.5039711],[10.4316912,47.5039187],[10.4316309,47.503901],[10.431547,47.5038728],[10.4315002,47.5038517],[10.4314687,47.5038182],[10.4314442,47.5037837],[10.4314258,47.5037674],[10.4313922,47.5037579],[10.4313005,47.5037634],[10.4314469,47.503485],[10.4325551,47.501379],[10.4329874,47.5005572],[10.4330729,47.5003948],[10.4334856,47.4996104],[10.4337131,47.4991785],[10.4337132,47.4991782],[10.4344562,47.497984],[10.434568,47.4975557],[10.4346701,47.4973619],[10.4347865,47.4971406],[10.4357205,47.4953656],[10.4365215,47.4938506],[10.4368074,47.4933096],[10.436938,47.4930609],[10.4376514,47.4917008],[10.4375942,47.4916581],[10.4375829,47.4916222],[10.4376017,47.4915633],[10.4375854,47.4915273],[10.437552,47.4914931],[10.4374839,47.4914475],[10.4374482,47.4913983],[10.4374172,47.4912966],[10.4374078,47.4911497],[10.4376457,47.4909367],[10.4376593,47.4908284],[10.4376662,47.4907964],[10.4376958,47.4907297],[10.4377415,47.4906978],[10.4379748,47.490644],[10.4380052,47.4905362],[10.4380454,47.4905407],[10.4380802,47.4904971],[10.4381724,47.4904528],[10.4382813,47.4902784],[10.4385723,47.4902699],[10.4386419,47.4902399],[10.4386877,47.4902342],[10.4387611,47.4902251],[10.4388119,47.4902232],[10.43885,47.4902094],[10.4388766,47.4901861],[10.4389166,47.4901689],[10.4389564,47.4901254],[10.4391733,47.490117],[10.439204,47.4900846],[10.4392497,47.4900562],[10.4394095,47.4900403],[10.4394455,47.4900323],[10.439505,47.4899711],[10.4395446,47.4899584],[10.4395883,47.489962],[10.4396513,47.4899834],[10.4396888,47.4899512],[10.4397636,47.4899442],[10.4397903,47.4898672],[10.4398604,47.4897432],[10.4398755,47.4896921],[10.4399007,47.489639],[10.4399737,47.4895254],[10.4400141,47.4894739],[10.4400763,47.4894483],[10.4400798,47.4894423],[10.4401872,47.4894309],[10.4402109,47.4894064],[10.440213,47.4892896],[10.4402375,47.4891666],[10.4402496,47.4890834],[10.440214,47.4890548],[10.4402568,47.4889105],[10.4402786,47.4888848],[10.4403155,47.488863],[10.4403378,47.4888328],[10.4403126,47.4887186],[10.4403249,47.488601],[10.4403901,47.4885593],[10.4404196,47.4885201],[10.4404177,47.4884972],[10.4403936,47.4883933],[10.4403926,47.4883292],[10.4404151,47.4881843],[10.4404354,47.488075],[10.4404869,47.4879516],[10.4405279,47.4878886],[10.4405644,47.4878485],[10.4405881,47.4878181],[10.4405375,47.4877787],[10.4404303,47.4877128],[10.4404005,47.4876702],[10.4404015,47.4875067],[10.4403849,47.4873544],[10.4403921,47.4873259],[10.4404063,47.4872814],[10.4404085,47.4872494],[10.4403783,47.4871165],[10.4403825,47.4870696],[10.44035,47.4869813],[10.4403469,47.4868474],[10.4403394,47.4868301],[10.4402865,47.4867075],[10.440282,47.4866228],[10.4402772,47.4865325],[10.4403652,47.4865204],[10.4404618,47.4864981],[10.4405179,47.4864734],[10.4405355,47.4864311],[10.4405867,47.486396],[10.4406304,47.486394],[10.4406768,47.4863463],[10.4407513,47.4863342],[10.4408289,47.4863324],[10.4408644,47.4863281],[10.4409295,47.4862667],[10.4409368,47.4862371],[10.4410319,47.4861954],[10.4411955,47.4862078],[10.441231,47.4861966],[10.4413394,47.4861698],[10.4413803,47.4861472],[10.4414247,47.4861177],[10.4414555,47.486087],[10.4414947,47.4860633],[10.4415376,47.4860166],[10.4415686,47.4859689],[10.4416156,47.4858674],[10.4416967,47.4858736],[10.441862,47.4857626],[10.441881,47.4857386],[10.4418954,47.4856736],[10.4420104,47.4855394],[10.4420366,47.4854903],[10.4421557,47.4854214],[10.4421836,47.4853586],[10.4422168,47.4852821],[10.4422186,47.485162],[10.4422967,47.4851397],[10.4423468,47.4850622],[10.4423509,47.4850062],[10.442458,47.48496],[10.4425126,47.484918],[10.4425285,47.484877],[10.4425071,47.4847224],[10.4425347,47.4846825],[10.4425962,47.4846349],[10.4426585,47.4846365],[10.4426861,47.4846069],[10.44274,47.4846118],[10.4427623,47.484581],[10.4428369,47.4845633],[10.4428632,47.4846126],[10.443073,47.4845819],[10.4431747,47.4845494],[10.4432155,47.4845314],[10.4433151,47.4845251],[10.4433507,47.4845162],[10.4435052,47.4844509],[10.4435747,47.4844479],[10.4437071,47.484387],[10.443778,47.484384],[10.4439682,47.4843155],[10.4440306,47.4843205],[10.4440828,47.4843207],[10.4441933,47.4842792],[10.444255,47.4842167],[10.4442267,47.4841776],[10.4442985,47.4841152],[10.4444392,47.4840874],[10.4444685,47.4840396],[10.4444922,47.4840364],[10.444491,47.4840066],[10.4445065,47.4839906],[10.4445521,47.4839886],[10.4446471,47.483955],[10.4447365,47.4839487],[10.4447921,47.4839524],[10.4448308,47.4839698],[10.4449927,47.4839721],[10.444989,47.4840063],[10.44496,47.4840188],[10.4450659,47.4840571],[10.4451316,47.48406],[10.445164,47.4840418],[10.4452113,47.4840352],[10.4452213,47.4840537],[10.4452752,47.4840597],[10.4453304,47.4840795],[10.4453385,47.4841069],[10.4454212,47.4841122],[10.4454434,47.4841031],[10.4454437,47.4840745],[10.4454624,47.4840575],[10.4455657,47.4840456],[10.4455757,47.4840548],[10.4455669,47.4840753],[10.445587,47.4840915],[10.4456611,47.4840976],[10.4456816,47.4840852],[10.4456971,47.4840613],[10.4457477,47.4840627],[10.4459362,47.4841005],[10.4459441,47.4841406],[10.4459876,47.4841741],[10.446129,47.484191],[10.4461862,47.4842097],[10.4462166,47.484203],[10.4462338,47.4841882],[10.4462626,47.4841862],[10.4463094,47.4842116],[10.4463359,47.4842382],[10.4463969,47.4842386],[10.4464806,47.4842036],[10.4465213,47.4842599],[10.4466303,47.4843052],[10.4466557,47.4843112],[10.4467385,47.4843128],[10.4468332,47.4843008],[10.4468717,47.484308],[10.4468884,47.4843309],[10.4469235,47.4843448],[10.4469825,47.4843544],[10.4470883,47.4843905],[10.4471238,47.484393],[10.4471898,47.4843843],[10.4472908,47.4843941],[10.4473143,47.4844092],[10.4473463,47.4844105],[10.4474259,47.4843881],[10.4474767,47.4843838],[10.44752,47.4844265],[10.4475584,47.4844485],[10.4476359,47.484457],[10.4477369,47.4844896],[10.4478311,47.4845063],[10.4478563,47.4845167],[10.447997,47.4845921],[10.4480995,47.4846269],[10.4481585,47.484633],[10.4482003,47.4846539],[10.4482342,47.4846495],[10.4482909,47.48469],[10.4483398,47.4847006],[10.4484529,47.4847013],[10.4484863,47.4847198],[10.4484979,47.4847359],[10.4485342,47.4847853],[10.4485594,47.484805],[10.4486181,47.4848282],[10.4487172,47.484862],[10.4487808,47.484891],[10.4488143,47.4849164],[10.4488577,47.4849418],[10.4490814,47.4850085],[10.4491519,47.4850375],[10.4492629,47.4850554],[10.4494233,47.4850609],[10.4494505,47.4850543],[10.4495453,47.4850355],[10.4495785,47.4850643],[10.4496054,47.4850736],[10.4496679,47.485082],[10.4497015,47.4850913],[10.449775,47.4851433],[10.44986,47.4852171],[10.4498899,47.4852425],[10.4500374,47.4853155],[10.4500726,47.4853374],[10.4502086,47.4853864],[10.4503176,47.4854363],[10.4503962,47.4854859],[10.450428,47.485516],[10.4504595,47.4855458],[10.4504861,47.4855688],[10.4505266,47.4855794],[10.450724,47.4855921],[10.4509627,47.4856531],[10.4509965,47.4856579],[10.4510353,47.4856547],[10.4510974,47.4856746],[10.4511244,47.4856793],[10.4512342,47.4856823],[10.451367,47.4857129],[10.4513971,47.4857268],[10.4514759,47.4857708],[10.4515768,47.4856845],[10.4516173,47.485678],[10.4516296,47.4856448],[10.4516588,47.4856175],[10.4520606,47.4855],[10.4520872,47.48553],[10.4521377,47.4855326],[10.4521415,47.4854994],[10.4521605,47.4854778],[10.4522114,47.4854564],[10.4522568,47.4854636],[10.4523775,47.4854116],[10.4525094,47.4853862],[10.4525537,47.4853727],[10.4525792,47.4853466],[10.4525967,47.4853078],[10.452614,47.4852919],[10.4527272,47.4852777],[10.4527629,47.4852541],[10.4527685,47.4852243],[10.4526901,47.4851609],[10.4526903,47.485138],[10.4527128,47.4851107],[10.4527502,47.4850949],[10.4529002,47.4851073],[10.4529743,47.4851101],[10.4530923,47.4851337],[10.4531867,47.4851343],[10.4532797,47.4851201],[10.4533647,47.4850794],[10.4533969,47.4850807],[10.453443,47.4850422],[10.4534673,47.4849908],[10.4535016,47.4849625],[10.4535643,47.4849411],[10.4535952,47.4849058],[10.4536781,47.4848985],[10.4536828,47.484919],[10.4537196,47.4849398],[10.4537501,47.4849308],[10.4538107,47.4848306],[10.4539429,47.4846781],[10.4539521,47.4846267],[10.4539644,47.4845913],[10.4539672,47.4845089],[10.4540538,47.4844741],[10.4541051,47.4844332],[10.454098,47.4843428],[10.454107,47.4843086],[10.454153,47.4842758],[10.4542564,47.4842523],[10.454348,47.4842187],[10.4544786,47.4841714],[10.4547054,47.4841294],[10.4547513,47.4841136],[10.4548485,47.4840399],[10.4548943,47.4840241],[10.4550908,47.4839821],[10.4551621,47.4839515],[10.4552218,47.4839096],[10.4552447,47.4838445],[10.4552793,47.4837876],[10.4553186,47.483749],[10.4555568,47.4836235],[10.4556008,47.4836169],[10.4557227,47.4835959],[10.455777,47.4835711],[10.4558316,47.4835315],[10.4560095,47.4832659],[10.4560559,47.4831966],[10.4560731,47.4831749],[10.4561175,47.4831368],[10.4562401,47.4830673],[10.4563062,47.4830425],[10.4563472,47.483013],[10.4564377,47.4829439],[10.4564836,47.4829213],[10.456613,47.48285],[10.4567574,47.482787],[10.4568455,47.4827623],[10.4569316,47.4827582],[10.4569926,47.4827449],[10.4570436,47.4827223],[10.4572178,47.4826938],[10.4572654,47.4826724],[10.4573145,47.4826589],[10.4573585,47.4826546],[10.4574109,47.4826412],[10.4574809,47.4825936],[10.4575352,47.4825757],[10.4577952,47.4825613],[10.4579266,47.4825839],[10.4579874,47.4825842],[10.45805,47.4825812],[10.4581612,47.48259],[10.4582387,47.4825949],[10.4583098,47.4825885],[10.458357,47.4825946],[10.4584679,47.4826216],[10.4585405,47.4826324],[10.4586806,47.4826276],[10.4588122,47.4826318],[10.4590599,47.4826597],[10.4591327,47.4826555],[10.4591935,47.4826445],[10.4592563,47.4826209],[10.4593055,47.4826064],[10.4595014,47.4826007],[10.4597635,47.4825635],[10.4598276,47.4825651],[10.460066,47.4825459],[10.460105,47.4825371],[10.4601403,47.4825373],[10.4601806,47.4825535],[10.4603815,47.4825549],[10.4605383,47.4825752],[10.4606671,47.4825395],[10.4607372,47.482469],[10.4609621,47.4824418],[10.4611375,47.4824486],[10.4611883,47.4824455],[10.4613084,47.4824268],[10.4614065,47.4824206],[10.4615395,47.4824375],[10.4618283,47.4825503],[10.4619994,47.4826131],[10.4621777,47.4826599],[10.4624996,47.4826952],[10.4626831,47.4827318],[10.4630353,47.4827833],[10.4631079,47.4827757],[10.4632298,47.4827523],[10.4632935,47.482753],[10.4634525,47.4827687],[10.4635552,47.4827693],[10.4637073,47.4827588],[10.4637456,47.4827517],[10.463782,47.4826671],[10.4638195,47.4826468],[10.4638316,47.4826309],[10.4638354,47.4826058],[10.4638847,47.4825799],[10.4638969,47.4825594],[10.4638955,47.4825365],[10.4638655,47.4825008],[10.4638729,47.48247],[10.4638566,47.4824356],[10.4638046,47.4824043],[10.4637795,47.4823858],[10.4637079,47.4823133],[10.4636567,47.4822454],[10.4636486,47.4822214],[10.463658,47.482146],[10.463657,47.4821094],[10.4636423,47.4820806],[10.4635484,47.4820307],[10.4635386,47.4820136],[10.4635287,47.4819918],[10.4635329,47.4819414],[10.4635249,47.4819071],[10.4635286,47.4818865],[10.463589,47.4817885],[10.4635944,47.4817715],[10.4635009,47.4816976],[10.4634561,47.4816516],[10.4634366,47.4816034],[10.4634295,47.4815061],[10.4634466,47.4813827],[10.4634644,47.4813108],[10.4635006,47.4812619],[10.4635128,47.4812425],[10.4635335,47.481094],[10.4635633,47.4810279],[10.4635805,47.4810028],[10.4635875,47.4809802],[10.4635829,47.4808371],[10.4635537,47.4807637],[10.4635429,47.480687],[10.4635456,47.4806161],[10.4635719,47.4805557],[10.4636322,47.480475],[10.46366,47.4804167],[10.463669,47.4803814],[10.4636894,47.4803655],[10.463774,47.4803582],[10.4638266,47.4803448],[10.4638556,47.4803233],[10.4639678,47.4801538],[10.464045,47.4800777],[10.464081,47.4800334],[10.4641083,47.4800164],[10.4641676,47.4799974],[10.4641982,47.4799851],[10.4642342,47.4799464],[10.4643876,47.4797314],[10.4644307,47.479678],[10.4644578,47.4796678],[10.4644715,47.479652],[10.4645218,47.4795687],[10.4645646,47.4795337],[10.4646341,47.4795113],[10.4647321,47.479496],[10.4648065,47.4794966],[10.4648674,47.4794901],[10.4649679,47.4794303],[10.4651846,47.4793804],[10.4652857,47.4792873],[10.4653453,47.4791322],[10.4653812,47.4790971],[10.4654273,47.4790642],[10.4655018,47.4789378],[10.4655281,47.4788716],[10.4656117,47.4788163],[10.4656727,47.4788042],[10.4657051,47.4788936],[10.4657302,47.4789121],[10.465794,47.4789297],[10.4658273,47.4789699],[10.465854,47.4789827],[10.4659297,47.4789993],[10.4659618,47.4789984],[10.4659772,47.4789836],[10.4659766,47.478915],[10.465987,47.4788956],[10.4660363,47.4788731],[10.4660602,47.4788595],[10.466074,47.4788448],[10.4661244,47.4787353],[10.466164,47.4786922],[10.4662833,47.4786062],[10.4664174,47.4785568],[10.4664447,47.4785365],[10.4664519,47.4785114],[10.466439,47.4784689],[10.4664278,47.4784369],[10.4663481,47.4782213],[10.4663377,47.478116],[10.4663609,47.4780418],[10.4665381,47.4778144],[10.4665622,47.4777917],[10.4666693,47.4777352],[10.4667238,47.4777002],[10.4669225,47.477505],[10.4670082,47.4774232],[10.4671395,47.4773316],[10.467289,47.4772687],[10.4674859,47.47719],[10.4676384,47.4771557],[10.4678751,47.4771334],[10.4679703,47.4771102],[10.4679413,47.4769909],[10.4678307,47.476711],[10.4678064,47.47664],[10.4677812,47.4765174],[10.4677518,47.4764474],[10.4676717,47.4763851],[10.467608,47.4763561],[10.4674768,47.4763242],[10.4674114,47.4762952],[10.4673012,47.4762063],[10.4672715,47.4761546],[10.4672274,47.4758363],[10.4671668,47.4758142],[10.4670502,47.4757081],[10.4670272,47.4756702],[10.4668664,47.4754667],[10.4668005,47.4753597],[10.4667773,47.4753265],[10.4667125,47.4752528],[10.4666746,47.475184],[10.4666805,47.4751302],[10.4666579,47.4750614],[10.4666914,47.4749678],[10.4667099,47.4747393],[10.466737,47.4746183],[10.4667617,47.4744355],[10.4667844,47.4743796],[10.4668171,47.4743422],[10.4668835,47.4742891],[10.4668639,47.4741366],[10.4668393,47.4740952],[10.4667558,47.4740305],[10.4667326,47.4740007],[10.4666746,47.4738071],[10.4666428,47.4736867],[10.4666347,47.4735368],[10.4666456,47.4734935],[10.4667237,47.473343],[10.4667444,47.4733158],[10.4667801,47.4732954],[10.4668024,47.4732727],[10.4669706,47.4729686],[10.4669997,47.4729401],[10.4671051,47.4728987],[10.467129,47.4728748],[10.4671733,47.4727356],[10.4672579,47.4727225],[10.4672949,47.4727308],[10.4673425,47.4727025],[10.4673479,47.4726763],[10.4673854,47.4726526],[10.4674262,47.4726391],[10.4674658,47.4725845],[10.4674995,47.4725927],[10.4675212,47.4724889],[10.4675626,47.4724319],[10.467551,47.4724136],[10.4675615,47.4723896],[10.4675957,47.4723625],[10.4676044,47.4723408],[10.4676074,47.4722551],[10.4676162,47.4722311],[10.4676603,47.4722097],[10.4676752,47.4721664],[10.4676832,47.4721424],[10.4677043,47.4720945],[10.4676966,47.4720453],[10.4677769,47.471864],[10.4678129,47.4718277],[10.4678438,47.4717879],[10.4678728,47.4716497],[10.4678597,47.4715101],[10.4678702,47.4714895],[10.4679062,47.4714509],[10.4679368,47.4714318],[10.4679238,47.471403],[10.467885,47.4713925],[10.4678574,47.4713237],[10.4677907,47.4712603],[10.4677338,47.4712232],[10.4676852,47.4712103],[10.467689,47.4711852],[10.4676775,47.4711542],[10.4677285,47.4711283],[10.4677658,47.4711229],[10.4678515,47.4710365],[10.4679142,47.4710176],[10.4679365,47.4709994],[10.4679524,47.470955],[10.468086,47.4709228],[10.4681353,47.4709037],[10.4681696,47.4708697],[10.4682035,47.4708539],[10.4683219,47.4708467],[10.4683609,47.4708332],[10.4684279,47.4707537],[10.4684645,47.4706762],[10.4684852,47.470642],[10.4686598,47.4704821],[10.4687159,47.4704527],[10.4687281,47.4704322],[10.4687817,47.4703389],[10.4688141,47.4702053],[10.4688339,47.4700019],[10.468845,47.4699367],[10.4688305,47.4698932],[10.4688073,47.469853],[10.4688466,47.4698315],[10.4689544,47.4698427],[10.4689903,47.4698143],[10.4690495,47.4698079],[10.4690785,47.4697864],[10.4690741,47.4697474],[10.4690981,47.4697088],[10.4691219,47.469694],[10.4691394,47.4696621],[10.4691503,47.4696039],[10.4691608,47.4695869],[10.4692047,47.4695826],[10.4692153,47.4695472],[10.469229,47.4695301],[10.4692631,47.469511],[10.4692772,47.4694619],[10.4693015,47.4694231],[10.4693649,47.4693562],[10.469369,47.4693162],[10.4693878,47.4692945],[10.4694317,47.4692914],[10.4694944,47.4692748],[10.4695319,47.4692532],[10.4695844,47.4692457],[10.4696234,47.4692277],[10.469668,47.4691834],[10.4696732,47.4691675],[10.4696807,47.469124],[10.4697395,47.469025],[10.4697617,47.469],[10.4698977,47.4689403],[10.4699317,47.4689189],[10.4700062,47.4687901],[10.4700004,47.4687306],[10.4699889,47.4687043],[10.4699723,47.4686847],[10.4699421,47.4686719],[10.4699339,47.4686558],[10.4699442,47.4686047],[10.4698712,47.4685582],[10.4698391,47.4685591],[10.4698107,47.4685429],[10.4697875,47.4685095],[10.4697455,47.468507],[10.469707,47.468478],[10.4696851,47.4684699],[10.4696478,47.4684913],[10.4696308,47.4684924],[10.4696107,47.468482],[10.4695926,47.4684543],[10.4696035,47.4684018],[10.4696038,47.4683721],[10.4695906,47.4683537],[10.4695153,47.4683017],[10.4694942,47.4682558],[10.4694221,47.4682164],[10.4693872,47.4681875],[10.4693505,47.4681439],[10.4693236,47.4681414],[10.4692735,47.4681055],[10.4692266,47.4680834],[10.4691476,47.4680657],[10.4690387,47.4680021],[10.4690036,47.4679846],[10.4689647,47.4679844],[10.4688929,47.4679357],[10.4688477,47.4679103],[10.4687905,47.4678996],[10.4687694,47.4678389],[10.4687461,47.4678214],[10.4687207,47.4678168],[10.4687022,47.4678166],[10.4686736,47.4678072],[10.4685465,47.467732],[10.4685248,47.4677135],[10.4684502,47.4676181],[10.4683552,47.4675339],[10.4683302,47.4675211],[10.4683066,47.467513],[10.4682933,47.4675014],[10.4682921,47.4674671],[10.4682806,47.4674452],[10.4682489,47.467421],[10.4682169,47.4674209],[10.4681916,47.4674104],[10.4679976,47.4672865],[10.467919,47.467238],[10.4678736,47.4672262],[10.4678401,47.4672133],[10.4677838,47.4670266],[10.4678012,47.4669809],[10.4677627,47.4668479],[10.4677332,47.4667894],[10.4675909,47.4665986],[10.4675012,47.4664916],[10.4674715,47.4664582],[10.4674177,47.4664407],[10.4673705,47.4664288],[10.4673388,47.4664114],[10.4671701,47.4662868],[10.4669848,47.4661481],[10.466975,47.4661229],[10.4669712,47.4660371],[10.4669732,47.4660188],[10.4669599,47.4660039],[10.4667225,47.4658546],[10.4666139,47.4657737],[10.4665789,47.4657403],[10.4665433,47.4656383],[10.4665171,47.465581],[10.4663741,47.4654335],[10.4663143,47.4653832],[10.4662471,47.4653525],[10.4662969,47.4651878],[10.4663168,47.4651431],[10.4664014,47.4650614],[10.4664455,47.4650081],[10.4665092,47.4648704],[10.4665125,47.4648452],[10.4664152,47.4648161],[10.4662773,47.4647242],[10.4662157,47.464655],[10.4661827,47.4646474],[10.4661727,47.4646239],[10.4659267,47.4645568],[10.4658772,47.4645273],[10.4658031,47.4644264],[10.4657175,47.4642715],[10.4656797,47.4642017],[10.4656543,47.4641187],[10.4656338,47.4640923],[10.4655523,47.4640228],[10.4655084,47.4639818],[10.4654744,47.463922],[10.4654483,47.4637678],[10.4654599,47.4637329],[10.4654794,47.4637017],[10.465651,47.463641],[10.4656693,47.4636062],[10.465675,47.4635856],[10.4656448,47.4635339],[10.4657539,47.4634301],[10.4659066,47.4632415],[10.4659892,47.4631382],[10.4660848,47.4630424],[10.4661096,47.463013],[10.466131,47.4629611],[10.4661571,47.4629309],[10.4662065,47.462918],[10.4663243,47.462836],[10.4663928,47.4628045],[10.4664242,47.4627744],[10.4666239,47.4625207],[10.4666659,47.4624916],[10.4667824,47.4623178],[10.4668177,47.4622417],[10.4668745,47.4621139],[10.4668825,47.4620663],[10.4669077,47.4620234],[10.4670023,47.4619115],[10.4670233,47.4618748],[10.4670393,47.4618274],[10.4670535,47.4614749],[10.4671142,47.4613526],[10.4671692,47.4612831],[10.4673189,47.461197],[10.4673303,47.4611701],[10.4673288,47.4610847],[10.4673427,47.4610668],[10.4673856,47.4610504],[10.4674457,47.4610358],[10.4675756,47.4609459],[10.4676071,47.460913],[10.4676034,47.4608572],[10.4675911,47.4608211],[10.4675706,47.4607983],[10.4675159,47.4607634],[10.4675099,47.4607399],[10.467508,47.4607156],[10.4675233,47.4606916],[10.4675151,47.4606078],[10.4675515,47.4605866],[10.4676186,47.4605138],[10.4676048,47.4604893],[10.4676435,47.4604782],[10.467652,47.4604603],[10.467593,47.4603902],[10.4676306,47.4603754],[10.4676554,47.4603461],[10.4676577,47.460311],[10.4676433,47.4602595],[10.4676377,47.4602253],[10.4675939,47.4601788],[10.46758,47.4601544],[10.4675674,47.4600877],[10.4675229,47.4600673],[10.4675036,47.4599996],[10.4674625,47.459999],[10.4674163,47.4599498],[10.4673543,47.4599364],[10.4673371,47.4598453],[10.4673702,47.4597999],[10.4673763,47.4597244],[10.4674106,47.4596853],[10.4674027,47.459642],[10.467418,47.4596162],[10.467543,47.4595593],[10.4675622,47.4595362],[10.467566,47.4594967],[10.467583,47.459461],[10.4677094,47.4593996],[10.4677495,47.4593867],[10.4678261,47.4593545],[10.4678387,47.4593339],[10.4678771,47.4593318],[10.4679065,47.4592781],[10.4679433,47.4592445],[10.4680164,47.4591942],[10.4680685,47.4591787],[10.4680905,47.4591566],[10.4681268,47.4590931],[10.4681541,47.458973],[10.4681917,47.4589123],[10.4682473,47.4588699],[10.4682525,47.4587845],[10.4682283,47.45875],[10.4682265,47.4587221],[10.4682443,47.458653],[10.4682386,47.4586215],[10.4682019,47.4586084],[10.4682013,47.4585814],[10.4681589,47.4585827],[10.4681511,47.4585257],[10.4681823,47.4584148],[10.4681819,47.4583815],[10.4681706,47.4583633],[10.4681379,47.4583467],[10.4680254,47.4582472],[10.4680179,47.4582309],[10.4680241,47.4581986],[10.4680116,47.458176],[10.468014,47.4581355],[10.4680109,47.458104],[10.4679576,47.4580718],[10.4679319,47.4580417],[10.4679044,47.4580262],[10.4678825,47.4580051],[10.4678618,47.4579418],[10.4678385,47.4579245],[10.467771,47.4579173],[10.4677251,47.4578564],[10.4677105,47.4578121],[10.4676938,47.4577894],[10.4676918,47.4577687],[10.4676524,47.4577556],[10.4676335,47.4576762],[10.467614,47.4576598],[10.467564,47.4576492],[10.46755,47.4576283],[10.4675303,47.4575336],[10.4675445,47.4574537],[10.4675735,47.4574127],[10.4675809,47.4573858],[10.4676227,47.4571354],[10.4676028,47.4570902],[10.4675921,47.4570001],[10.4675797,47.456973],[10.4675469,47.456959],[10.467554,47.456808],[10.4675324,47.4567295],[10.4675341,47.4566675],[10.467515,47.456642],[10.4675181,47.4565818],[10.4674411,47.4565376],[10.467378,47.4565169],[10.4673692,47.4565007],[10.4673799,47.4563613],[10.4674511,47.4563308],[10.4674132,47.4563087],[10.467438,47.4562344],[10.467431,47.456202],[10.4674102,47.4561882],[10.4673639,47.4560499],[10.4673438,47.4560074],[10.467311,47.4559953],[10.4672995,47.455979],[10.4672621,47.4558993],[10.4672314,47.455862],[10.4672078,47.45585],[10.4671698,47.4558369],[10.4671438,47.4558176],[10.4671224,47.4557778],[10.4670555,47.4557499],[10.4669818,47.4555942],[10.4669779,47.4555006],[10.4669922,47.4554199],[10.4669554,47.4553178],[10.4669665,47.4552981],[10.4670062,47.4552591],[10.4670025,47.4551555],[10.4670132,47.4551098],[10.4670021,47.45508],[10.4669726,47.4550472],[10.4669259,47.4550106],[10.4669336,47.454973],[10.4669209,47.4549512],[10.4669517,47.4548985],[10.4669505,47.454849],[10.4669446,47.4548202],[10.4669203,47.4547911],[10.4668748,47.4547149],[10.4668715,47.4546906],[10.466882,47.4545576],[10.4668673,47.4545187],[10.4667998,47.4544674],[10.4667099,47.4544599],[10.4666851,47.4544434],[10.4666952,47.4544157],[10.4666747,47.4543911],[10.4665218,47.4543126],[10.4664471,47.4542837],[10.4663852,47.4541777],[10.4663024,47.4541019],[10.4662645,47.4540834],[10.466189,47.454086],[10.4661415,47.4540727],[10.4661156,47.4540535],[10.4660227,47.4539192],[10.4659857,47.4539142],[10.4659438,47.4538516],[10.4658043,47.4537688],[10.4657863,47.4537496],[10.4658025,47.45365],[10.4658333,47.4535937],[10.4658796,47.4535485],[10.4659104,47.4534481],[10.465906,47.4534211],[10.4658972,47.4534021],[10.4659055,47.4532529],[10.4659497,47.4531942],[10.4659503,47.4531708],[10.4658965,47.4531529],[10.4658731,47.4531356],[10.465885,47.4529567],[10.4658938,47.4529227],[10.4659502,47.4529027],[10.4659863,47.4528897],[10.4661095,47.4527582],[10.4662594,47.4526649],[10.4663619,47.452651],[10.4663956,47.4526343],[10.4665213,47.4524165],[10.4665887,47.4523338],[10.4667012,47.4522453],[10.4667218,47.4522223],[10.4667261,47.4521674],[10.4666899,47.4520896],[10.4665209,47.4519263],[10.466476,47.4518313],[10.4664527,47.4517662],[10.4664994,47.4515717],[10.4665354,47.4515208],[10.4665969,47.4514596],[10.4667224,47.4512454],[10.466746,47.4512088],[10.4667735,47.4510821],[10.4668149,47.4509813],[10.4668457,47.4509277],[10.4670001,47.4508138],[10.4670168,47.450787],[10.4670452,47.4506777],[10.4671275,47.4505393],[10.4671676,47.4505273],[10.4672585,47.4504566],[10.4672765,47.4504307],[10.4672923,47.4503896],[10.4673476,47.4503588],[10.467452,47.4503216],[10.4675892,47.4503],[10.4676138,47.4502733],[10.4676641,47.4502309],[10.4677903,47.4501831],[10.4678927,47.4501224],[10.467907,47.4500902],[10.467938,47.4500717],[10.4681776,47.4499948],[10.4682114,47.4499719],[10.4683179,47.4498213],[10.4683365,47.4497721],[10.4683693,47.4497419],[10.4683893,47.4496936],[10.4686236,47.4495673],[10.4687627,47.4494333],[10.4688364,47.4494064],[10.4688651,47.4493825],[10.4688737,47.4493556],[10.468827,47.4493244],[10.4688183,47.4493036],[10.4689447,47.4491497],[10.4689863,47.449134],[10.4690787,47.4491479],[10.4691201,47.449134],[10.4691409,47.4491073],[10.4691469,47.4490804],[10.4691028,47.4490456],[10.4691631,47.4490276],[10.4692141,47.4489563],[10.4692266,47.4488944],[10.4692634,47.4488616],[10.4694984,47.4488036],[10.4696605,47.4487923],[10.4697953,47.4487608],[10.4699551,47.4486928],[10.4699879,47.4486608],[10.4702106,47.4485299],[10.4702767,47.4484857],[10.4703203,47.4484448],[10.47034,47.4484055],[10.4703382,47.44833],[10.4703164,47.4482613],[10.4702828,47.4482294],[10.470252,47.4481262],[10.4701055,47.4474312],[10.4698204,47.4460789],[10.4698254,47.445989],[10.4699236,47.4457097],[10.4699527,47.4454376],[10.4701293,47.4450162],[10.4702657,47.4447527],[10.4703084,47.4446967],[10.4703769,47.4446625],[10.4705444,47.4446504],[10.4711369,47.4443353],[10.4711724,47.4442062],[10.4713209,47.4441165],[10.4714003,47.4439863],[10.4715513,47.4438992],[10.471749,47.4437075],[10.4723698,47.4434739],[10.4728675,47.4432683],[10.4729394,47.4431684],[10.4731483,47.443083],[10.473063,47.4428382],[10.4730256,47.4426605],[10.4730214,47.4424869],[10.4729915,47.4424217],[10.4728687,47.442313],[10.4728146,47.4422565],[10.4727368,47.4420603],[10.4728166,47.441958],[10.47282,47.4417079],[10.4726131,47.4415702],[10.4725091,47.4414529],[10.4723733,47.4413844],[10.4721346,47.4411069],[10.4720803,47.4410163],[10.4720963,47.4409688],[10.4720201,47.4407601],[10.4720817,47.4406007],[10.4721485,47.4403111],[10.4724424,47.439546],[10.472571,47.4393165],[10.4726839,47.4391705],[10.4727509,47.4388862],[10.4727731,47.4388398],[10.4728502,47.4387851],[10.4728913,47.438737],[10.4729687,47.4384925],[10.4730089,47.4384759],[10.4730346,47.4383207],[10.4729866,47.4382409],[10.4729948,47.4381871],[10.4733025,47.437906],[10.4733983,47.4377094],[10.473325,47.4375861],[10.4733178,47.4374691],[10.4732163,47.4372203],[10.4731792,47.4369923],[10.4731657,47.4369508],[10.4731843,47.436817],[10.4731714,47.4367547],[10.4732977,47.4365153],[10.4734048,47.4364764],[10.4735042,47.4362968],[10.4740002,47.4361028],[10.4739786,47.4360297],[10.4739249,47.4360074],[10.4740317,47.4358398],[10.4742586,47.4356053],[10.4741949,47.4355622],[10.4741514,47.4354608],[10.4739957,47.435296],[10.4740433,47.4352598],[10.4740373,47.4351886],[10.4744321,47.4351974],[10.4744466,47.4351536],[10.4743174,47.4351285],[10.4744213,47.4350687],[10.4745655,47.4350751],[10.4746358,47.4350311],[10.4745239,47.4350035],[10.4746549,47.4349648],[10.4747843,47.4348936],[10.4748789,47.4347843],[10.4749481,47.4347285],[10.4749776,47.4346686],[10.4749917,47.4345474],[10.4750343,47.4344967],[10.4750439,47.4344402],[10.4750285,47.4343788],[10.4751804,47.4342126],[10.4753091,47.4341172],[10.4752421,47.4340497],[10.475118,47.4339842],[10.4753263,47.4339357],[10.4753776,47.4339004],[10.4754607,47.4338233],[10.4755087,47.4337268],[10.4755392,47.4336327],[10.4756638,47.4334967],[10.4756893,47.4333874],[10.4757799,47.4333301],[10.4758325,47.4332552],[10.4758626,47.433128],[10.4758289,47.4331032],[10.4759509,47.4328758],[10.4759984,47.4327871],[10.4759428,47.4325093],[10.4758434,47.4324144],[10.4759223,47.4323938],[10.4758738,47.4323294],[10.4759458,47.4322233],[10.4758645,47.432144],[10.4757498,47.4321235],[10.4756537,47.4320557],[10.4756194,47.432004],[10.4755468,47.431949],[10.4754664,47.4319291],[10.4755119,47.4317309],[10.4754679,47.4316008],[10.4753971,47.4315707],[10.4752701,47.4315243],[10.4752386,47.4315122],[10.4751684,47.4314628],[10.4750729,47.4315083],[10.4750133,47.4315084],[10.4749821,47.4315332],[10.4749193,47.4315054],[10.4748335,47.4314925],[10.474733,47.431439],[10.4745948,47.4314489],[10.474532,47.431466],[10.4744848,47.4314491],[10.4743639,47.4314565],[10.474302,47.431444],[10.4742578,47.4314605],[10.4742412,47.4314379],[10.474191,47.4314336],[10.4741155,47.4314749],[10.474075,47.4314545],[10.4738486,47.4314911],[10.4736799,47.4315041],[10.4735368,47.4315005],[10.4733071,47.4314704],[10.4729361,47.4314664],[10.4729418,47.431586],[10.4729033,47.4316826],[10.4728691,47.4317209],[10.4729063,47.4317628],[10.4726264,47.4317698],[10.4724354,47.4318204],[10.4722919,47.4318796],[10.4721705,47.4319023],[10.4719847,47.4319163],[10.4715736,47.4318728],[10.4714078,47.4318723],[10.4712846,47.4319156],[10.4710544,47.4318541],[10.4708422,47.4318171],[10.470676,47.4317402],[10.4703442,47.4316647],[10.4701766,47.4315932],[10.4699586,47.4315687],[10.4698551,47.431526],[10.4697471,47.4314562],[10.4696395,47.4314611],[10.4695053,47.4313396],[10.4692568,47.4312661],[10.4692443,47.4313343],[10.4685334,47.4311171],[10.4683197,47.4310846],[10.4681182,47.4310491],[10.4660546,47.4306593],[10.4658087,47.4304968],[10.465086,47.4300192],[10.4648019,47.4298313],[10.4644653,47.4296136],[10.464062,47.4295794],[10.4638315,47.4295332],[10.4636702,47.4293322],[10.4632705,47.4292648],[10.4628842,47.4292893],[10.4628726,47.4291866],[10.4628509,47.4291605],[10.462753,47.4291067],[10.4627083,47.4290953],[10.4626471,47.4290999],[10.4626168,47.429096],[10.4625738,47.4290701],[10.4625475,47.4290609],[10.4623994,47.4290516],[10.4621676,47.428999],[10.4620326,47.4289459],[10.4618022,47.4288953],[10.4604403,47.428367],[10.4601132,47.428314],[10.4597781,47.42826],[10.4593983,47.4281919],[10.459196,47.4281326],[10.4591092,47.428018],[10.4588599,47.4277898],[10.4588144,47.4276714],[10.4584937,47.4275789],[10.4582153,47.4270849],[10.4582972,47.426729],[10.4583087,47.4264701],[10.4582567,47.4263911],[10.4581939,47.4262],[10.4579824,47.4260276],[10.4578918,47.4258592],[10.457912,47.4257587],[10.4578081,47.4256311],[10.4575896,47.4253631],[10.4575852,47.4252865],[10.4574471,47.4251578],[10.4575309,47.4250141],[10.4574566,47.4246992],[10.4572788,47.424293],[10.4570988,47.424197],[10.4569472,47.4241689],[10.4567565,47.424071],[10.4566094,47.4238936],[10.4564764,47.4238163],[10.4563931,47.4236299],[10.4561053,47.4235009],[10.4562407,47.423402],[10.4563736,47.4232528],[10.4563836,47.4232286],[10.4563789,47.4231628],[10.4564148,47.4230221],[10.4564645,47.4229068],[10.4566062,47.4228026],[10.456638,47.422686],[10.456761,47.42247],[10.4566787,47.4223402],[10.4566951,47.4221381],[10.4567717,47.4220087],[10.4566388,47.4218423],[10.456429,47.4217199],[10.4562684,47.4216808],[10.4561575,47.4216254],[10.456124,47.4215898],[10.4561167,47.421525],[10.4561846,47.4213334],[10.4562109,47.4212933],[10.4563216,47.421177],[10.4563496,47.4211278],[10.4563535,47.4210398],[10.4563336,47.4209954],[10.4563585,47.4208662],[10.4563323,47.4207229],[10.4562538,47.4205536],[10.4558306,47.4203401],[10.4558105,47.4203056],[10.455862,47.4201733],[10.4559981,47.4200051],[10.4560298,47.4198706],[10.4561912,47.4192027],[10.4560656,47.4191443],[10.4558968,47.4191195],[10.4557892,47.4190344],[10.4557578,47.4189324],[10.455732,47.4189087],[10.4555554,47.4188262],[10.4553744,47.4188544],[10.4553403,47.4188458],[10.4551996,47.4187126],[10.4550052,47.4186533],[10.4549781,47.4186304],[10.4549452,47.418576],[10.4548814,47.4184501],[10.4548176,47.4184106],[10.4547748,47.4184106],[10.4545685,47.4184108],[10.4544497,47.4183949],[10.4542189,47.418354],[10.4538815,47.4182882],[10.4536942,47.4182632],[10.4535831,47.418206],[10.4534622,47.4181297],[10.4532157,47.41804],[10.4528588,47.4178723],[10.4525504,47.4178134],[10.4524952,47.4177982],[10.4523251,47.4177437],[10.4490545,47.4160387],[10.4485287,47.4157646],[10.4480517,47.4155158],[10.4465115,47.4147127],[10.4430744,47.4142068],[10.442524,47.4141258],[10.4420714,47.4140595],[10.4395964,47.4136965],[10.4385427,47.4135419],[10.438515,47.413426],[10.4383774,47.4132848],[10.4381291,47.4132112],[10.4379451,47.4130252],[10.4377638,47.4128815],[10.4377635,47.4128482],[10.4377489,47.4128067],[10.4376134,47.4127716],[10.4375414,47.4127832],[10.4374211,47.412688],[10.4373354,47.4125348],[10.4373929,47.4123827],[10.4374295,47.4123607],[10.4374714,47.4122884],[10.4374563,47.4122127],[10.4374162,47.4121815],[10.4374151,47.4120843],[10.437333,47.4120356],[10.4372875,47.4120088],[10.4371467,47.4118396],[10.4370428,47.4116826],[10.4369574,47.4116572],[10.4369164,47.4115163],[10.4368581,47.4114255],[10.4366787,47.4112666],[10.4365435,47.4111784],[10.4363684,47.4110491],[10.4361768,47.4110322],[10.436122,47.4109172],[10.4361947,47.4107842],[10.4361898,47.4107587],[10.4361569,47.4105867],[10.4361386,47.4103562],[10.4360751,47.4103517],[10.4358982,47.4102413],[10.4358742,47.4101097],[10.435732,47.4099467],[10.4355955,47.4097236],[10.435626,47.4096488],[10.4357026,47.4094606],[10.4356538,47.4093178],[10.4356777,47.4091419],[10.4358546,47.4090283],[10.4358843,47.4089719],[10.4359022,47.408938],[10.4358858,47.4087372],[10.4358303,47.4086412],[10.4357445,47.4085401],[10.435773,47.4084272],[10.4359151,47.4083715],[10.4359652,47.4082023],[10.4361954,47.4081235],[10.4362738,47.4081156],[10.4363895,47.408011],[10.4365198,47.4079489],[10.436572,47.4078885],[10.4366488,47.4078437],[10.4368259,47.4077732],[10.4369645,47.4075188],[10.4371335,47.4073187],[10.4374033,47.4069311],[10.4375066,47.4068416],[10.4374096,47.406719],[10.4372332,47.4065888],[10.4371813,47.4065062],[10.4371074,47.4064522],[10.4370209,47.4063736],[10.4369378,47.4063617],[10.4367323,47.4061457],[10.4365213,47.4060196],[10.4364536,47.4058927],[10.4362453,47.4056741],[10.4361104,47.4055769],[10.4358202,47.405268],[10.4356408,47.4049714],[10.4354871,47.4047939],[10.4352941,47.4047814],[10.4350904,47.404721],[10.4348937,47.4046077],[10.4347489,47.4044915],[10.4346892,47.4044026],[10.4346996,47.4043622],[10.4345565,47.4043224],[10.4345869,47.4042321],[10.4344001,47.4041881],[10.4342764,47.4041154],[10.4342909,47.404031],[10.4341667,47.4040167],[10.4339784,47.4038891],[10.4339128,47.4038675],[10.4338384,47.4038306],[10.4335628,47.4038303],[10.4334728,47.4037841],[10.4334201,47.4037285],[10.4332474,47.4036093],[10.4330452,47.4035498],[10.4328449,47.4034221],[10.4327855,47.4033269],[10.4327252,47.4033044],[10.4324242,47.4032248],[10.4322476,47.4031495],[10.4322318,47.4031007],[10.431876,47.4030373],[10.4318647,47.4030138],[10.4317439,47.4029762],[10.4316937,47.4029279],[10.431583,47.402867],[10.4313376,47.402776],[10.4313252,47.4027114],[10.4312677,47.4026396],[10.4312389,47.4025834],[10.431206,47.4024435],[10.431121,47.4022733],[10.4310968,47.4021516],[10.4311058,47.4020698],[10.4311364,47.402019],[10.4311806,47.4019611],[10.4312611,47.4018381],[10.4313131,47.4017803],[10.4314834,47.4016684],[10.4316263,47.4015372],[10.4316733,47.4014749],[10.4317719,47.4013674],[10.4318892,47.4012594],[10.4319876,47.4011977],[10.4321414,47.4011026],[10.4323726,47.401033],[10.4324582,47.4009603],[10.4328923,47.4008908],[10.4330025,47.400832],[10.4329757,47.4006643],[10.4331542,47.4005417],[10.433491,47.4004897],[10.4335988,47.4004263],[10.4337264,47.4004119],[10.4337806,47.4003245],[10.433944,47.4002242],[10.4340068,47.4002053],[10.4339924,47.4001538],[10.4341,47.4001445],[10.4340154,47.400048],[10.4341681,47.4000357],[10.4343274,47.3999861],[10.434101,47.3999305],[10.4338783,47.3998014],[10.4337754,47.3995652],[10.4337259,47.3994935],[10.433454,47.3993243],[10.4334046,47.399249],[10.4333277,47.3992507],[10.4332807,47.3991901],[10.4330865,47.3989397],[10.4329773,47.3988478],[10.432903,47.3987852],[10.4328693,47.3987206],[10.4328453,47.3986747],[10.4327645,47.3986322],[10.432648,47.3985389],[10.4326621,47.3985111],[10.4323656,47.3982364],[10.4320886,47.3981012],[10.4321274,47.3980047],[10.4320747,47.3979491],[10.4320703,47.3978725],[10.4318552,47.3975755],[10.4319022,47.3975545],[10.4318089,47.3975334],[10.4318505,47.3974702],[10.4318267,47.397379],[10.4318373,47.3973341],[10.4319152,47.3972039],[10.4314801,47.397046],[10.4313639,47.3970353],[10.4312919,47.3970056],[10.4312942,47.3969759],[10.4311105,47.3969141],[10.4309967,47.396818],[10.4306476,47.3967116],[10.4306398,47.3966171],[10.4305848,47.3965992],[10.4305062,47.3965226],[10.4305003,47.3963642],[10.4304853,47.3963317],[10.4303902,47.3961882],[10.4303795,47.3961493],[10.4303781,47.3960631],[10.4304257,47.3959791],[10.4303919,47.3958635],[10.4303912,47.3957574],[10.4305365,47.3956811],[10.4305714,47.3955772],[10.4306527,47.3955145],[10.4306187,47.395451],[10.4306323,47.39531],[10.4305714,47.3950825],[10.4305103,47.3949558],[10.4304501,47.3948866],[10.4304489,47.3947957],[10.4303252,47.3947221],[10.4303028,47.3946309],[10.4303124,47.3945726],[10.430104,47.3943637],[10.4300386,47.3943367],[10.4299385,47.3942734],[10.4296433,47.3940417],[10.4298311,47.3938311],[10.4296582,47.393719],[10.4296407,47.3935523],[10.4296809,47.3934467],[10.4296085,47.3933433],[10.4296519,47.3932629],[10.4296275,47.3931006],[10.4294862,47.3929566],[10.4293754,47.3926708],[10.4294339,47.3926231],[10.4294232,47.3925356],[10.4294422,47.392428],[10.4294331,47.3923829],[10.4293427,47.3922125],[10.4293114,47.3920637],[10.4294364,47.3920025],[10.4294491,47.391928],[10.429428,47.3918378],[10.4293618,47.3917505],[10.4294009,47.391635],[10.4294064,47.3914983],[10.4293187,47.3913712],[10.42932,47.391284],[10.4292146,47.3912178],[10.4292413,47.391041],[10.4306269,47.3890752],[10.430633,47.3890666],[10.4310015,47.388542],[10.4310158,47.3885217],[10.4311156,47.3883797],[10.4325413,47.3863546],[10.4326098,47.3862574],[10.4326123,47.3862537],[10.4329201,47.3858173],[10.4330003,47.3857033],[10.4331549,47.3854838],[10.4332395,47.3853638],[10.4339612,47.3843394],[10.4341141,47.3841223],[10.4344452,47.3836523],[10.4349675,47.3829109],[10.4351859,47.3826009],[10.4359685,47.3814865],[10.4361378,47.3812462],[10.4367645,47.3803634],[10.4353311,47.381236],[10.4352583,47.3812804],[10.4324347,47.3830053],[10.4322516,47.3831171],[10.4321008,47.3832093],[10.4311554,47.3837871],[10.4311461,47.3837928],[10.4308972,47.3839449],[10.4307581,47.3838461],[10.4306362,47.3838021],[10.4302779,47.3837343],[10.4302321,47.3836266],[10.4301884,47.3835865],[10.4301069,47.3835637],[10.4300725,47.3835156],[10.4299447,47.3834967],[10.4298062,47.3834328],[10.4295917,47.3833876],[10.4293995,47.3833894],[10.4291425,47.3834381],[10.4291219,47.383463],[10.4289396,47.3834479],[10.4287626,47.3834769],[10.4286089,47.3835252],[10.4285082,47.3835066],[10.4284982,47.3835048],[10.4284351,47.3835804],[10.4283148,47.3835302],[10.4281806,47.383541],[10.4280568,47.3834727],[10.4279539,47.3834614],[10.4278599,47.3835456],[10.4277548,47.3835189],[10.4276326,47.3835748],[10.4274744,47.3835951],[10.4274322,47.383635],[10.4271482,47.3837867],[10.4269299,47.38396],[10.4268699,47.3839726],[10.4267816,47.3840902],[10.4266309,47.3840828],[10.4265415,47.3841076],[10.4264998,47.3840845],[10.4263518,47.3841149],[10.4262647,47.3841029],[10.4260592,47.3841568],[10.425824,47.3841391],[10.4254697,47.3843843],[10.4254015,47.3844508],[10.4252354,47.3845152],[10.4251755,47.3845242],[10.4250764,47.3845156],[10.424966,47.3844889],[10.4249349,47.3844669],[10.4248295,47.3844007],[10.4246762,47.3843465],[10.4244935,47.3842981],[10.4243557,47.3843024],[10.4242849,47.3842799],[10.4241171,47.3843082],[10.4240779,47.3843373],[10.4238901,47.3843698],[10.4236388,47.384316],[10.4234994,47.3843266],[10.4233783,47.3843484],[10.4233399,47.3843911],[10.4232952,47.3843823],[10.4232576,47.3843548],[10.4231261,47.3843637],[10.4230408,47.3843383],[10.4228662,47.3843755],[10.4227546,47.3843461],[10.4226113,47.384309],[10.4225519,47.3842561],[10.4225187,47.3842619],[10.4224076,47.384344],[10.4223016,47.384392],[10.4221484,47.3844205],[10.4221104,47.3844056],[10.4218429,47.3844091],[10.4216272,47.3844889],[10.4214207,47.384531],[10.4212756,47.3845992],[10.4210339,47.384622],[10.4208835,47.3846055],[10.42073,47.3846429],[10.420217,47.3846575],[10.4198149,47.3846438],[10.4197079,47.3846405],[10.4195631,47.3844721],[10.4195334,47.3843988],[10.4194477,47.3842979],[10.4193803,47.3841601],[10.4193072,47.3838588],[10.4192491,47.3837203],[10.4191637,47.3836517],[10.4191557,47.3835661],[10.4188027,47.3831925],[10.4190552,47.3828542],[10.4191261,47.3827877],[10.4190547,47.3826023],[10.4190321,47.3824275],[10.4188878,47.3823823],[10.4188472,47.3822792],[10.4187672,47.3821189],[10.4187146,47.3821083],[10.4185878,47.3820534],[10.4184834,47.3819593],[10.4181279,47.3818447],[10.4180469,47.3816745],[10.4179496,47.3815176],[10.4178994,47.3815555],[10.4178542,47.3814299],[10.4177976,47.3813338],[10.4174837,47.3811558],[10.4173089,47.3810212],[10.4170922,47.3809624],[10.4171434,47.3808453],[10.4169459,47.3806744],[10.4167853,47.3805948],[10.4167511,47.3804108],[10.4167159,47.380351],[10.4166757,47.3803657],[10.4166421,47.380162],[10.4166492,47.3800577],[10.4164714,47.3799797],[10.4162883,47.3799915],[10.4162803,47.3799501],[10.4161602,47.3798935],[10.4159794,47.3797409],[10.4159653,47.3796795],[10.4159377,47.3796251],[10.4157574,47.379593],[10.4157838,47.3795061],[10.4155568,47.379476],[10.4149449,47.3794801],[10.4149301,47.3793998],[10.4147531,47.3793399],[10.4146086,47.379301],[10.4146231,47.3792166],[10.4145942,47.3791217],[10.4145389,47.3790661],[10.4142331,47.3790187],[10.4142395,47.3789828],[10.4140646,47.3789399],[10.4139412,47.3788635],[10.4138198,47.3788448],[10.4138115,47.3788141],[10.4136814,47.3787808],[10.4136903,47.3787476],[10.4135986,47.3786718],[10.4134619,47.3786365],[10.4134065,47.3785872],[10.4132303,47.3785866],[10.4130629,47.3785635],[10.4129236,47.3785266],[10.412857,47.3785409],[10.4126589,47.3784329],[10.4124917,47.378401],[10.4123996,47.3782917],[10.4121394,47.378271],[10.4119845,47.3782248],[10.4119747,47.3782445],[10.4116754,47.3781998],[10.4114791,47.3782133],[10.4114221,47.378043],[10.4113368,47.3779667],[10.41134,47.3779029],[10.4112251,47.3778473],[10.4110835,47.3778499],[10.4110591,47.3778216],[10.4108201,47.3778444],[10.4107702,47.3778275],[10.4107674,47.377787],[10.4107054,47.3777843],[10.4105716,47.3778266],[10.4104478,47.3778482],[10.4103814,47.3779004],[10.4100961,47.3778334],[10.4098535,47.3778823],[10.4095711,47.3778945],[10.4094729,47.3778167],[10.4093352,47.3778148],[10.4091736,47.3777262],[10.4089438,47.3776628],[10.4087573,47.3776556],[10.4085992,47.3776274],[10.4084796,47.3776437],[10.4084151,47.3776329],[10.4083988,47.3775995],[10.4081595,47.3775457],[10.4079838,47.3775739],[10.4077308,47.3774885],[10.4075728,47.3774575],[10.4073946,47.3774415],[10.4073105,47.3774601],[10.4070456,47.3774205],[10.4068417,47.3773313],[10.4066534,47.3772963],[10.4064054,47.3771768],[10.4061738,47.3771277],[10.406118,47.3771324],[10.4059509,47.3772749],[10.405813,47.377237],[10.4056192,47.3772072],[10.4053058,47.3771948],[10.4052661,47.3771484],[10.4051336,47.3771519],[10.4050235,47.3772017],[10.4048806,47.3771997],[10.4048397,47.3771515],[10.4045081,47.3771684],[10.4044545,47.3772333],[10.4043682,47.3772032],[10.4043313,47.3771903],[10.4041584,47.377169],[10.4040234,47.3771266],[10.4038611,47.3771063],[10.4036181,47.3771291],[10.4034208,47.3772181],[10.4032358,47.3772461],[10.4032121,47.3772853],[10.4030672,47.3773039],[10.4029444,47.3773365],[10.4028212,47.3773374],[10.4026081,47.3773759],[10.4024896,47.3773571],[10.402368,47.3773518],[10.4022125,47.3773677],[10.4021053,47.377412],[10.4020429,47.3774615],[10.4018118,47.3774834],[10.4017602,47.377525],[10.401494,47.3775285],[10.4013087,47.3775655],[10.4011981,47.3775909],[10.4010434,47.3775824],[10.4008799,47.3776018],[10.4006759,47.3776025],[10.4004991,47.3775839],[10.3995396,47.3773888],[10.3994756,47.3773627],[10.3993898,47.3773058],[10.3992055,47.3772717],[10.3990391,47.3772577],[10.3988315,47.3772061],[10.3987533,47.3772096],[10.3985826,47.3771586],[10.398377,47.3770829],[10.398257,47.377065],[10.397932,47.3769976],[10.3974949,47.3768727],[10.3971395,47.3767103],[10.3969729,47.3766621],[10.3968232,47.3766196],[10.3965303,47.3764958],[10.3963779,47.3764577],[10.3962533,47.376375],[10.3956576,47.3760934],[10.3952886,47.3759189],[10.3949457,47.3757414],[10.39473,47.3756053],[10.3945839,47.3754449],[10.3944005,47.3752931],[10.3937184,47.3748193],[10.3935177,47.3747007],[10.3933555,47.3746047],[10.3933083,47.3740652],[10.3932776,47.3739002],[10.3931194,47.3737028],[10.3930218,47.3736475],[10.3929265,47.3736443],[10.3928546,47.3736127],[10.392816,47.3735753],[10.3927969,47.3735094],[10.3926195,47.3733315],[10.3925082,47.3731591],[10.3925033,47.3731041],[10.3925843,47.3728804],[10.3925891,47.3727644],[10.3925556,47.3726902],[10.3925109,47.3726383],[10.3922442,47.3723944],[10.3920623,47.3721912],[10.3918907,47.3719541],[10.3917626,47.3719019],[10.3916665,47.371843],[10.3916315,47.3718587],[10.3915659,47.3717975],[10.3915662,47.3716527],[10.391412,47.3714598],[10.3912273,47.3713052],[10.3910029,47.3711527],[10.3908286,47.3710073],[10.3906301,47.3709596],[10.3903844,47.3708131],[10.3903975,47.3707251],[10.3900602,47.3705855],[10.3899681,47.3705644],[10.3898676,47.370563],[10.3894379,47.3705884],[10.3893971,47.3705789],[10.3893648,47.3705505],[10.3893246,47.3704816],[10.3892771,47.3704323],[10.3892279,47.3703965],[10.3891423,47.3703237],[10.3891065,47.3702932],[10.3890675,47.37023],[10.3891317,47.3702072],[10.3892088,47.3701966],[10.3892552,47.3701505],[10.3892904,47.3701267],[10.3892998,47.370081],[10.3892342,47.3700162],[10.38921,47.3699853],[10.3891249,47.3698671],[10.3889983,47.3698042],[10.3889174,47.3697653],[10.3887561,47.369628],[10.3887451,47.3696018],[10.388735,47.3693237],[10.3887723,47.3692685],[10.3887948,47.3691825],[10.3887878,47.369024],[10.388813,47.3688031],[10.3888047,47.3684684],[10.3888201,47.3684389],[10.3888742,47.3684019],[10.3888967,47.3683564],[10.3889382,47.3683012],[10.3889559,47.3681971],[10.3890082,47.368089],[10.3890214,47.3679147],[10.3890409,47.3678817],[10.3891238,47.3678135],[10.3892106,47.3676592],[10.3891882,47.3676121],[10.3891946,47.3674889],[10.3891336,47.367364],[10.3891523,47.3673121],[10.3892207,47.367242],[10.3891339,47.367176],[10.3890133,47.367141],[10.3890048,47.3671121],[10.3890956,47.3670469],[10.3891016,47.3670199],[10.3889772,47.3669759],[10.3889463,47.3669493],[10.3889169,47.3668689],[10.3889264,47.3667324],[10.388865,47.3666172],[10.3884869,47.3662953],[10.3883483,47.3662394],[10.3883568,47.3660029],[10.3881823,47.3658647],[10.387997,47.365862],[10.387937,47.3658773],[10.3879299,47.3658467],[10.3879663,47.3658274],[10.3879813,47.3657692],[10.3879001,47.3657401],[10.3878534,47.3657098],[10.3878234,47.3656518],[10.3878229,47.365579],[10.3878572,47.3654535],[10.3879018,47.3653804],[10.3878982,47.3653264],[10.3877787,47.3652509],[10.3877915,47.3651782],[10.3878455,47.3651007],[10.3878584,47.365064],[10.3877851,47.3649532],[10.387774,47.3649252],[10.3878088,47.364825],[10.3877162,47.36474],[10.3877067,47.3646572],[10.3876473,47.3645646],[10.3876429,47.3644916],[10.387422,47.3642709],[10.3873163,47.36413],[10.3871438,47.3640142],[10.3869985,47.36396],[10.3869395,47.3638971],[10.3868771,47.3638602],[10.3867498,47.3638683],[10.3866542,47.3637924],[10.3866166,47.3637216],[10.3866088,47.3635857],[10.3865638,47.3635428],[10.386518,47.3635233],[10.3864425,47.3634376],[10.3863925,47.3633398],[10.3862253,47.3631661],[10.3860366,47.3630325],[10.3860192,47.3629927],[10.3860265,47.3629721],[10.386094,47.3628858],[10.3860394,47.3628113],[10.3860365,47.3627312],[10.3859556,47.3626024],[10.3859349,47.3624159],[10.3859087,47.3623634],[10.3858768,47.3621498],[10.385823,47.3620491],[10.3858054,47.3619752],[10.3857018,47.3618522],[10.385676,47.361788],[10.3857795,47.3616959],[10.3858711,47.3615991],[10.3859486,47.3615319],[10.3859124,47.3614594],[10.3859171,47.3613948],[10.3860123,47.3613529],[10.3860786,47.3613097],[10.3861273,47.3612726],[10.3861649,47.3612543],[10.3862906,47.3612174],[10.3863328,47.3612188],[10.3864358,47.3612302],[10.3864694,47.3612136],[10.3865029,47.3611538],[10.3865159,47.3610316],[10.3865538,47.3610044],[10.3867132,47.3609427],[10.3868964,47.3608409],[10.3869279,47.3608063],[10.3870211,47.360437],[10.3872515,47.3597863],[10.3872502,47.3597441],[10.3871754,47.3596773],[10.3870798,47.3596876],[10.3870641,47.3596371],[10.3870749,47.3595868],[10.3871218,47.3594822],[10.3871136,47.3594444],[10.3870546,47.3594291],[10.3870222,47.3594512],[10.3869542,47.3594655],[10.3869238,47.3593223],[10.3869089,47.3592924],[10.3868637,47.3592615],[10.3868173,47.3591539],[10.3868193,47.3591184],[10.3868972,47.3589995],[10.3869434,47.3588852],[10.3869814,47.3587206],[10.3869754,47.3586153],[10.3869573,47.3585272],[10.3868722,47.3584526],[10.3867363,47.3583917],[10.3866426,47.3583218],[10.3866332,47.3582154],[10.3866596,47.358021],[10.3865459,47.3579144],[10.3865436,47.3577679],[10.3863824,47.3574632],[10.3863692,47.3574015],[10.3863733,47.3573191],[10.3864105,47.3572585],[10.3864596,47.3572072],[10.3865034,47.3571764],[10.3866112,47.3571445],[10.3866769,47.3571015],[10.3866975,47.3570532],[10.3866675,47.3570096],[10.3865019,47.3568869],[10.3864868,47.3568651],[10.3864718,47.356586],[10.3862146,47.3563269],[10.3859711,47.356307],[10.3858822,47.3562782],[10.3857934,47.3562311],[10.3856944,47.356149],[10.385571,47.3560465],[10.385452,47.3559925],[10.3853479,47.3559603],[10.3852353,47.3559544],[10.3849815,47.3559779],[10.3847946,47.3560165],[10.384719,47.3560071],[10.3846738,47.355975],[10.3844707,47.3557024],[10.3844391,47.3556337],[10.3844393,47.3555948],[10.3843325,47.3554607],[10.3842581,47.3552695],[10.384198,47.35521],[10.3841698,47.3551584],[10.3840868,47.354728],[10.3840433,47.3546811],[10.3839865,47.35465],[10.3839227,47.3546362],[10.3836469,47.3546368],[10.3836135,47.354607],[10.3835773,47.3544834],[10.3836043,47.3544479],[10.3836049,47.3543736],[10.3835589,47.3543345],[10.383475,47.3542663],[10.3833118,47.3542035],[10.3832544,47.3541955],[10.3831956,47.3542366],[10.3830794,47.3542196],[10.3829198,47.3542417],[10.3829061,47.3542436],[10.3827915,47.3541979],[10.3825895,47.3542059],[10.382145,47.3541545],[10.3819303,47.3541632],[10.3818225,47.3541675],[10.381768,47.3537946],[10.3815372,47.3534906],[10.3815188,47.3534826],[10.381453,47.3534713],[10.3814178,47.3534552],[10.3808825,47.3529891],[10.3808354,47.3529628],[10.380795,47.352949],[10.3807243,47.3529491],[10.3806467,47.3529251],[10.3803791,47.3527468],[10.3803236,47.3526965],[10.3803034,47.3526577],[10.3802949,47.3526257],[10.3802579,47.3525995],[10.3800509,47.352555],[10.3799801,47.3525492],[10.3798254,47.3525446],[10.3797528,47.3525355],[10.3796771,47.3525058],[10.3795307,47.3524041],[10.3785468,47.3522084],[10.3775106,47.3525125],[10.3716254,47.346131],[10.3709329,47.3453798],[10.3709149,47.3453566],[10.3709132,47.3453291],[10.3708662,47.3453018],[10.3706574,47.3452812],[10.3705009,47.3452812],[10.3704486,47.34528],[10.3703645,47.3452641],[10.3702247,47.3452492],[10.3701878,47.3452411],[10.3699555,47.3450434],[10.3699085,47.3449955],[10.3693261,47.3448172],[10.3690551,47.3447189],[10.3688884,47.3446995],[10.3687858,47.3447498],[10.3682672,47.3447281],[10.3682117,47.3447212],[10.3681571,47.344706],[10.3681268,47.3446649],[10.368088,47.3445773],[10.3680279,47.3445069],[10.3679484,47.3443099],[10.3677324,47.3441005],[10.3676962,47.3440597],[10.3676284,47.3439449],[10.3674519,47.3437785],[10.3674422,47.343763],[10.3674276,47.3437398],[10.3674065,47.3436863],[10.3671266,47.3435477],[10.3669441,47.3434573],[10.3668437,47.343313],[10.366736,47.3432294],[10.3666741,47.3431534],[10.3660913,47.342602],[10.3659504,47.3424468],[10.365697,47.3422262],[10.3656432,47.3421352],[10.3654716,47.3420578],[10.36538,47.3419261],[10.365194,47.3417038],[10.3649995,47.3415661],[10.3649271,47.3414787],[10.3647305,47.3414051],[10.3646314,47.3413328],[10.3645952,47.3412886],[10.364546,47.3412639],[10.3642188,47.3411468],[10.3639772,47.3410186],[10.3637331,47.3409373],[10.36366,47.3409002],[10.3635188,47.3408237],[10.3634425,47.3407924],[10.3632764,47.3407333],[10.3631029,47.3406435],[10.3628137,47.340486],[10.362727,47.3404433],[10.3623726,47.340315],[10.3620891,47.3401952],[10.3618816,47.3400851],[10.3613562,47.339812],[10.3609388,47.3395539],[10.3609099,47.3395302],[10.3607177,47.3392474],[10.3603683,47.3391133],[10.3600684,47.3389251],[10.3600086,47.3388731],[10.3598518,47.3386802],[10.3597491,47.3385885],[10.3596095,47.3385017],[10.3591583,47.3382394],[10.3589127,47.3380725],[10.3586493,47.3379422],[10.3583832,47.337756],[10.3582754,47.337661],[10.3579468,47.3374696],[10.3577372,47.3373388],[10.3574538,47.3372122],[10.3571696,47.3371415],[10.3570084,47.3370823],[10.3569007,47.3370375],[10.3568814,47.337011],[10.3568396,47.3367166],[10.3567652,47.3365956],[10.3566833,47.3363267],[10.3566467,47.3360507],[10.3566529,47.3360139],[10.3565875,47.3358275],[10.356509,47.335663],[10.3564468,47.3355592],[10.3563575,47.335147],[10.3563015,47.3350132],[10.356319,47.3348526],[10.3563333,47.3348078],[10.3565211,47.3345838],[10.3567217,47.334119],[10.3567398,47.3339939],[10.3567092,47.3338817],[10.356672,47.3336642],[10.3567051,47.3335332],[10.3567085,47.3334471],[10.356681,47.333405],[10.3564755,47.3332747],[10.3563136,47.3331429],[10.3562705,47.3329804],[10.3562022,47.3328077],[10.355939,47.3325574],[10.3558829,47.3324203],[10.3557655,47.3323329],[10.3555606,47.3322427],[10.3554535,47.3320681],[10.3553556,47.3319381],[10.3552144,47.3318371],[10.3550376,47.331725],[10.3548131,47.3315582],[10.3545216,47.3313734],[10.3545004,47.3313599],[10.3544437,47.3312778],[10.3543856,47.3312209],[10.3543145,47.3310872],[10.3542859,47.3309923],[10.3540614,47.3307291],[10.3539699,47.3306874],[10.353962,47.3306209],[10.3538612,47.3305253],[10.3538041,47.3304238],[10.3537808,47.3303414],[10.3537576,47.3302567],[10.3537009,47.3300829],[10.3535935,47.3298955],[10.3533022,47.3294598],[10.353266,47.3294039],[10.3531253,47.3293338],[10.3530272,47.3292899],[10.3529024,47.3291647],[10.3528541,47.329095],[10.3528399,47.3289461],[10.3527814,47.3288674],[10.3527464,47.3287783],[10.3525734,47.3284894],[10.3524577,47.328307],[10.3523318,47.3281118],[10.3520181,47.3278424],[10.3519864,47.3277555],[10.3518028,47.3276296],[10.3516614,47.3275137],[10.3511329,47.3269639],[10.3509729,47.3267403],[10.3509672,47.326735],[10.3507305,47.3265129],[10.3506622,47.3264503],[10.3505629,47.3263201],[10.350511,47.3262519],[10.350423,47.3261162],[10.3502682,47.3259063],[10.3501898,47.3258358],[10.3501583,47.3257628],[10.3500323,47.3256627],[10.3499433,47.3255681],[10.3498526,47.3254715],[10.3495419,47.3252766],[10.3492021,47.3248594],[10.3491643,47.3247038],[10.3490906,47.3246184],[10.3486632,47.3243808],[10.3483963,47.3241994],[10.3480259,47.3240554],[10.3474957,47.3237991],[10.3474292,47.3237378],[10.3470831,47.3235317],[10.3470061,47.3234554],[10.3469318,47.3233874],[10.3468411,47.3233306],[10.3467877,47.3231788],[10.3467493,47.3230698],[10.3466626,47.3230039],[10.3465622,47.3228304],[10.346505,47.3226244],[10.346481,47.3225924],[10.3463407,47.3225511],[10.346295,47.322524],[10.3462808,47.3224794],[10.3462821,47.3224743],[10.3463439,47.3222392],[10.3463215,47.3221993],[10.3462556,47.3221814],[10.3461923,47.3222025],[10.3461499,47.3222842],[10.3461127,47.3222731],[10.3458415,47.3220344],[10.3458103,47.3219703],[10.3458163,47.3218361],[10.3457754,47.3217962],[10.3457925,47.3217102],[10.3457419,47.3216028],[10.3457463,47.3215626],[10.3457964,47.3215439],[10.3458139,47.3214829],[10.3458715,47.321416],[10.3458889,47.3213506],[10.3458506,47.3212706],[10.3457635,47.3211749],[10.3458601,47.3209299],[10.3458541,47.3208783],[10.3457711,47.3207311],[10.3457321,47.3207176],[10.3456735,47.3207282],[10.3455858,47.3207095],[10.34554,47.3206777],[10.3455262,47.3204623],[10.3455238,47.3203087],[10.3455124,47.3202319],[10.3454828,47.3201691],[10.34536,47.3200196],[10.345349,47.3200061],[10.3453401,47.3199694],[10.3453823,47.3198737],[10.3455831,47.3197383],[10.345673,47.3196929],[10.345737,47.319596],[10.3458151,47.3195462],[10.3459406,47.3194121],[10.346142,47.3192959],[10.3462777,47.3191688],[10.3463916,47.319153],[10.3464281,47.3191264],[10.3465903,47.3188866],[10.3467279,47.3186665],[10.3467568,47.3185826],[10.3468115,47.3185455],[10.3469205,47.3184278],[10.3470206,47.3183845],[10.3470653,47.318351],[10.3471043,47.318267],[10.347167,47.3181988],[10.3472242,47.3182087],[10.3472663,47.3182095],[10.3473315,47.3181884],[10.3476179,47.3180383],[10.3477181,47.3179986],[10.3477459,47.3179548],[10.3477939,47.3179165],[10.3478393,47.3179173],[10.3479397,47.3179934],[10.3480415,47.3179456],[10.3482572,47.3177914],[10.3482712,47.3177249],[10.3483679,47.3176702],[10.3484519,47.3175813],[10.3485232,47.3176151],[10.3485619,47.3176218],[10.3487321,47.3175562],[10.3487933,47.3175071],[10.3487496,47.3173721],[10.3486525,47.3172667],[10.3485748,47.3171825],[10.3485013,47.3172342],[10.3484397,47.3172503],[10.3483987,47.3172386],[10.3482587,47.3171556],[10.3482492,47.3171272],[10.3482625,47.3170847],[10.3483189,47.3170253],[10.3483216,47.3170103],[10.3482767,47.3169805],[10.348232,47.3169195],[10.3480952,47.3168731],[10.347953,47.3166154],[10.347895,47.3165617],[10.3478471,47.3164643],[10.3477397,47.3163911],[10.3477299,47.3162826],[10.3476224,47.3162505],[10.3475989,47.3162099],[10.3474474,47.3161317],[10.3473817,47.3159753],[10.347328,47.3159386],[10.3472299,47.3158892],[10.3472803,47.3158048],[10.3472885,47.3157212],[10.3472564,47.3156807],[10.3471742,47.3156481],[10.3471293,47.3156238],[10.3471133,47.3156001],[10.3469503,47.3155724],[10.3468474,47.3155253],[10.3467581,47.3155271],[10.3467216,47.3155014],[10.346705,47.3154687],[10.3467102,47.3154286],[10.3467463,47.3153684],[10.3466406,47.315254],[10.3465656,47.3152372],[10.3464675,47.3151931],[10.3462858,47.3151124],[10.3461786,47.3150859],[10.3460425,47.3150521],[10.3459359,47.3150393],[10.3457509,47.3150487],[10.3456294,47.3150407],[10.3454004,47.315083],[10.3450376,47.3151072],[10.3450137,47.3150985],[10.3448756,47.315019],[10.3447774,47.3150049],[10.3447412,47.3149873],[10.3446991,47.314907],[10.3445282,47.3148876],[10.3444019,47.3148466],[10.3440877,47.3147453],[10.3439725,47.3146905],[10.3437223,47.314628],[10.3433243,47.314613],[10.3428492,47.314532],[10.3425439,47.3144408],[10.3423853,47.3144337],[10.3422117,47.3143502],[10.3417929,47.3143619],[10.3413614,47.3143931],[10.3411995,47.3143472],[10.340996,47.3143791],[10.340813,47.3143286],[10.3407355,47.3142878],[10.3406749,47.3142467],[10.3406086,47.3141881],[10.3398865,47.3120669],[10.339635,47.3113284],[10.3394466,47.3107748],[10.339365,47.3105352],[10.3391528,47.3104357],[10.3385559,47.3101558],[10.3384821,47.3101212],[10.3381996,47.3099886],[10.3356235,47.3087804],[10.3338679,47.3074135],[10.3336046,47.3072086],[10.3333532,47.3070128],[10.3321517,47.3061387],[10.3321444,47.3061333],[10.3309189,47.3052417],[10.3306058,47.3050139],[10.3303332,47.3048155],[10.330069,47.3047728],[10.3259679,47.3041102],[10.3244171,47.3038596],[10.3242413,47.3040187],[10.3241411,47.304074],[10.3242038,47.3042598],[10.3242526,47.3043419],[10.3242674,47.3043668],[10.3242859,47.3045153],[10.3242768,47.3045919],[10.3243607,47.3047205],[10.3241881,47.3052067],[10.324132,47.3053051],[10.3240489,47.3053945],[10.3239397,47.3054122],[10.3239045,47.3055643],[10.3238188,47.3055784],[10.3237922,47.305598],[10.3237706,47.3056266],[10.323627,47.3056418],[10.323439,47.3056373],[10.3233987,47.305642],[10.3233001,47.3056996],[10.3232529,47.3056941],[10.3231835,47.3056602],[10.3230866,47.3057177],[10.3229887,47.3058427],[10.3228313,47.305904],[10.3227823,47.3058963],[10.3227269,47.3059124],[10.3226735,47.3059573],[10.3223063,47.3060697],[10.3220524,47.3060972],[10.32196,47.3061044],[10.3215411,47.3062731],[10.3214295,47.3062268],[10.3214083,47.3062954],[10.3211959,47.3063993],[10.3207546,47.3063761],[10.3205509,47.3062287],[10.320364,47.3062226],[10.3200911,47.3061757],[10.3196455,47.3060993],[10.3193854,47.306024],[10.3193067,47.3060655],[10.3191631,47.3060159],[10.3190201,47.3060234],[10.3190093,47.3059731],[10.3188808,47.3059281],[10.3187329,47.3059493],[10.3186031,47.305926],[10.3186194,47.3058848],[10.3183505,47.3060562],[10.3180829,47.3060586],[10.3180451,47.3061341],[10.3179074,47.3061656],[10.3178116,47.3061775],[10.317693,47.3062534],[10.3176991,47.3063562],[10.317578,47.3064289],[10.3174086,47.3064111],[10.3172158,47.3064794],[10.3170413,47.3066766],[10.3169187,47.3066853],[10.3169069,47.306687],[10.3167791,47.3067064],[10.3167259,47.3067169],[10.3165844,47.306745],[10.3162902,47.3066367],[10.3162074,47.306604],[10.316148,47.3065926],[10.3160403,47.3065717],[10.3154707,47.3065047],[10.3154101,47.3065083],[10.3151628,47.3065254],[10.3150784,47.3065099],[10.3149906,47.3064727],[10.3149496,47.3064294],[10.3149273,47.306402],[10.3147989,47.3063627],[10.3147295,47.3063208],[10.3144347,47.3061474],[10.3143121,47.3060418],[10.3139681,47.3058321],[10.313618,47.3057023],[10.3134938,47.3055694],[10.3134146,47.3054224],[10.3134083,47.3053253],[10.3132184,47.3051971],[10.3130295,47.305166],[10.3125529,47.3050151],[10.3124617,47.3049619],[10.3124458,47.3049072],[10.3124048,47.3048674],[10.3123425,47.3048575],[10.3122872,47.3048714],[10.3121829,47.3047242],[10.3120656,47.3046749],[10.311943,47.3045201],[10.3117591,47.3043428],[10.3116118,47.3042612],[10.3114996,47.3041681],[10.3114035,47.3041572],[10.3113613,47.3041413],[10.3113214,47.3040467],[10.3113324,47.3039713],[10.3113102,47.3039416],[10.3112762,47.3039157],[10.3110143,47.3038278],[10.3109534,47.3037937],[10.3109173,47.3037483],[10.3108799,47.3037004],[10.3107814,47.3036358],[10.3106835,47.3036145],[10.3104822,47.3035115],[10.3103905,47.3034491],[10.3102564,47.3033435],[10.3098215,47.3031582],[10.309487,47.3030525],[10.3093479,47.3029537],[10.3092642,47.302841],[10.3091324,47.3028029],[10.3090843,47.3027208],[10.3087905,47.3023452],[10.3084144,47.3021369],[10.3083469,47.3021189],[10.30803,47.3020838],[10.3079899,47.3020976],[10.3078738,47.3020982],[10.3076497,47.3021247],[10.3075931,47.3021315],[10.3070098,47.302061],[10.3067946,47.3020756],[10.3063395,47.3017283],[10.3059379,47.3014847],[10.3057681,47.3013587],[10.3055674,47.3011837],[10.3054447,47.3010495],[10.3051884,47.3008565],[10.304997,47.3007569],[10.3047679,47.3005877],[10.3046529,47.3005438],[10.3043648,47.3003681],[10.304104,47.300231],[10.3038117,47.3001284],[10.3034801,47.2999803],[10.3034704,47.2998777],[10.3033012,47.299787],[10.3031221,47.2997318],[10.3028219,47.2996738],[10.3026037,47.2995914],[10.3023862,47.2995387],[10.3022233,47.2994242],[10.3021201,47.2993846],[10.3019855,47.2992322],[10.3018939,47.2991898],[10.3018484,47.2991688],[10.301839,47.2990844],[10.3018451,47.2990183],[10.3017485,47.2989284],[10.3016529,47.2988643],[10.3015629,47.2987693],[10.3014491,47.2986903],[10.3012611,47.2986374],[10.3008491,47.2985885],[10.3005881,47.2985992],[10.3002982,47.2986397],[10.2993245,47.2987674],[10.2988121,47.2988345],[10.2986084,47.2988477],[10.2985028,47.2987995],[10.29851,47.2987494],[10.2983478,47.2988083],[10.2982942,47.2987957],[10.2981721,47.2987029],[10.2980426,47.2986786],[10.2980288,47.2987117],[10.2979562,47.2987424],[10.2979406,47.2988108],[10.2978828,47.2988803],[10.2979173,47.2989761],[10.2978866,47.299024],[10.2978045,47.2989781],[10.2977735,47.2990694],[10.2977828,47.2991915],[10.2977856,47.2992281],[10.2977715,47.2992975],[10.2976929,47.2994709],[10.2976032,47.299522],[10.2975381,47.2996748],[10.2975041,47.2997089],[10.2974471,47.2996779],[10.2973171,47.2997313],[10.2970585,47.299637],[10.2970209,47.2997248],[10.2966738,47.2997639],[10.2964802,47.2997726],[10.2962425,47.299821],[10.2961747,47.2998767],[10.2959934,47.2998261],[10.2956547,47.2999039],[10.2956192,47.2998868],[10.2954033,47.2997425],[10.2951096,47.2996356],[10.2950439,47.2994301],[10.294884,47.2992403],[10.2948458,47.2991926],[10.2947174,47.2990321],[10.2945608,47.2988367],[10.2943834,47.2987118],[10.294317,47.2985839],[10.293913,47.2983923],[10.2937801,47.2983737],[10.2935778,47.2982237],[10.2935391,47.2980148],[10.2931726,47.2975506],[10.2931006,47.2971179],[10.293031,47.2969557],[10.2930291,47.2968763],[10.2931271,47.2967529],[10.2931179,47.2966456],[10.293147,47.2965806],[10.2931997,47.2965168],[10.2932119,47.2960479],[10.2926986,47.295638],[10.2923285,47.2952138],[10.2922776,47.2948565],[10.2922327,47.2947982],[10.2922286,47.2946772],[10.2922525,47.2946385],[10.2923255,47.2945633],[10.2923263,47.2944743],[10.2920897,47.2943938],[10.2920314,47.2943664],[10.2919186,47.2943068],[10.2918632,47.2942951],[10.2915913,47.2941113],[10.2913075,47.2939195],[10.2911717,47.2938666],[10.2908955,47.2936743],[10.2907059,47.2936156],[10.2905453,47.2934966],[10.290369,47.2934516],[10.2901597,47.2933209],[10.2900688,47.2933345],[10.2896621,47.2932501],[10.2895715,47.2932202],[10.2895523,47.2931095],[10.2894704,47.2930544],[10.2894542,47.2929608],[10.2894072,47.292946],[10.2892996,47.2929411],[10.2891095,47.2929326],[10.2888529,47.2928122],[10.288613,47.2927214],[10.2883687,47.2925656],[10.2882664,47.2925197],[10.2879989,47.2923158],[10.2876905,47.2921646],[10.2870904,47.2920275],[10.2868327,47.2920239],[10.2867769,47.2920143],[10.2865179,47.2919627],[10.2862446,47.2918805],[10.286081,47.2918642],[10.2859507,47.2917859],[10.2857687,47.291715],[10.2855905,47.2916043],[10.2854973,47.2915186],[10.2853963,47.2914571],[10.2851887,47.2912506],[10.2849195,47.2911969],[10.2848087,47.2910863],[10.284587,47.2909259],[10.2844376,47.2906936],[10.2843224,47.2904233],[10.284034,47.2902841],[10.283902,47.2901294],[10.2837748,47.2900978],[10.283685,47.2899516],[10.2836572,47.2898036],[10.2836333,47.2897296],[10.2835846,47.2896731],[10.283409,47.2895907],[10.2833038,47.2894368],[10.2832696,47.2893681],[10.2832128,47.2892541],[10.2831301,47.2891821],[10.2831178,47.2891605],[10.2830813,47.2889989],[10.2828742,47.2888781],[10.282816,47.2888377],[10.2826809,47.2887222],[10.282639,47.288678],[10.2826226,47.2886608],[10.2825968,47.288644],[10.2823827,47.2885747],[10.2823059,47.2885323],[10.2821778,47.2884608],[10.2820048,47.2882916],[10.2819222,47.2882276],[10.2818077,47.2881034],[10.281728,47.2879593],[10.2817111,47.2878352],[10.2816699,47.2877499],[10.2816336,47.2877139],[10.2813973,47.2876266],[10.2813279,47.2876138],[10.2812671,47.2876066],[10.2808242,47.2875354],[10.2807986,47.2875267],[10.2807845,47.2875006],[10.2807674,47.2874894],[10.2806591,47.2874667],[10.2805949,47.2874653],[10.2804848,47.2875031],[10.2804195,47.2875153],[10.2803789,47.2875033],[10.2802929,47.287468],[10.280183,47.2875399],[10.2800918,47.2875891],[10.2800226,47.2876492],[10.2798252,47.2876905],[10.279729,47.2877419],[10.2795471,47.2878011],[10.2794198,47.2878267],[10.2792313,47.2878884],[10.2791768,47.2879816],[10.2790746,47.2879371],[10.2790106,47.2879401],[10.2789264,47.287875],[10.2789078,47.287873],[10.2787854,47.287823],[10.2787272,47.2877987],[10.2785458,47.2877507],[10.2784234,47.2877042],[10.2782805,47.2877711],[10.2782218,47.2877181],[10.2781174,47.2877742],[10.2779865,47.2877917],[10.2777875,47.287897],[10.2776183,47.2879298],[10.2773848,47.2879487],[10.2771857,47.28799],[10.276999,47.2879945],[10.2768803,47.2880268],[10.2768427,47.2880672],[10.2767027,47.2880552],[10.2765828,47.2881058],[10.2764144,47.2881021],[10.2762424,47.2880882],[10.2760862,47.2881005],[10.2759001,47.2880662],[10.2757362,47.2881036],[10.2752638,47.2881893],[10.2751273,47.2881806],[10.2748943,47.2882178],[10.2747601,47.2881692],[10.2746758,47.2881085],[10.2742779,47.2881476],[10.2742269,47.2881288],[10.2741749,47.2881581],[10.2741125,47.2881931],[10.273988,47.2881957],[10.2738771,47.288261],[10.2737182,47.2882032],[10.2736645,47.2881837],[10.2735879,47.2882097],[10.2733272,47.2882163],[10.2733458,47.2880974],[10.2732894,47.288009],[10.2731786,47.2878996],[10.2729933,47.2877637],[10.2728043,47.2876872],[10.2726752,47.2876397],[10.2725145,47.2876154],[10.2721367,47.2876498],[10.2719611,47.2876268],[10.271591,47.287758],[10.271428,47.2877691],[10.2713219,47.2877646],[10.2709501,47.2878378],[10.2707358,47.2877548],[10.2706077,47.2877494],[10.2704312,47.2878201],[10.2701999,47.287856],[10.2701814,47.2877934],[10.2698176,47.2878492],[10.2694868,47.2879378],[10.2693651,47.2880431],[10.269004,47.2881948],[10.2687667,47.2882548],[10.2684233,47.2882624],[10.2682887,47.2882047],[10.2681008,47.288159],[10.2680082,47.2880312],[10.2675245,47.2880119],[10.2673298,47.2880336],[10.2665341,47.2879908],[10.2661508,47.2880207],[10.2660059,47.2880634],[10.2658093,47.2881085],[10.2659104,47.2880443],[10.2661415,47.2879173],[10.2661867,47.2878266],[10.2662216,47.2877023],[10.2663369,47.2875468],[10.2663576,47.2874997],[10.2663897,47.2873807],[10.2663889,47.2873555],[10.2664257,47.2873425],[10.2664837,47.2873075],[10.2665982,47.2872305],[10.2666807,47.2871304],[10.2668394,47.2869014],[10.2668856,47.2868059],[10.2668881,47.2867762],[10.2666709,47.2863971],[10.2664225,47.2859637],[10.2664368,47.2857759],[10.2664335,47.2856538],[10.2663815,47.2855379],[10.2662982,47.2853872],[10.2662044,47.28527],[10.2661376,47.2851867],[10.2659871,47.2851489],[10.265945,47.2851471],[10.2656037,47.2852243],[10.2655702,47.2852269],[10.2655211,47.2852139],[10.2653377,47.2851579],[10.2649981,47.2851118],[10.2646421,47.285083],[10.264561,47.2850691],[10.2642576,47.2849883],[10.2637119,47.2850371],[10.2636741,47.2850103],[10.2633011,47.2849759],[10.2632621,47.2849616],[10.2632191,47.2849289],[10.2631116,47.2848127],[10.2629944,47.2847708],[10.262755,47.2846492],[10.2624544,47.284598],[10.262183,47.2845191],[10.2621446,47.2845332],[10.2620958,47.2845339],[10.2620242,47.2844971],[10.2619856,47.2844417],[10.2619091,47.2844162],[10.2618644,47.2843768],[10.261786,47.2843389],[10.2615637,47.2842788],[10.2614906,47.2842535],[10.261427,47.2842029],[10.2610603,47.2837118],[10.2609255,47.2835844],[10.2608848,47.2835096],[10.2608726,47.283431],[10.2609352,47.2832555],[10.2609545,47.2830988],[10.2609504,47.2830726],[10.260824,47.2828801],[10.260664,47.282817],[10.2606295,47.2827854],[10.2604974,47.2825677],[10.260465,47.2824916],[10.2604552,47.2823148],[10.2604187,47.2821474],[10.2603446,47.2820182],[10.2602982,47.2819856],[10.2600554,47.2819075],[10.2600194,47.281884],[10.259917,47.2817747],[10.2598183,47.2816695],[10.2597496,47.2815538],[10.2595321,47.2814206],[10.2593776,47.2813688],[10.2592475,47.2813453],[10.2591261,47.2813422],[10.258979,47.2813771],[10.2588766,47.2813875],[10.2582292,47.2813484],[10.257967,47.281299],[10.257817,47.2812929],[10.2576073,47.2813126],[10.2575834,47.2813037],[10.2575575,47.2812789],[10.2575251,47.2812611],[10.2574811,47.281249],[10.2573534,47.2812631],[10.2573045,47.2812592],[10.2572416,47.2812314],[10.2571517,47.2811446],[10.2571165,47.2810856],[10.2570512,47.2809175],[10.2570008,47.2808552],[10.2566761,47.2808615],[10.2564659,47.280929],[10.256036,47.280965],[10.2554628,47.2809936],[10.2554986,47.2808837],[10.2554822,47.2808347],[10.2553502,47.2808111],[10.255266,47.280875],[10.255189,47.2808839],[10.2548842,47.2808156],[10.2547899,47.2808168],[10.2546736,47.2808696],[10.2546659,47.2809504],[10.2544909,47.2808371],[10.2543288,47.2807411],[10.2541747,47.2806874],[10.2539821,47.2805919],[10.2537874,47.2806051],[10.2536184,47.2805197],[10.2533185,47.280436],[10.2531486,47.2804173],[10.2529896,47.2803888],[10.2528311,47.2803459],[10.2525286,47.2802585],[10.2520964,47.2802141],[10.2519616,47.2801769],[10.2517496,47.2800694],[10.251376,47.2799368],[10.2512863,47.2798518],[10.2511427,47.2798388],[10.2511081,47.2798419],[10.250836,47.2799996],[10.2506621,47.28006],[10.2505754,47.2799264],[10.2504943,47.2798595],[10.2503948,47.2797624],[10.2503342,47.2797033],[10.2502308,47.2796351],[10.2500788,47.27955],[10.2500103,47.2794258],[10.2499167,47.2793398],[10.2497763,47.2792675],[10.2496672,47.2792505],[10.2494166,47.2792692],[10.249315,47.2792667],[10.2491115,47.2792654],[10.2490348,47.2792687],[10.2489809,47.2792598],[10.2488366,47.2792252],[10.248534,47.2791036],[10.2484416,47.2790987],[10.2483937,47.2791069],[10.2483476,47.2791422],[10.2482994,47.2791604],[10.2482443,47.2792065],[10.2481717,47.2791854],[10.2480144,47.2791857],[10.2479211,47.2791717],[10.2477823,47.2791722],[10.2477262,47.2792272],[10.247649,47.2792853],[10.2474392,47.279355],[10.2473621,47.2793673],[10.2472299,47.279368],[10.2471884,47.2793845],[10.2471835,47.2794113],[10.2471984,47.2794394],[10.2471407,47.2795087],[10.2469998,47.2795291],[10.2469656,47.2795654],[10.2468211,47.2795812],[10.2467116,47.2795741],[10.2466382,47.2795927],[10.2466038,47.2796354],[10.246582,47.2797368],[10.2465124,47.2798031],[10.246429,47.2800835],[10.2462049,47.2802679],[10.2460099,47.280327],[10.2459349,47.2803978],[10.245745,47.2804211],[10.2455919,47.2803756],[10.245587,47.2802073],[10.2454403,47.280125],[10.2453162,47.2800826],[10.2452999,47.2799338],[10.2453102,47.2798234],[10.2453904,47.2796771],[10.2452771,47.2795845],[10.2451808,47.279539],[10.2451417,47.2794017],[10.2451913,47.279263],[10.2452861,47.279152],[10.2453972,47.2791105],[10.2454149,47.2790137],[10.2453239,47.2790095],[10.2451915,47.2789743],[10.2450252,47.2789681],[10.2449252,47.2789126],[10.2448101,47.2788784],[10.2448098,47.2788056],[10.2446523,47.2787726],[10.2445419,47.2787934],[10.2444477,47.2787254],[10.2441944,47.278753],[10.2440642,47.2786889],[10.2438724,47.2786554],[10.2440583,47.2785098],[10.2438694,47.2785069],[10.2437639,47.2784973],[10.2436435,47.278463],[10.2434536,47.2784089],[10.2431429,47.278333],[10.2430012,47.2783407],[10.2428889,47.2782994],[10.2426963,47.2782479],[10.2425499,47.2782384],[10.2424593,47.2781813],[10.2422914,47.2781436],[10.2422042,47.2780218],[10.2420037,47.2778109],[10.2418598,47.2776063],[10.2418413,47.2775242],[10.2417336,47.277304],[10.2416456,47.2772073],[10.2416672,47.2771131],[10.2416459,47.2770381],[10.2415929,47.2769635],[10.241493,47.2768667],[10.2415381,47.2767037],[10.2415376,47.2765966],[10.2415656,47.2765512],[10.2415522,47.2765177],[10.2411918,47.276263],[10.2413021,47.276047],[10.2413053,47.2759877],[10.2412374,47.2758041],[10.2412328,47.2757059],[10.2411366,47.2756003],[10.2410921,47.2755239],[10.2409877,47.275444],[10.240696,47.2753919],[10.2407415,47.2752163],[10.240618,47.274833],[10.2402947,47.2746607],[10.2401872,47.2746365],[10.2399109,47.2746377],[10.2396761,47.2744236],[10.2394481,47.2744039],[10.2392049,47.274205],[10.2391232,47.2739986],[10.2389975,47.2738429],[10.2389707,47.2736941],[10.2388944,47.2736461],[10.2387993,47.2734827],[10.2387822,47.273245],[10.2384831,47.272779],[10.2385028,47.2727019],[10.2384734,47.2726313],[10.2383816,47.2725715],[10.2381922,47.2725416],[10.238087,47.2724868],[10.2381402,47.2723185],[10.2381042,47.2722091],[10.23826,47.2720919],[10.2382432,47.2719253],[10.2375122,47.2719266],[10.2372328,47.2718638],[10.2369731,47.2719633],[10.236658,47.2720196],[10.236176,47.2720086],[10.2360412,47.2719706],[10.2359254,47.2719138],[10.2356871,47.2717294],[10.2355963,47.2717182],[10.2352955,47.2717018],[10.2351229,47.2716866],[10.2349665,47.2716185],[10.2347659,47.2716082],[10.2346321,47.2714595],[10.2345533,47.271407],[10.2343927,47.2713497],[10.234192,47.2713043],[10.2339821,47.271257],[10.2337978,47.2712748],[10.2334758,47.2711008],[10.233053,47.2710196],[10.2326915,47.2709222],[10.2326244,47.2709131],[10.2324511,47.2708394],[10.2323072,47.2707535],[10.2323596,47.2706905],[10.2323482,47.2705791],[10.2311422,47.2711666],[10.2298009,47.2718862],[10.2284138,47.2726302],[10.2250817,47.2744174],[10.2234234,47.2753067],[10.2229819,47.2755435],[10.222434,47.2758352],[10.222371,47.2758318],[10.2217035,47.2757958],[10.2216218,47.2757914],[10.2185078,47.2756243],[10.2167848,47.2755317],[10.2155465,47.2754653],[10.2153394,47.2754611],[10.2145239,47.2754445],[10.2140487,47.275435],[10.2138053,47.27543],[10.2118066,47.2753873],[10.2076222,47.2753027],[10.2015026,47.2768309],[10.2012302,47.2768989],[10.2011828,47.2767572],[10.2011707,47.2767212],[10.2010665,47.2764101],[10.2001325,47.2760158],[10.1984188,47.2752925],[10.1956957,47.274416],[10.1954644,47.2739771],[10.1950152,47.2731244],[10.192571,47.272609],[10.1900208,47.2725985],[10.1899888,47.2725984],[10.1872933,47.2725875],[10.1849294,47.272033],[10.1820868,47.2714812],[10.1811326,47.2711719],[10.1811124,47.2711677],[10.1800434,47.2709434],[10.1795374,47.2708698],[10.1785686,47.2702551],[10.1783421,47.2701114],[10.1745845,47.2702309],[10.1740416,47.2702482],[10.1740474,47.2716793],[10.1736999,47.2729052],[10.1735618,47.2730469],[10.1725126,47.2741231],[10.1734637,47.2750853],[10.1751976,47.275766],[10.1741703,47.2767101],[10.1734178,47.2774016],[10.1732237,47.2776028],[10.1721782,47.2789462],[10.172077,47.2790762],[10.1737729,47.2799246],[10.1759291,47.2820496],[10.1759003,47.2823266],[10.175422,47.2869269],[10.1753255,47.2878549],[10.1752931,47.2878978],[10.1751481,47.2879609],[10.175107,47.288011],[10.1751016,47.2880476],[10.1750444,47.2881879],[10.1751616,47.2883512],[10.1752317,47.2883801],[10.1751863,47.2885205],[10.1751556,47.2885615],[10.1750774,47.288633],[10.1750636,47.2886673],[10.1748405,47.2887859],[10.1748149,47.2888189],[10.1748076,47.2888601],[10.174851,47.2890194],[10.1748928,47.2890265],[10.1748634,47.2892287],[10.1748965,47.2892667],[10.1749207,47.2893435],[10.1749975,47.2893783],[10.1751616,47.2894171],[10.1752245,47.2894769],[10.1752846,47.2895014],[10.17533,47.2894937],[10.1754938,47.2895564],[10.1755422,47.2896371],[10.1755646,47.2896747],[10.1756339,47.2897667],[10.1757624,47.2898339],[10.1758367,47.2899327],[10.1759762,47.2900458],[10.176063,47.2900852],[10.1761375,47.2901404],[10.1761926,47.2901749],[10.1762326,47.2902253],[10.1763161,47.290284],[10.176336,47.2903137],[10.1763744,47.2903425],[10.1764179,47.2903621],[10.1764651,47.2903588],[10.1765711,47.2903296],[10.1766585,47.2903402],[10.1769611,47.2903266],[10.1770064,47.2903439],[10.1770578,47.2904104],[10.1771333,47.2904358],[10.1771548,47.2904633],[10.1771676,47.2905342],[10.1772486,47.2906911],[10.1773234,47.2907782],[10.1773549,47.2908424],[10.1773626,47.2909269],[10.1773987,47.2910002],[10.1774422,47.2910335],[10.1774703,47.2910849],[10.17749,47.2911274],[10.1775497,47.2912064],[10.177566,47.2912796],[10.1776125,47.2913357],[10.1775983,47.2914168],[10.1776246,47.291482],[10.1776882,47.2915132],[10.1777047,47.2915509],[10.1777311,47.2917886],[10.1778181,47.291845],[10.1778428,47.2918862],[10.177841,47.2919124],[10.1778134,47.2919752],[10.1778245,47.2920495],[10.1778056,47.2920939],[10.1778136,47.2921386],[10.1778032,47.2921705],[10.1778107,47.2922814],[10.1778642,47.2922976],[10.1778899,47.2924245],[10.1779218,47.2924486],[10.1779346,47.2925195],[10.1779829,47.2925779],[10.1780577,47.292648],[10.178061,47.2926662],[10.1780304,47.2928729],[10.1780199,47.2931116],[10.1780045,47.2931344],[10.1779759,47.2931502],[10.1779588,47.2931719],[10.1779453,47.2932515],[10.1779305,47.2933385],[10.1779505,47.2933489],[10.1779608,47.2935181],[10.1779771,47.2935627],[10.1779959,47.2937398],[10.1780038,47.2937753],[10.1780553,47.2938532],[10.1780832,47.2939252],[10.1781264,47.2941459],[10.178171,47.2942444],[10.1782533,47.2946182],[10.178248,47.2946468],[10.1782879,47.2947018],[10.178573,47.2949566],[10.1787202,47.2950554],[10.178864,47.2951189],[10.1788789,47.2951441],[10.1790872,47.2952942],[10.1791964,47.2953727],[10.1793593,47.2955448],[10.1794654,47.2957085],[10.179505,47.2957989],[10.1795245,47.2958791],[10.1795428,47.2959077],[10.1795792,47.295958],[10.1795858,47.2959741],[10.1795974,47.2960073],[10.1796106,47.2960256],[10.1796904,47.2960737],[10.1797502,47.2960991],[10.1798264,47.2961315],[10.1798617,47.2961363],[10.1799022,47.296125],[10.1800197,47.2961346],[10.1801287,47.2961613],[10.1802784,47.296162],[10.180329,47.2961531],[10.1803965,47.2961179],[10.1804469,47.2961135],[10.1804517,47.2961341],[10.1805796,47.2961347],[10.1807104,47.2961786],[10.1807621,47.2962188],[10.1807991,47.2962144],[10.1810417,47.2961537],[10.1811089,47.2961506],[10.181136,47.296137],[10.181195,47.2961086],[10.1812439,47.2961008],[10.1813097,47.2960737],[10.1814022,47.2960695],[10.1815284,47.2960495],[10.1816226,47.2960464],[10.1816545,47.2960591],[10.1816845,47.2960866],[10.1817097,47.2960799],[10.1817622,47.296047],[10.1818516,47.296013],[10.1819943,47.2958378],[10.1820049,47.295792],[10.1820371,47.295759],[10.1820726,47.2957386],[10.1821097,47.2957285],[10.1821656,47.2956796],[10.1821928,47.295642],[10.1822722,47.2956069],[10.1823042,47.2955967],[10.182377,47.2955331],[10.1824292,47.2955208],[10.1824731,47.2954912],[10.1825053,47.2954777],[10.1825609,47.295471],[10.1825828,47.2954596],[10.1826304,47.2953902],[10.1826904,47.2952682],[10.1829056,47.2950772],[10.182962,47.2949826],[10.1830809,47.2948402],[10.18313,47.2948153],[10.1831601,47.2948086],[10.1833169,47.2947692],[10.1833558,47.2947453],[10.1833881,47.2946941],[10.1834342,47.2946212],[10.1834679,47.2946179],[10.1835157,47.2945382],[10.1836023,47.2944517],[10.1836716,47.2943983],[10.1837289,47.294379],[10.1838021,47.2942833],[10.1838376,47.2942584],[10.18386,47.2942002],[10.1839204,47.294221],[10.1839571,47.2942475],[10.1840076,47.2942408],[10.1840361,47.2942456],[10.1840731,47.2942365],[10.1841426,47.2941694],[10.1841678,47.294166],[10.1841863,47.2941764],[10.1842199,47.2941765],[10.1846079,47.2940308],[10.1846737,47.2939921],[10.1847919,47.2939481],[10.1848003,47.2939253],[10.1848911,47.293928],[10.1849653,47.2939169],[10.1850512,47.2938864],[10.1850984,47.2938854],[10.1852378,47.2938974],[10.1853588,47.2938967],[10.1854746,47.2939075],[10.1855605,47.2939281],[10.1856068,47.2939811],[10.185657,47.2940065],[10.1856737,47.2940214],[10.18569,47.2940649],[10.1857169,47.2940776],[10.1857774,47.2940801],[10.1858141,47.2941065],[10.1860002,47.2941759],[10.1860639,47.2941874],[10.1861139,47.2942232],[10.1861542,47.2942335],[10.1864296,47.2942644],[10.1864833,47.2942749],[10.1865137,47.2942682],[10.1865389,47.2942499],[10.1865634,47.2941599],[10.1865788,47.2941347],[10.1866125,47.2941154],[10.1867084,47.2941135],[10.1867318,47.2941205],[10.1867552,47.2941365],[10.1867854,47.2941447],[10.1868476,47.2941586],[10.1869047,47.2941578],[10.1869448,47.2941705],[10.1870456,47.2941823],[10.1870895,47.2941642],[10.1871853,47.2941657],[10.1872341,47.2941625],[10.187271,47.2941672],[10.1873045,47.2941811],[10.1873515,47.294187],[10.187375,47.2941837],[10.1874189,47.2941723],[10.1875164,47.2941693],[10.1875552,47.2941524],[10.1875855,47.2941536],[10.1876438,47.2942007],[10.1877145,47.2942078],[10.1877714,47.2942207],[10.1878237,47.2942128],[10.1878761,47.2941674],[10.1881163,47.2941901],[10.188177,47.2941823],[10.1882294,47.2941357],[10.1883565,47.29403],[10.1884768,47.2939094],[10.1886566,47.2939295],[10.1887103,47.2939411],[10.1887486,47.2939732],[10.1887873,47.2939883],[10.1889266,47.293998],[10.1890176,47.2939743],[10.1890496,47.2939802],[10.1891267,47.2940022],[10.1891479,47.2940571],[10.1892203,47.2940608],[10.1892305,47.2940437],[10.1892508,47.2940312],[10.1892978,47.2940257],[10.1893585,47.2940111],[10.1894021,47.2940158],[10.1895128,47.2940404],[10.1895515,47.2940382],[10.1895888,47.2940178],[10.1896178,47.2939561],[10.1896365,47.2939449],[10.1896565,47.2939541],[10.1896782,47.2939815],[10.1896863,47.2940296],[10.1897196,47.2940491],[10.1897546,47.2940812],[10.1898331,47.294133],[10.1898782,47.2941731],[10.1899112,47.2942292],[10.1899146,47.2944212],[10.1899583,47.2944362],[10.1900624,47.2944424],[10.1901009,47.2944551],[10.190134,47.2945215],[10.190264,47.2946443],[10.1902941,47.294658],[10.1903966,47.2946641],[10.1904888,47.2946988],[10.1905171,47.2947241],[10.1905454,47.2947538],[10.1905841,47.2947666],[10.1906376,47.2947714],[10.1907053,47.2947477],[10.1907287,47.29475],[10.1907604,47.2947685],[10.1907938,47.2948108],[10.1908388,47.2948487],[10.1909015,47.2949792],[10.1910044,47.2949533],[10.191085,47.2949502],[10.1911236,47.2949561],[10.1912324,47.2949988],[10.1913112,47.295022],[10.1913548,47.2950472],[10.1914013,47.2951104],[10.1914263,47.2951242],[10.1914817,47.2951358],[10.1915171,47.2951359],[10.1915575,47.2951327],[10.1916162,47.2951397],[10.1916634,47.2951331],[10.191692,47.2951217],[10.1918081,47.2951108],[10.1919943,47.2951652],[10.1920611,47.2952066],[10.1921099,47.2952068],[10.1921634,47.2952447],[10.1922657,47.2952668],[10.1923699,47.2952627],[10.1924572,47.2952722],[10.1925311,47.2952885],[10.1925944,47.2953379],[10.1926447,47.2953723],[10.1926745,47.2954273],[10.1926904,47.2955233],[10.1926927,47.2956501],[10.1927041,47.2956798],[10.1927343,47.2956926],[10.1928216,47.2956998],[10.1928536,47.2957056],[10.1928568,47.2957194],[10.1928362,47.2957558],[10.1928574,47.2958496],[10.1929581,47.2958579],[10.1930503,47.2958777],[10.1931225,47.295886],[10.1931863,47.2959023],[10.1932586,47.2958923],[10.1933345,47.2958686],[10.1933715,47.2958699],[10.1935021,47.2959298],[10.1937013,47.2960277],[10.1940258,47.2963968],[10.1941162,47.2964658],[10.1941589,47.2965596],[10.1941857,47.2965746],[10.194246,47.2965988],[10.1942796,47.2966035],[10.1943436,47.2965878],[10.1944109,47.2965857],[10.1944444,47.2965928],[10.1944894,47.2966306],[10.1945399,47.29664],[10.1946005,47.2966333],[10.1946424,47.2966392],[10.1948115,47.2967221],[10.1948347,47.2967463],[10.1948274,47.2968091],[10.1948473,47.2968354],[10.1949176,47.2968859],[10.1950483,47.2969355],[10.1951017,47.2969655],[10.1951485,47.2970057],[10.1951854,47.2970161],[10.1952555,47.2970758],[10.195299,47.2970965],[10.1953729,47.2971071],[10.1954318,47.2970982],[10.1954502,47.2971097],[10.1955518,47.2972221],[10.195592,47.2972325],[10.1958145,47.2971637],[10.1958667,47.2971547],[10.1960432,47.2971658],[10.1961574,47.2971673],[10.1961926,47.2971629],[10.1962485,47.2971506],[10.196277,47.2971496],[10.1963659,47.2971773],[10.1964162,47.2971854],[10.1964414,47.2971845],[10.1965156,47.2971642],[10.1966764,47.297158],[10.1967608,47.2971755],[10.1971063,47.2972819],[10.1973223,47.2973856],[10.1975452,47.2974687],[10.1976054,47.2974963],[10.1976488,47.2975228],[10.197679,47.2975274],[10.1978017,47.2975416],[10.197852,47.2975556],[10.1979942,47.2976316],[10.1980243,47.2976465],[10.1982897,47.2976738],[10.1983923,47.2976708],[10.1984379,47.2976562],[10.1985004,47.297613],[10.1985578,47.2975892],[10.198657,47.297577],[10.1987058,47.2975669],[10.1987801,47.2975398],[10.1988946,47.2975277],[10.1990375,47.2975074],[10.1991314,47.2975423],[10.19918,47.2975676],[10.1992431,47.2976524],[10.1992596,47.2976776],[10.1993079,47.297719],[10.1995648,47.2981621],[10.1996163,47.2982274],[10.1996613,47.2982779],[10.1996742,47.2983385],[10.19967,47.2984184],[10.1998025,47.298468],[10.1998781,47.2984752],[10.1999067,47.2984879],[10.199923,47.2985279],[10.1999447,47.2985452],[10.2001409,47.2985996],[10.2003022,47.2986173],[10.2003808,47.2986497],[10.2004481,47.2986682],[10.2005049,47.2986982],[10.2005786,47.2987315],[10.2006253,47.2987798],[10.2006867,47.2988782],[10.20072,47.2989001],[10.2007921,47.2989243],[10.2008272,47.2989496],[10.200887,47.299023],[10.2009104,47.2990436],[10.2009925,47.2990874],[10.2010075,47.2991068],[10.2010089,47.2991354],[10.2009866,47.2991787],[10.2009971,47.2991911],[10.2009975,47.2991915],[10.2009983,47.2991924],[10.2010099,47.2992142],[10.201008,47.2992359],[10.2010399,47.2992497],[10.2010801,47.2992499],[10.2011522,47.2992616],[10.2012362,47.299295],[10.2012814,47.2993089],[10.2014257,47.2993323],[10.2014626,47.2993463],[10.2015027,47.2993691],[10.20156,47.2993626],[10.2016002,47.2993661],[10.2016905,47.2994317],[10.2017055,47.2994568],[10.2017221,47.2994878],[10.2017289,47.2995155],[10.2017537,47.2995408],[10.2017499,47.2995831],[10.201712,47.2996572],[10.2016988,47.2997797],[10.2017908,47.2998065],[10.2018743,47.2998484],[10.2019194,47.2998624],[10.2020235,47.2998642],[10.2022228,47.2999216],[10.2022643,47.2999561],[10.2023358,47.3000172],[10.2025539,47.300172],[10.2026001,47.3002284],[10.2026302,47.3002435],[10.2026856,47.3002427],[10.2027266,47.3003185],[10.2028044,47.3004267],[10.2029092,47.3004949],[10.2029032,47.3005749],[10.2029364,47.3006048],[10.2030151,47.3006305],[10.2030282,47.3006569],[10.2029913,47.3007953],[10.2030031,47.3009247],[10.2031091,47.3011828],[10.203124,47.3013284],[10.2031555,47.3013732],[10.2032112,47.3014846],[10.2032908,47.3015708],[10.2033406,47.3017077],[10.2033606,47.3017625],[10.2033987,47.3018097],[10.2034554,47.301841],[10.2038057,47.3020355],[10.2038987,47.3021265],[10.2039441,47.3022459],[10.2039816,47.3023526],[10.2040445,47.3024239],[10.2041732,47.3024762],[10.204319,47.3025069],[10.2046293,47.3025341],[10.2048387,47.302571],[10.2050026,47.3026349],[10.2051261,47.3027021],[10.2053414,47.3027731],[10.2054373,47.3028026],[10.2056377,47.302884],[10.2057097,47.3028982],[10.2059043,47.30292],[10.2059494,47.3029386],[10.2059693,47.3029673],[10.2059636,47.3030153],[10.2059816,47.3030521],[10.2060316,47.3030902],[10.2064611,47.3032693],[10.2065462,47.3033167],[10.2067339,47.3034747],[10.2068267,47.3035852],[10.2068915,47.3036464],[10.2069849,47.3036972],[10.2072728,47.3037838],[10.2073363,47.3038093],[10.2073746,47.3038347],[10.2073826,47.3038566],[10.2074548,47.3038662],[10.2076079,47.3039816],[10.2076311,47.304015],[10.2076474,47.3040437],[10.2076808,47.3040748],[10.2077341,47.3040958],[10.207828,47.3041215],[10.2078978,47.3041781],[10.2079998,47.3042085],[10.2080584,47.3042261],[10.2082271,47.3043163],[10.2082517,47.3043486],[10.2083435,47.3045426],[10.2083838,47.3045521],[10.2084225,47.3045351],[10.2084477,47.3045376],[10.2084592,47.3045525],[10.2085179,47.3045701],[10.2085475,47.3046125],[10.2086888,47.3047371],[10.2087104,47.304751],[10.208759,47.3047696],[10.2087788,47.3047961],[10.2088149,47.3048672],[10.2088033,47.3049851],[10.208786,47.3050354],[10.2087299,47.3050864],[10.2087127,47.3051276],[10.2087153,47.3051814],[10.2087881,47.3052689],[10.2088379,47.3053184],[10.2088859,47.3053726],[10.209031,47.305458],[10.209068,47.3054686],[10.2091001,47.305454],[10.2091554,47.3054498],[10.2092106,47.3054639],[10.2092993,47.3055022],[10.2093557,47.3055495],[10.2094731,47.3057093],[10.2095348,47.3057441],[10.2096375,47.3058638],[10.2097493,47.3059343],[10.2098932,47.3059707],[10.2099353,47.3059674],[10.2100181,47.3059269],[10.2100534,47.3059202],[10.2101407,47.3059241],[10.2102746,47.3059605],[10.2103979,47.3060529],[10.2104793,47.3061244],[10.2104906,47.3061519],[10.2105,47.306216],[10.2105098,47.3062311],[10.210535,47.3062369],[10.2105787,47.3062303],[10.2106005,47.3062339],[10.2106353,47.306281],[10.210662,47.3062915],[10.2107209,47.3062873],[10.2107426,47.3062943],[10.210749,47.3063138],[10.2107338,47.3063296],[10.2106579,47.3063728],[10.2104996,47.3065262],[10.2104738,47.3065788],[10.2103502,47.3066432],[10.2103451,47.3066592],[10.2103666,47.3066834],[10.2103356,47.3067416],[10.2103215,47.3067987],[10.2102958,47.3068466],[10.2102824,47.3069792],[10.2102498,47.3070306],[10.21016,47.3071021],[10.2101495,47.3071296],[10.2101494,47.3071513],[10.2104593,47.3073524],[10.2104938,47.3074042],[10.210583,47.3078133],[10.2107039,47.3079527],[10.2107319,47.308002],[10.2107969,47.3080413],[10.2108283,47.3080839],[10.2108573,47.3081882],[10.2108168,47.3081994],[10.2108106,47.308299],[10.2108523,47.3083267],[10.2109305,47.3085195],[10.2110181,47.3086322],[10.211073,47.3086772],[10.2111145,47.3087267],[10.2111913,47.3087649],[10.2112961,47.3088365],[10.2113226,47.3088768],[10.2113286,47.3089329],[10.2113568,47.3089709],[10.2113546,47.3090041],[10.2113323,47.3090371],[10.2113282,47.309116],[10.2113736,47.3093797],[10.2113629,47.3094311],[10.2113707,47.3094769],[10.2113887,47.3095193],[10.2113916,47.3095594],[10.2114626,47.3096583],[10.2115018,47.3097489],[10.2115332,47.3097858],[10.2115765,47.3098251],[10.2115713,47.3098433],[10.2115324,47.3098671],[10.2115136,47.3098864],[10.2114816,47.3100316],[10.211516,47.3101051],[10.2114928,47.3102229],[10.2115707,47.3103126],[10.21158,47.310363],[10.211574,47.3104488],[10.2115984,47.3105142],[10.2116468,47.3105512],[10.2117168,47.310587],[10.2117333,47.3106055],[10.2117296,47.3106284],[10.2117038,47.3106808],[10.2117154,47.3107073],[10.2118469,47.3108031],[10.2119237,47.3108413],[10.2120795,47.3108801],[10.2121062,47.3108963],[10.2121092,47.3109158],[10.2121021,47.3109513],[10.2121152,47.3109718],[10.2122202,47.3110539],[10.2122764,47.3111172],[10.2123397,47.3111588],[10.212353,47.3111795],[10.2123593,47.3112242],[10.2125184,47.311255],[10.2127989,47.3112555],[10.212925,47.3112403],[10.2129568,47.3112485],[10.2130101,47.3112832],[10.2130419,47.3112949],[10.2132149,47.3113028],[10.2133121,47.3113251],[10.213376,47.3113244],[10.2134277,47.3113419],[10.2135403,47.3113439],[10.2135772,47.311352],[10.2136256,47.3113683],[10.2137115,47.3113643],[10.2138068,47.3113958],[10.2139861,47.3114324],[10.2141723,47.3114554],[10.2141855,47.3114726],[10.2142174,47.3114774],[10.2142779,47.3114663],[10.2143638,47.3114566],[10.2144819,47.3114138],[10.2145191,47.3113888],[10.2145313,47.3113489],[10.2145687,47.311316],[10.2146278,47.3112865],[10.2147878,47.3112578],[10.2148937,47.3112528],[10.2149628,47.3112338],[10.2150165,47.3112353],[10.2150369,47.3112113],[10.2151194,47.3112096],[10.2151799,47.3111984],[10.2154227,47.3111302],[10.215448,47.3111075],[10.2155374,47.3110748],[10.2155625,47.3110932],[10.2155945,47.3110913],[10.2156066,47.3110661],[10.2156469,47.3110549],[10.2157631,47.3110442],[10.2158267,47.3110549],[10.2158414,47.3110813],[10.2158633,47.3110849],[10.2159718,47.311064],[10.2154559,47.3117024],[10.2143104,47.3131197],[10.2142386,47.3132086],[10.2134404,47.3141963],[10.2126192,47.3152123],[10.2124856,47.3153778],[10.2123419,47.3155554],[10.2122294,47.3157032],[10.2118334,47.3162209],[10.2112247,47.3170221],[10.2108904,47.3174607],[10.2108471,47.3176004],[10.2108305,47.3177228],[10.2107994,47.3177889],[10.2107549,47.3178665],[10.2107474,47.3179249],[10.2107716,47.3180108],[10.2107662,47.3180418],[10.2107617,47.3181401],[10.2107831,47.3181677],[10.2108265,47.3181898],[10.2108938,47.3181845],[10.2109222,47.3181939],[10.2109237,47.3182133],[10.2109123,47.3183208],[10.2109319,47.318353],[10.2109941,47.3183672],[10.2110222,47.3183948],[10.2110284,47.3184337],[10.2110336,47.3185733],[10.211077,47.3187259],[10.2110668,47.3187464],[10.211036,47.3187886],[10.2111267,47.318915],[10.2111365,47.3189529],[10.2111311,47.3189838],[10.2108305,47.3192474],[10.210758,47.3192641],[10.2106968,47.3193256],[10.210653,47.3193355],[10.210589,47.3193501],[10.2104531,47.3193285],[10.2104279,47.3193352],[10.210421,47.3193536],[10.2104047,47.3194336],[10.2103691,47.3194745],[10.2102911,47.3195347],[10.2102322,47.3195412],[10.2102068,47.3195535],[10.2101159,47.3196635],[10.2100894,47.3197303],[10.2100441,47.3197286],[10.2099715,47.3197471],[10.2099334,47.3197237],[10.2098826,47.3197378],[10.2097633,47.3199192],[10.2096814,47.3199708],[10.2096659,47.3200414],[10.2095241,47.3201322],[10.2094962,47.3201684],[10.2094228,47.3202109],[10.2093875,47.3202733],[10.2092265,47.3202632],[10.2091261,47.3204333],[10.2090966,47.3204684],[10.2090773,47.3204979],[10.2088876,47.3206166],[10.2088202,47.3206179],[10.2087641,47.3205863],[10.2086351,47.3205699],[10.2084905,47.3205131],[10.2084363,47.3205295],[10.2083216,47.3206709],[10.2082876,47.320683],[10.2082053,47.3206773],[10.2081045,47.3206829],[10.2080763,47.3206711],[10.2080666,47.3206539],[10.2080196,47.3206509],[10.2079737,47.3206766],[10.2079247,47.3206817],[10.2079089,47.3207066],[10.2078656,47.3206935],[10.2077476,47.3207126],[10.2077216,47.3207385],[10.2076626,47.3207458],[10.2076142,47.3207337],[10.207555,47.3207455],[10.2075003,47.320843],[10.2073751,47.320934],[10.2073011,47.3209971],[10.2071981,47.3210837],[10.2071158,47.3212039],[10.2070904,47.3212103],[10.207045,47.3212143],[10.207021,47.3212289],[10.2070004,47.3212831],[10.2069154,47.3213429],[10.2068725,47.321443],[10.2068252,47.3215075],[10.2067278,47.3217521],[10.2067321,47.3217818],[10.2067549,47.3218084],[10.206765,47.321868],[10.2067944,47.3218981],[10.2067795,47.3220167],[10.2067764,47.3221276],[10.2067285,47.3221579],[10.2067104,47.3222103],[10.2066436,47.3222529],[10.2066126,47.322281],[10.2065513,47.3223717],[10.2064724,47.3224345],[10.2064064,47.3224486],[10.2063754,47.3224733],[10.2063251,47.3225985],[10.2062871,47.3226369],[10.206169,47.3226513],[10.2059336,47.3227866],[10.20589,47.322842],[10.2056902,47.3229549],[10.2054136,47.3230586],[10.2052481,47.3231491],[10.2052289,47.3231762],[10.2052318,47.3231957],[10.2051113,47.323296],[10.2050624,47.3233044],[10.2049784,47.3233639],[10.2049325,47.3233839],[10.2048605,47.3234344],[10.2046967,47.3234665],[10.2045627,47.3235746],[10.2044774,47.323682],[10.2043947,47.3237609],[10.2043698,47.3238075],[10.2043321,47.3238333],[10.2040932,47.3239114],[10.2039939,47.3239157],[10.2039218,47.3239056],[10.2038453,47.323876],[10.2037963,47.3238902],[10.2036131,47.3239541],[10.2035539,47.3239694],[10.2033866,47.3240026],[10.2033434,47.3240477],[10.2031722,47.3241005],[10.202976,47.324211],[10.202898,47.3242373],[10.2027941,47.3242257],[10.2026859,47.3242506],[10.2025717,47.3242502],[10.2020992,47.3243869],[10.2020478,47.3244217],[10.2020063,47.3244635],[10.2019452,47.3244879],[10.2019135,47.3245424],[10.2018911,47.3245603],[10.2018195,47.3245971],[10.2018038,47.3246208],[10.2016033,47.3247612],[10.2014655,47.3248862],[10.2014228,47.3249702],[10.2013858,47.3250955],[10.2012917,47.325156],[10.2011724,47.3252813],[10.2011444,47.3253815],[10.2010293,47.3255367],[10.2010069,47.3256152],[10.2009184,47.3257799],[10.2008227,47.3258335],[10.2007588,47.3258406],[10.2007164,47.325855],[10.2006593,47.3259148],[10.2004757,47.3259901],[10.2003101,47.3260885],[10.2001872,47.3261006],[10.2001292,47.3261285],[10.2000083,47.3262434],[10.1995092,47.3264601],[10.1995848,47.3265579],[10.1996066,47.3266211],[10.1998942,47.3269771],[10.1999416,47.3270256],[10.1999966,47.3271018],[10.2000445,47.3271333],[10.2001362,47.3271585],[10.2002155,47.3272098],[10.2004049,47.3272878],[10.200485,47.3274294],[10.2004071,47.3274547],[10.2004065,47.3274731],[10.2005248,47.3275695],[10.2005729,47.3275986],[10.2005784,47.3276433],[10.2005764,47.327713],[10.200656,47.3278124],[10.2008033,47.3279549],[10.2008809,47.3280634],[10.2009872,47.328178],[10.2010045,47.3282149],[10.2010227,47.328223],[10.201113,47.3282425],[10.2012443,47.3282946],[10.2013348,47.3283666],[10.2013952,47.3284325],[10.2014726,47.3284862],[10.2015258,47.3285052],[10.2017191,47.3285066],[10.2017439,47.3285217],[10.2017652,47.328602],[10.2018128,47.3286461],[10.2019735,47.3287294],[10.2020354,47.3287428],[10.2022231,47.3287578],[10.202345,47.3287857],[10.2023713,47.3288021],[10.2024771,47.3288652],[10.2027275,47.3289257],[10.2028274,47.3289602],[10.2030849,47.3290115],[10.2031382,47.32909],[10.2031858,47.3291294],[10.203288,47.3291411],[10.2033412,47.3291612],[10.203555,47.329268],[10.203655,47.3293002],[10.2037701,47.3293886],[10.2038964,47.3295035],[10.2040222,47.3295748],[10.2040905,47.3296569],[10.2041569,47.3296863],[10.2044133,47.3297148],[10.2045191,47.3297792],[10.2045774,47.3297948],[10.204688,47.3298054],[10.2047578,47.3298359],[10.2048129,47.3299076],[10.2048623,47.3299494],[10.2049897,47.3300209],[10.2050901,47.3300952],[10.2052538,47.33019],[10.2053272,47.3302092],[10.2053471,47.3302267],[10.205414,47.330295],[10.2054866,47.3303394],[10.2055606,47.3303692],[10.2057478,47.3304445],[10.2057656,47.3305294],[10.205838,47.3306469],[10.2060286,47.3308667],[10.2063307,47.3311896],[10.2065288,47.3313179],[10.2065819,47.3313425],[10.2066469,47.3314178],[10.2066599,47.3315013],[10.2068228,47.3315664],[10.2069859,47.3317434],[10.2070207,47.3318239],[10.2070761,47.331891],[10.207107,47.3319885],[10.2072319,47.3320896],[10.2073093,47.3322118],[10.2074173,47.3323161],[10.2075922,47.3326808],[10.2075842,47.3330305],[10.2076021,47.3330593],[10.2075949,47.3330786],[10.2074938,47.3332042],[10.2074739,47.3332634],[10.2074969,47.3335554],[10.2075038,47.3336422],[10.2075589,47.3339036],[10.2075587,47.3339709],[10.2075414,47.3340485],[10.2075507,47.3340784],[10.2076086,47.3341156],[10.2076425,47.3341641],[10.2076441,47.3342282],[10.2076253,47.3343022],[10.2075886,47.334663],[10.2076081,47.3346827],[10.2076714,47.3347053],[10.2077203,47.3347595],[10.2076303,47.3347951],[10.2075993,47.3348266],[10.2076029,47.3349353],[10.2075853,47.3349624],[10.2075016,47.3350127],[10.2074578,47.3350215],[10.2073838,47.3350239],[10.2072995,47.3350948],[10.2072882,47.3351392],[10.207288,47.3352111],[10.2072811,47.3352276],[10.2072591,47.3352806],[10.2071827,47.335371],[10.20706,47.335558],[10.2070159,47.3355712],[10.2069569,47.3355727],[10.2068992,47.3355994],[10.2068557,47.3356503],[10.2067403,47.3358527],[10.2058811,47.3361756],[10.2058662,47.3361812],[10.2051767,47.3364563],[10.2042369,47.3367531],[10.2042995,47.3368477],[10.2045228,47.3371847],[10.2047358,47.3375063],[10.2047882,47.337585],[10.2051111,47.3380695],[10.2053962,47.3384974],[10.2056614,47.3388953],[10.2066672,47.3397864],[10.2068369,47.3399367],[10.2070983,47.340168],[10.2071263,47.3401928],[10.2078785,47.3408558],[10.208589,47.3414708],[10.209397,47.3421685],[10.2097955,47.3429514],[10.2110208,47.3437512],[10.211277,47.3439113],[10.2117699,47.3442185],[10.2125702,47.3451725],[10.212655,47.3452518],[10.2127268,47.3453947],[10.2128668,47.3456141],[10.2129458,47.3456805],[10.2129565,47.3457138],[10.2129579,47.3458455],[10.2129723,47.3458767],[10.2132219,47.3461502],[10.2132677,47.3462493],[10.2132917,47.3464168],[10.2132528,47.3465411],[10.2132477,47.3465994],[10.2132657,47.3466776],[10.2132906,47.3467156],[10.2134529,47.3468392],[10.2135707,47.3469004],[10.2138519,47.3470106],[10.2140894,47.3471798],[10.2143248,47.3473593],[10.2144639,47.3474379],[10.2146014,47.3474971],[10.2147795,47.3478396],[10.2150171,47.3480706],[10.2153802,47.3482693],[10.2158513,47.348371],[10.2161269,47.3487142],[10.2166827,47.3493434],[10.2171047,47.3498849],[10.217428,47.3503552],[10.2175415,47.3505483],[10.217576,47.3506069],[10.2174722,47.3506387],[10.2174123,47.3506699],[10.2173859,47.3507177],[10.2173287,47.3508966],[10.2172808,47.3509853],[10.2172161,47.3510715],[10.2172015,47.3511114],[10.2172121,47.3511481],[10.2172591,47.3512198],[10.2172595,47.3512668],[10.2171949,47.3514055],[10.2171799,47.3514592],[10.2171921,47.351504],[10.2172389,47.3515755],[10.2172304,47.3516338],[10.2171962,47.3517216],[10.2170841,47.3518531],[10.2170081,47.3524839],[10.2169866,47.3527091],[10.216946,47.3528975],[10.2168645,47.3531038],[10.2168484,47.3532603],[10.2168611,47.3533465],[10.2167814,47.3536648],[10.2167888,47.3537003],[10.2168278,47.3538646],[10.2168211,47.3539297],[10.2167827,47.3540778],[10.2169885,47.3543552],[10.2175343,47.3548221],[10.2177812,47.3550491],[10.217929,47.3552111],[10.2179857,47.3552863],[10.2180829,47.355362],[10.2183047,47.3554933],[10.2183602,47.3555489],[10.2184082,47.3555782],[10.2185181,47.3556232],[10.2186352,47.3556901],[10.2187423,47.3557224],[10.2188006,47.3557426],[10.2188485,47.3557743],[10.2189301,47.3558589],[10.2190503,47.3559568],[10.219257,47.3561002],[10.2199068,47.3563835],[10.2204853,47.3566141],[10.2209404,47.3567962],[10.2218182,47.3571097],[10.2222416,47.3572532],[10.2226867,47.3574034],[10.2228849,47.3576099],[10.2230743,47.3577769],[10.223282,47.357952],[10.2237606,47.3582557],[10.2241209,47.3585229],[10.2246177,47.3588232],[10.2243151,47.3594129],[10.224409,47.3596431],[10.2246414,47.3602144],[10.2246438,47.3604175],[10.2246832,47.3605232],[10.2247419,47.3606703],[10.2247736,47.3607497],[10.2247733,47.3607691],[10.2247425,47.3608918],[10.2252752,47.3615744],[10.225514,47.3617899],[10.2258544,47.3621781],[10.2260325,47.3623277],[10.2261384,47.362393],[10.2266105,47.3625865],[10.2275952,47.362926],[10.2281865,47.3631967],[10.2285783,47.3633451],[10.2288147,47.3633765],[10.2289789,47.3633983],[10.2293228,47.364519],[10.2294885,47.36506],[10.2295119,47.3654256],[10.2292504,47.3654762],[10.2292244,47.3654987],[10.2291751,47.3658063],[10.2291616,47.3658911],[10.2291664,47.3660512],[10.2291766,47.3660716],[10.2292123,47.3661423],[10.2292827,47.3662588],[10.2293446,47.3663215],[10.2294306,47.3663686],[10.2294652,47.3664456],[10.2294943,47.3664804],[10.2295256,47.3665071],[10.229662,47.3665525],[10.2297625,47.3666173],[10.2301435,47.3668627],[10.2301041,47.3669912],[10.2301368,47.3670215],[10.2303001,47.3671737],[10.2303255,47.3672232],[10.2303242,47.3673159],[10.2303358,47.3673709],[10.2303727,47.3674309],[10.2304623,47.3675225],[10.2305333,47.3676173],[10.2305891,47.3677188],[10.2306324,47.3678349],[10.2306723,47.3679555],[10.2306783,47.3680345],[10.2306862,47.3680553],[10.2306984,47.3680874],[10.2307408,47.3681281],[10.2308415,47.3681958],[10.2309423,47.3682548],[10.2309866,47.3683398],[10.2310677,47.3683669],[10.2311299,47.3684148],[10.23119,47.3684526],[10.2313289,47.3685313],[10.2314508,47.3686056],[10.2315301,47.3686565],[10.2318389,47.3687914],[10.2321053,47.3688776],[10.2323999,47.3689312],[10.232589,47.3691763],[10.232732,47.3693305],[10.2328632,47.3694387],[10.2329811,47.3695388],[10.2334704,47.3698395],[10.2338503,47.370041],[10.234023,47.3701705],[10.2342518,47.3703316],[10.2345472,47.3705132],[10.2347823,47.3706478],[10.2348387,47.3707445],[10.23494,47.3709179],[10.2350788,47.3711597],[10.2352547,47.3713937],[10.2354657,47.3716381],[10.2356798,47.3718604],[10.2358969,47.372048],[10.2360739,47.3722004],[10.23631,47.3723422],[10.236393,47.3724418],[10.2366269,47.3728653],[10.2368835,47.3732005],[10.2371623,47.3735651],[10.2370152,47.3736543],[10.2356055,47.3759447],[10.2354775,47.3761526],[10.2349902,47.3765738],[10.2342343,47.3771003],[10.2341894,47.3771314],[10.2328229,47.3779692],[10.2328174,47.3779733],[10.2318897,47.3786714],[10.2316784,47.3789694],[10.2320138,47.3792198],[10.2321494,47.3793797],[10.2322274,47.3795919],[10.2324178,47.3798512],[10.2326251,47.3801334],[10.2332752,47.3805996],[10.2334126,47.3806983],[10.234022,47.3810323],[10.2343195,47.38116],[10.2344968,47.3812518],[10.234945,47.3814841],[10.2352165,47.3815079],[10.2354366,47.3815273],[10.2360261,47.3816978],[10.2362396,47.3818426],[10.2361856,47.3819213],[10.2361016,47.3819635],[10.2360213,47.3820057],[10.2360271,47.3820345],[10.2359034,47.3821092],[10.2358805,47.382149],[10.2358243,47.3821652],[10.2358101,47.382189],[10.2357728,47.3821919],[10.2357075,47.3822378],[10.2356385,47.382238],[10.235617,47.3822811],[10.2355557,47.3823019],[10.235514,47.3823962],[10.2354775,47.3824334],[10.2354361,47.3824648],[10.2353509,47.3824945],[10.2353214,47.3825238],[10.2352861,47.3825232],[10.2352322,47.3825739],[10.2351769,47.3825697],[10.2351557,47.3825991],[10.235105,47.3826029],[10.2350908,47.3826267],[10.2350294,47.3826498],[10.2350104,47.3826702],[10.2350041,47.3827107],[10.2349993,47.382742],[10.2349935,47.3827785],[10.2349576,47.3827952],[10.2349431,47.3828315],[10.2348755,47.3828373],[10.2348692,47.3828784],[10.2348294,47.3829064],[10.2347961,47.3829494],[10.2347804,47.3829686],[10.2347615,47.3829775],[10.2346995,47.3829709],[10.234655,47.3830422],[10.2345989,47.3830654],[10.2345384,47.3831137],[10.2344958,47.383128],[10.2343754,47.3831582],[10.2343548,47.3831717],[10.2343482,47.3832184],[10.2342753,47.3832356],[10.2342392,47.3832591],[10.2341909,47.3832961],[10.234161,47.3833357],[10.2341012,47.383416],[10.2340785,47.383442],[10.2339818,47.3835161],[10.2339258,47.383585],[10.2338962,47.3836131],[10.2338141,47.3836577],[10.233783,47.3836824],[10.2337312,47.3837754],[10.2336715,47.3837985],[10.2336457,47.3838187],[10.2336143,47.383856],[10.2335931,47.3838865],[10.2335718,47.383916],[10.2335655,47.3839536],[10.2335714,47.384036],[10.2335328,47.3841383],[10.2335794,47.3842088],[10.2335749,47.3842453],[10.2335564,47.3842999],[10.2335031,47.3843838],[10.2334457,47.3844996],[10.2333752,47.3845443],[10.2333389,47.3845712],[10.2333041,47.3846073],[10.2332755,47.3846616],[10.2332478,47.3846852],[10.2332153,47.3846996],[10.2331848,47.3847062],[10.2331139,47.3847142],[10.2330669,47.3847569],[10.2329954,47.3847833],[10.2329668,47.3848379],[10.232811,47.3848641],[10.2327359,47.3848984],[10.232561,47.3849519],[10.2325285,47.3849674],[10.2324958,47.3849864],[10.2324023,47.3850685],[10.2322608,47.3850733],[10.2322183,47.3850852],[10.2321842,47.3851008],[10.2321101,47.3851523],[10.2320674,47.3851688],[10.2319807,47.385195],[10.2319415,47.3852116],[10.2318987,47.3852372],[10.2318709,47.3852665],[10.2318202,47.3853218],[10.2315561,47.3854768],[10.2315009,47.3855664],[10.231435,47.3856282],[10.2313358,47.385676],[10.2313091,47.3857225],[10.2312843,47.3857621],[10.2312426,47.3858027],[10.2311892,47.3858431],[10.2310387,47.3859164],[10.2309739,47.3859955],[10.2308829,47.3860478],[10.2308642,47.3860579],[10.2308415,47.3860816],[10.2308109,47.386144],[10.2307492,47.3861796],[10.2307312,47.3862663],[10.2305123,47.3865925],[10.2304819,47.3866376],[10.2303184,47.3867508],[10.2302926,47.3867732],[10.2302798,47.3868004],[10.2302185,47.3869265],[10.2301537,47.3869615],[10.2300987,47.3869911],[10.2300425,47.3870657],[10.2299834,47.3871069],[10.2299477,47.3871317],[10.2299869,47.3871723],[10.2299948,47.3871874],[10.2299991,47.3872091],[10.2299683,47.3872796],[10.2300084,47.3873408],[10.2299733,47.3874408],[10.2299259,47.3876048],[10.229978,47.3876605],[10.2298444,47.3876814],[10.2298662,47.3877343],[10.2298032,47.3878088],[10.2298377,47.3878379],[10.2298439,47.387854],[10.229845,47.3878735],[10.2298391,47.3878986],[10.2298113,47.3879279],[10.229782,47.387948],[10.2297255,47.387977],[10.2296522,47.3879999],[10.2295355,47.3880222],[10.2295013,47.3880388],[10.2294754,47.3880567],[10.2294663,47.3880817],[10.2294558,47.388149],[10.2294497,47.3881799],[10.229432,47.3882082],[10.2293994,47.3882259],[10.2293115,47.3882395],[10.2292688,47.3882526],[10.2292465,47.3882672],[10.2292394,47.3882819],[10.2292142,47.3883308],[10.2292036,47.3883432],[10.2291849,47.3883521],[10.229075,47.3883653],[10.2290508,47.3883866],[10.2290237,47.3883942],[10.2289987,47.3883859],[10.2289686,47.3883797],[10.2289331,47.3883838],[10.2289074,47.3883959],[10.2288743,47.3884309],[10.2288358,47.3884235],[10.228797,47.3884241],[10.2287633,47.3884281],[10.2287292,47.3884379],[10.228691,47.3884796],[10.2286098,47.3884876],[10.2285667,47.3885212],[10.2283332,47.388559],[10.2281372,47.3885322],[10.2280629,47.3884795],[10.2280225,47.3884836],[10.2279693,47.3884634],[10.2278999,47.3885287],[10.2276947,47.3885233],[10.2276434,47.3885466],[10.2276041,47.3885643],[10.2275651,47.388574],[10.2274305,47.3885721],[10.2273932,47.3885783],[10.2272846,47.3886568],[10.2271365,47.3887598],[10.2271437,47.3888022],[10.2271345,47.3888226],[10.2271203,47.3888488],[10.2270884,47.3888701],[10.227051,47.388895],[10.2269587,47.3888464],[10.2268945,47.388731],[10.2268364,47.3886704],[10.226834,47.3886109],[10.2267835,47.3885289],[10.2267189,47.3884237],[10.226658,47.3883483],[10.2266322,47.3883215],[10.2265692,47.3882985],[10.2264996,47.3881898],[10.2264713,47.3881013],[10.2264567,47.3879297],[10.2264617,47.3878486],[10.2264493,47.3877857],[10.2263963,47.3877228],[10.2263398,47.3876692],[10.2262459,47.3875749],[10.2261571,47.3874863],[10.2259927,47.3874282],[10.2258053,47.3873173],[10.2255523,47.3872449],[10.2253256,47.3872268],[10.2250525,47.3872305],[10.2249072,47.3872391],[10.2247472,47.3871984],[10.224535,47.3871176],[10.2243691,47.3870561],[10.2242068,47.3869513],[10.2239975,47.3867742],[10.2237608,47.3865958],[10.2236279,47.3865076],[10.2234376,47.3864284],[10.2232007,47.3863313],[10.2229828,47.3862242],[10.2227727,47.3860543],[10.2226734,47.3859724],[10.2226229,47.385888],[10.222553,47.3857552],[10.2223907,47.3855669],[10.2222034,47.3853748],[10.2220619,47.3852543],[10.2218524,47.3850308],[10.2216995,47.3848588],[10.2215312,47.3846978],[10.2213019,47.3845789],[10.2211122,47.384445],[10.2209881,47.3843946],[10.2206498,47.3843068],[10.2204625,47.3842701],[10.2202915,47.3842095],[10.2201335,47.3841253],[10.2199862,47.3840218],[10.2198649,47.3839406],[10.2197452,47.3839029],[10.219542,47.3837309],[10.2194385,47.3835872],[10.2193724,47.3834339],[10.2193327,47.3832618],[10.2193001,47.3830772],[10.219202,47.3828867],[10.2190296,47.3827039],[10.2187984,47.3825944],[10.2185199,47.382446],[10.2182676,47.3823565],[10.2180239,47.3822992],[10.2178632,47.3822766],[10.2175912,47.3822175],[10.2174165,47.3821615],[10.2172527,47.382132],[10.2170541,47.3821292],[10.2167829,47.382165],[10.2165817,47.3822205],[10.2164605,47.3822603],[10.2163221,47.3822667],[10.2160959,47.3822372],[10.2151096,47.3820509],[10.2149178,47.3820083],[10.2148097,47.3819742],[10.2146108,47.3818948],[10.2144589,47.3817421],[10.2143781,47.381664],[10.2142399,47.3815483],[10.2141388,47.3813874],[10.2140265,47.3812926],[10.2125912,47.3803897],[10.2125015,47.3804437],[10.2124408,47.3804804],[10.2124364,47.3805431],[10.2124133,47.3806111],[10.21241,47.3806876],[10.2123454,47.3808211],[10.2122612,47.3810171],[10.2122317,47.3810394],[10.2121086,47.3810816],[10.2119574,47.3811127],[10.2118499,47.3811438],[10.2117355,47.3811804],[10.2116981,47.3812155],[10.2116213,47.3812879],[10.211461,47.3813772],[10.2113324,47.3813906],[10.2111458,47.3814601],[10.2110044,47.3814973],[10.2108892,47.3815932],[10.2107725,47.3816001],[10.2106309,47.3816853],[10.2106186,47.3817342],[10.210529,47.3817827],[10.2104656,47.3817642],[10.2102983,47.3817404],[10.210185,47.3817519],[10.210102,47.3817606],[10.2100107,47.3817678],[10.2099678,47.3817842],[10.2099316,47.3818052],[10.2098801,47.3818682],[10.209735,47.3819521],[10.2097093,47.3820041],[10.2095887,47.3820646],[10.2095547,47.382153],[10.2095014,47.3822159],[10.2094336,47.3822637],[10.2093864,47.3823051],[10.2093175,47.3824191],[10.209287,47.3825007],[10.2093134,47.3825572],[10.2092905,47.3825807],[10.2092541,47.3826017],[10.2092045,47.3826213],[10.2091334,47.3826279],[10.2090325,47.3826225],[10.2088816,47.3826092],[10.2088396,47.3826084],[10.2087984,47.3826213],[10.2087467,47.3826535],[10.2086924,47.3827003],[10.20862,47.3828199],[10.208592,47.3828434],[10.2084858,47.3828836],[10.208345,47.3829448],[10.2080995,47.3829731],[10.2080042,47.3829598],[10.2078492,47.3829967],[10.2076767,47.3830528],[10.2073433,47.3831273],[10.2072298,47.3831433],[10.2071891,47.3831859],[10.2071038,47.3832139],[10.206915,47.3832547],[10.2068272,47.3832199],[10.2066397,47.383191],[10.2065848,47.3831762],[10.2064329,47.3831036],[10.2063583,47.3831147],[10.2062735,47.3830867],[10.2061999,47.3831173],[10.2059806,47.3830856],[10.2058464,47.3831092],[10.2056949,47.383104],[10.2055546,47.3830772],[10.2054881,47.3830599],[10.205433,47.3830451],[10.2053922,47.3830168],[10.2053528,47.3830023],[10.2053075,47.3829854],[10.2052359,47.3829658],[10.2051689,47.3829598],[10.2050995,47.3829665],[10.2049412,47.3829518],[10.2049324,47.3829335],[10.2048107,47.3829014],[10.2044891,47.382782],[10.2044467,47.3827868],[10.2043797,47.3828209],[10.2043092,47.3828915],[10.2042431,47.3829782],[10.2042086,47.3829992],[10.2041598,47.3829971],[10.2040983,47.3829787],[10.2039274,47.3829171],[10.2037138,47.3828695],[10.2036708,47.3828481],[10.2036146,47.382783],[10.2035321,47.3827048],[10.203432,47.3826412],[10.2033327,47.3826015],[10.2032204,47.3826244],[10.2030522,47.38262],[10.202976,47.3826299],[10.2028562,47.3826709],[10.2027025,47.3827205],[10.2025944,47.3828086],[10.2025277,47.3828689],[10.2025058,47.3829496],[10.2024734,47.3829958],[10.2024229,47.3830382],[10.2023694,47.3830657],[10.2023116,47.383076],[10.2022515,47.3830645],[10.2021251,47.3830277],[10.2020631,47.3830469],[10.2020243,47.3830589],[10.2015027,47.3829652],[10.2014237,47.3830002],[10.2013133,47.3830254],[10.2012894,47.3830672],[10.2012621,47.383157],[10.2012559,47.3832996],[10.2012022,47.3833751],[10.2009943,47.3836679],[10.2008756,47.3837227],[10.2007308,47.3837232],[10.2006488,47.3837102],[10.2006026,47.3836888],[10.2005707,47.3836446],[10.2005573,47.3836189],[10.2005147,47.3835374],[10.2003893,47.3834755],[10.2001668,47.3833569],[10.2000489,47.3832803],[10.1998763,47.3833352],[10.1997436,47.3834068],[10.1996517,47.3834712],[10.1996184,47.3835357],[10.1995964,47.3835856],[10.199622,47.3836282],[10.1996729,47.3837249],[10.1996709,47.3837979],[10.1996697,47.3838333],[10.1996697,47.3839488],[10.1995973,47.3840539],[10.1994902,47.3841495],[10.1993923,47.3841561],[10.1993049,47.3841481],[10.1992003,47.3841546],[10.1988971,47.3843229],[10.1988685,47.384382],[10.1988725,47.3844699],[10.1988911,47.3845239],[10.1989118,47.384563],[10.1989775,47.3846199],[10.1989651,47.3846962],[10.199047,47.3847727],[10.1990737,47.3848348],[10.1990721,47.3848884],[10.199052,47.3849418],[10.1989405,47.3850099],[10.1988884,47.3850263],[10.1987738,47.3850624],[10.198643,47.3850469],[10.1985834,47.3850667],[10.1985442,47.3850833],[10.198491,47.3851145],[10.1984185,47.3851204],[10.1982684,47.3851263],[10.1981517,47.3851452],[10.1980515,47.3851724],[10.1979196,47.3852425],[10.1978607,47.3852954],[10.1978656,47.3853594],[10.1978539,47.3854072],[10.1978277,47.3854467],[10.1977825,47.3854873],[10.1975161,47.3856138],[10.1974578,47.3856473],[10.1973323,47.38573],[10.197204,47.3857398],[10.1971631,47.3857609],[10.1971231,47.3857991],[10.1971104,47.3858332],[10.1971431,47.3860324],[10.1971509,47.3861125],[10.1971716,47.3861482],[10.1972072,47.3861943],[10.197194,47.3862398],[10.1971301,47.3862903],[10.1970566,47.3863315],[10.1969876,47.3863866],[10.1969354,47.3864384],[10.1968962,47.3865132],[10.1968497,47.386604],[10.1966921,47.3866897],[10.1966489,47.3867234],[10.1965972,47.3867672],[10.1965373,47.3868497],[10.1964535,47.3868988],[10.196274,47.3869843],[10.1962505,47.38704],[10.1961787,47.3870755],[10.1961103,47.3871613],[10.1960869,47.3872079],[10.1960815,47.3872786],[10.1959831,47.3874679],[10.1959176,47.3875767],[10.1958959,47.3876826],[10.1958132,47.387799],[10.1958352,47.3878531],[10.1957692,47.3879206],[10.1957442,47.3879649],[10.1956928,47.3880487],[10.1956667,47.388078],[10.1956188,47.3880979],[10.1955342,47.3881161],[10.1954291,47.3881375],[10.1953808,47.3881722],[10.1953235,47.3882331],[10.195279,47.3883113],[10.1952243,47.3883939],[10.195152,47.3885014],[10.195151,47.3885368],[10.19516,47.3885723],[10.1951991,47.3886151],[10.1952009,47.3886667],[10.1951807,47.3887234],[10.1951395,47.3888051],[10.1951101,47.3888868],[10.1950962,47.3889563],[10.1950965,47.3889998],[10.1951445,47.3890872],[10.1951948,47.3891473],[10.1952067,47.3892011],[10.1951912,47.3892637],[10.1951377,47.3893143],[10.1950843,47.3893456],[10.1949779,47.3893613],[10.1949021,47.3893614],[10.1948217,47.3893454],[10.1947454,47.3893603],[10.19464,47.3893383],[10.1945939,47.3893608],[10.1945648,47.389375],[10.1944601,47.389385],[10.1944032,47.3894264],[10.1942897,47.3894465],[10.1942305,47.3894538],[10.1941543,47.389471],[10.1940489,47.3893907],[10.1940071,47.3893786],[10.1939548,47.3893837],[10.1939209,47.3893923],[10.1938691,47.3894339],[10.1937707,47.3894577],[10.1936245,47.3894442],[10.1933231,47.3895006],[10.1930682,47.3894639],[10.1928683,47.3895068],[10.1927955,47.3895138],[10.1927166,47.3895081],[10.192663,47.3894959],[10.1925844,47.3894801],[10.1924995,47.389448],[10.1924363,47.3894232],[10.192371,47.3894075],[10.1923077,47.3893861],[10.1921636,47.3893589],[10.1920493,47.3893561],[10.192022,47.389366],[10.191969,47.3893916],[10.1919113,47.3894045],[10.1917796,47.3894746],[10.1916767,47.3895337],[10.1915501,47.3895993],[10.1914651,47.3896222],[10.1912668,47.3896651],[10.191225,47.3897102],[10.1910292,47.3897772],[10.1909658,47.3897615],[10.1908795,47.3897214],[10.1907411,47.3896772],[10.1907184,47.3896438],[10.1906896,47.3895931],[10.1906369,47.3895536],[10.190587,47.3895323],[10.1904744,47.3895262],[10.1903277,47.3894785],[10.1902171,47.3894598],[10.1901079,47.3894514],[10.1900218,47.3894582],[10.1899641,47.3894711],[10.1899065,47.3894852],[10.1898551,47.3895095],[10.1897208,47.3894997],[10.1895554,47.3895111],[10.189378,47.3895248],[10.1891683,47.3895549],[10.1890118,47.3896579],[10.1888706,47.3897049],[10.1887056,47.3897575],[10.1884871,47.3898047],[10.188233,47.3898537],[10.1881617,47.3898699],[10.1879452,47.3899],[10.1878365,47.3899327],[10.1877096,47.3899526],[10.1876426,47.389994],[10.1875596,47.3900076],[10.1874428,47.3900312],[10.187388,47.390003],[10.1873246,47.3899792],[10.1872759,47.3899763],[10.1872167,47.3899869],[10.1871673,47.3900056],[10.1871191,47.3900347],[10.1870778,47.3900683],[10.187034,47.3901249],[10.186961,47.3901444],[10.1867981,47.3901821],[10.1867149,47.3902598],[10.1866671,47.3902832],[10.1866158,47.3903075],[10.1865564,47.3903249],[10.1864278,47.3903402],[10.1863569,47.390401],[10.1862249,47.3904242],[10.1860149,47.3905161],[10.1859253,47.3905275],[10.185787,47.390541],[10.1857733,47.3905424],[10.1857429,47.3905498],[10.1856991,47.3905604],[10.1856527,47.3905716],[10.1855661,47.3906013],[10.1855136,47.3906119],[10.1854679,47.3906158],[10.1854481,47.3906589],[10.1853554,47.39066],[10.1852497,47.3907008],[10.1851915,47.3907376],[10.1851205,47.3907949],[10.18493,47.3909144],[10.1848378,47.3909554],[10.1845588,47.3911012],[10.184487,47.3911937],[10.184375,47.3912186],[10.1842911,47.3912653],[10.1841505,47.3912896],[10.1840503,47.3913179],[10.1839532,47.3913576],[10.1838741,47.3914103],[10.1838357,47.3914531],[10.1838028,47.391487],[10.183676,47.3915492],[10.1836329,47.3915885],[10.1835911,47.3916325],[10.1835655,47.3916446],[10.1834788,47.3916697],[10.1834614,47.3917426],[10.1834398,47.3917868],[10.1833967,47.3918262],[10.1833556,47.391845],[10.1833081,47.3918535],[10.1832056,47.3918452],[10.1831635,47.3918503],[10.1831422,47.3918831],[10.1831354,47.391939],[10.1831207,47.3919778],[10.1830864,47.3919966],[10.1830428,47.3919938],[10.1829506,47.3919787],[10.1828746,47.3920941],[10.1824852,47.3921115],[10.1824035,47.3921892],[10.1823608,47.3922215],[10.1823501,47.3922296],[10.1822431,47.3922567],[10.1821311,47.392342],[10.1820107,47.3923688],[10.1819437,47.3924124],[10.181849,47.3924258],[10.1817655,47.3922757],[10.1817147,47.3921797],[10.1814828,47.3914369],[10.1814102,47.3905764],[10.181402,47.3904783],[10.1813857,47.389859],[10.1815362,47.3891819],[10.1815729,47.3890166],[10.1817309,47.3885205],[10.1817788,47.3883694],[10.1820149,47.3883042],[10.1820469,47.3883058],[10.1820849,47.3883269],[10.1821232,47.3883446],[10.1821751,47.3883556],[10.1822408,47.3883554],[10.1822932,47.3883458],[10.1823408,47.3883317],[10.1825236,47.3882463],[10.1825631,47.3881634],[10.1826351,47.3881233],[10.1827194,47.3880674],[10.1822085,47.3877761],[10.1813043,47.3872516],[10.180823,47.387049],[10.1786367,47.3861292],[10.1773302,47.3855925],[10.1772193,47.385547],[10.1765361,47.3852653],[10.1748417,47.3854866],[10.172909,47.3857338],[10.1723922,47.3858016],[10.1714545,47.3858071],[10.1705386,47.3858171],[10.1693975,47.3858299],[10.1693823,47.3856444],[10.1693663,47.3854315],[10.1693205,47.3848284],[10.1691887,47.3830888],[10.1691564,47.3826626],[10.1690998,47.3819205],[10.169097,47.3818834],[10.1690555,47.381341],[10.169049,47.3812579],[10.1690163,47.3808061],[10.1690279,47.3800195],[10.1690348,47.3787739],[10.1690383,47.3782778],[10.1690412,47.3778763],[10.1690465,47.3773643],[10.1690466,47.377327],[10.1690477,47.3763904],[10.1690324,47.3760692],[10.1689852,47.375086],[10.1690919,47.374425],[10.1692142,47.3736426],[10.169305,47.3730662],[10.1693785,47.3725982],[10.1695294,47.3716272],[10.1695804,47.3712997],[10.1689056,47.3707898],[10.1686846,47.3706226],[10.1684595,47.3704526],[10.1676198,47.3699399],[10.1668525,47.3694717],[10.1658749,47.3688749],[10.1655085,47.3688105],[10.1647125,47.3686708],[10.1639713,47.3685648],[10.1634162,47.3685073],[10.1620286,47.3683638],[10.1598233,47.3681359],[10.1584203,47.367991],[10.1568885,47.3678323],[10.1566712,47.3678098],[10.1537652,47.3675091],[10.1522074,47.3673481],[10.1498367,47.3671027],[10.1471949,47.3671262],[10.145118,47.3671463],[10.1426501,47.3671727],[10.1422557,47.3671757],[10.1416871,47.36718],[10.1415323,47.3672093],[10.1398651,47.3675232],[10.1386859,47.3677425],[10.1379211,47.3678872],[10.1358167,47.3687621],[10.1340604,47.3694923],[10.1315581,47.3705329],[10.1296215,47.3713381],[10.1280318,47.3719988],[10.1256087,47.373006],[10.1242268,47.3735801],[10.1213156,47.374788],[10.1193354,47.375613],[10.1154618,47.3714717],[10.1147897,47.370753],[10.1146738,47.3706291],[10.1128509,47.3686799],[10.1112194,47.366935],[10.1095333,47.3651313],[10.1095183,47.3651154],[10.1094662,47.3650598],[10.1089433,47.3645004],[10.1088578,47.364409],[10.1073611,47.3628081],[10.103502,47.3586798],[10.1021407,47.3572233],[10.099812,47.3547862],[10.0976359,47.3598561],[10.0971407,47.3609741],[10.0943825,47.3673234],[10.0934071,47.3695693],[10.0924184,47.3718431],[10.0923996,47.3718867],[10.0918857,47.373071],[10.0913208,47.3743727],[10.0911871,47.3746807],[10.0911396,47.3747904],[10.0906752,47.3758603],[10.0894784,47.378604],[10.0887216,47.3803534],[10.0887054,47.3803906],[10.0882379,47.3814672],[10.0872078,47.3838395],[10.0866202,47.3851924],[10.0862878,47.3859572],[10.0860013,47.386617],[10.085436,47.3879181],[10.085082,47.3887328],[10.0850258,47.3888619],[10.0846481,47.3897284],[10.0846397,47.3897476],[10.0845923,47.3898565],[10.0837506,47.3917869],[10.0829423,47.3936466],[10.0829131,47.3937086],[10.0828437,47.3938062],[10.0828332,47.3939102],[10.0828662,47.3940191],[10.0829207,47.394229],[10.082944,47.3943219],[10.0830861,47.3945234],[10.0831626,47.3946454],[10.0832248,47.3947227],[10.0834553,47.3948863],[10.0835554,47.3950782],[10.0837398,47.3951911],[10.0838099,47.3954617],[10.0838586,47.3955422],[10.083907,47.3957257],[10.0840147,47.3958022],[10.0840628,47.395916],[10.0841541,47.396053],[10.0842219,47.3961875],[10.0842345,47.3963031],[10.0842322,47.3964243],[10.0842864,47.3964866],[10.084322,47.3965487],[10.0843864,47.3966042],[10.0846622,47.396686],[10.084765,47.3968449],[10.0848292,47.3969026],[10.0849614,47.3970161],[10.0850837,47.3971214],[10.0850597,47.3972195],[10.0850831,47.3973124],[10.0850863,47.3973982],[10.0850699,47.3974586],[10.0850639,47.3975031],[10.0850915,47.3975537],[10.0851379,47.3975829],[10.08521,47.3976006],[10.0852905,47.3976061],[10.085409,47.3975729],[10.0855616,47.3976717],[10.0857386,47.3977365],[10.0857314,47.397837],[10.0857369,47.3979022],[10.0858059,47.3980585],[10.0858151,47.3981031],[10.0858207,47.398157],[10.0858631,47.3982158],[10.0859247,47.3982462],[10.0860907,47.3982718],[10.0861274,47.3982809],[10.0862447,47.3983101],[10.0861905,47.3984855],[10.0862292,47.3986495],[10.0862443,47.3987331],[10.0862046,47.3988596],[10.0861931,47.3989269],[10.0862557,47.3990751],[10.0863227,47.3991882],[10.0863231,47.3991887],[10.0863418,47.3992201],[10.0863067,47.3993696],[10.0862396,47.3995221],[10.0861396,47.3996411],[10.0860047,47.3997289],[10.0858969,47.3997426],[10.0857563,47.3997104],[10.0855483,47.3996786],[10.0852641,47.3996756],[10.0851394,47.3996869],[10.0850176,47.3997246],[10.084832,47.399829],[10.0846067,47.3999868],[10.0841501,47.4005024],[10.0840714,47.400568],[10.0839763,47.4006104],[10.08387,47.4006242],[10.0835956,47.4006374],[10.0832839,47.4006548],[10.0829518,47.4006982],[10.082779,47.4007526],[10.0826339,47.4009352],[10.0825666,47.401018],[10.0823911,47.4012037],[10.0822868,47.4012827],[10.0817144,47.4013867],[10.0816502,47.4014019],[10.0816086,47.4014563],[10.0815853,47.4016883],[10.0815881,47.4017947],[10.0815494,47.4019521],[10.0814689,47.4020244],[10.0812521,47.4021767],[10.0810932,47.4022939],[10.0809683,47.4024001],[10.0809195,47.4024774],[10.0808945,47.4025492],[10.0808899,47.4027652],[10.0808894,47.402787],[10.0808878,47.4028601],[10.0809313,47.4029554],[10.0809403,47.4029867],[10.0809705,47.4030909],[10.0809304,47.403238],[10.0808824,47.4033643],[10.0808374,47.4034245],[10.0806559,47.4035725],[10.0803321,47.4037726],[10.0801889,47.403865],[10.0800728,47.4039506],[10.0799944,47.4040722],[10.0799045,47.4041925],[10.0797526,47.4042951],[10.0796216,47.4043588],[10.0795302,47.4043866],[10.0791718,47.4043977],[10.0790482,47.4044353],[10.0789487,47.4044423],[10.0788767,47.4044244],[10.0788287,47.4043907],[10.0785987,47.4041266],[10.0784946,47.4040397],[10.0783781,47.4039824],[10.0781969,47.4039589],[10.0780224,47.4039388],[10.0777286,47.4039117],[10.0776198,47.4039609],[10.0775077,47.4040192],[10.0774141,47.4040594],[10.0773161,47.4040813],[10.0771036,47.4041111],[10.0770224,47.4041343],[10.0769645,47.4041611],[10.0768718,47.4042529],[10.0767755,47.4042701],[10.0764233,47.4043797],[10.0761182,47.4044943],[10.0759228,47.4045804],[10.0757765,47.4046647],[10.0756282,47.4047647],[10.0754911,47.4048658],[10.0754165,47.4049576],[10.0754008,47.4050511],[10.0754248,47.4051005],[10.0754504,47.4051569],[10.0754117,47.4052296],[10.0751938,47.4053938],[10.0750832,47.4054428],[10.074975,47.405461],[10.074819,47.4054407],[10.0746545,47.4054239],[10.0745163,47.4054325],[10.0743838,47.4054801],[10.0742646,47.4055381],[10.0741193,47.4056324],[10.0739932,47.4057612],[10.0739679,47.4057815],[10.0739038,47.4058333],[10.0737703,47.4059219],[10.0735985,47.4059987],[10.0735104,47.4060308],[10.0734288,47.4060561],[10.0733326,47.4060675],[10.0731828,47.4060692],[10.0730766,47.406077],[10.0729817,47.4060999],[10.0729149,47.4061494],[10.0727827,47.4063878],[10.0727311,47.406505],[10.0727305,47.4065941],[10.0727197,47.4066945],[10.0726584,47.4067852],[10.0725168,47.4069423],[10.0723949,47.4070324],[10.0722942,47.4070917],[10.072141,47.4071596],[10.072016,47.4071833],[10.0718757,47.4072022],[10.0717815,47.4072032],[10.0712944,47.4073003],[10.0711094,47.4073598],[10.0710081,47.4074386],[10.0709036,47.407514],[10.0708,47.4075538],[10.0707003,47.4075686],[10.0706496,47.4075771],[10.0705783,47.4076026],[10.070482,47.4076848],[10.0704246,47.4077572],[10.0704062,47.4078234],[10.0704128,47.4079],[10.070446,47.4079884],[10.0705317,47.4080569],[10.0706352,47.4081564],[10.0707566,47.408359],[10.0708621,47.4085855],[10.0709374,47.4088093],[10.0709345,47.4089281],[10.0708694,47.4091148],[10.0707493,47.4093374],[10.0706667,47.4094793],[10.0705338,47.4096147],[10.0703869,47.4097045],[10.0702778,47.4097557],[10.0701883,47.4097729],[10.0701209,47.4097709],[10.0700594,47.4097405],[10.0699681,47.4096891],[10.0698378,47.4096498],[10.0696661,47.4096467],[10.0695867,47.4096605],[10.0693272,47.4097409],[10.0691713,47.4097939],[10.0691856,47.4098048],[10.0691993,47.4098151],[10.0692601,47.4098607],[10.0692962,47.4098959],[10.0693054,47.409953],[10.0693077,47.4099941],[10.069283,47.410024],[10.0691863,47.4100933],[10.0691647,47.4101118],[10.0691566,47.4101278],[10.0691405,47.410176],[10.0692725,47.410207],[10.0693166,47.4102318],[10.0694786,47.4103369],[10.0695515,47.4103649],[10.0696075,47.4103783],[10.0696546,47.4103813],[10.0697018,47.4103741],[10.0697923,47.410346],[10.0698325,47.4103296],[10.0699269,47.4103324],[10.0702291,47.4102592],[10.0702714,47.4102658],[10.0703031,47.4102473],[10.0703415,47.4102172],[10.0704361,47.4101296],[10.0705016,47.4101132],[10.0705691,47.410115],[10.0706333,47.4101304],[10.0706826,47.4101472],[10.0707134,47.4101744],[10.0707941,47.4102686],[10.070825,47.4102993],[10.0708609,47.4103311],[10.0710426,47.4104063],[10.0710829,47.4104212],[10.0710849,47.4104219],[10.0711173,47.4104447],[10.0711517,47.4104787],[10.0712832,47.4106915],[10.0713674,47.4107903],[10.0714505,47.4108171],[10.0715182,47.4108326],[10.0715538,47.4108506],[10.0715796,47.4108721],[10.0718293,47.4110909],[10.0718902,47.411103],[10.0720061,47.4111821],[10.0720966,47.411249],[10.0721615,47.4113103],[10.072193,47.4113729],[10.0722021,47.4114162],[10.0721714,47.4114953],[10.0721049,47.4115518],[10.0720801,47.4115784],[10.072054,47.411638],[10.0720364,47.4116965],[10.0720423,47.4117398],[10.0720615,47.4117831],[10.0720889,47.411815],[10.072118,47.4118444],[10.072129,47.4118878],[10.0721334,47.4119552],[10.0720985,47.4119875],[10.0720306,47.4120578],[10.0719907,47.4120947],[10.0719712,47.4121359],[10.0719755,47.4121988],[10.0719746,47.4122492],[10.0719533,47.412287],[10.071917,47.412332],[10.0718657,47.4123894],[10.0718494,47.4124227],[10.0718464,47.4124536],[10.0719035,47.4126315],[10.0719915,47.4127543],[10.0720901,47.4128051],[10.072109,47.4128358],[10.072163,47.4129463],[10.0722376,47.4130692],[10.0722464,47.4132017],[10.0722694,47.4132541],[10.0723072,47.4133042],[10.0723601,47.4133335],[10.0724109,47.413356],[10.0724651,47.4133728],[10.0725378,47.4133825],[10.0725832,47.4133821],[10.0726456,47.4133794],[10.0727538,47.4133946],[10.0727811,47.4134127],[10.0728035,47.4134433],[10.0728542,47.4135504],[10.0729638,47.4136548],[10.0730208,47.4137401],[10.0731024,47.413784],[10.0731784,47.4137915],[10.0732055,47.4138015],[10.073221,47.4138209],[10.0732198,47.413846],[10.0731985,47.4138782],[10.073187,47.4139035],[10.0731792,47.4139333],[10.0732353,47.4139705],[10.0732988,47.4140273],[10.0733166,47.4140555],[10.0733247,47.4140682],[10.073423,47.4141063],[10.0734284,47.4141257],[10.073438,47.4141896],[10.0735327,47.414317],[10.0735809,47.4143727],[10.0736254,47.4144158],[10.0736748,47.4144463],[10.0740156,47.4145626],[10.0740513,47.4145829],[10.0740822,47.4146113],[10.0741512,47.4147045],[10.07418,47.4147226],[10.0742274,47.4147314],[10.074364,47.414727],[10.0744097,47.414738],[10.0745608,47.4148147],[10.0746881,47.4148548],[10.075062,47.4148359],[10.0751997,47.4147994],[10.075341,47.414779],[10.0754969,47.4147194],[10.0755636,47.4146743],[10.0756004,47.4146684],[10.0756426,47.414668],[10.0757256,47.4146868],[10.075761,47.4146911],[10.075793,47.4146875],[10.0759004,47.4146558],[10.076109,47.4146268],[10.0761408,47.4146105],[10.0761792,47.4145873],[10.0764477,47.414415],[10.0766079,47.4144127],[10.0766274,47.4144708],[10.0766496,47.4144878],[10.0766852,47.414507],[10.0767873,47.4145519],[10.0769153,47.4146549],[10.0770309,47.4147124],[10.0770901,47.4147233],[10.0771452,47.4147893],[10.077174,47.4147982],[10.0772197,47.4148036],[10.0773072,47.4147961],[10.077341,47.4148014],[10.0773597,47.4148174],[10.0773752,47.4148321],[10.0773625,47.4148779],[10.0773694,47.4148904],[10.0774361,47.4149449],[10.077465,47.4149629],[10.0775115,47.4150266],[10.0775958,47.415018],[10.0776359,47.4149981],[10.0776728,47.4149807],[10.0777128,47.4149495],[10.0777592,47.4149138],[10.0780996,47.4148998],[10.078137,47.4149154],[10.0781627,47.4149416],[10.0782036,47.4149642],[10.0782456,47.4149581],[10.0782788,47.4149373],[10.0783222,47.4148968],[10.0783474,47.4148922],[10.0784825,47.4149071],[10.0784854,47.4149079],[10.0785502,47.4149249],[10.0786111,47.4149347],[10.0787057,47.4149409],[10.0788364,47.4150016],[10.0789098,47.4150514],[10.0789525,47.4150819],[10.07897,47.4151252],[10.079079,47.4151964],[10.0791177,47.4152853],[10.0791415,47.4153011],[10.0791887,47.4153053],[10.0792932,47.4152965],[10.0794158,47.4152716],[10.0796222,47.4152139],[10.079854,47.4151528],[10.0799513,47.415127],[10.0800383,47.4150816],[10.0800753,47.4150745],[10.0801225,47.4150741],[10.0803823,47.4150916],[10.0805505,47.4150674],[10.0806347,47.4150622],[10.0809031,47.4150717],[10.0811105,47.4149716],[10.0811574,47.4149576],[10.0812197,47.414956],[10.0813161,47.4149656],[10.0815849,47.4150149],[10.0817649,47.4149873],[10.0818323,47.414989],[10.0821158,47.4150063],[10.0822121,47.415017],[10.0823678,47.4150433],[10.0825395,47.415034],[10.0828231,47.4150535],[10.0829805,47.414986],[10.0830943,47.4149348],[10.0832883,47.4147402],[10.083491,47.4146608],[10.0835449,47.4146547],[10.083614,47.4146599],[10.0838005,47.4147134],[10.0838393,47.4147177],[10.0840058,47.4146958],[10.0843028,47.4147061],[10.0844789,47.4146567],[10.084516,47.4146507],[10.0845685,47.4146663],[10.0848247,47.4146666],[10.0850876,47.4146543],[10.0852056,47.4145563],[10.0852474,47.4145274],[10.0853046,47.4145166],[10.0853752,47.4145035],[10.0854595,47.4145086],[10.0859745,47.4146579],[10.0862173,47.4148504],[10.0863151,47.4148621],[10.0863976,47.4148512],[10.0865518,47.4147985],[10.0866006,47.4147902],[10.0866613,47.4147874],[10.0868791,47.4148097],[10.0870261,47.4148292],[10.0871295,47.4148616],[10.0872723,47.4149302],[10.0873978,47.4149751],[10.0875219,47.4150347],[10.0877267,47.4150925],[10.0879737,47.4151353],[10.0880077,47.4151487],[10.0880625,47.4151928],[10.0882612,47.4152908],[10.0883569,47.4153586],[10.0884459,47.4154449],[10.0885169,47.4155587],[10.0885602,47.4156212],[10.0888673,47.4157412],[10.0889657,47.4157736],[10.0889965,47.4157996],[10.0890087,47.415827],[10.0889996,47.4158819],[10.0890136,47.4159218],[10.0890548,47.4159592],[10.0891585,47.4160122],[10.0892956,47.416042],[10.089387,47.4160607],[10.0894612,47.416067],[10.0895168,47.4160643],[10.0895791,47.4160558],[10.0897081,47.4160137],[10.089777,47.415996],[10.0898376,47.4159852],[10.0899167,47.4159857],[10.0900195,47.4159872],[10.0901565,47.4159999],[10.0903748,47.4160428],[10.0907267,47.4161236],[10.0909881,47.416221],[10.0911929,47.4162788],[10.0914366,47.4164256],[10.091623,47.4164825],[10.0916654,47.4165039],[10.0917443,47.4165754],[10.0917936,47.4166058],[10.091865,47.416635],[10.0919428,47.4166538],[10.092029,47.4166589],[10.0921839,47.4166543],[10.0922866,47.4166431],[10.092349,47.4166404],[10.092442,47.4166545],[10.0925166,47.416678],[10.0926337,47.4167274],[10.0927784,47.4168052],[10.0929073,47.4168349],[10.0929747,47.4168505],[10.0931213,47.4168493],[10.0932629,47.4168425],[10.0933775,47.4168382],[10.0935481,47.4168575],[10.0936546,47.4168727],[10.0937374,47.4168811],[10.0937951,47.4169105],[10.0939608,47.4170384],[10.0941474,47.4171021],[10.0942002,47.4171303],[10.0942462,47.4171619],[10.0942946,47.4172278],[10.0943531,47.4173018],[10.0944313,47.4174383],[10.0944794,47.4174985],[10.0945516,47.4175711],[10.09466,47.4176046],[10.094721,47.417627],[10.0947862,47.4176837],[10.0948388,47.4177049],[10.0948648,47.4177076],[10.0949772,47.4177188],[10.0951002,47.4177121],[10.0952047,47.4177068],[10.0953605,47.4177455],[10.0954526,47.4177844],[10.0955473,47.4178241],[10.0956756,47.4178841],[10.0957257,47.4180514],[10.0957565,47.4181549],[10.095742,47.4181962],[10.095719,47.4182283],[10.0956858,47.4182515],[10.0956391,47.4182725],[10.0954498,47.4183242],[10.09538,47.4183784],[10.0953404,47.4184199],[10.0953157,47.4184624],[10.0953115,47.4185105],[10.0953317,47.4186008],[10.0953394,47.418659],[10.095335,47.4186968],[10.0952933,47.4188287],[10.0953906,47.4189996],[10.0953404,47.4191098],[10.0953342,47.4191431],[10.0953133,47.4193045],[10.0952481,47.4194228],[10.0952504,47.4194583],[10.0952729,47.4194936],[10.0952987,47.4195267],[10.0953395,47.4195525],[10.0954208,47.4195783],[10.0954581,47.4195941],[10.0954754,47.4196214],[10.0954777,47.4196659],[10.0954633,47.4197119],[10.0954275,47.4197762],[10.0953634,47.4198671],[10.0953488,47.419993],[10.0953184,47.4200871],[10.0953258,47.4201202],[10.0953304,47.4201354],[10.09534,47.420167],[10.0954263,47.4202911],[10.0954544,47.4203549],[10.0956555,47.420405],[10.0957148,47.4204343],[10.0957527,47.4204821],[10.0957771,47.4205334],[10.0957763,47.4205814],[10.0957621,47.4206433],[10.0957647,47.4206844],[10.0957115,47.4207813],[10.095696,47.4208097],[10.0957322,47.4209502],[10.0957024,47.4209846],[10.0956508,47.4210239],[10.0956361,47.4210446],[10.0956244,47.4211443],[10.0955959,47.4212544],[10.0956836,47.421359],[10.0957947,47.4214577],[10.0958522,47.4215716],[10.0958544,47.4216037],[10.0958367,47.4216495],[10.0957772,47.421714],[10.0957725,47.4217369],[10.095723,47.4218883],[10.0957651,47.4219945],[10.0958194,47.4221187],[10.0958577,47.4221837],[10.0958932,47.4222017],[10.0959493,47.4222242],[10.096042,47.4222327],[10.0961096,47.4222597],[10.0961742,47.4222935],[10.0962475,47.422341],[10.0963174,47.4223989],[10.0963704,47.4224419],[10.0964134,47.4224977],[10.0964549,47.4225694],[10.0964933,47.4226424],[10.0965223,47.4226662],[10.0966552,47.4227625],[10.0966792,47.4227875],[10.0966984,47.4228262],[10.0967339,47.4229335],[10.096768,47.4229585],[10.0968483,47.42303],[10.096914,47.4231278],[10.0970518,47.4232126],[10.0971468,47.4233481],[10.0971931,47.4234039],[10.0972639,47.4235097],[10.0973526,47.423573],[10.0974572,47.4236856],[10.0975271,47.42374],[10.0975932,47.4237715],[10.0976542,47.4237905],[10.0977082,47.423797],[10.0978886,47.4238117],[10.0979685,47.4238603],[10.0982501,47.4239864],[10.0984234,47.4241784],[10.0986068,47.4242755],[10.0986275,47.4243028],[10.0986261,47.4243234],[10.0986455,47.4243736],[10.0987778,47.4246232],[10.0988099,47.4246401],[10.0989924,47.4246731],[10.0991456,47.4247693],[10.0993317,47.4248307],[10.0993866,47.4248888],[10.0994749,47.424935],[10.0995449,47.4250037],[10.099646,47.425103],[10.0997581,47.4251572],[10.0998556,47.42524],[10.1000374,47.4253427],[10.1001786,47.4254252],[10.1002194,47.4254558],[10.100375,47.4256926],[10.1004992,47.4258632],[10.100554,47.4259236],[10.1006207,47.4259791],[10.1006902,47.4260152],[10.1007631,47.4260364],[10.1008766,47.4260813],[10.1009293,47.4261106],[10.1009687,47.4261562],[10.1010411,47.4262529],[10.1011267,47.426301],[10.1013129,47.4264019],[10.1018225,47.426678],[10.1023787,47.4269793],[10.1039899,47.4278523],[10.105527,47.4286849],[10.1055856,47.4287167],[10.1055736,47.4287294],[10.1052186,47.4291017],[10.1039688,47.4304125],[10.1038917,47.4304817],[10.1029142,47.4315186],[10.1025625,47.4318877],[10.1022026,47.4322654],[10.1019853,47.4324936],[10.1016281,47.4328684],[10.1013879,47.4331205],[10.1011178,47.4334039],[10.1009609,47.4335686],[10.0989908,47.4356365],[10.0987727,47.4358654],[10.0982019,47.4364672],[10.0978301,47.4368566],[10.0972535,47.4374604],[10.0970832,47.4376387],[10.0968828,47.4378491],[10.0961316,47.4386378],[10.0960842,47.4386873],[10.0960546,47.4387186],[10.0957295,47.4390598],[10.0952196,47.4395946],[10.095018,47.4396763],[10.0949156,47.4398056],[10.0948704,47.4398512],[10.0946939,47.4399794],[10.0946065,47.4400377],[10.0943763,47.4401658],[10.0940755,47.4403019],[10.0939561,47.4403785],[10.0938486,47.4404644],[10.0938185,47.4405386],[10.093812,47.4406599],[10.0938661,47.4407581],[10.0939976,47.4408851],[10.0940414,47.4409469],[10.0940735,47.4410292],[10.0940585,47.4410874],[10.0939897,47.4411526],[10.0938603,47.441211],[10.0937729,47.4412624],[10.0936803,47.4413356],[10.0935814,47.4414443],[10.0935481,47.4415632],[10.0935499,47.4416639],[10.0935637,47.4417987],[10.0934194,47.4419736],[10.0933422,47.4421211],[10.0933105,47.4421818],[10.0933275,47.4423556],[10.0933314,47.4425591],[10.0932509,47.4427592],[10.0931857,47.4429343],[10.0931674,47.4430359],[10.0931577,47.4431949],[10.0931444,47.4433219],[10.0931025,47.4433904],[10.0930336,47.4434922],[10.0929837,47.443706],[10.0929555,47.443937],[10.0929844,47.4441154],[10.0930439,47.4443611],[10.0931789,47.4445899],[10.0932114,47.4448265],[10.09319,47.4450678],[10.0931922,47.4452873],[10.0932177,47.4454439],[10.0932617,47.4455834],[10.0933059,47.4457824],[10.0933163,47.4459436],[10.093303,47.4460099],[10.0932713,47.4461082],[10.0931706,47.4463084],[10.0930751,47.4465187],[10.0930572,47.4468081],[10.0930824,47.4475295],[10.093123,47.4476999],[10.0931838,47.4478496],[10.0932145,47.4480429],[10.09325,47.4481287],[10.0933124,47.4482166],[10.0933833,47.4482647],[10.0934928,47.4483047],[10.0938211,47.4483858],[10.0939407,47.448428],[10.094035,47.4484863],[10.0943248,47.4487036],[10.0945103,47.4488968],[10.0946182,47.449003],[10.0946251,47.4490453],[10.0944643,47.4493827],[10.0944375,47.4494776],[10.0944343,47.4495542],[10.094458,47.4496194],[10.0945575,47.4496993],[10.0948151,47.449752],[10.0949363,47.4497667],[10.0949834,47.4497919],[10.0949969,47.4498377],[10.0949886,47.4498982],[10.0949233,47.4500023],[10.0948662,47.450112],[10.0948024,47.4502014],[10.0945923,47.4503374],[10.0944899,47.4504209],[10.0944396,47.4504907],[10.0944246,47.4505592],[10.0944263,47.4506201],[10.0944293,47.450725],[10.094467,47.450901],[10.0945285,47.4511181],[10.0946357,47.4514026],[10.0946461,47.4514918],[10.0946212,47.4515558],[10.0945523,47.4516382],[10.0942689,47.4518628],[10.0939971,47.4520827],[10.0938077,47.4522569],[10.0936551,47.4524412],[10.0934946,47.4526748],[10.0932897,47.4532181],[10.0932533,47.4533794],[10.0932421,47.4535224],[10.0932196,47.4537852],[10.0932301,47.4538973],[10.0932928,47.4539853],[10.0933743,47.4541566],[10.0933982,47.4542685],[10.0932594,47.4545054],[10.0931874,47.4545765],[10.0930934,47.4546429],[10.0929826,47.4546969],[10.0927239,47.4548059],[10.0926617,47.4548518],[10.092319,47.4554422],[10.0922942,47.4555303],[10.092271,47.455647],[10.0922176,47.4557796],[10.0920184,47.456095],[10.0919467,47.4562468],[10.0918784,47.4564087],[10.091749,47.4566495],[10.091681,47.4567738],[10.091667,47.4568435],[10.0916953,47.4569257],[10.0917032,47.4570228],[10.091728,47.4571245],[10.0917899,47.457248],[10.091909,47.4573875],[10.0919722,47.4575134],[10.091967,47.457575],[10.0919279,47.4576457],[10.0918617,47.4577107],[10.0917516,47.4577961],[10.0916079,47.4578699],[10.0914557,47.4579405],[10.0913693,47.4580099],[10.0912964,47.4580908],[10.091242,47.4581753],[10.0912847,47.4583855],[10.0913651,47.4584941],[10.0914998,47.458563],[10.0915803,47.4586328],[10.0916373,47.4587105],[10.0916603,47.4588501],[10.091638,47.4589276],[10.0915769,47.4590074],[10.0911584,47.4593286],[10.0911254,47.4593473],[10.0910383,47.4593968],[10.0908779,47.4594399],[10.0906652,47.4594679],[10.0904276,47.4594229],[10.0902774,47.4594043],[10.0902015,47.4594178],[10.0901253,47.4594712],[10.0900691,47.4595763],[10.0899584,47.4597668],[10.0897803,47.4599627],[10.0896815,47.4601282],[10.0896441,47.4601932],[10.0895487,47.460386],[10.0893142,47.4603763],[10.0891574,47.4603703],[10.0888943,47.4603458],[10.0886634,47.4603098],[10.0885672,47.4602924],[10.0881597,47.4601591],[10.0879998,47.4600822],[10.0879174,47.4600306],[10.0878284,47.4599504],[10.0877275,47.4598635],[10.0876453,47.4597639],[10.0875972,47.4596485],[10.0876299,47.4594966],[10.0877476,47.4592491],[10.0878264,47.4590198],[10.0878289,47.4588576],[10.0877787,47.4587878],[10.0869207,47.4586409],[10.0866389,47.4586574],[10.0857257,47.4590722],[10.0855971,47.4591403],[10.0854553,47.4591743],[10.0852495,47.459167],[10.0851163,47.4591531],[10.0849714,47.4591207],[10.0847912,47.4590678],[10.0846716,47.4590047],[10.0844983,47.4589324],[10.0843468,47.4588578],[10.084177,47.4587558],[10.0840339,47.4586664],[10.0839316,47.4585599],[10.0838411,47.4584445],[10.0837341,47.458266],[10.0836369,47.4581401],[10.0834222,47.4578885],[10.0831671,47.4576492],[10.0830882,47.4575805],[10.0830178,47.4574798],[10.0829561,47.4573575],[10.0828443,47.4567999],[10.0827486,47.4567152],[10.0826948,47.4566489],[10.0826225,47.4566053],[10.0824998,47.4565399],[10.0820896,47.4562695],[10.0817766,47.456094],[10.0815094,47.4558993],[10.081345,47.4557596],[10.0812155,47.4556519],[10.0811366,47.4555901],[10.0809971,47.4554858],[10.0809315,47.4554388],[10.0808406,47.4554044],[10.0805851,47.4553632],[10.0805676,47.4553604],[10.0802371,47.4553539],[10.0799398,47.455389],[10.0799331,47.4553897],[10.0796274,47.4554542],[10.0792594,47.4555253],[10.0790484,47.4555385],[10.0788831,47.4555301],[10.0787415,47.4555092],[10.0785527,47.4554802],[10.0784093,47.4554719],[10.0782912,47.4554922],[10.0781999,47.4555274],[10.0781102,47.4555832],[10.0780186,47.45568],[10.0779067,47.4557893],[10.0777899,47.4558611],[10.077494,47.45597],[10.0772386,47.4561064],[10.0770459,47.4561997],[10.0768735,47.4562518],[10.0767248,47.4562801],[10.0765595,47.4562866],[10.0763436,47.4562848],[10.0761159,47.4562855],[10.0758188,47.45631],[10.0755976,47.4563506],[10.0753733,47.4563523],[10.0750106,47.456324],[10.0747612,47.4562732],[10.0745456,47.4562224],[10.0744313,47.4561491],[10.0742988,47.4560152],[10.0741208,47.4558481],[10.0737626,47.4556474],[10.0736161,47.4556002],[10.0734946,47.4555998],[10.0733546,47.4556156],[10.0732514,47.4556576],[10.0730532,47.455809],[10.0723256,47.4562162],[10.07216,47.4562625],[10.0720537,47.4562795],[10.0719575,47.4562804],[10.0718497,47.4562664],[10.0714811,47.4561012],[10.0711063,47.4558479],[10.07083,47.4557547],[10.0705078,47.4557631],[10.0699906,47.4559503],[10.0700068,47.4559926],[10.0700187,47.4560242],[10.0700687,47.456156],[10.0701863,47.4562488],[10.0702921,47.456337],[10.0703238,47.4564079],[10.0703435,47.4564902],[10.0703244,47.4565952],[10.0702884,47.4567173],[10.070259,47.4568303],[10.0702483,47.4569387],[10.0701987,47.4570687],[10.0703321,47.4573546],[10.0703011,47.4574631],[10.0700238,47.4579055],[10.0697793,47.4582008],[10.069565,47.4584925],[10.069375,47.4587194],[10.0693544,47.4587456],[10.0693181,47.4588148],[10.0690885,47.4592508],[10.069059,47.4593993],[10.0689238,47.4597529],[10.068837,47.459875],[10.0686512,47.4602571],[10.0683862,47.4608778],[10.068218,47.461092],[10.0681486,47.4611535],[10.068057,47.4612264],[10.0679517,47.4613495],[10.0678941,47.4613973],[10.067828,47.4614417],[10.0677097,47.4614825],[10.067475,47.4615346],[10.0674242,47.4615562],[10.0672769,47.4616494],[10.0671704,47.4616845],[10.0669507,47.4617434],[10.066809,47.4617568],[10.0666091,47.4617604],[10.0665829,47.4617608],[10.0663382,47.4617808],[10.0662939,47.4618286],[10.0662932,47.4619817],[10.066324,47.4621827],[10.0663047,47.4622177],[10.0661213,47.4625512],[10.0660568,47.4626104],[10.0659689,47.4626467],[10.0658591,47.4626613],[10.0657376,47.4626576],[10.0656771,47.4626494],[10.0655944,47.4626309],[10.0654037,47.462659],[10.0650723,47.4627816],[10.0650131,47.4628203],[10.0649806,47.4628658],[10.0649704,47.4629114],[10.0649493,47.4630508],[10.0649621,47.4631593],[10.0648873,47.4632836],[10.0648158,47.4633862],[10.0647817,47.4634647],[10.0647697,47.4634923],[10.0647261,47.4635628],[10.064681,47.4636357],[10.0637683,47.463862],[10.0634683,47.4639364],[10.0624797,47.4641815],[10.0579921,47.4652941],[10.0571211,47.4655146],[10.05695,47.4655577],[10.0566789,47.4656259],[10.0563562,47.4657071],[10.0544642,47.4661832],[10.0543747,47.4662333],[10.0543272,47.4662651],[10.0541072,47.4663336],[10.0540866,47.466362],[10.0540591,47.4663962],[10.0540481,47.4664636],[10.0539259,47.4665303],[10.0538695,47.466593],[10.0537386,47.4666906],[10.0536212,47.4667677],[10.0534684,47.4668571],[10.053467,47.4669694],[10.0535386,47.4674116],[10.0535127,47.4674583],[10.0533225,47.4676906],[10.0532483,47.4678333],[10.0531201,47.4679721],[10.0530994,47.4679937],[10.0530675,47.468116],[10.0530259,47.468205],[10.0530239,47.4683537],[10.0529848,47.468508],[10.052979,47.4685687],[10.053004,47.4687096],[10.0529809,47.4688505],[10.0529766,47.4688765],[10.0529783,47.4690001],[10.0529198,47.4692241],[10.0528888,47.4692686],[10.0528116,47.4693642],[10.0525168,47.4696234],[10.0522475,47.469728],[10.052129,47.4697525],[10.0520342,47.4697966],[10.0519848,47.4698329],[10.0518925,47.4699467],[10.0518295,47.4699898],[10.0517676,47.4700753],[10.0516631,47.4702119],[10.0516507,47.4702485],[10.0516503,47.4702817],[10.0516913,47.4703666],[10.0516788,47.4707935],[10.0517162,47.4709082],[10.0517209,47.4709369],[10.0516746,47.4709949],[10.0518129,47.4711069],[10.0518629,47.4711472],[10.0519272,47.4712598],[10.0519294,47.4713343],[10.0522848,47.471617],[10.0523634,47.4716644],[10.0525007,47.4717236],[10.052524,47.4717409],[10.0525424,47.4720111],[10.0525519,47.4720535],[10.0526168,47.4721192],[10.0527224,47.4721588],[10.0527507,47.4721853],[10.0528334,47.4723038],[10.0528349,47.4723232],[10.0527967,47.4723985],[10.0527964,47.4724248],[10.0528994,47.4725319],[10.0529552,47.4726399],[10.0530658,47.4726944],[10.053104,47.472745],[10.0531653,47.4728187],[10.0532162,47.4729208],[10.0532453,47.4730126],[10.0532409,47.4730652],[10.0532292,47.4732082],[10.0531826,47.473288],[10.0534383,47.4734465],[10.0534633,47.4734718],[10.0536238,47.4736938],[10.0537757,47.4737966],[10.053846,47.4738441],[10.0538526,47.4738486],[10.0539327,47.4738768],[10.054183,47.4739651],[10.0543297,47.473966],[10.0543783,47.4739858],[10.0544117,47.4740055],[10.0545474,47.4741941],[10.0545365,47.4742421],[10.0546287,47.4744098],[10.0545702,47.474509],[10.0545141,47.4745441],[10.0544776,47.4746263],[10.0545631,47.4747883],[10.0545611,47.4748077],[10.0545543,47.4748237],[10.0543798,47.4748901],[10.0541492,47.4752526],[10.0541435,47.4752892],[10.0541414,47.4753224],[10.0541627,47.4753763],[10.0541949,47.475483],[10.0542023,47.475554],[10.0542033,47.4756204],[10.0541787,47.4756878],[10.0541256,47.4758854],[10.0540962,47.4759401],[10.0540618,47.475988],[10.0539544,47.4760961],[10.0538488,47.4761652],[10.0537756,47.4762278],[10.053561,47.4763913],[10.0535053,47.4763988],[10.0534549,47.4763883],[10.0534012,47.4763696],[10.0532794,47.4762887],[10.0531129,47.4762591],[10.0530726,47.4762553],[10.0527832,47.4763394],[10.05266,47.4763465],[10.0525809,47.47647],[10.052574,47.47648],[10.0524253,47.4766967],[10.0523397,47.4768219],[10.0522939,47.4768887],[10.0519593,47.4773788],[10.0517307,47.4777134],[10.051472,47.4780921],[10.0513275,47.47825],[10.0507912,47.4788362],[10.0500197,47.4796791],[10.0497363,47.4799889],[10.0493415,47.4804198],[10.048925,47.4808743],[10.0484268,47.481418],[10.04834,47.4815133],[10.0482417,47.4816211],[10.0481782,47.4816906],[10.0470867,47.482887],[10.0468811,47.4831117],[10.0467089,47.4832997],[10.0464627,47.4835685],[10.0463454,47.4836964],[10.0461295,47.4839323],[10.0458352,47.4842546],[10.0455053,47.4846158],[10.0453787,47.4847546],[10.0452827,47.4848597],[10.0455838,47.485504],[10.046881,47.4856822],[10.0470151,47.4857007],[10.0471605,47.4862565],[10.0470226,47.4864584],[10.0469647,47.4864854],[10.0468782,47.4865075],[10.0467532,47.4865065],[10.0466211,47.4865362],[10.0464519,47.4865543],[10.0462733,47.4866236],[10.0461769,47.4866366],[10.0460136,47.4867073],[10.0457943,47.4868826],[10.045702,47.4870348],[10.0456398,47.4871109],[10.0455791,47.4872006],[10.0455568,47.4872166],[10.0455159,47.487239],[10.0453445,47.4872867],[10.0452254,47.4873395],[10.0450698,47.4874399],[10.0450272,47.4874726],[10.0450047,47.4874919],[10.0449701,47.4875431],[10.0449479,47.4875588],[10.0449159,47.4875706],[10.0447745,47.4876222],[10.0445392,47.4876549],[10.0444103,47.4876881],[10.0443479,47.487691],[10.0441718,47.4877204],[10.0440194,47.4876506],[10.0438014,47.4876613],[10.0434334,47.4876641],[10.0430799,47.4876109],[10.042632,47.487638],[10.0425057,47.4876221],[10.042369,47.4876199],[10.0423303,47.487615],[10.0423048,47.4876262],[10.0422208,47.4876906],[10.0421291,47.4877184],[10.0420988,47.4877206],[10.0420799,47.4877364],[10.0420551,47.4877955],[10.0419228,47.4878321],[10.0417545,47.4878879],[10.0415702,47.4879115],[10.0414027,47.4879273],[10.0413377,47.4879747],[10.0413147,47.4880396],[10.0411078,47.4879968],[10.0409911,47.488005],[10.0409185,47.488009],[10.0408811,47.4880201],[10.040852,47.4880393],[10.0407786,47.4880912],[10.0406707,47.48808],[10.0406013,47.4880887],[10.0404806,47.4880408],[10.0404325,47.4880895],[10.0404083,47.488111],[10.0403234,47.488148],[10.0402529,47.4882184],[10.0401394,47.4882391],[10.0400444,47.4883548],[10.0400201,47.4883889],[10.0400043,47.4884173],[10.0399806,47.4884251],[10.0399586,47.4884273],[10.0398343,47.4883942],[10.0397923,47.4883893],[10.0397126,47.4884001],[10.0396855,47.4884113],[10.0396715,47.4884306],[10.0396729,47.4884534],[10.0396986,47.4885164],[10.0395041,47.48854],[10.0393655,47.4885492],[10.0393215,47.4885602],[10.0392824,47.4885725],[10.0392565,47.4885962],[10.0392359,47.4886189],[10.0392236,47.4886439],[10.0392299,47.4886702],[10.0392454,47.4887412],[10.0392451,47.4887606],[10.0392347,47.4887777],[10.0392073,47.48879],[10.0391431,47.4887986],[10.0390629,47.4888437],[10.0390189,47.4888537],[10.0388544,47.4888991],[10.0388219,47.4889137],[10.0387454,47.4889462],[10.0385525,47.4889675],[10.0384165,47.4889259],[10.0380986,47.4889512],[10.038063,47.4889589],[10.0380102,47.4889824],[10.0379642,47.489006],[10.0379029,47.4890398],[10.0378129,47.4890687],[10.0377447,47.4891001],[10.037606,47.4891185],[10.0375394,47.4891613],[10.0374749,47.4891791],[10.0374328,47.4891775],[10.0373859,47.4891521],[10.0372263,47.4891084],[10.0370661,47.489098],[10.0369699,47.4890937],[10.0368708,47.4890747],[10.0366673,47.4890364],[10.0365549,47.4889978],[10.0365213,47.4889872],[10.0364118,47.4889691],[10.0363614,47.4889597],[10.0361548,47.4889042],[10.0360302,47.4888802],[10.0358745,47.4888173],[10.0355888,47.4887499],[10.0354531,47.4887208],[10.0351209,47.4886496],[10.0348581,47.4885642],[10.0347723,47.4885363],[10.0345966,47.4884582],[10.0343891,47.4883514],[10.0339749,47.4881184],[10.0338288,47.4880805],[10.0336764,47.4880084],[10.0336053,47.4879244],[10.0335771,47.4879003],[10.0335354,47.4878771],[10.0333965,47.4878131],[10.0332419,47.4877752],[10.0331479,47.4877424],[10.0329355,47.4876355],[10.0327231,47.4875275],[10.0325676,47.4874496],[10.032373,47.4873863],[10.0322373,47.4873304],[10.0321724,47.4872795],[10.0321126,47.4872265],[10.0320744,47.4871896],[10.0319782,47.4871043],[10.0317585,47.487027],[10.0315013,47.4868821],[10.0313238,47.4868018],[10.0311271,47.4866721],[10.030944,47.4866169],[10.0307679,47.4865573],[10.0307226,47.486542],[10.0303621,47.4864122],[10.0301093,47.4862992],[10.0299605,47.486226],[10.0297112,47.4861063],[10.029562,47.4860664],[10.0295432,47.4860614],[10.0294496,47.4860092],[10.0294362,47.4860031],[10.0293743,47.4859754],[10.0287781,47.4858083],[10.0286168,47.4856846],[10.0285809,47.485667],[10.028468,47.4856114],[10.0281548,47.4853983],[10.0278144,47.4853478],[10.0276394,47.4853015],[10.0274626,47.4852882],[10.0274033,47.4852837],[10.0265455,47.4851529],[10.026417,47.4851558],[10.0262686,47.4851463],[10.0261133,47.4851309],[10.0259904,47.4851041],[10.025854,47.4850764],[10.0257161,47.4850313],[10.0255275,47.4849666],[10.0253518,47.4848938],[10.0252636,47.4848572],[10.025166,47.484833],[10.02491,47.4847692],[10.0247621,47.4847037],[10.0246882,47.4846703],[10.0245518,47.484623],[10.0243398,47.4845571],[10.024192,47.4844949],[10.0241282,47.4844467],[10.024039,47.4844156],[10.0238929,47.4843351],[10.0236416,47.4843194],[10.0235394,47.4842517],[10.0234973,47.4842378],[10.0234399,47.484224],[10.023417,47.4842227],[10.0233708,47.4842202],[10.0231784,47.4842288],[10.0231496,47.4842333],[10.023126,47.4842241],[10.0230359,47.4841243],[10.023014,47.4841071],[10.0226989,47.4840489],[10.0223686,47.4840124],[10.0222638,47.4840178],[10.0221815,47.4839821],[10.0218831,47.4839456],[10.0217124,47.4839622],[10.0216162,47.4839619],[10.0214543,47.4839579],[10.0212533,47.4839698],[10.0210867,47.483903],[10.0208779,47.4838623],[10.0205528,47.4837927],[10.0202125,47.4837321],[10.0201703,47.4837377],[10.0201364,47.4837409],[10.0200651,47.4837956],[10.0197876,47.4837661],[10.0197191,47.4837898],[10.0196995,47.4839064],[10.0194271,47.4840468],[10.019367,47.4840778],[10.0193613,47.4840817],[10.0190909,47.4842635],[10.0190511,47.4842904],[10.0189592,47.4843077],[10.018494,47.4843057],[10.0183205,47.4842811],[10.0182815,47.4842901],[10.0182576,47.4843003],[10.0181961,47.4844052],[10.0181721,47.4844303],[10.01814,47.4844427],[10.0180286,47.4844355],[10.0179071,47.4844398],[10.0174786,47.4843994],[10.0169792,47.4843876],[10.016531,47.4847623],[10.0164683,47.4848147],[10.0163421,47.4848333],[10.0160696,47.4847249],[10.0158718,47.4845917],[10.0157742,47.4845628],[10.0150667,47.4842461],[10.0150377,47.4842176],[10.0146671,47.4838506],[10.0145351,47.4836254],[10.0138146,47.4831449],[10.0137108,47.4830566],[10.0134975,47.482953],[10.0133139,47.4829135],[10.0131322,47.4828523],[10.0130254,47.482732],[10.0128826,47.4826595],[10.0127333,47.4825562],[10.012624,47.4825306],[10.0124961,47.482489],[10.0124068,47.4824557],[10.0122776,47.4823889],[10.0121704,47.4823028],[10.0121384,47.4822833],[10.0120527,47.4822556],[10.0119566,47.4822348],[10.0118103,47.4822045],[10.0115055,47.4821155],[10.0113509,47.4820533],[10.0110677,47.4820181],[10.0109665,47.482004],[10.0108167,47.4819737],[10.0106954,47.4819459],[10.0102023,47.4818014],[10.0100111,47.4818314],[10.0098033,47.481864],[10.0097152,47.4818956],[10.0096695,47.4819274],[10.0096446,47.4819507],[10.0095842,47.4820072],[10.009316,47.4819812],[10.0092122,47.4820974],[10.0091236,47.4821771],[10.0090505,47.482227],[10.008993,47.4822463],[10.0089202,47.4822654],[10.0083703,47.4822591],[10.008208,47.4822573],[10.0080931,47.4822718],[10.0079867,47.4822749],[10.0078501,47.482279],[10.0077641,47.4822718],[10.0069665,47.4821902],[10.0068145,47.4822033],[10.0065783,47.4821945],[10.0064506,47.4823231],[10.0063,47.4823433],[10.0061329,47.482345],[10.0059993,47.4823742],[10.004947,47.4822871],[10.0047402,47.4822076],[10.0041301,47.4821152],[10.0040581,47.4820693],[10.0039013,47.482047],[10.0037448,47.4820071],[10.0036625,47.481991],[10.0034721,47.4819324],[10.0032817,47.4818928],[10.0031638,47.4817888],[10.0029616,47.4818335],[10.0029243,47.4818482],[10.0028972,47.4818756],[10.0028413,47.4818878],[10.0027558,47.4818442],[10.0026758,47.4818276],[10.0026377,47.4818197],[10.0025215,47.4818034],[10.0024169,47.4818007],[10.0023071,47.4818026],[10.00225,47.4817773],[10.0021696,47.4818833],[10.0020039,47.4819124],[10.0018752,47.4819485],[10.0017366,47.4819949],[10.0016178,47.4820458],[10.0015465,47.4820914],[10.0015336,47.4821003],[10.0014718,47.4821437],[10.0011688,47.4822236],[10.0010289,47.482221],[10.0007641,47.4821056],[10.0003803,47.4823849],[9.9997344,47.482855],[9.9995044,47.4830268],[9.9980272,47.4840975],[9.9975807,47.4844223],[9.996939,47.4848896],[9.9968634,47.4849445],[9.9966756,47.4850812],[9.996387,47.4852913],[9.9962655,47.4853797],[9.9951864,47.4861654],[9.995062,47.486256],[9.9944338,47.48732],[9.9944189,47.4873453],[9.9941934,47.4877267],[9.993573,47.4887787],[9.9934129,47.48905],[9.9929759,47.4897819],[9.9928214,47.4900432],[9.9923292,47.4908759],[9.9922997,47.4909257],[9.9922341,47.4910365],[9.9919029,47.4915968],[9.9918688,47.4916545],[9.9917817,47.4918016],[9.9915958,47.4921162],[9.9911802,47.4928191],[9.9907124,47.4936105],[9.9905993,47.4938018],[9.9904443,47.4940638],[9.9903769,47.4941778],[9.9903677,47.4941936],[9.9902668,47.4943641],[9.9901414,47.4945759],[9.9901169,47.4946176],[9.9900216,47.4947786],[9.9892842,47.4960271],[9.9889566,47.4965811],[9.9886907,47.4970306],[9.9886762,47.4970553],[9.9880592,47.4977154],[9.9880098,47.4977684],[9.9877329,47.4980647],[9.9873958,47.4984253],[9.9873585,47.4984652],[9.9877592,47.4987189],[9.9882285,47.4990158],[9.9887273,47.4991335],[9.9887669,47.4991509],[9.98877,47.4991522],[9.98915,47.4993178],[9.9895158,47.4994276],[9.9899287,47.4995728],[9.9902572,47.4997009],[9.9906886,47.4998576],[9.9910256,47.5001208],[9.9914013,47.500384],[9.9916979,47.5005292],[9.9917906,47.5005795],[9.9924577,47.5010441],[9.9926533,47.5011001],[9.9928471,47.5011642],[9.9931302,47.5012728],[9.9933139,47.5013768],[9.993415,47.5015337],[9.9937165,47.5016663],[9.993907,47.5018093],[9.9940923,47.5019123],[9.9944007,47.5020061],[9.9944445,47.5020404],[9.9944934,47.5020805],[9.9945524,47.5021377],[9.9946163,47.5022303],[9.9950782,47.5025061],[9.9952253,47.5025712],[9.9955107,47.5026973],[9.9956949,47.5027787],[9.9956273,47.5028176],[9.9953915,47.5029534],[9.9944754,47.5034811],[9.9944645,47.5034874],[9.9938034,47.5038684],[9.993434,47.5040812],[9.9932979,47.5041406],[9.993102,47.5042263],[9.9930598,47.5042445],[9.9918672,47.5047648],[9.9909082,47.5051831],[9.990773,47.5052646],[9.9907219,47.5052773],[9.990625,47.505277],[9.9904835,47.5053098],[9.9903939,47.5053766],[9.9902772,47.5054509],[9.990222,47.5054719],[9.9901555,47.5054971],[9.9899922,47.5055606],[9.9897972,47.5056676],[9.9895824,47.5057422],[9.9895229,47.5058172],[9.9896539,47.5058857],[9.989529,47.505966],[9.9894781,47.5060099],[9.9893624,47.506111],[9.989287,47.5061535],[9.9891174,47.5062823],[9.9890718,47.5063781],[9.9890775,47.5065066],[9.9888994,47.5068131],[9.9887951,47.5070082],[9.9886699,47.5071711],[9.9884864,47.5073747],[9.9883991,47.5074567],[9.9882857,47.5075491],[9.9880678,47.5077236],[9.9878476,47.5079161],[9.9877199,47.5080625],[9.9876122,47.5082309],[9.9875336,47.5083875],[9.9874067,47.5086599],[9.9863994,47.5094699],[9.9849071,47.5106868],[9.9845689,47.5109708],[9.9844783,47.5109979],[9.9843991,47.5110067],[9.9843263,47.5110017],[9.98426,47.5109817],[9.9842002,47.5109446],[9.9839286,47.5107197],[9.9838722,47.5106848],[9.9837159,47.5106519],[9.9833937,47.5104995],[9.9832965,47.5104662],[9.9831475,47.5104516],[9.9830763,47.5104351],[9.9829636,47.5103768],[9.9828774,47.5102908],[9.982833,47.5102672],[9.9827072,47.5102318],[9.9825256,47.5101924],[9.9824886,47.5101996],[9.9823732,47.5102635],[9.9822463,47.5102522],[9.9821934,47.5102298],[9.9821512,47.5102303],[9.9821227,47.5102419],[9.9819836,47.5103896],[9.9819602,47.5104035],[9.9819215,47.5104119],[9.9817173,47.5104241],[9.9815958,47.5104402],[9.9814067,47.5104408],[9.9812178,47.5104642],[9.9811427,47.5105107],[9.9810749,47.5105856],[9.9809842,47.5106986],[9.9809475,47.5107252],[9.9809223,47.5107334],[9.9807626,47.5107749],[9.9805551,47.5108786],[9.9805302,47.510904],[9.9805274,47.5109327],[9.9806092,47.5111388],[9.9806065,47.5111777],[9.9805799,47.5112007],[9.9805328,47.5112103],[9.980472,47.5112075],[9.9803654,47.5112039],[9.9802626,47.5112187],[9.9802072,47.5112362],[9.9801873,47.5112536],[9.9801844,47.5112856],[9.9802007,47.51133],[9.9802071,47.5114066],[9.9801916,47.5114788],[9.9801425,47.511558],[9.9800987,47.5116431],[9.9800706,47.5116765],[9.9800402,47.5116871],[9.9797247,47.5117163],[9.9796659,47.5117306],[9.9796207,47.5117539],[9.9795912,47.5118011],[9.9795669,47.5118505],[9.9794479,47.5124151],[9.979429,47.5124815],[9.9794049,47.5125424],[9.9793618,47.5125931],[9.9793154,47.5126403],[9.9792688,47.5126751],[9.9791971,47.5127204],[9.979123,47.5128251],[9.979122,47.5129463],[9.9791105,47.5129612],[9.9790869,47.512966],[9.9790598,47.5129652],[9.9789161,47.5128705],[9.9788821,47.512864],[9.9788603,47.5128711],[9.9788003,47.512955],[9.9787191,47.5129946],[9.9786722,47.5130168],[9.9786122,47.5130528],[9.9785471,47.5131061],[9.9784942,47.5131683],[9.9784399,47.5132362],[9.978413,47.5132923],[9.9784025,47.5133143],[9.9783372,47.5133435],[9.978257,47.5133877],[9.9782171,47.5134212],[9.9781941,47.5134465],[9.9781624,47.5134811],[9.9781124,47.513516],[9.9780621,47.5135358],[9.9779781,47.5135583],[9.977872,47.51358],[9.9776983,47.5136022],[9.9776077,47.5136418],[9.9775204,47.5136667],[9.9773895,47.5137091],[9.9773644,47.5137252],[9.9773333,47.5137736],[9.9773066,47.5137956],[9.9772814,47.5138027],[9.9772476,47.5138007],[9.97712,47.5137562],[9.9770761,47.5137543],[9.9769108,47.5138577],[9.9765682,47.5139717],[9.9765247,47.5139939],[9.9764517,47.5140688],[9.9764166,47.5140897],[9.9761837,47.5141914],[9.9761326,47.5142617],[9.9759506,47.5142863],[9.9758207,47.5143869],[9.9756001,47.514422],[9.9755412,47.5144318],[9.9752703,47.5146721],[9.9750498,47.5147188],[9.9749803,47.5147057],[9.9749446,47.514698],[9.9748352,47.5147139],[9.9746793,47.5146959],[9.974553,47.5147257],[9.9745198,47.5147558],[9.9743842,47.5149891],[9.9743558,47.5150134],[9.9743277,47.5150377],[9.9740761,47.5150571],[9.9740031,47.5151242],[9.9739156,47.5151387],[9.9738112,47.5151591],[9.973692,47.5152002],[9.9735178,47.5152807],[9.9734561,47.5153294],[9.9733232,47.5154484],[9.9732865,47.5154715],[9.9732479,47.5154822],[9.9730027,47.5154753],[9.972914,47.5155196],[9.9728785,47.5155257],[9.9726819,47.5154932],[9.9726225,47.5154858],[9.9725872,47.5154941],[9.9725202,47.5155256],[9.9724848,47.5155328],[9.9724528,47.5155296],[9.9722794,47.5154833],[9.972073,47.5154692],[9.9718208,47.515458],[9.9717519,47.5154711],[9.9716781,47.5155027],[9.97163,47.5155488],[9.9715956,47.5156109],[9.9716069,47.5156612],[9.9714708,47.5157938],[9.9714749,47.5158372],[9.9715305,47.5159041],[9.9716943,47.5160705],[9.9716252,47.5161718],[9.9716407,47.5164437],[9.9714648,47.5165266],[9.9714249,47.5165624],[9.9713869,47.5166004],[9.9713451,47.5166271],[9.971305,47.5166561],[9.9712722,47.5166998],[9.971248,47.5167538],[9.9712306,47.5168202],[9.9712271,47.516906],[9.9712302,47.5169723],[9.9711975,47.5170366],[9.971195,47.5170709],[9.9711338,47.5172338],[9.9709492,47.5174757],[9.9705562,47.5177934],[9.9702832,47.5180548],[9.9701334,47.5181628],[9.9696963,47.5182813],[9.9695079,47.5183618],[9.9693812,47.5184505],[9.9691427,47.5186173],[9.9691078,47.5186518],[9.9690865,47.5186841],[9.9690686,47.518722],[9.9690353,47.5187451],[9.9689114,47.518775],[9.9687728,47.5188082],[9.9686979,47.5187815],[9.9686287,47.5187855],[9.9685714,47.5187998],[9.9685353,47.5188221],[9.9685281,47.5188265],[9.9684205,47.5189134],[9.9682701,47.5190347],[9.9681715,47.5190904],[9.9681362,47.519109],[9.9680994,47.5191283],[9.9680828,47.5191369],[9.9680586,47.5191425],[9.9680004,47.5191561],[9.9678641,47.5191883],[9.9678355,47.5191964],[9.9677237,47.5192684],[9.9676801,47.519287],[9.9673354,47.5193829],[9.9672952,47.519397],[9.9672552,47.5194259],[9.9672189,47.5194744],[9.9671128,47.5195839],[9.9670881,47.5196161],[9.9670578,47.5196221],[9.9669698,47.5196184],[9.9669294,47.5196245],[9.9668876,47.5196465],[9.9668413,47.5197007],[9.9667938,47.5197766],[9.9667836,47.5198647],[9.9667629,47.5199312],[9.966745,47.5199645],[9.9667117,47.5199888],[9.9665746,47.5200644],[9.9665311,47.5200877],[9.9663729,47.5202137],[9.9663393,47.5202232],[9.9663073,47.5202281],[9.9662699,47.5202193],[9.9661663,47.5201985],[9.9661344,47.5202023],[9.9660822,47.5202177],[9.9660235,47.5202411],[9.9659769,47.5202746],[9.9658569,47.5204483],[9.9658322,47.5204829],[9.9657939,47.5205118],[9.9657621,47.5205303],[9.965673,47.5205518],[9.9656195,47.520582],[9.9655893,47.5206029],[9.9655765,47.5206338],[9.9655614,47.5207242],[9.9655367,47.5207646],[9.9655102,47.5207876],[9.9654732,47.5208074],[9.965292,47.5208765],[9.965262,47.5208928],[9.9652423,47.5210141],[9.9652057,47.5211254],[9.9651273,47.521269],[9.9650197,47.5214724],[9.9651277,47.5215456],[9.9652278,47.5216555],[9.9653158,47.5217462],[9.9653232,47.5217724],[9.9653151,47.521793],[9.9651967,47.521881],[9.9651196,47.5219995],[9.9650997,47.5220214],[9.9650905,47.5221529],[9.9650897,47.5222032],[9.9651039,47.5222373],[9.9652076,47.5223424],[9.9653833,47.5225205],[9.9654041,47.5225546],[9.9654166,47.5225843],[9.9654076,47.5226461],[9.9653878,47.5226737],[9.9653645,47.5226864],[9.965149,47.5227262],[9.9651204,47.5227368],[9.9650987,47.5227598],[9.9650792,47.5227954],[9.9650665,47.5228332],[9.9650574,47.5228893],[9.9650527,47.5229099],[9.9650238,47.5230008],[9.965217,47.5230157],[9.9653147,47.5230278],[9.9654331,47.5230582],[9.9655919,47.5231057],[9.9657579,47.5231829],[9.9658915,47.5232453],[9.9660205,47.523334],[9.9661225,47.523415],[9.9661855,47.5235005],[9.9663374,47.5236842],[9.9663993,47.5238076],[9.9664662,47.5239389],[9.9665241,47.5239913],[9.9666545,47.5240617],[9.9676228,47.5245066],[9.9677146,47.5245966],[9.9677831,47.524704],[9.9678295,47.524793],[9.9678728,47.5249039],[9.9678707,47.5250435],[9.9677553,47.5254812],[9.9677328,47.5255857],[9.9677231,47.5256301],[9.9677059,47.5257699],[9.9676795,47.5260126],[9.9676355,47.5261615],[9.9675399,47.5263862],[9.9673992,47.5266535],[9.9673565,47.5267589],[9.9673339,47.5268597],[9.9673344,47.5269307],[9.9673539,47.5270119],[9.9674184,47.527078],[9.967505,47.5271396],[9.9676355,47.5272087],[9.9677355,47.5272656],[9.9677966,47.5273135],[9.9678535,47.5273886],[9.96787,47.5274105],[9.9679129,47.5274869],[9.9679297,47.527505],[9.9679691,47.5275474],[9.9680709,47.5276145],[9.968176,47.5276724],[9.9682728,47.5277521],[9.9683941,47.5279223],[9.9683952,47.5280172],[9.9683657,47.5281204],[9.9682944,47.5282477],[9.9682651,47.5283405],[9.9682452,47.5284291],[9.9681552,47.5285228],[9.9680889,47.5286017],[9.968038,47.5286559],[9.9679906,47.5287301],[9.9679035,47.5287998],[9.9677863,47.5288348],[9.9676802,47.5289133],[9.9676237,47.5290488],[9.967614,47.5290722],[9.9675538,47.5291241],[9.9675291,47.5291454],[9.9675223,47.5291514],[9.9674861,47.5291828],[9.9674008,47.5292272],[9.9674186,47.5292833],[9.967449,47.5294556],[9.9675088,47.5295583],[9.9675671,47.5296645],[9.9676166,47.5297247],[9.9676615,47.5297984],[9.9676404,47.5298331],[9.9675789,47.529841],[9.9675036,47.5299009],[9.9674062,47.5299459],[9.9672274,47.529967],[9.9671869,47.5300554],[9.9673317,47.5302588],[9.9673285,47.5302728],[9.9672817,47.5303134],[9.9672379,47.5303459],[9.9671576,47.5303651],[9.9669567,47.5303391],[9.9667724,47.5302648],[9.9667137,47.5302359],[9.9665092,47.5301306],[9.9661892,47.5299576],[9.966158,47.5299463],[9.9659692,47.5298782],[9.9659557,47.5298712],[9.9658429,47.5298129],[9.9657739,47.5297757],[9.9657149,47.5297612],[9.9657069,47.5297593],[9.9656396,47.5297482],[9.9655294,47.5298119],[9.9652665,47.5301229],[9.9652755,47.5301995],[9.9654445,47.5308883],[9.9654418,47.5310368],[9.9654371,47.5311359],[9.9654358,47.531212],[9.9654116,47.5313034],[9.9653909,47.5313877],[9.9653211,47.5314823],[9.9651951,47.5315955],[9.9650837,47.5316914],[9.9649807,47.5318403],[9.9649174,47.5319341],[9.9648879,47.5320029],[9.9648719,47.5320808],[9.9648667,47.5321572],[9.9649116,47.5322623],[9.9650053,47.5323821],[9.9650888,47.5324631],[9.9651799,47.532526],[9.9652533,47.5325768],[9.9653197,47.5326429],[9.9653541,47.5327035],[9.9654201,47.5329264],[9.96544,47.5329949],[9.9654569,47.5330532],[9.965617,47.5333937],[9.9656448,47.5334828],[9.965647,47.5335378],[9.9656356,47.5335974],[9.9655913,47.5337108],[9.9655148,47.5338222],[9.9654567,47.5339048],[9.9654166,47.5339599],[9.9653988,47.534031],[9.96538,47.5341764],[9.9653422,47.534276],[9.9652481,47.5344768],[9.9651093,47.5347679],[9.9650624,47.5348049],[9.9649287,47.5349358],[9.9648589,47.5350242],[9.9647,47.5353258],[9.9647039,47.53539],[9.9647346,47.535431],[9.9647906,47.5354618],[9.9648633,47.5354843],[9.9649561,47.5355023],[9.9651182,47.5355131],[9.9652919,47.5355295],[9.9654507,47.5355713],[9.9656114,47.5356221],[9.965723,47.5356674],[9.9658231,47.5357254],[9.9658946,47.5357996],[9.9659015,47.5358142],[9.9659308,47.5358762],[9.9659214,47.5359471],[9.9658766,47.5360206],[9.9657555,47.5361827],[9.9656869,47.5362742],[9.9655989,47.5364177],[9.965295,47.5367279],[9.9652584,47.5367921],[9.965249,47.5368505],[9.9652499,47.5369569],[9.9652609,47.5370358],[9.9652428,47.537084],[9.9652116,47.5371573],[9.9651515,47.5372377],[9.9649893,47.5377077],[9.9648765,47.5379221],[9.9648385,47.537992],[9.9648355,47.538031],[9.9648647,47.5380813],[9.9649106,47.5381257],[9.9649683,47.5381564],[9.9650563,47.5382007],[9.9651596,47.5382471],[9.9652781,47.5382982],[9.9654436,47.538333],[9.9656462,47.5383631],[9.9657878,47.5383717],[9.9665564,47.5383596],[9.9666628,47.5383649],[9.966759,47.5383793],[9.9668367,47.5383927],[9.9669127,47.5384119],[9.9669737,47.5384414],[9.9670419,47.5385201],[9.9670933,47.5386058],[9.9671198,47.5387339],[9.9671428,47.5388505],[9.9671949,47.5389946],[9.9672667,47.5391075],[9.96734,47.5391953],[9.9674048,47.539257],[9.967517,47.5393687],[9.9675259,47.5394052],[9.9675111,47.5394385],[9.967486,47.5394683],[9.9674441,47.5394971],[9.9673669,47.5395307],[9.9672189,47.5395782],[9.9671149,47.5396175],[9.9670798,47.5396531],[9.9670704,47.5397241],[9.9671051,47.5398177],[9.9671919,47.5399204],[9.9672839,47.5400117],[9.9673335,47.5400882],[9.9673735,47.5402151],[9.9673828,47.5402889],[9.9673881,47.5403306],[9.9674047,47.5404678],[9.9674109,47.540596],[9.9674189,47.5407242],[9.9674013,47.5408227],[9.9673669,47.54092],[9.967327,47.5409878],[9.9671541,47.5412345],[9.9671261,47.5413182],[9.9674242,47.541443],[9.9676039,47.541552],[9.9678005,47.5416566],[9.9679479,47.5417395],[9.9680226,47.5417907],[9.9680752,47.5418317],[9.9681468,47.5419104],[9.9683187,47.5420815],[9.9683969,47.5421498],[9.968475,47.5421952],[9.968563,47.5422327],[9.968651,47.5422724],[9.9687136,47.542295],[9.9687612,47.5423292],[9.9688038,47.5423725],[9.9688635,47.5424501],[9.9689201,47.5425426],[9.9689714,47.5426203],[9.9690429,47.5426806],[9.9691107,47.5427262],[9.9691716,47.542751],[9.969278,47.5427803],[9.969351,47.5428087],[9.9694967,47.5428974],[9.9696779,47.5429722],[9.9698894,47.5430503],[9.9700605,47.5431332],[9.9702348,47.5432024],[9.9704346,47.5432954],[9.9705991,47.5433852],[9.9707431,47.5434613],[9.9707908,47.5435137],[9.9708048,47.5435743],[9.9707989,47.5436407],[9.9707637,47.5436878],[9.9707429,47.5437737],[9.9708294,47.5440114],[9.9708719,47.5440467],[9.9711682,47.5441829],[9.9712208,47.5442136],[9.9712464,47.544249],[9.9712486,47.5443004],[9.9712003,47.5443637],[9.971135,47.5444188],[9.9710128,47.5444926],[9.9709175,47.5445639],[9.9709075,47.5445971],[9.9708981,47.5446613],[9.9708648,47.5447209],[9.9707898,47.5447956],[9.970713,47.5448772],[9.9706566,47.5449735],[9.9705589,47.5451536],[9.9705392,47.5452074],[9.9705253,47.5453426],[9.9705398,47.5454341],[9.9705708,47.5455141],[9.9706191,47.5456112],[9.9706552,47.5456888],[9.970666,47.5457632],[9.9706091,47.5458069],[9.9704798,47.5458589],[9.9702307,47.5459034],[9.9700775,47.5459189],[9.9699275,47.5459321],[9.9698127,47.5459337],[9.969612,47.5459242],[9.969457,47.5459213],[9.9692985,47.5459243],[9.9691519,47.5459352],[9.9690359,47.5459563],[9.9689266,47.5459888],[9.9688645,47.5460267],[9.9688076,47.5460739],[9.9686935,47.546127],[9.9685935,47.5461605],[9.9685035,47.5461907],[9.9683674,47.5462358],[9.96829,47.546251],[9.9681839,47.5462549],[9.9681312,47.5462598],[9.9681198,47.5462608],[9.9680895,47.5462689],[9.9680512,47.5463081],[9.9679646,47.5462546],[9.9679374,47.546225],[9.9678002,47.5461956],[9.9673645,47.545763],[9.9673086,47.5456904],[9.9671508,47.545402],[9.9669564,47.5451025],[9.9668466,47.5449725],[9.9664374,47.5445689],[9.9662605,47.5444526],[9.9661073,47.5443487],[9.9659829,47.5442619],[9.9659295,47.5443193],[9.9657157,47.5443648],[9.9656651,47.5443558],[9.9655974,47.5443286],[9.9654975,47.5442912],[9.965381,47.5442642],[9.9652881,47.5442486],[9.9651821,47.5442582],[9.9651248,47.5442731],[9.9650186,47.5442702],[9.9649614,47.5442831],[9.9648623,47.5443247],[9.9647969,47.5443489],[9.964746,47.5443019],[9.964665,47.5441749],[9.9646365,47.5440698],[9.9646362,47.5439845],[9.9645532,47.543817],[9.9644198,47.5436147],[9.9642754,47.5434194],[9.9641188,47.5432288],[9.9639461,47.5430468],[9.9638171,47.5430908],[9.9631795,47.54229],[9.9628433,47.542355],[9.9618958,47.5425381],[9.961323,47.5426716],[9.9612396,47.5427132],[9.9612096,47.5426999],[9.9611519,47.5426742],[9.9610009,47.542676],[9.9608747,47.5426971],[9.9605778,47.5428369],[9.9600404,47.5431672],[9.9597903,47.5432396],[9.9596486,47.543197],[9.9594914,47.5432847],[9.959313,47.5433341],[9.9591389,47.5432928],[9.9590476,47.5433084],[9.9589849,47.5433055],[9.9589173,47.5432553],[9.9588525,47.5431711],[9.9588294,47.5431278],[9.9588376,47.5430945],[9.9588935,47.5429898],[9.9589257,47.5428833],[9.9589112,47.5428051],[9.9589103,47.5426977],[9.958932,47.5426082],[9.9589133,47.5425028],[9.9588944,47.5423695],[9.9588945,47.5423027],[9.9589414,47.5421586],[9.9589926,47.5420847],[9.9591116,47.5419944],[9.9592874,47.5418936],[9.9594467,47.5418094],[9.9595944,47.5417428],[9.9597883,47.5416456],[9.9600164,47.5415699],[9.9602665,47.5415847],[9.9604034,47.5415928],[9.9604734,47.5415414],[9.9605406,47.5414685],[9.9605579,47.5411214],[9.9605592,47.5409198],[9.9605075,47.5405426],[9.9604218,47.5402819],[9.9602889,47.5398748],[9.9602242,47.5396115],[9.959976,47.5392859],[9.9598403,47.5392181],[9.9597464,47.5391172],[9.9596524,47.538939],[9.9595896,47.5388622],[9.9595093,47.5386164],[9.9594586,47.5383965],[9.9594736,47.5383187],[9.9595027,47.538259],[9.9595536,47.5381957],[9.9596674,47.5380976],[9.9598801,47.5379146],[9.9600553,47.5377403],[9.9601643,47.5376317],[9.9602002,47.53758],[9.9603248,47.5374058],[9.9603493,47.5373716],[9.9604354,47.5372954],[9.9604702,47.5372653],[9.9605252,47.5372339],[9.9606256,47.5371893],[9.9608147,47.537104],[9.9608799,47.537069],[9.9609513,47.5370157],[9.9609959,47.5369707],[9.9610714,47.5368785],[9.9611261,47.5368242],[9.9611728,47.5367951],[9.9612212,47.5367672],[9.9613334,47.5367204],[9.96138,47.5366913],[9.9614131,47.5366636],[9.9614461,47.5366277],[9.9614697,47.536589],[9.9614874,47.53656],[9.9615052,47.5365309],[9.961521,47.5365048],[9.9615643,47.5364746],[9.9616266,47.5364671],[9.9616811,47.5364779],[9.9617666,47.5365216],[9.9618533,47.5365434],[9.9619077,47.5365508],[9.9619496,47.5365355],[9.9619827,47.53651],[9.9620006,47.5364768],[9.9620047,47.5364322],[9.9620255,47.5363143],[9.9620463,47.5362615],[9.9620823,47.5362132],[9.9621372,47.5361703],[9.9622088,47.5361273],[9.9622453,47.5360995],[9.9622585,47.5360868],[9.962299,47.5360019],[9.9623151,47.5359755],[9.9623484,47.5359534],[9.962385,47.5359267],[9.9624388,47.5359079],[9.9625059,47.5358912],[9.9625462,47.5358746],[9.9628938,47.5356311],[9.9629321,47.5356045],[9.9629939,47.5355752],[9.9631969,47.5355068],[9.9634663,47.5353817],[9.963572,47.5353509],[9.9636089,47.5353379],[9.9637293,47.5352783],[9.9637994,47.5352353],[9.9638406,47.5351938],[9.9638881,47.5351259],[9.9639439,47.5350613],[9.9639098,47.5350011],[9.9637822,47.5347862],[9.963745,47.5347481],[9.9636997,47.5347198],[9.9636154,47.534693],[9.9635034,47.5346595],[9.9632551,47.5346162],[9.9630327,47.5345655],[9.9628299,47.5345296],[9.9627263,47.5345151],[9.9626399,47.5344838],[9.962432,47.5344658],[9.9623961,47.5345377],[9.9622649,47.5345679],[9.9622397,47.5345808],[9.9617435,47.534827],[9.9616996,47.5348377],[9.9616679,47.5348435],[9.9616458,47.5348475],[9.9615613,47.5348496],[9.9614007,47.5348525],[9.9609291,47.5348644],[9.960843,47.534871],[9.9607446,47.5348583],[9.960648,47.5348491],[9.9606005,47.5348395],[9.9604898,47.5348086],[9.9603014,47.5347798],[9.9600624,47.5347515],[9.9599444,47.5347666],[9.9598584,47.5347812],[9.9597719,47.534773],[9.9596821,47.5347648],[9.9596175,47.5347473],[9.9593529,47.5346494],[9.9593052,47.5346318],[9.9591912,47.5345989],[9.9590656,47.5345864],[9.9589186,47.5345857],[9.9588494,47.5345888],[9.9587635,47.5346057],[9.958423,47.5347202],[9.9582223,47.534816],[9.9580648,47.5348794],[9.9578418,47.5349629],[9.9577896,47.5349714],[9.9575776,47.5350217],[9.9574176,47.5350485],[9.9572526,47.53508],[9.9570878,47.5350956],[9.9568893,47.5351292],[9.9565321,47.5351897],[9.956314,47.5352453],[9.9561436,47.535284],[9.9557917,47.5353651],[9.9554602,47.5354321],[9.955022,47.5355119],[9.954621,47.535577],[9.9542586,47.5356238],[9.9539765,47.5356729],[9.9535992,47.5356647],[9.9532611,47.5356825],[9.952883,47.5357133],[9.9524547,47.5357298],[9.9522191,47.5357249],[9.9518428,47.535743],[9.9515893,47.5357509],[9.9512464,47.5357685],[9.9510228,47.5357898],[9.9508108,47.5358405],[9.9507746,47.5358566],[9.9507088,47.5358855],[9.9505804,47.5359483],[9.9505016,47.5359789],[9.950255,47.5360526],[9.9499773,47.5361313],[9.9498327,47.5362185],[9.9496519,47.5362304],[9.9495891,47.5362346],[9.9495078,47.5362458],[9.9493697,47.5362767],[9.9491085,47.5363363],[9.9489758,47.5363357],[9.9486241,47.5364394],[9.948157,47.5364652],[9.9479321,47.5365089],[9.9473688,47.5365979],[9.9473086,47.5366074],[9.9469798,47.5366393],[9.9469791,47.5366393],[9.9460049,47.5367024],[9.94546,47.536744],[9.9451982,47.536764],[9.9447579,47.5368291],[9.9442264,47.5369196],[9.9436939,47.5371029],[9.9432476,47.5372991],[9.9432093,47.537316],[9.9429183,47.5374725],[9.9425586,47.5376107],[9.9423257,47.5377534],[9.9418716,47.5379706],[9.941773,47.5380178],[9.9416875,47.5380587],[9.9410791,47.5382227],[9.9404877,47.5376839],[9.9403049,47.5374484],[9.9401674,47.53726],[9.9399768,47.5370973],[9.9397658,47.5369413],[9.9396269,47.5368354],[9.9394912,47.5367361],[9.9393466,47.5366301],[9.9391945,47.5365178],[9.9390784,47.5364391],[9.9385071,47.5360184],[9.9381714,47.5357162],[9.9377627,47.5354043],[9.9378637,47.5353438],[9.9376022,47.5350988],[9.937526,47.5350275],[9.9374041,47.5349136],[9.9371599,47.5346949],[9.9368911,47.5344581],[9.9366369,47.5342485],[9.9364009,47.5341008],[9.9360076,47.5338907],[9.9357996,47.5340474],[9.9351339,47.5337023],[9.9347486,47.5334955],[9.9344792,47.5333538],[9.9341642,47.5331657],[9.9338514,47.5329627],[9.9337516,47.5328049],[9.9335226,47.5326499],[9.9332495,47.5329367],[9.9328214,47.5328907],[9.9324907,47.5328707],[9.9322429,47.5328607],[9.9316553,47.5327189],[9.9310887,47.5326209],[9.9308879,47.5325575],[9.9308553,47.5325436],[9.9306809,47.5324691],[9.930463,47.5323587],[9.9303933,47.5323136],[9.9302377,47.5322128],[9.9299753,47.5320596],[9.9298745,47.531928],[9.9298348,47.5319001],[9.9297933,47.5318778],[9.9297127,47.5318561],[9.9296797,47.5318317],[9.9296226,47.5317636],[9.9295943,47.5317494],[9.9295186,47.5317358],[9.9294494,47.5317359],[9.9294085,47.5317468],[9.9293385,47.5317699],[9.9287773,47.5315509],[9.9287353,47.5315445],[9.9286355,47.5314873],[9.9285927,47.5314711],[9.9284735,47.5314267],[9.9283717,47.5313842],[9.9282154,47.5312998],[9.9281779,47.5312845],[9.9280702,47.5312407],[9.9279919,47.5312031],[9.9279141,47.5311506],[9.9278706,47.531134],[9.9275742,47.5310455],[9.927435,47.5310092],[9.9273978,47.5310088],[9.9273641,47.5310106],[9.9272225,47.5310509],[9.9270604,47.5311],[9.9268598,47.5311761],[9.9267788,47.5312085],[9.9267046,47.5312236],[9.9266421,47.531233],[9.926583,47.5312344],[9.9265238,47.5312231],[9.926164,47.5310704],[9.9260859,47.5310399],[9.9258961,47.5309858],[9.925825,47.5309597],[9.9257957,47.5309119],[9.925772,47.5308809],[9.925758,47.5308629],[9.9256933,47.5307935],[9.9256541,47.5307616],[9.9255897,47.5307494],[9.9255441,47.5307575],[9.9254666,47.5307727],[9.9253803,47.530781],[9.9253501,47.5307812],[9.9252837,47.5307449],[9.9252462,47.5307084],[9.9252341,47.5306674],[9.9252336,47.5306194],[9.9251457,47.5306209],[9.9250689,47.5307388],[9.9250489,47.5307549],[9.9248863,47.5307408],[9.9248254,47.5307272],[9.9247881,47.530716],[9.9247525,47.5306932],[9.9247269,47.5306637],[9.9246665,47.5305394],[9.9246494,47.5305109],[9.9246188,47.530487],[9.9245747,47.5304724],[9.9244596,47.5304465],[9.9244323,47.5304363],[9.9244153,47.5304204],[9.9244067,47.5304011],[9.9244303,47.5303815],[9.9244722,47.5303448],[9.9244956,47.5303173],[9.9245019,47.5302509],[9.9243637,47.5303042],[9.9243163,47.5303054],[9.9242352,47.5303114],[9.9241963,47.5303185],[9.9240613,47.5303499],[9.9240209,47.5303524],[9.9238763,47.5302546],[9.9238573,47.5301919],[9.9237214,47.5301182],[9.9236164,47.5301026],[9.9234164,47.5300417],[9.9234631,47.5299741],[9.9230704,47.5299231],[9.9230095,47.5299187],[9.9229743,47.5299463],[9.9229903,47.5300296],[9.922987,47.5300582],[9.9229636,47.5300891],[9.9229232,47.530103],[9.9228792,47.530101],[9.9228268,47.5300886],[9.9227027,47.5300148],[9.9226736,47.529984],[9.9227033,47.52988],[9.9226768,47.529767],[9.9226259,47.5297261],[9.9225868,47.5297079],[9.9225378,47.529707],[9.9224906,47.5297231],[9.9220969,47.5297419],[9.9219473,47.5296533],[9.9218947,47.5296364],[9.921849,47.5296389],[9.9216332,47.5297049],[9.9215556,47.5297188],[9.9214048,47.5296864],[9.9212443,47.5296996],[9.9210855,47.5297059],[9.9210144,47.5297028],[9.9209484,47.5296984],[9.9208266,47.5296772],[9.920742,47.5296741],[9.9206829,47.529679],[9.920639,47.529694],[9.9205854,47.529741],[9.9204616,47.5298934],[9.9204061,47.5299337],[9.920369,47.5299497],[9.920315,47.5299661],[9.9199993,47.5300107],[9.9196194,47.5300533],[9.9195772,47.5300797],[9.9195284,47.530097],[9.9194828,47.5301041],[9.9194251,47.5300975],[9.9193642,47.530084],[9.9192337,47.5300434],[9.9191424,47.5300254],[9.9190443,47.5300304],[9.9189379,47.5300457],[9.9188265,47.5300758],[9.9186648,47.5301416],[9.9186198,47.5302125],[9.9184013,47.5301879],[9.9180816,47.5301519],[9.9179262,47.5301306],[9.9178142,47.5301153],[9.9177314,47.5301282],[9.9177029,47.5301546],[9.917688,47.5301945],[9.9177293,47.5302824],[9.9177417,47.5302881],[9.9177768,47.530304],[9.9178446,47.5303129],[9.9178938,47.5303366],[9.9178451,47.5303768],[9.9178048,47.5304066],[9.9177698,47.5304798],[9.9177447,47.5305063],[9.9177009,47.5305202],[9.9175232,47.5305037],[9.9174591,47.5305234],[9.917382,47.5306014],[9.9172834,47.5307297],[9.9172481,47.5307584],[9.9171857,47.5307815],[9.9170897,47.5308151],[9.9169731,47.5308407],[9.916818,47.5308687],[9.9167036,47.5309617],[9.9167364,47.5310347],[9.9167081,47.5310804],[9.9165687,47.5311975],[9.9164813,47.5312607],[9.9164466,47.5313523],[9.916261,47.5314089],[9.9162195,47.5314776],[9.9161235,47.5315374],[9.916102,47.5315741],[9.9160613,47.5315891],[9.9160125,47.5315996],[9.91596,47.5315997],[9.9158772,47.5316001],[9.9157866,47.5316747],[9.9157243,47.5317092],[9.9156994,47.5317802],[9.915671,47.5318066],[9.9156338,47.5318227],[9.9155513,47.5318424],[9.9154907,47.5318895],[9.9154165,47.5319093],[9.9153254,47.5319164],[9.9152648,47.5319453],[9.9151735,47.5319674],[9.915111,47.5319664],[9.9150249,47.5319817],[9.9149998,47.5320194],[9.9149153,47.5320118],[9.9148142,47.5320555],[9.9147382,47.5320753],[9.914652,47.5320756],[9.9145948,47.5321033],[9.9145576,47.5321102],[9.9144714,47.5321117],[9.9144276,47.5321176],[9.9143382,47.5321373],[9.9142825,47.5321559],[9.9142522,47.5321823],[9.9142171,47.5322293],[9.9141903,47.5322625],[9.9141296,47.5322753],[9.9140371,47.5323385],[9.9139684,47.5324096],[9.913879,47.5324476],[9.9137884,47.5325257],[9.9137411,47.5325419],[9.9136989,47.5325444],[9.9136162,47.5325377],[9.913579,47.532546],[9.9135661,47.5326408],[9.9135478,47.5326637],[9.9134837,47.5326833],[9.9134604,47.5327166],[9.9134317,47.5327419],[9.9133914,47.5327614],[9.9133172,47.53278],[9.9132717,47.532811],[9.9132417,47.5328488],[9.9132167,47.5329027],[9.9132222,47.5329403],[9.9132459,47.5329687],[9.9132801,47.5330018],[9.9131578,47.5331268],[9.9131426,47.5331463],[9.9131288,47.5333018],[9.9131137,47.5333326],[9.9130903,47.5333544],[9.9130501,47.5333968],[9.9130151,47.5334552],[9.9129968,47.5334953],[9.912987,47.5335377],[9.9129891,47.5335948],[9.9129842,47.5336222],[9.9129676,47.5336451],[9.9129089,47.5337173],[9.9129077,47.5337744],[9.9128523,47.5338066],[9.9128678,47.5338431],[9.9127805,47.5339269],[9.912764,47.5339692],[9.9127458,47.5340069],[9.9127306,47.5340276],[9.9126888,47.5340701],[9.912711,47.534118],[9.9127147,47.5341545],[9.912695,47.5342059],[9.9126918,47.5342357],[9.9127089,47.5342619],[9.9127159,47.5342823],[9.9127113,47.5343396],[9.9126895,47.5343728],[9.912666,47.5344026],[9.9126122,47.5344416],[9.9125956,47.5344749],[9.9126281,47.5345147],[9.9126655,47.5345351],[9.9127029,47.5345601],[9.9127099,47.5345899],[9.9126899,47.5346207],[9.9126409,47.5346266],[9.9125548,47.5346383],[9.9124635,47.5346571],[9.9124436,47.5346948],[9.9124523,47.534721],[9.9124815,47.5347712],[9.9124264,47.5348583],[9.9123658,47.5348893],[9.9122867,47.5349422],[9.9122488,47.5350589],[9.9121919,47.5351333],[9.9121622,47.5352146],[9.9121406,47.5352489],[9.9120969,47.5353073],[9.912121,47.535353],[9.9121162,47.5353839],[9.9120929,47.5354159],[9.9120592,47.5354378],[9.9119802,47.5354839],[9.9119752,47.5355147],[9.9119857,47.5355477],[9.9119977,47.5355694],[9.9119929,47.5355991],[9.9119526,47.5356312],[9.9119005,47.5356658],[9.9118685,47.5356886],[9.9118332,47.5357117],[9.9117591,47.5357405],[9.9117595,47.5357851],[9.9117127,47.5358504],[9.9116929,47.5359042],[9.9116862,47.5359304],[9.9117035,47.5359909],[9.9116565,47.536022],[9.9115862,47.5361023],[9.9115509,47.5361367],[9.9115478,47.5361686],[9.9115362,47.5361938],[9.9115228,47.5362202],[9.911491,47.5362385],[9.9114572,47.5362512],[9.911415,47.5362628],[9.9113644,47.5362687],[9.9112767,47.5362932],[9.9112295,47.5363139],[9.9111976,47.5363471],[9.9111777,47.5363917],[9.9111478,47.5364364],[9.9110972,47.5364732],[9.9110384,47.5365203],[9.9109996,47.5365307],[9.9109607,47.5365274],[9.9109185,47.5365425],[9.9109085,47.5365619],[9.9108886,47.5365962],[9.9108653,47.5366374],[9.910808,47.5366651],[9.9107997,47.5366913],[9.910795,47.53672],[9.9107885,47.5367772],[9.9107433,47.5368196],[9.9107079,47.5368312],[9.9106707,47.5368347],[9.9105473,47.5368351],[9.9105153,47.536841],[9.9104664,47.5368664],[9.910352,47.5369604],[9.9102055,47.5370363],[9.9101567,47.5370697],[9.910113,47.5371007],[9.9100727,47.5371339],[9.9100224,47.5371912],[9.9099787,47.5372313],[9.9099012,47.5372557],[9.9098609,47.5372878],[9.9098591,47.5372901],[9.9098275,47.5373313],[9.9097045,47.5374026],[9.9095327,47.537473],[9.9095075,47.537505],[9.9094892,47.5375531],[9.9094184,47.5375704],[9.9093643,47.5375753],[9.9093139,47.5376052],[9.9092872,47.537643],[9.9092722,47.5376772],[9.9092933,47.5377926],[9.9092936,47.5378337],[9.9092756,47.5379022],[9.909234,47.537995],[9.9091923,47.538067],[9.9091118,47.5381462],[9.9089768,47.5381775],[9.9088059,47.538161],[9.9087418,47.5381773],[9.9086831,47.5382494],[9.9085306,47.5384213],[9.9085429,47.5384518],[9.9085686,47.5385148],[9.908524,47.5386521],[9.9085631,47.5386874],[9.9085137,47.5388486],[9.9085093,47.5389343],[9.9084899,47.5390646],[9.9086042,47.5391829],[9.9084797,47.5394895],[9.9084476,47.5397009],[9.9083958,47.5398195],[9.9084052,47.5398572],[9.9084351,47.5398907],[9.9084546,47.5399354],[9.908464,47.5399675],[9.9084634,47.5399994],[9.9084506,47.5400508],[9.908562,47.5403261],[9.9084778,47.540572],[9.9084837,47.5406201],[9.9084829,47.540659],[9.908462,47.5406897],[9.9084296,47.5407066],[9.908343,47.540724],[9.908263,47.5407587],[9.9081741,47.5408071],[9.9081481,47.5408343],[9.9081255,47.5408787],[9.908012,47.5409705],[9.9079622,47.5410109],[9.907949,47.5410907],[9.9077456,47.541201],[9.9076678,47.5412117],[9.9076316,47.541241],[9.907604,47.541267],[9.9075723,47.5413399],[9.9074951,47.5413963],[9.9074808,47.5414363],[9.9074342,47.541486],[9.9074167,47.5415225],[9.9073854,47.5415668],[9.9073079,47.5415478],[9.9072576,47.5415359],[9.9071948,47.5415364],[9.9071423,47.5415417],[9.9070983,47.5415528],[9.9070639,47.5415799],[9.907026,47.541615],[9.906969,47.5416784],[9.9069104,47.5417339],[9.9068419,47.5417894],[9.9067781,47.5418448],[9.9067976,47.5418894],[9.9067904,47.5419157],[9.9067844,47.5419602],[9.9067716,47.542008],[9.9067504,47.5420627],[9.9067275,47.5421094],[9.9066603,47.5421716],[9.9066043,47.5421848],[9.9065299,47.5421876],[9.9064756,47.5421928],[9.9064071,47.5422379],[9.9063391,47.5422567],[9.9060463,47.5422838],[9.9059902,47.5422924],[9.9058672,47.5423622],[9.9057991,47.5423833],[9.9057197,47.542386],[9.9055525,47.5423764],[9.9055102,47.5423796],[9.9054622,47.54241],[9.9053568,47.5425313],[9.9053191,47.5425516],[9.9051921,47.5425618],[9.9051393,47.542583],[9.9050996,47.5426295],[9.9050315,47.5427432],[9.9048579,47.5428067],[9.9047797,47.5428288],[9.9046439,47.5428517],[9.9046083,47.5428594],[9.9044718,47.5429221],[9.9043041,47.5429458],[9.9042437,47.5430035],[9.9041943,47.5430328],[9.9041678,47.5430862],[9.9041262,47.543135],[9.9040987,47.5431588],[9.9040468,47.5432234],[9.9039904,47.5432515],[9.9039074,47.5432655],[9.9038524,47.5433085],[9.9037681,47.543302],[9.9037122,47.543306],[9.9036408,47.5433215],[9.9035878,47.5433553],[9.9035412,47.5434029],[9.9035002,47.5434265],[9.9032408,47.5435544],[9.9030644,47.5436716],[9.9029926,47.5437144],[9.9029416,47.5437288],[9.9026773,47.5437641],[9.9026328,47.5437842],[9.9026067,47.543824],[9.9025567,47.5438762],[9.9024669,47.5438869],[9.9024491,47.5439403],[9.9024014,47.5439502],[9.9023352,47.5439633],[9.9021737,47.5440098],[9.9021207,47.5440356],[9.9020949,47.5440652],[9.9020301,47.5441845],[9.9019793,47.5441863],[9.9018007,47.5441494],[9.9017605,47.5441318],[9.9017243,47.5440812],[9.9016789,47.5440693],[9.9016226,47.5440951],[9.9015869,47.5441051],[9.9014905,47.5441077],[9.901433,47.5441106],[9.9013017,47.5440785],[9.9012445,47.5440677],[9.9011751,47.5440682],[9.9011073,47.5440745],[9.9009955,47.5440929],[9.9009326,47.5441094],[9.9008735,47.544102],[9.9007992,47.5440969],[9.9007569,47.5441056],[9.9006786,47.5441243],[9.900602,47.5441545],[9.9005046,47.5442106],[9.9004537,47.5442194],[9.9003572,47.5442241],[9.9002746,47.5442188],[9.9001796,47.5442295],[9.9000768,47.5443086],[9.900037,47.5443481],[9.8999986,47.5444073],[9.8999728,47.5444367],[9.8998951,47.5445137],[9.8998592,47.5445385],[9.8998083,47.5445541],[9.8996457,47.5445628],[9.8995675,47.5445849],[9.8995042,47.5446256],[9.8993906,47.5447343],[9.8993513,47.54475],[9.899292,47.5447517],[9.8991453,47.5447377],[9.8990646,47.5447119],[9.899042,47.5446556],[9.8989978,47.5445821],[9.8989415,47.5445187],[9.8988964,47.5444887],[9.8988456,47.5444985],[9.8988328,47.5445509],[9.89879,47.5445733],[9.8986766,47.5445791],[9.898568,47.5446091],[9.8985043,47.5446565],[9.8984742,47.544734],[9.8984144,47.5447596],[9.8983228,47.5447794],[9.8982756,47.5447778],[9.8982334,47.5447694],[9.8981968,47.5447348],[9.8981992,47.5447028],[9.8981829,47.544673],[9.8981467,47.5446213],[9.8980999,47.5445911],[9.898063,47.5445759],[9.8980073,47.544564],[9.8979382,47.5445565],[9.8978772,47.5445639],[9.8977376,47.544621],[9.8976537,47.5446716],[9.8975792,47.5446744],[9.8975263,47.5447047],[9.8974894,47.5447787],[9.897446,47.5448343],[9.897375,47.5449147],[9.8972933,47.5449505],[9.897246,47.5449433],[9.8971635,47.54493],[9.8970809,47.5449202],[9.8970081,47.5449229],[9.8969439,47.5449211],[9.8968699,47.544901],[9.8967726,47.5448579],[9.896645,47.5448178],[9.8965609,47.5447954],[9.8964731,47.5447843],[9.8963713,47.5448005],[9.8962764,47.5448179],[9.8962205,47.5448174],[9.8960437,47.5447873],[9.8959831,47.5447672],[9.8959534,47.5447361],[9.895898,47.5447104],[9.8958344,47.5446859],[9.8957433,47.5446691],[9.8957044,47.544671],[9.8956599,47.54469],[9.8956141,47.5447079],[9.8955581,47.5447166],[9.8954262,47.5447152],[9.89531,47.5447005],[9.8951571,47.5446511],[9.8951032,47.544637],[9.8949902,47.5446268],[9.8949529,47.544631],[9.8948881,47.544651],[9.8948413,47.5446253],[9.8947827,47.5445963],[9.894727,47.5446003],[9.8946768,47.5446524],[9.8946136,47.5446862],[9.894566,47.5446972],[9.8945305,47.5446923],[9.8944905,47.5446724],[9.8944501,47.5446595],[9.8942566,47.5446189],[9.8939838,47.544557],[9.8938998,47.5445323],[9.8937171,47.5444551],[9.8936614,47.5444421],[9.8935532,47.5444468],[9.8934698,47.5444734],[9.8934284,47.544512],[9.8933731,47.5445721],[9.8933391,47.54459],[9.8932577,47.5445995],[9.8931985,47.5446013],[9.8931496,47.5445894],[9.893076,47.5445556],[9.8929022,47.5444489],[9.8928389,47.5444014],[9.8927579,47.5443036],[9.8927198,47.5442655],[9.8926711,47.544241],[9.8926223,47.5442349],[9.8924985,47.5442578],[9.8924443,47.5442595],[9.8923955,47.5442477],[9.8922935,47.5441941],[9.8922198,47.5441592],[9.8918631,47.5440599],[9.8917638,47.5440465],[9.8916961,47.5440459],[9.8916415,47.5440751],[9.8915407,47.5442136],[9.8915047,47.5442442],[9.8914297,47.544272],[9.8913825,47.5442658],[9.8913305,47.5442414],[9.8912757,47.5441894],[9.8912386,47.5441023],[9.8911939,47.5440538],[9.8911208,47.5439892],[9.8910586,47.5439703],[9.890979,47.5439731],[9.8905508,47.5440868],[9.8905202,47.5440945],[9.8902167,47.5441351],[9.8901702,47.5441885],[9.890141,47.5442054],[9.8900866,47.5442196],[9.8900495,47.5442193],[9.8899754,47.5442084],[9.889797,47.5441621],[9.8897379,47.5441571],[9.8895768,47.5441853],[9.8895309,47.544194],[9.8894515,47.5441899],[9.8893623,47.5441662],[9.8893105,47.5441406],[9.8892806,47.5441163],[9.8892315,47.5440267],[9.8892,47.543999],[9.889153,47.5439826],[9.8891039,47.5439867],[9.889039,47.5440169],[9.889008,47.5440463],[9.8890025,47.544068],[9.889016,47.5441561],[9.8890061,47.5442326],[9.8889728,47.5442906],[9.8889021,47.5443597],[9.8887847,47.5444923],[9.8887369,47.5445158],[9.888698,47.544519],[9.8886338,47.5445115],[9.8885868,47.5444905],[9.8885099,47.544451],[9.8884561,47.544431],[9.8883161,47.5444125],[9.8882687,47.5444155],[9.8882313,47.5444358],[9.888197,47.5444561],[9.8881482,47.5445333],[9.8881186,47.5445799],[9.8880808,47.5446081],[9.8877304,47.5448014],[9.887684,47.5448145],[9.8876436,47.5448258],[9.8875607,47.5448353],[9.8874137,47.5448317],[9.8873527,47.5448391],[9.8873048,47.5448661],[9.8871528,47.5450292],[9.8871012,47.5450745],[9.8869823,47.5451032],[9.8866229,47.545157],[9.8865633,47.5451701],[9.8865223,47.5451914],[9.8864862,47.5452243],[9.8864621,47.5452538],[9.8864533,47.5454411],[9.8864594,47.5454732],[9.8865617,47.545601],[9.8866718,47.5456796],[9.8867232,47.5457259],[9.8867443,47.5457741],[9.8867466,47.5458346],[9.886709,47.545944],[9.8866574,47.5459834],[9.8865707,47.5460125],[9.8863892,47.5460427],[9.8862587,47.5460599],[9.8859356,47.5460615],[9.8857526,47.5460837],[9.8856098,47.5461235],[9.8855211,47.5461673],[9.8854488,47.5462375],[9.8853605,47.5463373],[9.8853007,47.5463767],[9.8850331,47.5464828],[9.8850004,47.5465099],[9.8849776,47.5465577],[9.8849782,47.546608],[9.8849891,47.5466562],[9.8850632,47.5467585],[9.8850813,47.5467827],[9.8850808,47.5468079],[9.8850634,47.5468327],[9.885031,47.5468496],[9.8849716,47.5468571],[9.8843353,47.5469781],[9.8841777,47.5469949],[9.8840576,47.5469983],[9.8838684,47.5469921],[9.8837835,47.5470095],[9.8837357,47.5470319],[9.8837014,47.5470636],[9.883687,47.5471001],[9.8836761,47.5471389],[9.8837064,47.5472306],[9.8837041,47.547266],[9.8836746,47.5473046],[9.8836369,47.5473305],[9.8835535,47.5473525],[9.8834707,47.547354],[9.8833219,47.5473482],[9.8831476,47.5473636],[9.8830779,47.5473802],[9.8829366,47.5474326],[9.8828873,47.547447],[9.8828332,47.5474464],[9.8826313,47.5473978],[9.8825924,47.5473939],[9.8825381,47.547406],[9.8825038,47.5474343],[9.8824863,47.5474661],[9.8824733,47.5477722],[9.8824471,47.5478167],[9.8823557,47.547914],[9.8823061,47.5479387],[9.8822399,47.5479507],[9.882186,47.5479445],[9.8821073,47.5479049],[9.8820402,47.547878],[9.8819878,47.5478787],[9.8819132,47.5478859],[9.8818436,47.5479059],[9.8816315,47.5480296],[9.8815425,47.5480813],[9.8814011,47.5481372],[9.8813164,47.5481489],[9.8812471,47.5481426],[9.8808316,47.5480348],[9.8807646,47.5480079],[9.880626,47.547914],[9.8805353,47.5478823],[9.8804577,47.5478747],[9.8803493,47.5478887],[9.8803286,47.547893],[9.8802185,47.5479161],[9.8800565,47.5478117],[9.8798848,47.547689],[9.8796585,47.5475018],[9.8794775,47.5473355],[9.8793203,47.5471626],[9.8792341,47.5470704],[9.8790388,47.5468605],[9.878757,47.5466568],[9.8784893,47.5464971],[9.8784013,47.5464444],[9.8782292,47.5463298],[9.8779445,47.5461122],[9.8776591,47.5458364],[9.8771675,47.5454742],[9.8768096,47.5452708],[9.8763927,47.5449859],[9.8761113,47.5447604],[9.8758908,47.5445425],[9.8755999,47.5441135],[9.8755979,47.5441103],[9.8752798,47.5436305],[9.8751486,47.543427],[9.8750865,47.5432379],[9.8750756,47.5430972],[9.8751065,47.5429889],[9.8751715,47.5428638],[9.8753298,47.5427293],[9.8755759,47.5425864],[9.8758946,47.5424603],[9.8761172,47.5424018],[9.8763822,47.5423436],[9.8767302,47.5422681],[9.8770889,47.5421697],[9.8775831,47.5419685],[9.8776515,47.5419269],[9.8777778,47.5417796],[9.8778761,47.541593],[9.877894,47.5413692],[9.8779252,47.5410581],[9.877957,47.5408126],[9.8779662,47.5404055],[9.8779457,47.5397063],[9.8780368,47.5387569],[9.8780273,47.5386688],[9.8779297,47.5384673],[9.8778674,47.5383328],[9.8777924,47.5380974],[9.8776701,47.5378076],[9.8774828,47.5375434],[9.8772975,47.5373353],[9.87699,47.5370148],[9.8762407,47.5363513],[9.8761324,47.5362345],[9.8760545,47.53611],[9.8760306,47.5359954],[9.8760797,47.5356711],[9.8761154,47.5354702],[9.8761887,47.5352561],[9.8762169,47.5351466],[9.8761779,47.5350237],[9.8761525,47.5349651],[9.8761068,47.5349028],[9.8759892,47.5348109],[9.8757504,47.5346491],[9.8741984,47.5338707],[9.8739825,47.5337354],[9.8739022,47.533643],[9.8738825,47.5335569],[9.8739141,47.5334428],[9.8743968,47.533077],[9.8752162,47.5326225],[9.8753682,47.5324997],[9.875551,47.5322926],[9.8756586,47.5321166],[9.8757039,47.5318758],[9.8756851,47.5316286],[9.8756415,47.5312985],[9.8755805,47.5309226],[9.8755396,47.5308089],[9.8753279,47.5304529],[9.8752085,47.5301724],[9.8751613,47.5298503],[9.8751055,47.5294744],[9.8750398,47.5292712],[9.8749552,47.5290883],[9.8748689,47.5289648],[9.8747024,47.5287523],[9.8745052,47.5285372],[9.8744927,47.528544],[9.8744201,47.5285843],[9.8742346,47.5286869],[9.8738658,47.5288072],[9.8737161,47.5288635],[9.8735266,47.5289761],[9.8734931,47.5290074],[9.8734942,47.5290577],[9.8735107,47.5292513],[9.8734886,47.5294795],[9.8734397,47.5297003],[9.8733571,47.5298462],[9.873277,47.5299348],[9.8731886,47.5300198],[9.8730533,47.5300912],[9.8729759,47.5301228],[9.8728556,47.5301637],[9.8727083,47.5302063],[9.8724324,47.5302518],[9.8717933,47.5303606],[9.8715234,47.5304235],[9.8713604,47.5304737],[9.8712465,47.530525],[9.8710832,47.5306199],[9.8707893,47.5308733],[9.8706196,47.5310012],[9.8704499,47.531089],[9.8703275,47.531139],[9.8702142,47.5311766],[9.8701378,47.5311842],[9.8700504,47.5311743],[9.8697831,47.5311431],[9.8697389,47.5311447],[9.8696626,47.5311477],[9.8695717,47.5311755],[9.8694847,47.5312309],[9.869367,47.5313244],[9.8692246,47.5314505],[9.8690874,47.5315277],[9.8687951,47.5317057],[9.8687935,47.5317067],[9.86873,47.5317624],[9.8686757,47.5318426],[9.868673,47.5318466],[9.868594,47.5319666],[9.8685394,47.5320157],[9.8684433,47.5320457],[9.8683928,47.5320411],[9.8683359,47.5320251],[9.8683243,47.5320149],[9.8680091,47.5317391],[9.8679151,47.5316867],[9.8677831,47.5316531],[9.867593,47.5316319],[9.8674699,47.5316269],[9.8673128,47.5316557],[9.8671793,47.5316917],[9.867053,47.5317564],[9.8667106,47.5319607],[9.8666122,47.5320043],[9.8663819,47.532052],[9.8662214,47.5321195],[9.8659894,47.5322392],[9.8658708,47.5323167],[9.8657726,47.5323947],[9.8654912,47.5325614],[9.8653251,47.5326813],[9.8651075,47.5328562],[9.8650467,47.5328915],[9.8649349,47.5329337],[9.8647977,47.5329696],[9.8646277,47.5330141],[9.8645977,47.533022],[9.864252,47.5331123],[9.8641124,47.5331723],[9.8640032,47.5332683],[9.8639044,47.5333565],[9.8637632,47.5334485],[9.8636679,47.5335013],[9.8635333,47.533559],[9.8634514,47.5335767],[9.8633903,47.5335834],[9.863257,47.533576],[9.862804,47.5335365],[9.8625885,47.5335102],[9.8622195,47.5334086],[9.8621866,47.5333873],[9.862123,47.5333391],[9.8620257,47.533321],[9.861927,47.5333371],[9.8618086,47.5333711],[9.8616749,47.5334495],[9.8614426,47.5336149],[9.8611549,47.5338054],[9.8610847,47.5338212],[9.8609112,47.5338083],[9.8608603,47.5338118],[9.8608213,47.5338121],[9.8607549,47.5337855],[9.8607126,47.5337504],[9.8606771,47.5337107],[9.8606431,47.5336791],[9.8605471,47.5336335],[9.8602963,47.5335722],[9.8601257,47.5335685],[9.859916,47.5336075],[9.8598194,47.5336112],[9.8597347,47.5336127],[9.8596469,47.5336085],[9.8594492,47.5336078],[9.8591367,47.5336376],[9.8588021,47.5337037],[9.8585373,47.5338044],[9.8583884,47.5338767],[9.8583176,47.5339472],[9.8582357,47.5341101],[9.8582234,47.5342334],[9.8582146,47.5343155],[9.8582207,47.5344425],[9.8581943,47.5345746],[9.8581236,47.5347138],[9.8581405,47.5347896],[9.8581827,47.534866],[9.8581624,47.534941],[9.8581144,47.5350281],[9.8580643,47.5350876],[9.8580268,47.5351314],[9.8579864,47.5351648],[9.8579372,47.5352038],[9.8578781,47.5352426],[9.8577468,47.5353015],[9.8575079,47.5354245],[9.857241,47.535564],[9.8570875,47.5356694],[9.8570203,47.5357343],[9.856974,47.5357846],[9.856959,47.5358187],[9.8569602,47.5358645],[9.8569451,47.5358972],[9.8568597,47.5359732],[9.8567282,47.536095],[9.856681,47.5361284],[9.8566485,47.5361379],[9.8566042,47.536145],[9.8565298,47.5361446],[9.8564913,47.5361323],[9.8563219,47.5360658],[9.8562579,47.536061],[9.8561839,47.5360548],[9.8561166,47.5360465],[9.856009,47.5360294],[9.8559312,47.5360311],[9.8558658,47.5360548],[9.8556996,47.5361771],[9.8556826,47.5362179],[9.8557019,47.5362754],[9.8557371,47.5363574],[9.8557472,47.5364697],[9.8557388,47.5365427],[9.855751,47.5365704],[9.8558222,47.5366394],[9.8558377,47.5367107],[9.8558281,47.536842],[9.8558077,47.5369215],[9.8557709,47.5369882],[9.8556414,47.5371181],[9.8555084,47.5372548],[9.8554254,47.5374405],[9.8554281,47.537492],[9.8554455,47.5375599],[9.8554537,47.5376573],[9.855439,47.5377194],[9.8554259,47.5377758],[9.8553845,47.5378201],[9.8553258,47.5378822],[9.8552139,47.5379738],[9.8551216,47.5380243],[9.8550021,47.5380792],[9.8548862,47.5381272],[9.8547498,47.5381784],[9.854642,47.5382413],[9.8544819,47.5383804],[9.854402,47.5384859],[9.8543629,47.5385825],[9.8543498,47.5386476],[9.8542915,47.5387636],[9.8541818,47.5390002],[9.854115,47.539211],[9.8540957,47.5393262],[9.8540536,47.5394012],[9.8539739,47.5394987],[9.8538738,47.5395892],[9.8537761,47.5396534],[9.8536866,47.5397347],[9.8536306,47.5398234],[9.8535438,47.5399356],[9.8534475,47.5400182],[9.8533002,47.5401001],[9.8531759,47.5401504],[9.8529716,47.5402203],[9.8528526,47.540249],[9.8527446,47.540267],[9.8526726,47.5402792],[9.8526168,47.5402855],[9.8525793,47.5403023],[9.8525566,47.5403306],[9.8525386,47.5403842],[9.8524872,47.5404213],[9.8524381,47.5404288],[9.8523754,47.5404271],[9.8521378,47.5403825],[9.8520315,47.5403735],[9.8519485,47.540383],[9.8518327,47.5404264],[9.8516363,47.5405182],[9.8515368,47.5405869],[9.8514775,47.5406755],[9.8513555,47.5407668],[9.8512241,47.5408307],[9.8511305,47.5408584],[9.8510745,47.5408636],[9.8510206,47.5408573],[9.8508876,47.540823],[9.8508066,47.5408221],[9.8507333,47.5408432],[9.8505823,47.5409502],[9.850319,47.5410974],[9.8502351,47.5411389],[9.8502107,47.541182],[9.850196,47.5412368],[9.8502434,47.5413171],[9.8503447,47.5414141],[9.8503737,47.5414818],[9.8503587,47.541548],[9.8503172,47.5415944],[9.8503241,47.5416192],[9.8502301,47.5416393],[9.8501197,47.5416588],[9.8498693,47.5416678],[9.8497656,47.5416885],[9.8496618,47.5417195],[9.8495901,47.5417553],[9.8495029,47.5418036],[9.8493948,47.5418836],[9.8493161,47.5419229],[9.8492359,47.5419576],[9.8491238,47.5419851],[9.8488744,47.5420283],[9.8487892,47.5420594],[9.8487121,47.5420999],[9.8486438,47.5421347],[9.8485385,47.5421565],[9.8483288,47.5421601],[9.8482274,47.5421557],[9.8480959,47.5421339],[9.847902,47.5421069],[9.8477062,47.5420878],[9.8473639,47.5420388],[9.847286,47.542046],[9.8470685,47.5420976],[9.8469635,47.5421057],[9.8469562,47.5421039],[9.8468946,47.5420879],[9.8468376,47.5420599],[9.8467292,47.5419857],[9.8466371,47.5419495],[9.84644,47.5419076],[9.846331,47.5418642],[9.846165,47.5417951],[9.8461061,47.5417774],[9.8459202,47.541771],[9.8458275,47.5417587],[9.8457857,47.5417343],[9.845771,47.5417067],[9.8457774,47.5416417],[9.8457921,47.5415846],[9.8457641,47.5415569],[9.845658,47.5415286],[9.8453531,47.5414706],[9.8452775,47.5414527],[9.8451428,47.5414229],[9.8449811,47.5413916],[9.8447303,47.541332],[9.8444604,47.541302],[9.8443588,47.541309],[9.8442907,47.5413266],[9.8439084,47.5414943],[9.843799,47.5415595],[9.8437437,47.5416103],[9.8436171,47.5416845],[9.8435128,47.5417373],[9.8434031,47.5418127],[9.84334,47.5418338],[9.8432337,47.5418305],[9.8431322,47.5418261],[9.8430683,47.5418106],[9.8429743,47.5417753],[9.8428286,47.5417111],[9.8427125,47.5416745],[9.8425879,47.5416562],[9.8425608,47.5416589],[9.842454,47.5416697],[9.8423503,47.5416984],[9.842176,47.5417847],[9.8419924,47.5419144],[9.8418758,47.5419909],[9.8418041,47.5420234],[9.8412362,47.5420921],[9.8411213,47.5420807],[9.840868,47.5419856],[9.8407484,47.5419605],[9.8405896,47.541952],[9.8405015,47.5419683],[9.8404261,47.5420133],[9.8403878,47.5420643],[9.8403424,47.5421393],[9.8402807,47.5423398],[9.8402273,47.5423838],[9.8401556,47.5424117],[9.8399847,47.5424249],[9.839898,47.54244],[9.8397957,47.5424836],[9.8396831,47.5425305],[9.8395034,47.5426338],[9.8393469,47.5427557],[9.8392807,47.5428579],[9.8392331,47.5429512],[9.8392114,47.5430149],[9.8391804,47.5430386],[9.8391364,47.543044],[9.8390792,47.5430262],[9.8389773,47.542968],[9.8388881,47.5429501],[9.8388168,47.5429631],[9.8386654,47.5430028],[9.8385774,47.5430133],[9.8384016,47.542999],[9.8383123,47.5429913],[9.8382582,47.5429873],[9.8381937,47.5429958],[9.838117,47.5430328],[9.8380257,47.5431084],[9.8379218,47.543144],[9.8378118,47.5431532],[9.8377121,47.5431431],[9.8376217,47.5430953],[9.8374599,47.542912],[9.8373898,47.5428634],[9.8373178,47.5428329],[9.8371998,47.5428158],[9.8370711,47.5428226],[9.8368637,47.5428696],[9.8367086,47.5429309],[9.836493,47.5430569],[9.8363775,47.5431608],[9.8363141,47.5432024],[9.8360967,47.5432391],[9.8359747,47.5432597],[9.8359128,47.5433025],[9.8358299,47.5433873],[9.8357618,47.5434039],[9.8356017,47.5433874],[9.8354849,47.5433885],[9.8352692,47.5434379],[9.8351423,47.5434366],[9.8349598,47.5434326],[9.8347778,47.5434021],[9.8346647,47.5433896],[9.8345402,47.5434398],[9.8343365,47.5435567],[9.8341304,47.5437111],[9.834097,47.5437726],[9.8340449,47.543916],[9.8340464,47.5439527],[9.8340518,47.5440795],[9.8340238,47.5441238],[9.8339466,47.5441755],[9.833717,47.5442316],[9.8335067,47.5442649],[9.8331335,47.5442395],[9.8328104,47.5442398],[9.832671,47.5442785],[9.8324021,47.5443535],[9.8322185,47.5443774],[9.8322071,47.5443789],[9.8321903,47.5443811],[9.8319704,47.5443813],[9.831655,47.5443426],[9.8314602,47.544359],[9.8312531,47.5443946],[9.8310515,47.5444144],[9.8303255,47.5443512],[9.8300335,47.5443209],[9.8299852,47.5443285],[9.8299545,47.5443334],[9.8299455,47.5443349],[9.8299028,47.5443516],[9.8298807,47.5444119],[9.8297825,47.5445115],[9.8298425,47.5445702],[9.8299464,47.5446461],[9.8299797,47.5446869],[9.8299858,47.5447317],[9.8299761,47.5447566],[9.8298871,47.5447774],[9.8298511,47.5447857],[9.8298188,47.5448215],[9.8297918,47.5449136],[9.8297682,47.5449474],[9.8297076,47.5450055],[9.8296945,47.5450304],[9.8296892,47.5450645],[9.8296709,47.5451866],[9.8296348,47.5452901],[9.8296187,47.5453091],[9.8295954,47.5453291],[9.8294918,47.5453747],[9.8294699,47.5454051],[9.8294737,47.5454292],[9.8294943,47.5454859],[9.8294981,47.5455101],[9.8294679,47.545539],[9.8292068,47.5458384],[9.8292066,47.545874],[9.8292551,47.5459438],[9.8292831,47.5460189],[9.8293256,47.5461093],[9.8293273,47.5461402],[9.8293016,47.5461786],[9.8292529,47.546206],[9.829165,47.5462382],[9.8289902,47.5462855],[9.8289334,47.5463035],[9.8287483,47.546386],[9.8285454,47.5464841],[9.8284971,47.5465025],[9.8284289,47.5465157],[9.8283959,47.5465308],[9.8283281,47.5465659],[9.8282468,47.5466028],[9.8281952,47.5466211],[9.82805,47.546653],[9.8277939,47.5467027],[9.827533,47.5467491],[9.8274941,47.5467528],[9.8274604,47.5467484],[9.8273021,47.5467079],[9.8272087,47.546685],[9.8271067,47.5466688],[9.8270003,47.5466673],[9.8268751,47.5466711],[9.8268363,47.5466713],[9.8268045,47.5466648],[9.8267497,47.5466486],[9.8267092,47.5466464],[9.8266602,47.5466476],[9.8264521,47.5466882],[9.8263703,47.5466999],[9.826253,47.5467143],[9.8262121,47.5467224],[9.8261655,47.5467419],[9.8261143,47.5467498],[9.8260758,47.5467444],[9.8260191,47.5467314],[9.8259737,47.5467269],[9.825764,47.5467321],[9.8257334,47.5467348],[9.8255275,47.546826],[9.8254977,47.546848],[9.825467,47.5468816],[9.825443,47.5469201],[9.8254343,47.5469908],[9.8254053,47.5470278],[9.8253819,47.5470536],[9.8252889,47.5470846],[9.8252631,47.5471252],[9.8252193,47.5471551],[9.8251136,47.5472063],[9.8250955,47.5472264],[9.8250894,47.5472446],[9.8250534,47.5472575],[9.8250014,47.5472803],[9.8249594,47.5473079],[9.8249305,47.5473128],[9.8248916,47.5473131],[9.8248446,47.5473085],[9.8248159,47.547309],[9.8247885,47.5473151],[9.8247023,47.5473451],[9.8246616,47.5473498],[9.824616,47.5473521],[9.8245834,47.5473581],[9.8244352,47.5474141],[9.8243588,47.547419],[9.8243315,47.5474275],[9.8243022,47.5474372],[9.824275,47.54744],[9.8239833,47.5474316],[9.8239345,47.547427],[9.8237939,47.5474052],[9.8237131,47.547401],[9.8235015,47.5474084],[9.8234231,47.5474202],[9.8233776,47.5474225],[9.8232575,47.5473909],[9.8232104,47.5473897],[9.8230073,47.5474282],[9.8229606,47.5474477],[9.822893,47.5474793],[9.8228336,47.5474881],[9.8227589,47.5474921],[9.8226276,47.5474842],[9.8225258,47.5474623],[9.8224172,47.5474378],[9.8222936,47.5473845],[9.8222251,47.5473713],[9.8221395,47.5473623],[9.8220371,47.5473494],[9.8219469,47.5473301],[9.8218581,47.5473164],[9.8217874,47.5473124],[9.8216871,47.5473248],[9.8216424,47.5473386],[9.8216023,47.5473629],[9.8215713,47.5473713],[9.8215395,47.5473681],[9.821446,47.5473475],[9.8213989,47.547343],[9.8212531,47.5473566],[9.8211488,47.5473781],[9.8211117,47.5473771],[9.8210645,47.5473759],[9.8208243,47.5474147],[9.8207906,47.547415],[9.8207146,47.547412],[9.8206842,47.5474124],[9.8206599,47.5474233],[9.8206247,47.547451],[9.8205838,47.5474581],[9.820545,47.5474571],[9.8203213,47.5474081],[9.8202759,47.5474024],[9.8202234,47.5474079],[9.8201719,47.5474227],[9.8201011,47.5474176],[9.8200757,47.5474215],[9.8199081,47.5474598],[9.8198675,47.5474622],[9.8198071,47.547455],[9.8194769,47.547408],[9.8194192,47.54741],[9.8193502,47.5474248],[9.8193058,47.5474343],[9.8192331,47.54745],[9.8191331,47.5474545],[9.8190202,47.5474506],[9.8189243,47.5474448],[9.818892,47.5474497],[9.8188131,47.5474695],[9.8187695,47.5474627],[9.8187246,47.5474524],[9.8186123,47.5474051],[9.8185887,47.5474022],[9.8182907,47.5474808],[9.8182453,47.5474761],[9.8182238,47.5474687],[9.8181803,47.5474608],[9.8181039,47.547467],[9.8180018,47.5474827],[9.8176177,47.5474974],[9.8174989,47.547507],[9.8174319,47.547526],[9.81738,47.5475522],[9.8173521,47.5475665],[9.8173302,47.5475659],[9.8171797,47.5475528],[9.8169767,47.5475466],[9.8168674,47.547477],[9.8167246,47.5474369],[9.8166094,47.5474227],[9.8164333,47.5474494],[9.8160003,47.547534],[9.8158864,47.5475908],[9.8157872,47.5476661],[9.815755,47.5476954],[9.8157422,47.5477283],[9.8157145,47.5478138],[9.8156159,47.5479309],[9.8156202,47.54803],[9.8156762,47.5481697],[9.8156301,47.5482272],[9.8156782,47.5483479],[9.8157462,47.5485584],[9.815564,47.5486569],[9.8154797,47.5487024],[9.8154679,47.5487296],[9.8154284,47.5488189],[9.8153767,47.5489504],[9.8153224,47.5491948],[9.81523,47.549367],[9.8151113,47.5495884],[9.8150703,47.5496414],[9.8155683,47.5497904],[9.8157432,47.5499535],[9.8160043,47.5501726],[9.816094,47.5502478],[9.8160539,47.5504265],[9.8160161,47.5505776],[9.8163259,47.5509563],[9.8165038,47.5510214],[9.816779,47.5512833],[9.8164672,47.5514028],[9.8165916,47.5517198],[9.8166467,47.5519392],[9.8166846,47.552152],[9.8167019,47.5524611],[9.8167344,47.5527223],[9.8168338,47.5529722],[9.8168558,47.5530333],[9.8171007,47.5533268],[9.8174891,47.5535673],[9.8179408,47.5538135],[9.8183491,47.5541698],[9.818868,47.5544782],[9.8192204,47.5545656],[9.8194713,47.5546306],[9.8198684,47.5546667],[9.8201994,47.5547074],[9.8205186,47.5547582],[9.8208072,47.5548542],[9.8210818,47.5550018],[9.8209681,47.5550907],[9.8213294,47.5553984],[9.8216195,47.5558633],[9.8217918,47.5561786],[9.8218774,47.5562227],[9.8221429,47.556369],[9.822397,47.5565207],[9.8229049,47.556675],[9.8231675,47.5567888],[9.8234869,47.5570265],[9.8236391,47.5572097],[9.8237574,47.5574255],[9.8237106,47.5577879],[9.8236383,47.5581508],[9.8238429,47.5582443],[9.8240479,47.5583223],[9.8240962,47.5583338],[9.8241902,47.5583442],[9.8243118,47.5583448],[9.8243724,47.5583509],[9.8244084,47.5583701],[9.8245098,47.5584322],[9.8245442,47.5584514],[9.8246588,47.5584896],[9.8246848,47.5585052],[9.8247259,47.558559],[9.8248095,47.5586675],[9.8248411,47.5587106],[9.824861,47.5587798],[9.8248797,47.55881],[9.8249802,47.5588881],[9.825111,47.558999],[9.8251384,47.5590249],[9.8251685,47.5590301],[9.8252358,47.5590341],[9.8252642,47.5590394],[9.8252938,47.5590573],[9.8253168,47.5590681],[9.8254616,47.5591061],[9.8254831,47.559114],[9.8254849,47.5591146],[9.8255246,47.5591626],[9.825544,47.5591791],[9.8255585,47.5591861],[9.8256191,47.5592156],[9.8256949,47.559527],[9.82568,47.5597995],[9.8258491,47.5600945],[9.8259626,47.5604206],[9.826039,47.5608508],[9.8260449,47.5610491],[9.8260359,47.5611966],[9.8260778,47.5614013],[9.8260269,47.5616363],[9.8258985,47.561801],[9.8258797,47.5618252],[9.8258739,47.5618587],[9.8258606,47.5619365],[9.8258543,47.5619731],[9.8258517,47.5619885],[9.825764,47.5623382],[9.825758,47.5623842],[9.8257568,47.5624082],[9.8257636,47.5624358],[9.8257613,47.5624495],[9.8257416,47.5624686],[9.8257411,47.5624776],[9.8257758,47.5624922],[9.82581,47.5625126],[9.8258403,47.5625488],[9.82585,47.5625881],[9.8258178,47.5626536],[9.8258023,47.562659],[9.8257346,47.562662],[9.8256916,47.5626758],[9.8256374,47.5627076],[9.8256223,47.5627394],[9.8256272,47.5628025],[9.8255845,47.5628461],[9.8255069,47.5629037],[9.8255064,47.562914],[9.8255402,47.5629457],[9.8255428,47.5629596],[9.8254669,47.5629876],[9.8254436,47.563011],[9.8254207,47.5630597],[9.8254287,47.5631297],[9.8254325,47.5631562],[9.8253916,47.563257],[9.8253225,47.5633446],[9.8252967,47.5633567],[9.8252092,47.5633797],[9.8251039,47.563423],[9.825032,47.5634693],[9.825018,47.5634804],[9.8249628,47.5635019],[9.8249254,47.5635354],[9.8248926,47.5636136],[9.8248585,47.5636494],[9.824787,47.56369],[9.8246847,47.5637081],[9.8246604,47.5637201],[9.8246612,47.563735],[9.8246702,47.5637582],[9.8246562,47.5637659],[9.8245659,47.5637796],[9.8245103,47.5638092],[9.8244889,47.5638614],[9.8244625,47.5639146],[9.8244371,47.5639448],[9.8244136,47.5639718],[9.8243527,47.5640046],[9.8243329,47.5640282],[9.824316,47.5640609],[9.8242835,47.564098],[9.8241765,47.5641412],[9.8241416,47.5641621],[9.8241145,47.5641923],[9.8240948,47.5642137],[9.8239766,47.564434],[9.8239357,47.5644696],[9.8239299,47.5645783],[9.8239158,47.5646203],[9.823895,47.5646588],[9.8238327,47.5647191],[9.8238198,47.5647405],[9.8238092,47.5647781],[9.8238051,47.5648547],[9.8237714,47.564886],[9.823687,47.5649136],[9.8236398,47.5649445],[9.8235072,47.5650822],[9.8234893,47.5651665],[9.823442,47.5651963],[9.8234239,47.5652507],[9.8233733,47.5653125],[9.8233466,47.5653359],[9.8233101,47.5653557],[9.8231654,47.5654083],[9.8231506,47.565433],[9.8231216,47.5655595],[9.823113,47.5655958],[9.8230615,47.5656748],[9.8230786,47.5657011],[9.8230721,47.5657354],[9.8230342,47.5657506],[9.823015,47.565765],[9.8229786,47.565857],[9.8229626,47.5658739],[9.8229268,47.5659143],[9.8229081,47.5659929],[9.8228776,47.56603],[9.8228504,47.5660684],[9.8228424,47.5660934],[9.8228433,47.566114],[9.8228537,47.5661784],[9.8228479,47.5662298],[9.8228155,47.5662703],[9.8227063,47.5663676],[9.8226843,47.5664061],[9.8227015,47.566435],[9.8227015,47.5664706],[9.8226887,47.566492],[9.822662,47.5665201],[9.8226526,47.5665394],[9.8226559,47.5665772],[9.8226524,47.5666172],[9.8226271,47.5666521],[9.8226007,47.5666733],[9.8225333,47.5667052],[9.8225002,47.5667295],[9.8224819,47.5667589],[9.8224795,47.5668104],[9.8224765,47.5668389],[9.8224668,47.5668639],[9.8224112,47.5669326],[9.8223878,47.5669653],[9.8223831,47.5669927],[9.8223897,47.5670329],[9.8223886,47.5670558],[9.8223706,47.5670795],[9.822322,47.567107],[9.8223008,47.5671295],[9.8222878,47.5671521],[9.822311,47.5671972],[9.8223108,47.5672374],[9.8222963,47.5672587],[9.8222623,47.5672981],[9.8222719,47.5673121],[9.8222907,47.5673434],[9.8222767,47.5673866],[9.8222384,47.5674843],[9.822203,47.5675178],[9.8221911,47.5675554],[9.8221906,47.5676023],[9.8221395,47.5676493],[9.8220577,47.5676979],[9.822053,47.5677288],[9.8220665,47.5678011],[9.8220667,47.5678687],[9.8221046,47.5679234],[9.8221094,47.5679648],[9.8220901,47.5680158],[9.8220535,47.5680746],[9.821932,47.5681831],[9.8219196,47.5682309],[9.8219236,47.5682882],[9.8219153,47.5683212],[9.8218819,47.568388],[9.8218646,47.5684289],[9.8217892,47.5684915],[9.8218161,47.568563],[9.8217698,47.5686514],[9.8217611,47.5686924],[9.821764,47.5687395],[9.8217776,47.5687706],[9.8219232,47.5689811],[9.8219462,47.5690263],[9.8219655,47.5691195],[9.8220061,47.5691913],[9.822012,47.5692465],[9.8220141,47.5694148],[9.8219496,47.569457],[9.8219413,47.5694922],[9.8218823,47.5695632],[9.8217938,47.5696506],[9.8218303,47.5696971],[9.8219012,47.5698052],[9.8219096,47.5698443],[9.8218524,47.5699107],[9.8217876,47.5699207],[9.8216966,47.5699198],[9.8215894,47.5699026],[9.8215368,47.569906],[9.8214753,47.5699551],[9.8214682,47.5699995],[9.821455,47.5700657],[9.8214326,47.5701134],[9.8212408,47.5702774],[9.8211577,47.570357],[9.8210703,47.5704548],[9.8210207,47.5705041],[9.8209977,47.5705607],[9.8209688,47.5706014],[9.8209017,47.5706629],[9.8208101,47.5707068],[9.8207906,47.5707624],[9.8208235,47.5708193],[9.8208876,47.5708527],[9.8210235,47.5709072],[9.8210878,47.5709429],[9.8211199,47.5709803],[9.8211469,47.5710153],[9.8212076,47.5711302],[9.8212229,47.5711589],[9.8212697,47.5712057],[9.8213519,47.5712534],[9.8214433,47.5712829],[9.8215528,47.571323],[9.8216149,47.5713703],[9.8216314,47.5714152],[9.8216812,47.5714644],[9.8217413,47.5714817],[9.8218064,47.5714992],[9.8218974,47.5715023],[9.8220233,47.5714845],[9.8220861,47.5714743],[9.8222422,47.5714594],[9.8223442,47.571448],[9.8224642,47.5714792],[9.8225929,47.5715805],[9.8226457,47.5716401],[9.8226829,47.571713],[9.8227272,47.5717758],[9.8227659,47.5718168],[9.8228381,47.5718596],[9.8228815,47.5719063],[9.8228913,47.5719478],[9.8228877,47.5719913],[9.8228538,47.572066],[9.8228667,47.5721122],[9.8229267,47.5721305],[9.8230643,47.5721474],[9.8233236,47.5721657],[9.8233948,47.5721934],[9.8234574,47.5722269],[9.8235206,47.57225],[9.8236764,47.5723107],[9.8237515,47.5723673],[9.8238377,47.5724746],[9.8238829,47.5725081],[9.8239093,47.5725276],[9.8239815,47.5725811],[9.8239908,47.5725942],[9.8242027,47.5726029],[9.8243128,47.5726075],[9.8244444,47.5726339],[9.8245339,47.5726694],[9.8246699,47.5727235],[9.82471,47.572759],[9.8247947,47.5728337],[9.8248767,47.5729658],[9.8249242,47.5730193],[9.8250035,47.5730727],[9.8251857,47.5731764],[9.8253424,47.5732656],[9.825413,47.5733692],[9.8254642,47.5734445],[9.825525,47.5735368],[9.8257365,47.5737113],[9.8258042,47.5737874],[9.8258078,47.5737916],[9.8258462,47.5738462],[9.8258679,47.5739243],[9.8258728,47.5739611],[9.8258828,47.5740343],[9.8258937,47.5741189],[9.8259536,47.5745805],[9.8260475,47.5752866],[9.8260561,47.575352],[9.8261163,47.57581],[9.8261416,47.5760042],[9.8261466,47.5760418],[9.8262558,47.5761094],[9.8262001,47.5762519],[9.8262153,47.5763845],[9.8263232,47.5765237],[9.8265386,47.5766975],[9.8267452,47.576773],[9.8268443,47.5768859],[9.8269508,47.5771314],[9.8271117,47.5773637],[9.8271534,47.5775577],[9.8271578,47.5775786],[9.8271618,47.5775984],[9.8271056,47.5776674],[9.8270078,47.5777318],[9.8269297,47.577967],[9.8269859,47.5780851],[9.8270067,47.5781269],[9.8269912,47.5782699],[9.8269767,47.5784199],[9.8269647,47.5784949],[9.8270614,47.5784834],[9.8271623,47.578473],[9.8273748,47.5786381],[9.8273331,47.579275],[9.8272819,47.579972],[9.8268921,47.5800948],[9.8269242,47.5801659],[9.826805,47.5802394],[9.8267163,47.5802672],[9.8265921,47.5803062],[9.8263455,47.5803922],[9.8262115,47.5804281],[9.8261091,47.5804379],[9.8258132,47.5804146],[9.8256673,47.5803943],[9.825545,47.5804194],[9.8254303,47.5804721],[9.8253888,47.5805352],[9.8253967,47.5805869],[9.8245677,47.5809429],[9.8247886,47.5810366],[9.8248091,47.5811936],[9.8248458,47.5814716],[9.8248624,47.5817335],[9.8248268,47.5818873],[9.82477,47.5821884],[9.8247048,47.5825164],[9.824752,47.5825531],[9.8247531,47.5826023],[9.8247127,47.582638],[9.824692,47.5826788],[9.8247141,47.5827137],[9.8247878,47.5827622],[9.8249046,47.5827922],[9.824908,47.5828301],[9.8248554,47.582869],[9.824813,47.582907],[9.824773,47.5830413],[9.824751,47.5830797],[9.8246506,47.5831669],[9.8246389,47.5831987],[9.8245994,47.5832506],[9.8246033,47.5833068],[9.8245695,47.583346],[9.8244919,47.5833776],[9.8244602,47.5834066],[9.8244124,47.5834526],[9.8243312,47.5834921],[9.8242186,47.5835171],[9.8242085,47.5835524],[9.8242725,47.5835905],[9.8242928,47.5836252],[9.8243333,47.5837349],[9.8243959,47.5838405],[9.824458,47.5839587],[9.8244123,47.5839576],[9.8243572,47.5839828],[9.8243263,47.5840268],[9.8243027,47.5840617],[9.8243047,47.5840904],[9.8244193,47.584204],[9.8244534,47.5842689],[9.8245317,47.584328],[9.8245282,47.5843678],[9.8244634,47.5844168],[9.8244485,47.5844475],[9.8244567,47.5844866],[9.8244399,47.5845584],[9.8244331,47.5846681],[9.8245534,47.5846925],[9.8245832,47.5847436],[9.8245934,47.5847748],[9.8246,47.5848894],[9.8245657,47.5849333],[9.8245128,47.5849482],[9.8244924,47.5849844],[9.8245757,47.5851534],[9.8245523,47.5851861],[9.8244511,47.5853259],[9.8244752,47.5854203],[9.8244748,47.5854684],[9.8244482,47.5855651],[9.8244553,47.5855928],[9.8245197,47.5856985],[9.8245688,47.5858015],[9.8245928,47.5859394],[9.8245742,47.5860844],[9.8245358,47.5861844],[9.8244983,47.5862225],[9.8244417,47.586243],[9.8243783,47.5862611],[9.824397,47.5862936],[9.8243979,47.5863475],[9.8243808,47.586386],[9.8243395,47.5864057],[9.8242863,47.5864217],[9.8241752,47.5865224],[9.8241437,47.5865824],[9.8241145,47.5866986],[9.8240792,47.5867688],[9.8240206,47.5868271],[9.8240068,47.5868423],[9.8239085,47.5869506],[9.8238312,47.5870671],[9.8238141,47.5871045],[9.8237596,47.5871112],[9.8236045,47.5871363],[9.8234704,47.5871471],[9.8233551,47.5871844],[9.8232638,47.5872201],[9.8231874,47.5872596],[9.8230844,47.5873258],[9.8229712,47.5873576],[9.8228341,47.5873934],[9.8225593,47.5874444],[9.82238,47.5874471],[9.8222721,47.5874379],[9.822206,47.5874411],[9.8220519,47.5874787],[9.8218399,47.5875254],[9.8216308,47.5875447],[9.8214849,47.587554],[9.8213671,47.5875423],[9.8212525,47.5875329],[9.8211828,47.5875393],[9.8210375,47.5875715],[9.820894,47.5876015],[9.8208414,47.5876048],[9.8207741,47.5875965],[9.8207054,47.5875789],[9.8206316,47.5875681],[9.8205096,47.5875746],[9.8204396,47.5875822],[9.8203087,47.5876282],[9.8202297,47.587726],[9.8201617,47.5877714],[9.8200551,47.5878397],[9.8197334,47.5881274],[9.8196878,47.5881961],[9.8196459,47.588257],[9.8195601,47.5883167],[9.819455,47.5883578],[9.8192939,47.5883976],[9.8192116,47.5884198],[9.8190958,47.5885052],[9.8190036,47.5885603],[9.818733,47.5886628],[9.8184718,47.5887472],[9.8182918,47.5887947],[9.818104,47.5888305],[9.8179864,47.5888484],[9.8177293,47.5888826],[9.8175682,47.5888893],[9.8174774,47.5888793],[9.817342,47.5888464],[9.8170628,47.5887065],[9.8169456,47.5886468],[9.8168839,47.5886294],[9.8168161,47.5886313],[9.8167411,47.5886445],[9.8165056,47.5887547],[9.8164612,47.5887628],[9.8164092,47.5887513],[9.8162726,47.5886751],[9.8160613,47.5885321],[9.8159583,47.5884579],[9.8156229,47.5883302],[9.8155653,47.5882959],[9.81547,47.5881657],[9.8154205,47.5881429],[9.815324,47.588111],[9.8152183,47.5880904],[9.8150442,47.5880854],[9.8149451,47.5880739],[9.8147754,47.5880496],[9.8145526,47.5880022],[9.8144721,47.5879902],[9.8143565,47.5880002],[9.8142672,47.588029],[9.81414,47.5880685],[9.8140607,47.5881364],[9.8140154,47.5882325],[9.8139854,47.5883598],[9.8139738,47.5885299],[9.8139562,47.5885787],[9.813922,47.5886213],[9.8138699,47.5886487],[9.813748,47.5887214],[9.8136637,47.5887881],[9.813621,47.5888294],[9.8135056,47.5889056],[9.8134605,47.5889641],[9.8133988,47.5891204],[9.8133558,47.5891698],[9.8132913,47.5892083],[9.8132426,47.5892358],[9.8131927,47.5892884],[9.8131246,47.5893303],[9.8130577,47.5893528],[9.8129934,47.5893845],[9.8127445,47.5895297],[9.8126163,47.5895954],[9.8123951,47.5896899],[9.81232,47.5897019],[9.8121845,47.5896703],[9.8120695,47.5896666],[9.8120043,47.5896891],[9.8116631,47.5898518],[9.8115705,47.589876],[9.8110946,47.5899556],[9.811017,47.5899847],[9.8109151,47.5901012],[9.8107503,47.5904267],[9.8107258,47.5905141],[9.8108612,47.5910715],[9.8108135,47.5911104],[9.8107535,47.5911262],[9.8106955,47.5911374],[9.8102927,47.5913136],[9.8102603,47.5913917],[9.810233,47.5914619],[9.8102029,47.5915252],[9.8101371,47.5915569],[9.8100775,47.5915658],[9.8099946,47.5915984],[9.8098576,47.5917026],[9.8097561,47.5917403],[9.8092954,47.5917825],[9.8092067,47.5918],[9.8091557,47.591839],[9.8091387,47.5918739],[9.8091427,47.59193],[9.809187,47.592307],[9.809125,47.5923651],[9.8090585,47.5923773],[9.8089954,47.5923873],[9.8085684,47.5924336],[9.8084355,47.5924547],[9.8083564,47.5924827],[9.8077085,47.5927893],[9.8076619,47.5928465],[9.807489,47.5931306],[9.8074208,47.593177],[9.8073193,47.5932113],[9.8071878,47.5932381],[9.8070763,47.5932653],[9.8070102,47.5933061],[9.8068003,47.5935505],[9.8067144,47.5936125],[9.8066199,47.5936379],[9.8064816,47.5936657],[9.8064385,47.593683],[9.8061489,47.5938627],[9.806108,47.5939052],[9.8060546,47.5940286],[9.8060096,47.5940848],[9.8059533,47.5941269],[9.8058647,47.5941751],[9.8057119,47.5942208],[9.8054638,47.5942404],[9.8051257,47.5942043],[9.8048246,47.5941655],[9.8046999,47.5941901],[9.8045261,47.5943222],[9.8043519,47.5945297],[9.8043134,47.5946237],[9.8043094,47.5946727],[9.8043312,47.5948492],[9.8043035,47.5948977],[9.8042591,47.5949379],[9.8039816,47.595079],[9.8038725,47.5951303],[9.8036966,47.5951641],[9.8034131,47.5952537],[9.8032214,47.5953328],[9.8030819,47.5954176],[9.8027177,47.5957364],[9.8026002,47.5958228],[9.8024748,47.5958943],[9.802334,47.5959391],[9.8022031,47.5959511],[9.8020685,47.5959343],[9.8019687,47.5959023],[9.8017968,47.5958184],[9.8017168,47.5957926],[9.8015376,47.5957566],[9.8014609,47.5957539],[9.8013942,47.595763],[9.8013092,47.5957797],[9.8012641,47.5957852],[9.8011977,47.5957919],[9.801117,47.5957958],[9.8010686,47.5957936],[9.8009435,47.595773],[9.8007249,47.5957076],[9.8006201,47.5956829],[9.8005469,47.59567],[9.8004904,47.5956639],[9.8004224,47.5956699],[9.8003433,47.5956921],[9.800327,47.595703],[9.8002856,47.595731],[9.8002494,47.5957687],[9.8002223,47.5958164],[9.8002155,47.5958439],[9.8002183,47.5958741],[9.8002619,47.5959827],[9.8002655,47.5960144],[9.800254,47.5960483],[9.8002131,47.5960788],[9.8001522,47.5960933],[9.8000959,47.5961008],[9.7999863,47.5961014],[9.7999295,47.5960966],[9.7998892,47.5960772],[9.7998399,47.5960449],[9.7998179,47.5960148],[9.7997908,47.5959711],[9.7997791,47.5959057],[9.7997801,47.5958315],[9.7996725,47.5957301],[9.7996326,47.5956916],[9.7996169,47.5956573],[9.799585,47.5955902],[9.799545,47.5955243],[9.7994152,47.595423],[9.7993058,47.5953234],[9.7992017,47.5952217],[9.7991042,47.5951029],[9.7990265,47.5950314],[9.7988053,47.5948847],[9.7986012,47.594767],[9.7984614,47.5947009],[9.7983097,47.5946191],[9.7980299,47.5945141],[9.7978011,47.5944541],[9.7975425,47.5943994],[9.7972936,47.5943654],[9.7970465,47.5943451],[9.7968742,47.5943275],[9.7965922,47.5942767],[9.7964303,47.5942342],[9.7962866,47.5941769],[9.7961813,47.5941216],[9.7960901,47.5940475],[9.7960298,47.5939672],[9.7960014,47.59389],[9.7959678,47.5938149],[9.7959176,47.5937454],[9.79584,47.5936904],[9.7957507,47.593661],[9.7956725,47.593656],[9.7955868,47.5936717],[9.7954779,47.5937088],[9.795318,47.5938033],[9.7951826,47.5938993],[9.79507,47.5939921],[9.7949883,47.5940894],[9.7948637,47.5942079],[9.7947981,47.5942572],[9.7946811,47.594329],[9.7945581,47.5943816],[9.7944635,47.5944048],[9.7943988,47.5944048],[9.794181,47.5943913],[9.7939967,47.5943578],[9.7939682,47.5943487],[9.7939199,47.594332],[9.7938581,47.5943002],[9.7938143,47.5942802],[9.7937695,47.5942489],[9.7936575,47.5941745],[9.7935151,47.5940687],[9.7934032,47.5940008],[9.793279,47.5939336],[9.7932128,47.5939091],[9.7931439,47.5938989],[9.7931008,47.593894],[9.7930294,47.5939033],[9.7929536,47.5939328],[9.7928931,47.5939666],[9.7928209,47.593983],[9.7927376,47.5939897],[9.7925873,47.5939662],[9.7924514,47.5939402],[9.7923474,47.5939015],[9.7922495,47.5938595],[9.7921561,47.5938119],[9.7920034,47.5937181],[9.7919266,47.5936771],[9.791724,47.5935705],[9.791639,47.5935351],[9.7915271,47.5935189],[9.7914157,47.5935171],[9.7913747,47.5935304],[9.791314,47.5935617],[9.7912909,47.5935946],[9.7912596,47.5936804],[9.7912379,47.5937277],[9.7911938,47.5937682],[9.791146,47.5937839],[9.7911052,47.5937869],[9.7910173,47.5937802],[9.7909552,47.5937744],[9.7908199,47.5937375],[9.7906805,47.5936782],[9.7905301,47.593607],[9.7903925,47.5935401],[9.7903564,47.5935385],[9.7902939,47.5935366],[9.7902422,47.5935372],[9.7901572,47.5935744],[9.7900782,47.5936355],[9.7900221,47.5937248],[9.7899768,47.5938487],[9.7899681,47.5939932],[9.7899291,47.5941148],[9.7898757,47.5941396],[9.7897509,47.594155],[9.7897279,47.5941567],[9.7895549,47.5941163],[9.7892189,47.5940484],[9.7888865,47.5940182],[9.7885398,47.5940162],[9.7880737,47.5940398],[9.7878166,47.5940404],[9.7875825,47.5940516],[9.7874688,47.5940647],[9.7873271,47.5941025],[9.7871093,47.5941881],[9.7868772,47.5942907],[9.786757,47.5942922],[9.7866626,47.5942862],[9.7865819,47.5942644],[9.7863315,47.5941693],[9.7861766,47.5940972],[9.7860294,47.5940025],[9.7858146,47.5938497],[9.7855621,47.5937167],[9.7854234,47.5936633],[9.7852392,47.5936581],[9.7851599,47.5936991],[9.7850541,47.593774],[9.7849562,47.5938672],[9.7849098,47.5939372],[9.7848146,47.5941925],[9.7847574,47.5943321],[9.7846484,47.5945519],[9.784598,47.5946378],[9.7845168,47.5946867],[9.7843557,47.5947482],[9.7842214,47.5947633],[9.7840947,47.5947602],[9.7840144,47.5947338],[9.783938,47.5946903],[9.7833579,47.5942921],[9.7832595,47.5942518],[9.7831282,47.5942281],[9.7829654,47.5942026],[9.7829262,47.5941964],[9.7824694,47.5941482],[9.7823049,47.5941583],[9.7822265,47.5941764],[9.782047,47.5942307],[9.7819647,47.5942602],[9.7818434,47.5942972],[9.7817399,47.5943504],[9.781445,47.5945124],[9.7813319,47.5945061],[9.7812228,47.5944303],[9.7811117,47.5943692],[9.7810394,47.5943029],[9.7810209,47.5941532],[9.7809497,47.5940574],[9.7808731,47.5940242],[9.7807649,47.5940202],[9.7806617,47.5940197],[9.7805043,47.5940207],[9.7803686,47.5940346],[9.7802338,47.5940657],[9.7800983,47.5941172],[9.7799138,47.594217],[9.7797571,47.5942945],[9.7795755,47.5943646],[9.7794787,47.5944203],[9.7793571,47.5945108],[9.7792298,47.5947083],[9.7791837,47.5947798],[9.7790746,47.5950019],[9.7790152,47.5951047],[9.7789131,47.5952698],[9.7787864,47.5954082],[9.7786847,47.5954615],[9.7784575,47.5954774],[9.777781,47.59542],[9.7776457,47.5954168],[9.7775647,47.5954245],[9.7774459,47.5954356],[9.7773553,47.5954443],[9.7771962,47.5954509],[9.7770456,47.5954485],[9.7769663,47.5954393],[9.7768659,47.5954138],[9.7767815,47.5953565],[9.7767202,47.5952197],[9.7766244,47.5950048],[9.7765773,47.59485],[9.7764873,47.5947595],[9.7762897,47.5946058],[9.7762802,47.5945941],[9.7762498,47.5945565],[9.7762168,47.5945156],[9.7763318,47.5941237],[9.7763964,47.5939158],[9.776374,47.5937327],[9.7763154,47.5936132],[9.776238,47.5935048],[9.7761568,47.5934577],[9.7760373,47.5934412],[9.7759363,47.5934224],[9.7758479,47.5933891],[9.7757535,47.5933236],[9.7749809,47.592532],[9.7746573,47.5922005],[9.7744939,47.592029],[9.7742861,47.5918729],[9.7741176,47.5917561],[9.7739584,47.59166],[9.7738648,47.5915821],[9.7731861,47.5908581],[9.7727819,47.5904614],[9.7725838,47.590269],[9.7724657,47.5901118],[9.7724059,47.5899831],[9.7722396,47.5894132],[9.7722104,47.5893271],[9.7721375,47.5892347],[9.7719193,47.5890852],[9.7717417,47.5889842],[9.7711783,47.5887883],[9.7709836,47.5887441],[9.7705277,47.5887188],[9.7697233,47.588696],[9.7695784,47.5886777],[9.7694887,47.5886272],[9.7694256,47.5885486],[9.76941,47.5884594],[9.7694374,47.5883513],[9.769527,47.5881096],[9.7695093,47.5879369],[9.7693751,47.5874657],[9.7693306,47.5873852],[9.7692503,47.587361],[9.7691098,47.58736],[9.7687602,47.5874412],[9.7686167,47.587479],[9.7685148,47.5875402],[9.7681698,47.5879788],[9.7680175,47.5881716],[9.7678952,47.5882816],[9.7677227,47.5884284],[9.7676404,47.5885047],[9.7675554,47.5885685],[9.7674183,47.5886199],[9.7672237,47.5887196],[9.7670819,47.5888053],[9.7669203,47.5889296],[9.7667924,47.5890576],[9.7666788,47.5891586],[9.7665903,47.5892222],[9.7664174,47.5892823],[9.7662554,47.5893174],[9.7660233,47.5893082],[9.7658909,47.5892889],[9.765702,47.5892289],[9.7655314,47.5891166],[9.7653922,47.5889398],[9.7652684,47.5887542],[9.765195,47.5885771],[9.7651408,47.5880912],[9.7651325,47.5876003],[9.7651296,47.5872932],[9.7652022,47.5869553],[9.7652712,47.5866768],[9.7654056,47.5864152],[9.7655971,47.5861089],[9.7658066,47.5858257],[9.765961,47.5856192],[9.7660127,47.5854955],[9.7659195,47.5853502],[9.7657905,47.5853174],[9.7652768,47.5853014],[9.7650524,47.5853332],[9.7649179,47.5854054],[9.7648194,47.5855112],[9.7647806,47.5855733],[9.7646564,47.5857711],[9.7645739,47.585908],[9.7641097,47.5864493],[9.7639651,47.5865197],[9.7637856,47.5865249],[9.763637,47.586499],[9.763245,47.5863882],[9.7630708,47.5863089],[9.7629743,47.5862294],[9.7628205,47.5859869],[9.7627125,47.5857661],[9.7624729,47.5848877],[9.7623937,47.5847204],[9.7618107,47.5842034],[9.7614984,47.5839816],[9.7612358,47.5838837],[9.7610477,47.5838119],[9.7607204,47.5835862],[9.7606797,47.5835084],[9.7606902,47.5834192],[9.7608316,47.5830462],[9.7609406,47.582676],[9.7610576,47.5823964],[9.7612558,47.5820605],[9.7615065,47.5817502],[9.7617124,47.5815876],[9.7618592,47.5815104],[9.7620213,47.5814015],[9.7620794,47.5812554],[9.7620768,47.5811304],[9.7619689,47.5809636],[9.76181,47.5809121],[9.7606907,47.5807101],[9.7604348,47.5806409],[9.7601203,47.5805106],[9.7597756,47.5803199],[9.7593024,47.58005],[9.7589838,47.5799299],[9.7588153,47.5798953],[9.7583311,47.5798588],[9.7576364,47.5798381],[9.7567248,47.5798834],[9.7565726,47.5798585],[9.7564217,47.5797592],[9.7563266,47.5796315],[9.7563019,47.5795118],[9.7562277,47.5792909],[9.7560554,47.5789079],[9.7559216,47.5785067],[9.7558006,47.5779248],[9.7557192,47.5771653],[9.7556871,47.5769226],[9.7556051,47.5766912],[9.7554727,47.5764022],[9.7554124,47.5761496],[9.7554062,47.5759754],[9.7554206,47.5758543],[9.7554482,47.5756798],[9.7555216,47.5754219],[9.7556297,47.5751763],[9.7557866,47.5749631],[9.7558681,47.5748188],[9.756066,47.5743512],[9.7561875,47.5740522],[9.7563192,47.5737534],[9.7563744,47.5735466],[9.7563845,47.5733818],[9.7564389,47.5731565],[9.7564888,47.5729529],[9.7564738,47.5728414],[9.7564395,47.5727671],[9.7563218,47.5726206],[9.7560675,47.5723648],[9.7557807,47.5721964],[9.7556685,47.572153],[9.7555271,47.5721445],[9.7553629,47.5721524],[9.7551977,47.5721742],[9.7550998,47.572199],[9.7548128,47.5722791],[9.754437,47.5724025],[9.7540949,47.5724707],[9.7538281,47.5724986],[9.7535707,47.5724823],[9.7533449,47.5724449],[9.753075,47.5723835],[9.7515849,47.5720642],[9.7513919,47.5719924],[9.7513385,47.5719525],[9.7512659,47.5718982],[9.7511843,47.5717974],[9.7511294,47.5716756],[9.7510407,47.5714451],[9.7508723,47.5712456],[9.750745,47.5712031],[9.7506133,47.5711752],[9.7500812,47.5710949],[9.7494963,47.5710206],[9.7493138,47.5710026],[9.7491201,47.5709595],[9.7490214,47.5709375],[9.74881,47.5708794],[9.7484325,47.570755],[9.7482563,47.5706805],[9.7481551,47.5706219],[9.7480649,47.5705239],[9.7480262,47.570434],[9.7480016,47.5703283],[9.7480153,47.5702848],[9.7480446,47.5701933],[9.748306,47.5697064],[9.7484708,47.5695199],[9.7487123,47.5693439],[9.7489031,47.5692334],[9.7491461,47.5691455],[9.7495214,47.5690404],[9.7499025,47.5689552],[9.7501247,47.5689182],[9.7502415,47.5688935],[9.750568,47.5688082],[9.7508218,47.5687503],[9.7509942,47.5686951],[9.7514566,47.5685135],[9.751599,47.5684444],[9.7517327,47.5683642],[9.7518436,47.5682279],[9.7520092,47.5678974],[9.7520929,47.5675564],[9.7520662,47.5674668],[9.7519295,47.5672771],[9.751731,47.5671319],[9.7516102,47.5670675],[9.7512854,47.566829],[9.7510328,47.5666766],[9.7508407,47.5665694],[9.7505995,47.5664621],[9.7502655,47.5663773],[9.7498858,47.5662754],[9.7496662,47.5661893],[9.7493954,47.5660598],[9.7490233,47.5658402],[9.7488592,47.5657317],[9.7487216,47.5656238],[9.7485949,47.5655394],[9.7483992,47.5654259],[9.7482737,47.5653128],[9.7480438,47.5650672],[9.7478279,47.5648318],[9.747581,47.5645454],[9.747482,47.56444],[9.7473607,47.5642901],[9.7472995,47.5641387],[9.7472388,47.5639738],[9.7471807,47.5637181],[9.747144,47.5634566],[9.7471605,47.5632599],[9.7471499,47.5630735],[9.7471391,47.5627963],[9.7471304,47.56269],[9.7470955,47.5625426],[9.747061,47.5622631],[9.7471011,47.5618537],[9.747195,47.5615543],[9.7472406,47.5612673],[9.7472246,47.5611132],[9.7471771,47.56098],[9.7470584,47.5607438],[9.7469193,47.5605774],[9.7468149,47.5605025],[9.7466792,47.5604143],[9.7462574,47.56021],[9.7460176,47.5600982],[9.7458471,47.5600149],[9.745671,47.5599106],[9.7453782,47.5597016],[9.7451032,47.5595163],[9.7448944,47.5593952],[9.7445749,47.5592864],[9.7443686,47.5592302],[9.7440306,47.5590859],[9.7436511,47.5589525],[9.7435184,47.5588852],[9.7434446,47.558809],[9.7433711,47.5586655],[9.7433486,47.5581973],[9.7434013,47.558022],[9.7435161,47.5578867],[9.7436695,47.5578114],[9.7439257,47.5577563],[9.7442335,47.5577056],[9.7449477,47.5575973],[9.7454194,47.5575346],[9.7459663,47.5574257],[9.746358,47.5573094],[9.7464585,47.5572573],[9.7467584,47.55705],[9.7469681,47.5568698],[9.7471601,47.5566685],[9.7472402,47.5565343],[9.7472809,47.5563902],[9.7472969,47.5562052],[9.7472337,47.555945],[9.7471037,47.5556923],[9.7469153,47.5554674],[9.7467471,47.555331],[9.7465278,47.5552052],[9.7463458,47.5551144],[9.7460573,47.5549621],[9.7456683,47.5547979],[9.7453892,47.5547097],[9.7451807,47.5546768],[9.7450311,47.5546936],[9.7448198,47.5547551],[9.7447139,47.5547849],[9.7445146,47.5548409],[9.7443783,47.5549173],[9.7442792,47.5549685],[9.7438664,47.5551115],[9.7436269,47.5551832],[9.7433501,47.5552218],[9.7430639,47.5552369],[9.7427945,47.555228],[9.7424856,47.5551815],[9.7417757,47.5550343],[9.7416436,47.5549858],[9.74156,47.5548907],[9.7414048,47.554669],[9.7412615,47.5545097],[9.7410251,47.5542594],[9.7409222,47.5540865],[9.7408425,47.5538718],[9.7407746,47.5536573],[9.7406687,47.553433],[9.7406238,47.5532694],[9.7406234,47.5532657],[9.7406018,47.5531016],[9.7405687,47.55276],[9.7405712,47.5524236],[9.7405933,47.5522191],[9.7406284,47.552083],[9.7406526,47.5519819],[9.7406292,47.5517853],[9.7405735,47.551723],[9.7404929,47.5516486],[9.7402193,47.5514921],[9.7401202,47.5513984],[9.7399294,47.5512435],[9.7397677,47.5511764],[9.7395344,47.5511188],[9.7392124,47.5510463],[9.7389481,47.5509685],[9.7386984,47.5508728],[9.7385855,47.5508046],[9.7385141,47.5507159],[9.7384877,47.5506831],[9.7384321,47.5505912],[9.7384164,47.5505657],[9.7383614,47.5504315],[9.7383344,47.5503908],[9.7382787,47.550307],[9.7382234,47.5502105],[9.7380101,47.5496959],[9.7379409,47.5495122],[9.7378766,47.5491787],[9.7377381,47.5485688],[9.7376895,47.5484406],[9.7375979,47.5482928],[9.7374881,47.548171],[9.7371198,47.5479006],[9.7369963,47.5478127],[9.7363674,47.5475492],[9.7361024,47.5474255],[9.7360689,47.5474081],[9.7359735,47.5473584],[9.7359037,47.5473221],[9.735895,47.5473173],[9.735818,47.547275],[9.7357531,47.5472393],[9.7356939,47.5472067],[9.7355309,47.5470994],[9.7354445,47.5470137],[9.7353087,47.546842],[9.7351711,47.5466141],[9.7351082,47.5464364],[9.7350912,47.5463595],[9.7350475,47.5461624],[9.7350195,47.5459032],[9.7350884,47.545572],[9.735325,47.5450531],[9.7357906,47.5439613],[9.7359178,47.5436467],[9.7359712,47.5433848],[9.7359719,47.5432476],[9.7359754,47.5430612],[9.7359456,47.5427778],[9.7359454,47.542776],[9.7359209,47.5426423],[9.7358267,47.5423309],[9.7357357,47.5419922],[9.7357031,47.541877],[9.7357121,47.5417777],[9.7358455,47.5413785],[9.7359612,47.5411527],[9.7361207,47.5408628],[9.7362038,47.5406408],[9.7362234,47.5405017],[9.736274,47.5402891],[9.7363064,47.5400062],[9.7362798,47.5396338],[9.7361879,47.5389747],[9.7360819,47.5382043],[9.736037,47.5377318],[9.7360511,47.5375079],[9.736108,47.5373653],[9.7361878,47.5372358],[9.7363348,47.5370795],[9.7363532,47.5370533],[9.7364251,47.5369497],[9.7364412,47.5369266],[9.7364771,47.5368634],[9.7365404,47.5367519],[9.7366645,47.5365858],[9.7367629,47.5364225],[9.7368066,47.5362417],[9.7368314,47.5360684],[9.7368438,47.5358733],[9.7368288,47.5356577],[9.7367935,47.5354098],[9.7367142,47.5351022],[9.7366082,47.5348524],[9.7364616,47.5346929],[9.73632,47.5345679],[9.7361455,47.5344547],[9.7360677,47.5344124],[9.7360594,47.5344079],[9.7359971,47.5343742],[9.7359754,47.5343625],[9.7358946,47.5343189],[9.7358194,47.534278],[9.7355487,47.5341668],[9.7352249,47.5340669],[9.7347836,47.5339558],[9.734017,47.5338042],[9.7335391,47.5337139],[9.7333603,47.5336829],[9.7330948,47.5336565],[9.7327823,47.5336621],[9.7323887,47.5336953],[9.7321562,47.5337383],[9.7320185,47.5337668],[9.7309864,47.534063],[9.7307973,47.5340744],[9.7304018,47.5340544],[9.7300065,47.5339929],[9.72992128,47.53397176],[9.7299169,47.5339774],[9.7298977,47.5340342],[9.729595,47.5339802],[9.7291549,47.5338781],[9.7287233,47.5338292],[9.7284317,47.5338259],[9.7281309,47.533847],[9.7280719,47.5337474],[9.7280218,47.5336618],[9.7279879,47.5336618],[9.7279717,47.5337116],[9.7279363,47.533829],[9.7279407,47.5338977],[9.7277078,47.5340119],[9.7275262,47.5341857],[9.7274403,47.5343252],[9.7273792,47.5345638],[9.7274216,47.5346375],[9.7275145,47.5346672],[9.7275705,47.5346545],[9.727628,47.5345989],[9.7278905,47.534294],[9.7280919,47.534117],[9.728299,47.5340381],[9.7284992,47.533998],[9.7289167,47.5339973],[9.7294547,47.5340657],[9.7296839,47.5341058],[9.7303005,47.5342289],[9.7307687,47.5343493],[9.7308552,47.5343881],[9.7309404,47.5344026],[9.7310051,47.5343743],[9.7310697,47.5343225],[9.7311848,47.5342435],[9.7313025,47.5342145],[9.7314277,47.5341962],[9.7315351,47.5341918],[9.7316397,47.5342556],[9.731679,47.5342875],[9.731316,47.5346237],[9.7312217,47.5347289],[9.7311512,47.5348257],[9.7310907,47.5348805],[9.7310583,47.5348875],[9.7307585,47.5348338],[9.7301381,47.5346804],[9.7301071,47.5347262],[9.730064,47.5347123],[9.7300753,47.5346668],[9.7298372,47.5346266],[9.7298343,47.5345907],[9.7296676,47.5345659],[9.7296824,47.5345181],[9.7295261,47.5344862],[9.7294586,47.5346593],[9.7290731,47.5346084],[9.7287785,47.5346748],[9.7285701,47.5347478],[9.7283333,47.5346027],[9.7284513,47.5348973],[9.7286253,47.5350762],[9.7290072,47.5352712],[9.7290645,47.5353502],[9.7292409,47.5354344],[9.729307,47.5354915],[9.7293275,47.5356912],[9.7292834,47.5358477],[9.7291826,47.5360051],[9.7290418,47.5361599],[9.7288261,47.5362433],[9.7287482,47.5362705],[9.7286153,47.5362576],[9.7285795,47.5362726],[9.7285575,47.5362903],[9.728534,47.5363076],[9.7285153,47.5363383],[9.7285529,47.5363661],[9.7286203,47.5364733],[9.728552,47.5366382],[9.728405,47.5368489],[9.7282747,47.5369201],[9.728116,47.5369459],[9.7279493,47.5369531],[9.7278842,47.5369144],[9.7277261,47.5370106],[9.7278069,47.5371479],[9.7275218,47.5378457],[9.7273405,47.5380723],[9.7270104,47.5386142],[9.72689,47.5390888],[9.7266142,47.5393762],[9.7263136,47.5395907],[9.7261703,47.5400057],[9.7260082,47.5402748],[9.7258055,47.5403843],[9.7254912,47.5407583],[9.7254507,47.5408998],[9.7252818,47.5411187],[9.7251095,47.5412236],[9.724748,47.5415589],[9.7245892,47.5416136],[9.7246137,47.5418212],[9.7244367,47.5420292],[9.724206,47.542111],[9.7240129,47.5424166],[9.7238706,47.5425192],[9.7238484,47.5426486],[9.7238382,47.5428101],[9.7237599,47.5429107],[9.7235908,47.5430808],[9.7234798,47.5430791],[9.7232833,47.5430996],[9.7232943,47.5431361],[9.7232851,47.5431723],[9.7231758,47.543238],[9.7231973,47.5432914],[9.7232766,47.5433023],[9.7233585,47.5432976],[9.7234494,47.5432922],[9.7234943,47.5432481],[9.7235546,47.5432404],[9.7236036,47.5432539],[9.7235937,47.543327],[9.7235734,47.543582],[9.7233706,47.5438913],[9.7231055,47.5440381],[9.7228042,47.544088],[9.7226651,47.5442438],[9.7227962,47.5442871],[9.7228277,47.5442967],[9.7227981,47.5443138],[9.7227962,47.5443304],[9.7227976,47.5443453],[9.7228155,47.5443573],[9.7228259,47.5443625],[9.7228494,47.5443697],[9.7228523,47.5443577],[9.7228946,47.5443685],[9.7229454,47.544413],[9.7229718,47.5444867],[9.7229652,47.5445483],[9.7229605,47.5445826],[9.7229407,47.544587],[9.7228965,47.544561],[9.7228588,47.544526],[9.7228315,47.5444651],[9.7228306,47.5444123],[9.7228141,47.5443872],[9.722783,47.5443678],[9.7227378,47.5443602],[9.7226424,47.5443539],[9.7225559,47.5444399],[9.7223222,47.5446903],[9.7223942,47.5447217],[9.7223091,47.5447937],[9.7222591,47.5447794],[9.7218957,47.5450911],[9.7216821,47.5452924],[9.7212996,47.5456732],[9.7209767,47.5460254],[9.7206014,47.5464192],[9.7205443,47.5464226],[9.7204634,47.5464749],[9.7204015,47.5465149],[9.7201396,47.5466811],[9.7197133,47.546877],[9.719535,47.5469291],[9.7194571,47.5469519],[9.7193315,47.5470032],[9.7189054,47.5473565],[9.7187963,47.547294],[9.7186787,47.5472518],[9.7184956,47.5472038],[9.718225,47.5473306],[9.7177333,47.5475611],[9.7172225,47.5477012],[9.7165644,47.5479207],[9.7164048,47.5479611],[9.716276,47.5480112],[9.7159198,47.5481981],[9.7156102,47.5483475],[9.7152924,47.548537],[9.71449,47.5490953],[9.7136837,47.5497834],[9.7131246,47.55019],[9.7128576,47.5503308],[9.7129845,47.5504896],[9.7127535,47.5506188],[9.712565,47.5506107],[9.7124046,47.5505956],[9.7122562,47.5506232],[9.7117918,47.5506662],[9.711564,47.5506685],[9.7114766,47.5506419],[9.7113754,47.5505008],[9.710836,47.5503207],[9.710209,47.5502693],[9.7097684,47.5502619],[9.7097226,47.5503032],[9.7095675,47.5502973],[9.709138,47.5502163],[9.7088959,47.5501972],[9.7087206,47.5501941],[9.7084422,47.5502207],[9.7081063,47.5501315],[9.7079195,47.5500948],[9.7077763,47.5501087],[9.7074666,47.5501448],[9.7074586,47.550146],[9.7071455,47.550194],[9.7069359,47.5501803],[9.7069138,47.550159],[9.7067319,47.5501286],[9.7064814,47.5501095],[9.7062269,47.5501167],[9.7057491,47.5500748],[9.7054355,47.5500978],[9.7053905,47.5501489],[9.705323,47.5501778],[9.7052631,47.5501352],[9.7051864,47.5501168],[9.7050392,47.550091],[9.704797,47.5500636],[9.7046551,47.5500887],[9.7044582,47.5501476],[9.7043931,47.5501833],[9.7043948,47.5502159],[9.7043665,47.5502335],[9.7042959,47.5501766],[9.7043084,47.5501574],[9.7043476,47.5501634],[9.7043994,47.550158],[9.704526,47.5501032],[9.7044236,47.5500453],[9.7044505,47.5500041],[9.7044404,47.5499589],[9.7043699,47.5498881],[9.704342,47.5497612],[9.7046254,47.5496566],[9.7047773,47.5496038],[9.7047533,47.5495459],[9.7046717,47.5495157],[9.7045541,47.5493721],[9.7045747,47.5493063],[9.7045683,47.5492505],[9.7045397,47.549214],[9.7043874,47.5492411],[9.7042564,47.5492904],[9.7042521,47.5492942],[9.7041795,47.5493585],[9.7042589,47.5494794],[9.7040419,47.5495816],[9.7039611,47.5495765],[9.7039233,47.5495356],[9.703951,47.549442],[9.7039258,47.549396],[9.7038023,47.5494026],[9.7037993,47.5494028],[9.7036751,47.5494248],[9.7033256,47.5496353],[9.7031405,47.5497013],[9.7027619,47.5498444],[9.7022656,47.5498543],[9.7019544,47.5499497],[9.7019429,47.5500562],[9.7019434,47.5500581],[9.7020167,47.5504286],[9.7021261,47.5507236],[9.7021189,47.5508981],[9.7018837,47.5509501],[9.7015205,47.5510303],[9.7011651,47.5511306],[9.7011099,47.5512419],[9.700726,47.5511553],[9.7006244,47.5511786],[9.7004192,47.5512048],[9.7002274,47.5512202],[9.7000445,47.5512037],[9.6998551,47.5512394],[9.6996106,47.5511517],[9.699676,47.5507847],[9.6995232,47.5507662],[9.6994018,47.5507508],[9.6990537,47.5507503],[9.6979981,47.5507468],[9.6974417,47.5506938],[9.6970179,47.5505275],[9.6968865,47.5503852],[9.6966131,47.5503103],[9.6961075,47.5502465],[9.6957188,47.5501978],[9.6956114,47.5500962],[9.6956097,47.5499277],[9.6954071,47.5498611],[9.695172,47.5498808],[9.6943319,47.5497957],[9.6939625,47.5498751],[9.6936299,47.5497629],[9.693214,47.5497868],[9.6927511,47.5497368],[9.6921352,47.5497796],[9.6918991,47.5498807],[9.6916605,47.5500179],[9.6908207,47.5503599],[9.6904718,47.5505117],[9.6880812,47.5517209],[9.6880014,47.5517621],[9.6859402,47.5515232],[9.6829507,47.5520276],[9.6828866,47.5518791],[9.682678,47.5513964],[9.6822115,47.5503166],[9.6815976,47.5488955],[9.6813054,47.5487345],[9.6812771,47.5486618],[9.6812614,47.5486216],[9.6822344,47.5486061],[9.6828697,47.5486982],[9.6828968,47.5485376],[9.6830377,47.5484829],[9.6840144,47.5486208],[9.6842884,47.5486595],[9.6843583,47.5487081],[9.6843145,47.5488241],[9.6845272,47.5488402],[9.684539,47.5488412],[9.6849008,47.5488703],[9.685226,47.5488937],[9.6853062,47.5489553],[9.6854301,47.5489639],[9.6858163,47.5489823],[9.6861899,47.548989],[9.6864317,47.5489933],[9.6865761,47.5490012],[9.6869596,47.549022],[9.6873431,47.5490429],[9.6874582,47.5490492],[9.6875022,47.5490909],[9.6875911,47.5491175],[9.6877195,47.5491299],[9.6877392,47.5491318],[9.6879108,47.5491385],[9.6879412,47.5491017],[9.6881075,47.5491084],[9.688473,47.5491231],[9.6888199,47.5491507],[9.6891039,47.5491936],[9.6893124,47.5492348],[9.6894547,47.5492411],[9.6894656,47.5492371],[9.6896494,47.5491701],[9.6899856,47.5490796],[9.6902025,47.548994],[9.6904949,47.5488722],[9.6906529,47.548792],[9.6909008,47.5486278],[9.6911406,47.5484489],[9.6913139,47.5482752],[9.6913886,47.54827],[9.6915045,47.5481551],[9.691391,47.5480515],[9.6913077,47.5480522],[9.6911563,47.547903],[9.6908139,47.5475698],[9.6907366,47.5474807],[9.6905585,47.5471317],[9.6903819,47.5471331],[9.6899938,47.5467934],[9.6897681,47.5467114],[9.6896705,47.5466119],[9.6893803,47.5461532],[9.6893448,47.5460925],[9.6893163,47.5459718],[9.6892102,47.5458385],[9.689057,47.545889],[9.6889807,47.5458454],[9.6889892,47.545807],[9.6888984,47.5457603],[9.6888015,47.5457674],[9.6887473,47.5456984],[9.6887864,47.5456264],[9.688806,47.5455944],[9.6888305,47.5455687],[9.6888034,47.5455566],[9.6887824,47.5455785],[9.6887695,47.5455627],[9.6885158,47.545479],[9.6884629,47.5454414],[9.6878608,47.5452136],[9.6877902,47.5451924],[9.6871683,47.5449762],[9.686748,47.5448497],[9.6865996,47.5448158],[9.6865725,47.5447778],[9.6865161,47.5448135],[9.6864462,47.5448769],[9.6864915,47.5448166],[9.6865453,47.5447702],[9.6865725,47.5447634],[9.6866283,47.544758],[9.6866712,47.5447562],[9.6868342,47.5447763],[9.6868484,47.5447553],[9.6866986,47.5447291],[9.6866199,47.5447319],[9.6865297,47.5447431],[9.6864412,47.544843],[9.6864126,47.5448863],[9.6863795,47.5449458],[9.6861793,47.5448905],[9.6862047,47.5448533],[9.6864703,47.5444512],[9.6862479,47.5443786],[9.6862961,47.5442992],[9.686551,47.5443726],[9.6865976,47.5443421],[9.68663,47.5443294],[9.6866356,47.544338],[9.6867677,47.5443098],[9.6868165,47.5443967],[9.6869047,47.5443732],[9.6869355,47.5444355],[9.6870199,47.5444137],[9.6870518,47.5444738],[9.6871892,47.5444408],[9.6871569,47.5443808],[9.6872079,47.5443699],[9.6871936,47.5442691],[9.6872082,47.5442769],[9.6872194,47.5442806],[9.6873532,47.5443241],[9.6875493,47.5443916],[9.6877158,47.5444454],[9.6878537,47.544492],[9.6879823,47.5445328],[9.6881329,47.5445778],[9.688382,47.544649],[9.6884,47.544626],[9.6872072,47.5442293],[9.6869028,47.5441281],[9.6867108,47.5441185],[9.6867361,47.5439987],[9.6867535,47.5438393],[9.6867886,47.5438369],[9.6868009,47.5437001],[9.6868006,47.5436907],[9.6868366,47.543683],[9.6870424,47.5436631],[9.6871559,47.5436753],[9.687293,47.5436991],[9.6874017,47.5437253],[9.6874887,47.543747],[9.687524,47.5437827],[9.6876079,47.5437716],[9.68763,47.543769],[9.6876643,47.5437748],[9.6876832,47.543783],[9.6877015,47.5437903],[9.6879804,47.5438808],[9.6883285,47.5439903],[9.6883415,47.5441501],[9.6883775,47.5441472],[9.6883668,47.5440042],[9.6883777,47.5439962],[9.6883792,47.5439776],[9.6883683,47.5439647],[9.6883412,47.5439602],[9.6881642,47.543897],[9.6879984,47.5438436],[9.6879657,47.5438351],[9.6879214,47.5438216],[9.6877871,47.5437768],[9.6876308,47.5437269],[9.6875995,47.5436962],[9.6874892,47.543712],[9.6873357,47.5436734],[9.6871041,47.543635],[9.6867975,47.5436536],[9.6866871,47.5436699],[9.6863077,47.5437242],[9.6863282,47.543566],[9.6864383,47.5435283],[9.6861234,47.543168],[9.6852971,47.5431984],[9.6851583,47.5433147],[9.6850854,47.5432911],[9.6850165,47.5432639],[9.6848294,47.5432014],[9.6844613,47.5431595],[9.6841809,47.5431839],[9.6839046,47.5432112],[9.6838791,47.5432084],[9.6836651,47.5429419],[9.6836695,47.5429078],[9.6836616,47.5428925],[9.6836435,47.5428762],[9.6836128,47.5428634],[9.6835861,47.5428598],[9.683544,47.5428655],[9.6835077,47.5428868],[9.6823184,47.5425806],[9.6819316,47.5424385],[9.6809104,47.5422264],[9.6808166,47.5422706],[9.6802587,47.5427143],[9.6799935,47.5429216],[9.6799368,47.5428915],[9.6799008,47.5428978],[9.6798789,47.5429334],[9.6799284,47.5429712],[9.6799222,47.5429955],[9.6795131,47.5433977],[9.6790987,47.5436355],[9.6787307,47.5438457],[9.6786976,47.543842],[9.678248,47.5440917],[9.6780755,47.5442263],[9.677979,47.5443542],[9.6775013,47.5445406],[9.6760497,47.5450514],[9.6757282,47.5452198],[9.675584,47.5455759],[9.6755125,47.5456652],[9.6754543,47.5456886],[9.6753822,47.5457063],[9.6753265,47.5457307],[9.675306,47.5457776],[9.6753403,47.5458102],[9.6753901,47.545829],[9.6754637,47.5458176],[9.6754698,47.54585],[9.6754754,47.5458973],[9.6755217,47.5459528],[9.6758573,47.5462184],[9.6758281,47.5462642],[9.6759733,47.5464188],[9.6760587,47.5463836],[9.6763457,47.5466587],[9.6766328,47.5469208],[9.6767319,47.5470185],[9.676701,47.5470297],[9.6767721,47.547149],[9.6767919,47.5471794],[9.6769439,47.547149],[9.6770872,47.5471236],[9.6782707,47.5478197],[9.6784153,47.5479573],[9.678726,47.5478516],[9.6788375,47.5478361],[9.6795658,47.5479139],[9.6797933,47.547951],[9.679825,47.548008],[9.6798986,47.5480927],[9.6799857,47.5481074],[9.6800937,47.5480652],[9.6802717,47.5480496],[9.6804065,47.5480858],[9.6804858,47.5481627],[9.6807564,47.5486252],[9.6807829,47.5486841],[9.682244,47.5519318],[9.6823447,47.5521557],[9.6824831,47.5524266],[9.6826112,47.5527068],[9.6824586,47.5527948],[9.6823601,47.5528696],[9.6823027,47.552828],[9.6822382,47.5528684],[9.682107,47.5529461],[9.6821123,47.5530028],[9.6816328,47.5532668],[9.6812368,47.5535563],[9.680871,47.5540403],[9.680672,47.5542511],[9.6802006,47.5547481],[9.680288,47.5549547],[9.6800661,47.5552818],[9.6799003,47.5554944],[9.6798246,47.5556995],[9.6799948,47.5558201],[9.6798135,47.5560847],[9.6794221,47.5567773],[9.6792204,47.5568528],[9.6786665,47.5570577],[9.6782994,47.5571605],[9.6779199,47.5572733],[9.6776836,47.5572993],[9.6774315,47.5573863],[9.6772123,47.5573244],[9.6762381,47.5569646],[9.6757854,47.5567856],[9.6748311,47.5569301],[9.6748057,47.5569341],[9.6747571,47.5569411],[9.6738053,47.5572215],[9.6726096,47.5577254],[9.6719905,47.5579218],[9.6714748,47.5579302],[9.6712161,47.5577787],[9.6704208,47.5574716],[9.669994,47.5575138],[9.6694546,47.5575065],[9.669088,47.5575016],[9.6688354,47.5574972],[9.6688182,47.5574972],[9.6687093,47.5574978],[9.6686713,47.557498],[9.6686822,47.5575346],[9.6686398,47.5575381],[9.6684539,47.5575532],[9.6682746,47.5575775],[9.6680674,47.5576056],[9.6677627,47.557647],[9.6674213,47.5577039],[9.6674444,47.5578004],[9.667343,47.5578182],[9.667296,47.5577325],[9.6672885,47.5577322],[9.6672745,47.5577317],[9.6669496,47.5577204],[9.6668909,47.5577226],[9.6668689,47.5577227],[9.6665963,47.5576965],[9.6649865,47.5575426],[9.6650347,47.5574526],[9.66524,47.5574521],[9.665277,47.5574124],[9.6653973,47.5573693],[9.6654481,47.5572994],[9.6654801,47.5572702],[9.665485,47.5572008],[9.6654274,47.557194],[9.6653697,47.5571962],[9.6653638,47.5572308],[9.6652404,47.5572665],[9.6649971,47.5573392],[9.6649443,47.5573422],[9.6648642,47.5573657],[9.6646389,47.5574995],[9.6646267,47.5575322],[9.6645815,47.5575379],[9.6645384,47.5575379],[9.6643684,47.557526],[9.6642606,47.5575201],[9.6641242,47.5574718],[9.6639978,47.5574358],[9.663898,47.5574384],[9.6635078,47.5573655],[9.6634618,47.5573435],[9.663223,47.5572933],[9.6630421,47.557263],[9.6630064,47.5572554],[9.6629023,47.5572425],[9.6627739,47.5572195],[9.6626733,47.5571707],[9.6625823,47.5571153],[9.6625098,47.5570662],[9.6624374,47.5570152],[9.6623311,47.5569348],[9.6622606,47.556883],[9.6622068,47.5568487],[9.6617851,47.5568456],[9.6617437,47.5568],[9.6616547,47.5567825],[9.6615428,47.5568072],[9.6615169,47.5568514],[9.6610578,47.5568541],[9.6610555,47.5568247],[9.6609916,47.5568231],[9.6609163,47.5568213],[9.6609143,47.5568513],[9.6603975,47.5568453],[9.6602927,47.5567899],[9.6602208,47.5567895],[9.6601462,47.5568409],[9.6597119,47.556839],[9.6597176,47.5568228],[9.659739,47.5567625],[9.6597684,47.5566793],[9.6596709,47.5566419],[9.6595627,47.5565647],[9.6594704,47.5564886],[9.6594345,47.556346],[9.6593138,47.556308],[9.6593271,47.556289],[9.6591484,47.5562674],[9.6591491,47.556288],[9.6590611,47.5563363],[9.658986,47.5564313],[9.6589738,47.5565288],[9.6589435,47.5565297],[9.6588142,47.5565767],[9.6581687,47.5565973],[9.657997,47.5565292],[9.6578886,47.5564935],[9.6579348,47.5563895],[9.6582329,47.5562723],[9.6583996,47.5562501],[9.658399,47.5562279],[9.6582431,47.5562398],[9.6578694,47.5563563],[9.6577851,47.5565677],[9.6575352,47.5566294],[9.6573952,47.5566973],[9.6572969,47.5567697],[9.6571622,47.5567919],[9.6569626,47.5568199],[9.6568969,47.5567359],[9.656764,47.5567595],[9.6567368,47.5567682],[9.6566756,47.5567762],[9.6565686,47.5568031],[9.6563825,47.5568316],[9.6560711,47.5568806],[9.656107,47.5569343],[9.655395,47.5570398],[9.6550817,47.556975],[9.6548452,47.5570224],[9.6544215,47.5570848],[9.6541321,47.5570667],[9.6535655,47.5571275],[9.6533306,47.5571385],[9.6533054,47.5569635],[9.6536136,47.556726],[9.6535794,47.5566849],[9.6533042,47.5568596],[9.6528831,47.5570979],[9.6525163,47.5571786],[9.6524593,47.5571867],[9.6523041,47.5572859],[9.651428,47.5575221],[9.651377,47.5574539],[9.6511567,47.5575303],[9.6512043,47.5575951],[9.6509344,47.5576559],[9.6507651,47.5577263],[9.6502611,47.5579883],[9.6497866,47.5582584],[9.6496752,47.5583278],[9.649552,47.5584046],[9.6493778,47.5585844],[9.6490774,47.5588097],[9.6487449,47.5590084],[9.6484015,47.5590011],[9.6482675,47.5591067],[9.6481328,47.5592354],[9.6479411,47.5593761],[9.647798,47.5594283],[9.6476397,47.559459],[9.6474872,47.5595366],[9.6473314,47.5595887],[9.647202,47.559652],[9.646974,47.5597931],[9.6467733,47.5598458],[9.646646,47.5599272],[9.6466315,47.5600122],[9.6466292,47.5600682],[9.6466796,47.5600953],[9.6464874,47.5601942],[9.6462226,47.5603125],[9.6459791,47.5601622],[9.646036,47.5601111],[9.6459107,47.5600431],[9.6458181,47.5601139],[9.6458283,47.5602026],[9.6456423,47.560374],[9.6454026,47.5605026],[9.645062,47.5606401],[9.6447138,47.5608356],[9.644426,47.5610448],[9.6443404,47.5611091],[9.6442327,47.561196],[9.644112,47.5612752],[9.6439125,47.5612857],[9.6437795,47.5614394],[9.6437899,47.5615742],[9.6440156,47.5616344],[9.6440383,47.5616758],[9.6440471,47.5617342],[9.6439436,47.5618426],[9.643861,47.5619671],[9.6437451,47.5620655],[9.6436379,47.5621434],[9.6435386,47.5622341],[9.643434,47.5623206],[9.6432865,47.5624236],[9.643206,47.5624129],[9.6431336,47.56246],[9.6431321,47.5625169],[9.6431765,47.5625543],[9.6433348,47.5625884],[9.6433406,47.5628833],[9.6432758,47.563164],[9.6431816,47.5635797],[9.6428015,47.5643798],[9.6422458,47.5649003],[9.6420393,47.5649433],[9.6419642,47.565066],[9.6417228,47.5651788],[9.6416722,47.565272],[9.6415591,47.565402],[9.6414237,47.5654964],[9.6412632,47.5656501],[9.6411166,47.5657758],[9.6410493,47.5658096],[9.640961,47.5658462],[9.6408382,47.5658765],[9.6406565,47.565935],[9.6405441,47.5659888],[9.6404391,47.5660173],[9.6403728,47.5660336],[9.6403209,47.5660168],[9.6401633,47.5659684],[9.6400825,47.5659164],[9.6399784,47.5658925],[9.6398881,47.5659109],[9.6398022,47.5660092],[9.639696,47.5660711],[9.6396356,47.5660967],[9.639434,47.5661311],[9.6394101,47.5661121],[9.6392039,47.566196],[9.6391506,47.5663057],[9.6392309,47.5665582],[9.6392498,47.5666867],[9.6391674,47.5667387],[9.6391042,47.5667687],[9.6390319,47.5667981],[9.6389957,47.566839],[9.6389172,47.5668162],[9.6386355,47.5668252],[9.6384156,47.5668189],[9.6381895,47.5667515],[9.637976,47.5665561],[9.6377869,47.5664376],[9.6379149,47.5662793],[9.6375224,47.5662067],[9.6370359,47.566452],[9.6365404,47.5665875],[9.6359843,47.5666969],[9.6358325,47.5667155],[9.6352563,47.5668033],[9.6347859,47.5669326],[9.6345499,47.5669871],[9.633511,47.5671517],[9.6332939,47.5671773],[9.6331072,47.5672162],[9.6329721,47.5672613],[9.6328223,47.5672947],[9.6327606,47.5673057],[9.6326408,47.5673346],[9.6324918,47.5673777],[9.6324516,47.567356],[9.6323627,47.5673457],[9.632223,47.567368],[9.6321204,47.5673742],[9.6320307,47.5673796],[9.6318168,47.5673379],[9.6315833,47.5673439],[9.6314055,47.5673536],[9.6312918,47.5673659],[9.6311183,47.5673631],[9.6307643,47.567237],[9.6306599,47.5671677],[9.6305355,47.5670855],[9.6304401,47.5668363],[9.6303383,47.5666989],[9.630305,47.5666223],[9.6304867,47.5664179],[9.6305535,47.5663555],[9.6305197,47.5663427],[9.6304524,47.5662797],[9.6305058,47.5662382],[9.6303299,47.5661904],[9.6301924,47.5661583],[9.6301043,47.5661539],[9.6299617,47.5661195],[9.6298458,47.566108],[9.6297695,47.5661425],[9.6296743,47.56613],[9.6297219,47.5660922],[9.6297147,47.5660341],[9.6296914,47.5660365],[9.6296959,47.5660668],[9.6295756,47.5660837],[9.6294165,47.5661344],[9.6292703,47.5662122],[9.6288887,47.5664439],[9.6289137,47.5664816],[9.6287989,47.5665698],[9.6287558,47.5665688],[9.6285466,47.5668194],[9.6284973,47.5668673],[9.6284183,47.5669661],[9.6284185,47.5670476],[9.6284499,47.5671599],[9.6286509,47.5672868],[9.6287673,47.5673711],[9.6289387,47.5674194],[9.6290615,47.5675436],[9.6291335,47.5676221],[9.6291739,47.5676629],[9.6291923,47.5676541],[9.6291722,47.567624],[9.6292038,47.5675791],[9.6296107,47.5677632],[9.6295805,47.5677874],[9.6301249,47.5680398],[9.6301174,47.568167],[9.6304323,47.5683754],[9.6308074,47.568725],[9.6309005,47.5688046],[9.6308067,47.5689667],[9.6308074,47.5692064],[9.630808,47.5694268],[9.630554,47.5695292],[9.6298835,47.5698495],[9.6293559,47.5701],[9.6291191,47.5701922],[9.6287489,47.5704903],[9.6284083,47.5706554],[9.6279571,47.570842],[9.6275258,47.5710223],[9.6272656,47.5710618],[9.6271128,47.571078],[9.6269894,47.571078],[9.6268499,47.5710529],[9.6267909,47.5709681],[9.6263564,47.5708466],[9.626067,47.5708621],[9.6259906,47.5708579],[9.6259121,47.5708343],[9.6258167,47.5707739],[9.6255181,47.5706663],[9.6251792,47.5706156],[9.6249462,47.5705817],[9.6246837,47.5705111],[9.624341,47.5705431],[9.6240502,47.5706013],[9.6238455,47.5705947],[9.6235812,47.5706128],[9.6232963,47.5706448],[9.6230758,47.5706665],[9.6229444,47.5706425],[9.6225123,47.570674],[9.6223809,47.5706701],[9.6223473,47.5705726],[9.6221794,47.5705824],[9.622177,47.5706447],[9.6216976,47.5706622],[9.621575,47.5706642],[9.6215761,47.5706517],[9.6211225,47.5706386],[9.620777,47.5705784],[9.6204421,47.5705401],[9.6200942,47.5704679],[9.6198283,47.5703024],[9.6196708,47.5701397],[9.6195545,47.57002],[9.6194932,47.5698841],[9.6194523,47.5696575],[9.6193564,47.5692797],[9.6192959,47.569002],[9.6190961,47.5688794],[9.6188159,47.5687915],[9.6185501,47.5687573],[9.6182446,47.5687564],[9.6180275,47.5687868],[9.6178173,47.5688735],[9.6172979,47.5689931],[9.617026,47.5690953],[9.6166048,47.5692012],[9.6165525,47.5691704],[9.6164576,47.5691704],[9.6163756,47.5692009],[9.616134,47.5692868],[9.6159506,47.569313],[9.6156033,47.5694716],[9.6153833,47.5695954],[9.6152625,47.5696317],[9.6151784,47.5696434],[9.6148476,47.56977],[9.6146701,47.5697986],[9.6144766,47.5698496],[9.6144436,47.5698053],[9.6144078,47.569813],[9.6143544,47.5697296],[9.61433,47.5697368],[9.6144141,47.5698671],[9.6142981,47.5699145],[9.6141212,47.5700164],[9.613938,47.570083],[9.6138817,47.5701419],[9.6138314,47.5701471],[9.6137093,47.5702222],[9.6137002,47.5702726],[9.6136129,47.5703102],[9.6134014,47.5703361],[9.6132549,47.570373],[9.6132323,47.570387],[9.6130937,47.5704728],[9.6128422,47.5706079],[9.6127609,47.5706125],[9.612684,47.5706505],[9.612542,47.5707562],[9.61188,47.5709763],[9.6115819,47.5709894],[9.6113592,47.5710479],[9.6110328,47.5711383],[9.6106816,47.5713032],[9.61065,47.5712879],[9.6105831,47.5713217],[9.6105203,47.5713965],[9.6103823,47.5714812],[9.6101961,47.5715038],[9.610056,47.5714854],[9.6099796,47.5715697],[9.6091868,47.5718819],[9.6084875,47.5722501],[9.6077632,47.5727875],[9.6071036,47.5735882],[9.6068136,47.5735428],[9.6064367,47.5745414],[9.6069101,47.5746187],[9.6069827,47.5753562],[9.6069669,47.5759722],[9.6074711,47.5761285],[9.6072487,47.576703],[9.6071764,47.5767022],[9.607045,47.5768563],[9.6068073,47.5770275],[9.6066314,47.5769328],[9.6066105,47.5769449],[9.6066927,47.5770013],[9.6066479,47.5770497],[9.6067165,47.5771031],[9.606621,47.5771816],[9.606487,47.5771128],[9.6064299,47.577102],[9.6063791,47.5771232],[9.6062716,47.5772038],[9.6061372,47.5774435],[9.6057756,47.5778406],[9.605716,47.577872],[9.6055577,47.5779684],[9.6055009,47.5780044],[9.6054962,47.5780323],[9.6055198,47.5780483],[9.6054962,47.5781426],[9.6053765,47.5782824],[9.6053292,47.5782983],[9.605236,47.5784279],[9.6051918,47.5784661],[9.6051468,47.5785875],[9.6050687,47.5786402],[9.6050166,47.5788032],[9.60491,47.5789869],[9.6047541,47.5792626],[9.6046335,47.579405],[9.6045264,47.5794569],[9.6044523,47.5796597],[9.6043503,47.5796932],[9.6043302,47.5797387],[9.6044012,47.5797515],[9.6044249,47.5797755],[9.6044249,47.579801],[9.6044804,47.579811],[9.6045173,47.579821],[9.60454,47.5798731],[9.6045834,47.5800267],[9.604573,47.5800877],[9.6045303,47.5800957],[9.6045374,47.5802938],[9.6044451,47.5803018],[9.6044332,47.5803705],[9.6045422,47.5804025],[9.6045378,47.5805232],[9.6044995,47.5806453],[9.6044419,47.5806416],[9.6042793,47.5809632],[9.6042005,47.5812009],[9.6041072,47.5813583],[9.6039854,47.5815852],[9.6038503,47.5818996],[9.6037068,47.5821163],[9.6023648,47.5841301],[9.60218826,47.58435934],[9.6022198,47.5843654],[9.603841,47.5851636],[9.6038982,47.5852255],[9.6039376,47.5852346],[9.6043736,47.5854038],[9.6050899,47.5855341],[9.6051954,47.5855603],[9.6053172,47.5855911],[9.6070401,47.5860026],[9.6074011,47.5861342],[9.6076248,47.5861638],[9.6078398,47.5858653],[9.6080964,47.5855031],[9.6082855,47.5852584],[9.6084841,47.5849998],[9.6088238,47.5845818],[9.6090452,47.5843278],[9.6092655,47.5840755],[9.6096614,47.5836224],[9.6097888,47.5834722],[9.6099123,47.583344],[9.6100875,47.5831624],[9.6101494,47.583205],[9.6102593,47.5832649],[9.6104921,47.5830128],[9.6109334,47.5824905],[9.611295,47.5821385],[9.6117238,47.5816506],[9.6121371,47.5812224],[9.6125728,47.5807436],[9.6130189,47.5802738],[9.6134858,47.5798266],[9.6135427,47.5798],[9.6135859,47.5797796],[9.6136467,47.5797789],[9.6137624,47.5798071],[9.6140467,47.5799428],[9.6145362,47.5801674],[9.6152413,47.5804761],[9.6155798,47.5806158],[9.6159765,47.5807867],[9.6161058,47.5808147],[9.6162835,47.5808902],[9.6163933,47.5810601],[9.6166078,47.5812357],[9.6169398,47.5813868],[9.617246,47.5814582],[9.6175072,47.5814938],[9.6178533,47.5815443],[9.6181245,47.5815774],[9.6182979,47.5816162],[9.6184932,47.5817165],[9.6186443,47.5817968],[9.6187307,47.5818598],[9.6187575,47.5819714],[9.62024,47.5831158],[9.6202251,47.5831427],[9.6200037,47.5835409],[9.6198167,47.5838778],[9.6196161,47.5842387],[9.6195812,47.5843016],[9.6197197,47.5844163],[9.6200662,47.5847159],[9.6204529,47.5850012],[9.6207152,47.5851944],[9.6210318,47.585396],[9.6210744,47.5854199],[9.6213446,47.5855726],[9.6216241,47.5857792],[9.6217621,47.5858781],[9.6219056,47.5859356],[9.6220628,47.5859953],[9.6221214,47.5860312],[9.6219673,47.5861954],[9.6218476,47.5863845],[9.6217769,47.5866276],[9.6217699,47.5868563],[9.6217937,47.5870892],[9.6218173,47.5872009],[9.6218192,47.5872096],[9.6218717,47.587454],[9.6219251,47.5876726],[9.6220294,47.5878862],[9.6221228,47.5880792],[9.62224,47.58816],[9.6223774,47.5882405],[9.6226262,47.5883942],[9.6227542,47.5884975],[9.6229209,47.5886623],[9.622988,47.5887413],[9.6231168,47.5888929],[9.6232852,47.5891056],[9.62349,47.5892996],[9.623681,47.589473],[9.6237365,47.5895271],[9.6239534,47.5897917],[9.6241465,47.5900407],[9.6242312,47.5901675],[9.6243982,47.5904488],[9.6245615,47.5906021],[9.6259189,47.5917448],[9.6260474,47.5920601],[9.6262167,47.5922109],[9.6263621,47.5923047],[9.6265516,47.5924145],[9.6266701,47.5924487],[9.6269713,47.5924991],[9.6272388,47.59257],[9.6274289,47.5926242],[9.6275198,47.5926501],[9.627794,47.592721],[9.6279512,47.5927608],[9.6281189,47.5928033],[9.6284982,47.5928446],[9.6286208,47.5928471],[9.6287249,47.5928492],[9.6290228,47.5928745],[9.6293038,47.5929066],[9.6296559,47.5929135],[9.6300723,47.5929228],[9.630203,47.5929213],[9.6304649,47.5929184],[9.6308035,47.5929253],[9.631071,47.5928889],[9.6313724,47.5928546],[9.6316161,47.5928913],[9.6317516,47.5928982],[9.6319716,47.5930055],[9.6322152,47.5931246],[9.6323415,47.5931979],[9.6323844,47.5932227],[9.6325536,47.593328],[9.6326417,47.5933943],[9.6328348,47.593513],[9.6330885,47.5935611],[9.6334439,47.5935498],[9.6338436,47.5935112],[9.6340114,47.5935206],[9.634172,47.5935294],[9.6343336,47.5934915],[9.6344733,47.5934586],[9.6346866,47.5933766],[9.6348796,47.5933012],[9.6350828,47.5932417],[9.6352418,47.5931574],[9.6353402,47.5930957],[9.6354789,47.5930522],[9.6356142,47.5930249],[9.6357769,47.5929861],[9.6358073,47.5928833],[9.6358108,47.5927874],[9.6358819,47.5926548],[9.6359903,47.5925544],[9.6361866,47.5924722],[9.6363526,47.5923762],[9.6365387,47.5922918],[9.6365726,47.5922462],[9.6366437,47.5921318],[9.6366741,47.592061],[9.6367116,47.5919787],[9.6367353,47.5918851],[9.6367724,47.5918074],[9.636813,47.5917252],[9.6368875,47.5916727],[9.6369591,47.5916595],[9.63705,47.591643],[9.6371821,47.5916431],[9.6372869,47.591659],[9.6374157,47.5916499],[9.63747,47.5915996],[9.6376291,47.5915541],[9.6377813,47.5915472],[9.6379506,47.5915358],[9.6380793,47.5915244],[9.6382045,47.5914697],[9.6382689,47.5914057],[9.6383028,47.591248],[9.6382995,47.59112],[9.6383063,47.5910173],[9.6383638,47.5909442],[9.6385297,47.5908619],[9.6386379,47.5908072],[9.6387531,47.5907067],[9.6388276,47.5905992],[9.6388819,47.5905147],[9.6390106,47.5904623],[9.6391223,47.5904485],[9.6393254,47.5904371],[9.6394404,47.590371],[9.6395455,47.590275],[9.6397078,47.5902247],[9.639894,47.5901814],[9.6400531,47.5901288],[9.6401853,47.5900147],[9.6404324,47.589905],[9.640517,47.5898822],[9.6407337,47.5898869],[9.6409233,47.5899097],[9.6411061,47.5899029],[9.6412686,47.5898687],[9.6414039,47.5898344],[9.641614,47.589807],[9.6417865,47.5898163],[9.6419625,47.5898323],[9.6421758,47.5898049],[9.6423385,47.5897479],[9.6425718,47.5896885],[9.6427108,47.5896634],[9.6428327,47.589668],[9.6428597,47.5896725],[9.6429579,47.5897068],[9.6430628,47.5897434],[9.6431812,47.5897526],[9.6433404,47.5897594],[9.643547,47.589764],[9.6436891,47.5897777],[9.6438481,47.5898349],[9.6440444,47.5899149],[9.6441055,47.5899767],[9.6441462,47.5900314],[9.6441561,47.5900818],[9.6442172,47.5901549],[9.6442882,47.59018],[9.6443729,47.5901915],[9.6444711,47.5902395],[9.6445016,47.5902806],[9.6444926,47.5903101],[9.6444912,47.5903149],[9.6444541,47.5903926],[9.6444744,47.5904747],[9.644532,47.5905091],[9.6445962,47.590484],[9.6447148,47.5905298],[9.644752,47.590612],[9.6447587,47.5906965],[9.6447655,47.5907971],[9.6447655,47.5908679],[9.6447723,47.590966],[9.6448332,47.5910324],[9.6449043,47.5910529],[9.6450125,47.5910574],[9.6451242,47.5910484],[9.6452256,47.5910484],[9.6453139,47.5910896],[9.6453328,47.5911196],[9.6453715,47.5911809],[9.6453885,47.5912701],[9.6453748,47.5913523],[9.645324,47.5914232],[9.6453206,47.5914598],[9.6453038,47.5915123],[9.6453376,47.5915854],[9.6453781,47.591638],[9.6454425,47.5916928],[9.645517,47.5917705],[9.6455272,47.591839],[9.6455069,47.5919167],[9.6455271,47.5919967],[9.645588,47.5920675],[9.6456288,47.5921383],[9.6456692,47.592248],[9.6456049,47.5924697],[9.6455135,47.5925337],[9.6454053,47.5925884],[9.6452934,47.5926204],[9.6452021,47.5926409],[9.6450293,47.5926706],[9.6448805,47.5926752],[9.6447822,47.5926865],[9.6447012,47.592714],[9.6446131,47.5927459],[9.6444979,47.5928007],[9.6443659,47.5928714],[9.6442845,47.5929676],[9.6441491,47.5930383],[9.6440205,47.5930382],[9.6439189,47.5931],[9.6436481,47.5932004],[9.6434787,47.5932324],[9.6432994,47.593294],[9.6432248,47.5933421],[9.6432113,47.5934129],[9.6432182,47.5934814],[9.6432688,47.5935682],[9.6433771,47.5936413],[9.6434381,47.5936938],[9.643472,47.5937557],[9.6434854,47.5938653],[9.643438,47.593968],[9.6433873,47.5941212],[9.643279,47.5942673],[9.6431097,47.5943998],[9.6429234,47.5944935],[9.6427712,47.5945437],[9.6425646,47.5946145],[9.6424357,47.5947629],[9.6424122,47.5948293],[9.642416,47.5948787],[9.6424188,47.5949137],[9.6424695,47.5949808],[9.6425035,47.5950257],[9.6425521,47.595076],[9.6426694,47.5952268],[9.6427203,47.5953616],[9.6426965,47.5954645],[9.6426457,47.5955375],[9.6425577,47.5956495],[9.6424189,47.5957545],[9.6423138,47.5958322],[9.6422156,47.595951],[9.6421309,47.5960789],[9.642097,47.5962115],[9.6419278,47.5963988],[9.6418769,47.5964147],[9.6417855,47.5963918],[9.6417313,47.5963553],[9.6416536,47.5963392],[9.6414978,47.5963782],[9.6414775,47.5964055],[9.6413963,47.5965859],[9.6413014,47.5967368],[9.6413149,47.5967756],[9.6413624,47.5968054],[9.6414301,47.5968259],[9.6415247,47.5968214],[9.6416671,47.5968007],[9.6417821,47.5967895],[9.6418634,47.5968077],[9.6418972,47.59689],[9.6418769,47.5969722],[9.6418296,47.5970911],[9.6417889,47.5972258],[9.6417144,47.5973103],[9.6416737,47.5974337],[9.641606,47.5975365],[9.6414438,47.597621],[9.6413553,47.5976461],[9.6412098,47.5976872],[9.6410879,47.5977192],[9.640983,47.5977832],[9.6409389,47.5978677],[9.6409525,47.5979979],[9.6409625,47.5981145],[9.6409659,47.5982378],[9.6409525,47.598327],[9.6408981,47.5984161],[9.6408204,47.59848],[9.6407221,47.598576],[9.6406171,47.5987176],[9.6405359,47.5988661],[9.6402082,47.5991447],[9.6400685,47.5992635],[9.6396045,47.5997523],[9.6391641,47.6003411],[9.6391357,47.6004624],[9.6390727,47.6005451],[9.6389797,47.6006416],[9.6389066,47.6007175],[9.6387926,47.6007754],[9.6386722,47.6008562],[9.6385314,47.6009188],[9.6384274,47.6009652],[9.6383027,47.6009934],[9.6381948,47.6010057],[9.6380395,47.6010112],[9.637891,47.6010236],[9.6377874,47.6010906],[9.637691,47.6011827],[9.6376278,47.6012607],[9.6375646,47.6013137],[9.6374775,47.6013577],[9.6372898,47.6014595],[9.6370386,47.6016006],[9.6365627,47.6018368],[9.6363181,47.601971],[9.6362276,47.6020241],[9.6363083,47.6021995],[9.6364495,47.6023791],[9.6366113,47.6025676],[9.6367868,47.6027698],[9.6369926,47.6029671],[9.6372633,47.6033066],[9.6375038,47.6034707],[9.637709,47.6036268],[9.6377884,47.6036873],[9.6379784,47.6039564],[9.6380808,47.6042486],[9.6382022,47.6042098],[9.6383238,47.6041822],[9.6384688,47.6041408],[9.6386176,47.6041086],[9.6387542,47.6040741],[9.6388437,47.6040513],[9.6389552,47.6040214],[9.6391747,47.6039869],[9.6394448,47.6039455],[9.6397014,47.6039063],[9.6398095,47.6038833],[9.6400324,47.6038396],[9.6401016,47.60383],[9.640245,47.6038097],[9.6404223,47.603782],[9.6405389,47.6037637],[9.6405821,47.6037603],[9.6408666,47.6037381],[9.6411301,47.6037286],[9.6416299,47.603696],[9.6420016,47.6036817],[9.6422888,47.6036859],[9.642417,47.603694],[9.6425389,47.6037015],[9.6428465,47.6037355],[9.6432655,47.6037692],[9.6436407,47.6037961],[9.6440023,47.6038252],[9.6442999,47.603866],[9.6444237,47.6038767],[9.6444823,47.6038818],[9.6446345,47.603886],[9.6448032,47.6038766],[9.6455229,47.6038415],[9.6459656,47.6038774],[9.6464356,47.603927],[9.6467228,47.6039608],[9.6468986,47.6040155],[9.6467136,47.6042372],[9.6472747,47.6043117],[9.6471814,47.6046955],[9.647452,47.6047865],[9.6475451,47.6052363],[9.6478493,47.6053021],[9.6482753,47.6054049],[9.6483362,47.6053926],[9.6485457,47.6053537],[9.6487279,47.6053192],[9.6489406,47.6052822],[9.6491433,47.6052523],[9.6493357,47.6052156],[9.6494978,47.6051857],[9.6496498,47.60519],[9.6498154,47.6052011],[9.6500318,47.6052282],[9.650407,47.6052711],[9.6506741,47.6053051],[9.6509648,47.6053526],[9.6511643,47.6054003],[9.6514522,47.605546],[9.652229,47.6054923],[9.6524172,47.6054756],[9.6528303,47.605439],[9.6534254,47.6053705],[9.6536217,47.6054146],[9.6537177,47.6055948],[9.6537747,47.6058787],[9.6537753,47.6060702],[9.6535125,47.6064885],[9.6534305,47.6066428],[9.6534649,47.6068951],[9.6533351,47.6071715],[9.6533215,47.6074309],[9.6534135,47.607648],[9.6534844,47.6077256],[9.6536096,47.6077765],[9.6537896,47.6077966],[9.6539852,47.6078023],[9.6543881,47.6081322],[9.6546396,47.608558],[9.6548565,47.6087815],[9.6551447,47.6090689],[9.655598,47.6094849],[9.6557583,47.609632],[9.6566825,47.6105386],[9.6582523,47.6120659],[9.6614201,47.6119056],[9.662537,47.611849],[9.6655743,47.6116951],[9.6663714,47.6116504],[9.6710306,47.611389],[9.6711019,47.6113257],[9.6714032,47.6112072],[9.6715927,47.6111365],[9.6717889,47.6110476],[9.6719955,47.6109039],[9.6721175,47.6107716],[9.6722394,47.6106531],[9.6725066,47.6106599],[9.6727805,47.610651],[9.6728145,47.6105688],[9.6729684,47.6104858],[9.6730528,47.6103785],[9.6732316,47.610269],[9.67335,47.6102302],[9.6734273,47.6102049],[9.6736839,47.6101364],[9.6737194,47.6101772],[9.6741466,47.6099489],[9.6741261,47.6098964],[9.6742473,47.6098532],[9.6743311,47.6098232],[9.6745548,47.6097435],[9.6746455,47.6094627],[9.6748782,47.6092116],[9.6750497,47.6088167],[9.6752795,47.6087755],[9.6758705,47.6086725],[9.6765516,47.6080104],[9.6769484,47.6070748],[9.6771437,47.6068169],[9.6775929,47.6067389],[9.6776835,47.6063784],[9.6776825,47.6058217],[9.6777928,47.6055968],[9.678113,47.6048723],[9.6787347,47.604881],[9.6799921,47.6047596],[9.6806393,47.6046972],[9.6812369,47.6045667],[9.6814362,47.6045663],[9.6838615,47.6045604],[9.6853367,47.6053086],[9.6868969,47.6060863],[9.6878209,47.6072642],[9.6886384,47.607479],[9.6889794,47.6077091],[9.688908,47.6080552],[9.6902522,47.6086733],[9.6904139,47.6088806],[9.6905825,47.6090925],[9.690704,47.6093658],[9.6914432,47.6099447],[9.6918786,47.6102615],[9.6920731,47.6103246],[9.6923918,47.6099019],[9.6924723,47.6095985],[9.6923234,47.6093819],[9.6922954,47.6090693],[9.6922266,47.6084806],[9.6924351,47.6080082],[9.6925256,47.6076363],[9.6924571,47.6073283],[9.6926023,47.6071594],[9.6930302,47.606673],[9.6932479,47.6065304],[9.6935946,47.6063032],[9.6942652,47.6059432],[9.6945224,47.6057564],[9.6950409,47.6052661],[9.6945112,47.6046404],[9.6946218,47.6046025],[9.6951035,47.6044378],[9.6950429,47.6043305],[9.6951394,47.6043016],[9.6957874,47.6041072],[9.6965008,47.6038931],[9.6969939,47.603745],[9.6975968,47.6035642],[9.6976926,47.6035226],[9.6975881,47.6032898],[9.6977304,47.6032433],[9.6983124,47.603053],[9.6985682,47.6029134],[9.6989048,47.6027295],[9.699415,47.6029742],[9.6996146,47.6029425],[9.6998279,47.6028947],[9.7002575,47.6028517],[9.7006328,47.6028703],[9.7008796,47.6029412],[9.7011024,47.603051],[9.7015049,47.6030285],[9.7018381,47.602833],[9.7025071,47.6024405],[9.7027134,47.6024567],[9.7030829,47.602021],[9.7042535,47.6017779],[9.7046493,47.6017143],[9.7060797,47.6017384],[9.706384,47.6017385],[9.7071445,47.602013],[9.7074474,47.6020893],[9.7078538,47.6021816],[9.7085141,47.6023733],[9.708536,47.6025881],[9.7085806,47.6026611],[9.7086348,47.6026745],[9.7087056,47.6026583],[9.708827,47.6026281],[9.7089354,47.6026645],[9.7089527,47.6027101],[9.7089059,47.602797],[9.7088423,47.602868],[9.7087753,47.6029527],[9.7087657,47.6030282],[9.708827,47.6030806],[9.7089559,47.6031578],[9.7090815,47.6032213],[9.7091896,47.6032323],[9.7092503,47.603191],[9.7093481,47.6031609],[9.7094294,47.6031995],[9.7094838,47.6032359],[9.7095649,47.6032561],[9.7096462,47.6032764],[9.7096974,47.6033152],[9.7097381,47.6033652],[9.7097725,47.6034542],[9.7098037,47.6035409],[9.7098849,47.6035748],[9.70996,47.6036363],[9.7099876,47.6037276],[9.7099883,47.603819],[9.7099922,47.603876],[9.7100295,47.6038988],[9.7100939,47.603926],[9.7102225,47.6039529],[9.7103544,47.6039776],[9.7105095,47.6039451],[9.7106714,47.6038737],[9.7107758,47.6038412],[9.7108606,47.6038616],[9.7109354,47.603923],[9.7109765,47.6040005],[9.7110113,47.6041375],[9.710999,47.6042929],[9.7109497,47.604478],[9.7109571,47.6045877],[9.7110351,47.6046194],[9.7111335,47.6046511],[9.7112317,47.6046964],[9.7112731,47.604799],[9.7113311,47.6048834],[9.7117003,47.6049615],[9.7117789,47.6051073],[9.7116354,47.6053248],[9.7114337,47.6054604],[9.7112349,47.6055645],[9.7111685,47.6056875],[9.7114897,47.6059904],[9.7116993,47.6061879],[9.7120126,47.6064986],[9.7120649,47.6065484],[9.7124004,47.6064526],[9.7126967,47.6063351],[9.7128921,47.6062727],[9.7130371,47.6062287],[9.7131918,47.6061619],[9.7137692,47.6061164],[9.7152028,47.6058713],[9.7152937,47.6058482],[9.715848,47.606328],[9.7161237,47.6066216],[9.7165341,47.6068623],[9.7170022,47.6071026],[9.7173547,47.6072657],[9.7176363,47.6074337],[9.7179825,47.6076609],[9.7184298,47.6078738],[9.718974,47.6079015],[9.7192812,47.6078777],[9.719593,47.6080226],[9.7201194,47.6079498],[9.7227123,47.6077347],[9.7248533,47.6072194],[9.7253002,47.6071118],[9.7255204,47.6070589],[9.7254759,47.6069677],[9.7254619,47.6069037],[9.7259519,47.6065487],[9.7263612,47.6069492],[9.7266077,47.6067933],[9.7270906,47.6066483],[9.7273881,47.6070289],[9.7281724,47.6073348],[9.7283345,47.6074305],[9.7283507,47.6076389],[9.7284619,47.6076388],[9.7284503,47.6079039],[9.7284906,47.6083536],[9.7284935,47.6085439],[9.7284964,47.608726],[9.7283179,47.6087973],[9.7280748,47.6093693],[9.7281976,47.6094757],[9.7282929,47.6095761],[9.7286191,47.609856],[9.7286946,47.61005],[9.7287787,47.6105019],[9.7288537,47.6106135],[9.7289695,47.6107389],[9.7291156,47.6108663],[9.7293492,47.610966],[9.7295524,47.6110339],[9.7296335,47.6110496],[9.7296846,47.6111157],[9.7316895,47.6130148],[9.7319483,47.6132599],[9.7338149,47.6150536],[9.7347401,47.6160214],[9.7348574,47.6158839],[9.735311,47.6152487],[9.7353741,47.6151602],[9.7354386,47.6150711],[9.73577,47.6145495],[9.7360203,47.6141375],[9.7360463,47.6140949],[9.736658,47.613094],[9.7373817,47.6118172],[9.7374153,47.6117828],[9.7376905,47.6120194],[9.7378895,47.6121868],[9.738397,47.6126132],[9.7389778,47.6130636],[9.7393883,47.6133568],[9.7395132,47.6133199],[9.7396378,47.6132876],[9.7397322,47.6132711],[9.7400462,47.6132588],[9.7401443,47.6132812],[9.7404218,47.6133877],[9.7405542,47.6134603],[9.7405035,47.6134879],[9.7404363,47.6135246],[9.740783,47.613841],[9.7411201,47.6142374],[9.7415219,47.6146951],[9.7417396,47.6149091],[9.742069,47.6151569],[9.7423777,47.6153613],[9.7428051,47.6156021],[9.7431437,47.6157961],[9.7434391,47.6159654],[9.7442627,47.6163876],[9.7444505,47.6164867],[9.7448962,47.6167219],[9.7458153,47.6172068],[9.745987,47.6171195],[9.7463278,47.6169696],[9.7468546,47.6167378],[9.7472106,47.6165813],[9.7474782,47.6164637],[9.7476679,47.6163865],[9.7474076,47.6160322],[9.7472021,47.6160809],[9.7471042,47.6160994],[9.7469557,47.6161136],[9.7465672,47.6161012],[9.7465771,47.6160669],[9.7465857,47.6158477],[9.7466303,47.615023],[9.7466225,47.6148837],[9.746593,47.6147297],[9.7465728,47.614623],[9.7465558,47.6145345],[9.7464964,47.6142606],[9.7464002,47.6140165],[9.7463077,47.6138592],[9.7461716,47.6136975],[9.7461161,47.6135058],[9.7461186,47.6133643],[9.7461616,47.6132498],[9.7464267,47.6130069],[9.7453241,47.6123071],[9.7451647,47.6122117],[9.7449344,47.6121212],[9.7446772,47.6120398],[9.7442804,47.6117898],[9.7441375,47.6116464],[9.7439982,47.6115304],[9.7437441,47.6114102],[9.7435815,47.6113445],[9.7434561,47.611281],[9.7433524,47.6112295],[9.7432596,47.6111834],[9.7429956,47.6110998],[9.7429611,47.6109949],[9.7428454,47.610865],[9.7427057,47.6107216],[9.7425766,47.6105851],[9.7424376,47.6105009],[9.7423595,47.6104372],[9.7422913,47.6103485],[9.7422636,47.610264],[9.7422927,47.6101806],[9.7423265,47.6100833],[9.7423705,47.6100183],[9.7424501,47.6099002],[9.7430109,47.6089984],[9.7431694,47.6087748],[9.743295,47.6085979],[9.7438425,47.6077099],[9.743355,47.6070743],[9.7431426,47.6068805],[9.7430125,47.6067694],[9.7429204,47.6067016],[9.7427744,47.6066705],[9.7426387,47.6066373],[9.7424179,47.6065634],[9.742271,47.6064617],[9.7421043,47.6063018],[9.7420103,47.6062094],[9.7420038,47.606203],[9.7418375,47.6061677],[9.7416281,47.6061829],[9.7412668,47.6062197],[9.7410946,47.6062414],[9.7409626,47.606224],[9.7407486,47.6061546],[9.740374,47.6059677],[9.7401657,47.6058229],[9.7401064,47.6056931],[9.7400932,47.6054854],[9.7400675,47.6053302],[9.7399735,47.6051437],[9.7402943,47.6048651],[9.7403242,47.6045885],[9.7400875,47.6045855],[9.740088,47.604575],[9.7400924,47.6044531],[9.740525,47.604441],[9.743562,47.6042442],[9.7454403,47.6041215],[9.7462509,47.6040588],[9.7464972,47.6039841],[9.7472307,47.603762],[9.7484905,47.603217],[9.7488288,47.6030737],[9.7490303,47.6029979],[9.7492041,47.6029327],[9.7512106,47.6045961],[9.7523957,47.6055264],[9.7521589,47.605631],[9.7523911,47.6058578],[9.7526975,47.6061053],[9.7529501,47.6063069],[9.7531923,47.606497],[9.7535597,47.6067332],[9.7537583,47.6068981],[9.7539875,47.6070563],[9.7543243,47.6072398],[9.754476,47.6073384],[9.7546274,47.607469],[9.7547689,47.6076018],[9.7548292,47.6077276],[9.7548928,47.6078716],[9.7548953,47.6080865],[9.755225,47.6084552],[9.7551607,47.6084778],[9.7553798,47.6086062],[9.7556456,47.6088286],[9.7558377,47.608982],[9.7559959,47.6091103],[9.7562149,47.609248],[9.75638,47.6093579],[9.7557599,47.6099418],[9.755509,47.6101676],[9.7549915,47.6103973],[9.7541772,47.6108535],[9.7539456,47.6110603],[9.7534238,47.6114956],[9.7542063,47.6127357],[9.754908,47.6138471],[9.7550427,47.613901],[9.7553465,47.6139838],[9.7554679,47.6140137],[9.7556233,47.6140278],[9.7557213,47.6140029],[9.7558127,47.6139505],[9.7558938,47.6139551],[9.7561063,47.6140265],[9.7567837,47.614421],[9.7568946,47.6145515],[9.7570273,47.6147123],[9.7572007,47.6149222],[9.7576205,47.6155768],[9.7577717,47.6157713],[9.7580485,47.6158609],[9.7585612,47.6160197],[9.7590572,47.6161715],[9.7594789,47.6163232],[9.7596034,47.6164148],[9.7597111,47.6165681],[9.7597794,47.6166543],[9.7598455,47.6167376],[9.7599197,47.6168062],[9.7600847,47.6169139],[9.7603813,47.6170952],[9.7606409,47.6172442],[9.7609209,47.6173774],[9.7610525,47.6173775],[9.7612382,47.6173733],[9.7614209,47.6173097],[9.7616169,47.6172873],[9.761816,47.6173379],[9.7619892,47.6173521],[9.7621603,47.6173661],[9.7634707,47.6174279],[9.7635551,47.6174487],[9.7635954,47.6174876],[9.7636089,47.6175219],[9.7635919,47.6175699],[9.7632793,47.6180606],[9.7639138,47.6182424],[9.7642268,47.6185492],[9.7644052,47.6186981],[9.7646617,47.6187947],[9.7649525,47.6188216],[9.7652637,47.6187627],[9.7653583,47.6187835],[9.7654703,47.6189315],[9.7655896,47.6190889],[9.7657258,47.6192691],[9.7658567,47.6194419],[9.766267,47.6195062],[9.7671076,47.6196495],[9.767897,47.6203017],[9.770622,47.6231745],[9.7709488,47.6235191],[9.7719474,47.6241003],[9.7721591,47.6242022],[9.7723629,47.6243005],[9.7725739,47.6243816],[9.7728698,47.6244955],[9.7734339,47.6246832],[9.7738564,47.6248049],[9.7740847,47.6248707],[9.7745905,47.6250166],[9.7747485,47.6250621],[9.7748575,47.6251206],[9.7748858,47.6251956],[9.7748838,47.6252982],[9.7748116,47.6254424],[9.7743929,47.6261953],[9.7750127,47.626467],[9.7751933,47.6265707],[9.7753301,47.6266656],[9.7754828,47.6267033],[9.7756623,47.6267089],[9.7765441,47.6273392],[9.7770964,47.6278668],[9.7784303,47.6290981],[9.7783353,47.6298187],[9.7776384,47.630155],[9.7778128,47.6304434],[9.7781457,47.630493],[9.7783695,47.6305719],[9.7786992,47.6307462],[9.778949,47.6308772],[9.7793349,47.6307252],[9.779804,47.6305873],[9.7798411,47.6306295],[9.7804319,47.6305266],[9.7817966,47.630887],[9.781884,47.63091],[9.7819916,47.6308844],[9.782123,47.6308678],[9.7823018,47.63086],[9.7825141,47.6308611],[9.7826189,47.6308995],[9.7827404,47.6309079],[9.783054,47.6309133],[9.7833373,47.6309278],[9.7836206,47.6309285],[9.7838531,47.6309091],[9.7843449,47.6308656],[9.7844965,47.630851],[9.7846685,47.6308592],[9.7848309,47.6309018],[9.7850336,47.6309373],[9.7852734,47.6309863],[9.7854594,47.6310517],[9.7858662,47.6312733],[9.7869263,47.6317838],[9.7869382,47.63179],[9.7871808,47.631914],[9.7878436,47.6322529],[9.7882308,47.6324508],[9.7883337,47.632632],[9.7887248,47.6333206],[9.7890826,47.6334018],[9.7900517,47.6336218],[9.790452,47.6337126],[9.7917683,47.6340126],[9.7946718,47.6354717],[9.7950071,47.6356482],[9.7953102,47.6358078],[9.795641,47.6364157],[9.7960403,47.637149],[9.7972262,47.6393267],[9.7990124,47.6426065],[9.7992006,47.642952],[9.7993418,47.6432112],[9.7993751,47.6432726],[9.8001265,47.6446519],[9.8001718,47.6447497],[9.7985379,47.6454284],[9.7972949,47.6459586],[9.7969472,47.6461037],[9.7957417,47.6466072],[9.7936793,47.6474542],[9.7934235,47.6475593],[9.7940355,47.6477175],[9.7949097,47.6479405],[9.7953929,47.6480904],[9.7956829,47.6482325],[9.7959018,47.6483772],[9.7961184,47.6485927],[9.7963233,47.6487192],[9.7965145,47.6488139],[9.7967561,47.6488764],[9.7970507,47.6489098],[9.7973721,47.6489244],[9.797626,47.6489665],[9.7979617,47.6490541],[9.7982435,47.6491762],[9.7984649,47.649342],[9.7987135,47.649551],[9.7990218,47.6499474],[9.7993838,47.6503227],[9.7997312,47.6505839],[9.8001185,47.6507718],[9.8005428,47.6509413],[9.8009694,47.6510146],[9.8012873,47.6510177],[9.8014901,47.6510076],[9.8017264,47.6509699],[9.8024586,47.6508293],[9.8025868,47.6508077],[9.8026679,47.6507941],[9.8029955,47.6507674],[9.8035163,47.6507855],[9.8042198,47.650805],[9.8052986,47.6508319],[9.805823,47.6508866],[9.8060468,47.6509405],[9.8075009,47.6513128],[9.8075648,47.6513322],[9.8076636,47.6513623],[9.8079619,47.6514318],[9.8081108,47.651463],[9.8083241,47.6514735],[9.8085942,47.6514608],[9.808844,47.6514093],[9.8092044,47.6512727],[9.8096927,47.6510852],[9.8101807,47.650875],[9.8108038,47.6506389],[9.8115649,47.6503404],[9.8117895,47.6502462],[9.8123865,47.649996],[9.8126255,47.6499033],[9.8128411,47.6498293],[9.8130498,47.6497345],[9.8131808,47.6496676],[9.8134538,47.6495703],[9.8137706,47.6494636],[9.8140609,47.6494302],[9.8144127,47.6494468],[9.8147173,47.6494864],[9.8150558,47.649526],[9.8154785,47.6495422],[9.8158174,47.6496091],[9.816092,47.6496901],[9.8163264,47.6497986],[9.8166353,47.6499183],[9.8168427,47.6500453],[9.81701,47.6502182],[9.8172016,47.6504184],[9.817328,47.6505571],[9.817356,47.6506125],[9.8173901,47.6506802],[9.817459,47.6508102],[9.8178347,47.6518368],[9.8181535,47.6526192],[9.8183372,47.6530549],[9.8185204,47.6534356],[9.8186506,47.65362],[9.818849,47.6538385],[9.8189611,47.6538883],[9.818998,47.6539254],[9.8191217,47.6540497],[9.8192679,47.6541427],[9.8193455,47.6541422],[9.8193826,47.6541125],[9.8194462,47.6540481],[9.8195237,47.6540318],[9.8196053,47.6540702],[9.8196397,47.6541295],[9.8195695,47.6542097],[9.8194819,47.6542492],[9.8194149,47.6543043],[9.8194261,47.6544071],[9.8195622,47.6544841],[9.8196854,47.6545122],[9.8197486,47.6545266],[9.8197589,47.654525],[9.8199848,47.6544889],[9.8202142,47.6544306],[9.820488,47.6544362],[9.8207825,47.6544713],[9.8209887,47.6544542],[9.8211441,47.6544763],[9.8213781,47.6545096],[9.8216154,47.654593],[9.8217618,47.6546836],[9.8218917,47.6548224],[9.8220214,47.6549269],[9.8220689,47.6549445],[9.8221978,47.6549924],[9.8224012,47.6550508],[9.8224582,47.6550737],[9.8225914,47.6551275],[9.8227138,47.6552046],[9.8228773,47.6553089],[9.8231114,47.6553878],[9.8233999,47.6555075],[9.8234483,47.655585],[9.8234729,47.6556878],[9.8235311,47.6557628],[9.823677,47.6558216],[9.8239794,47.655955],[9.8243319,47.6560332],[9.8248367,47.656145],[9.8253789,47.6562566],[9.8257959,47.6563666],[9.8259941,47.6564296],[9.8261284,47.6564723],[9.8263341,47.6565312],[9.8265523,47.6565937],[9.8268745,47.6566926],[9.8270787,47.6568059],[9.8272726,47.6569283],[9.8280368,47.6575874],[9.8286372,47.6581055],[9.828846,47.6582822],[9.8291659,47.6585531],[9.8295455,47.6589557],[9.8294785,47.6590063],[9.829442,47.6590842],[9.8294562,47.6591324],[9.8294735,47.6591915],[9.8295321,47.6592964],[9.829608,47.6594307],[9.8296233,47.6594826],[9.8296429,47.6595494],[9.8296914,47.659659],[9.82974,47.659766],[9.8297539,47.6598391],[9.8297651,47.6598962],[9.829767,47.6600997],[9.829748,47.6602232],[9.8297046,47.6603006],[9.8296683,47.6603652],[9.8295243,47.6605054],[9.8294133,47.6605516],[9.8293289,47.6605612],[9.8291768,47.6605688],[9.8288958,47.6605382],[9.8287164,47.6605094],[9.8285673,47.660494],[9.8283914,47.660479],[9.8281927,47.6605599],[9.8281121,47.660613],[9.8280654,47.6606794],[9.8280617,47.6607515],[9.8280568,47.6608395],[9.8281034,47.6610815],[9.828245,47.6613665],[9.8285173,47.6618702],[9.8286623,47.6621621],[9.8287999,47.6623602],[9.829052,47.6625463],[9.8293548,47.6627368],[9.8295489,47.6628729],[9.8296123,47.6629078],[9.829685,47.6629477],[9.8299363,47.6630425],[9.8301808,47.6631486],[9.8303643,47.6632437],[9.8305312,47.6633412],[9.8306674,47.6634342],[9.8307869,47.6635525],[9.8308624,47.6636503],[9.8308974,47.6637667],[9.8309295,47.663922],[9.8311539,47.664378],[9.8316679,47.6653421],[9.8316934,47.665502],[9.8316793,47.6660985],[9.831805,47.6664728],[9.8319127,47.6667648],[9.8319696,47.6670273],[9.8319557,47.6672971],[9.8319181,47.6675921],[9.8319884,47.6678111],[9.8319898,47.668003],[9.8318493,47.6682138],[9.8317043,47.6682713],[9.8315085,47.6683199],[9.8312753,47.6683296],[9.83115,47.6683003],[9.8309227,47.6682027],[9.8308119,47.6681368],[9.8304844,47.667942],[9.8304146,47.6680612],[9.8304369,47.6682463],[9.8304222,47.6684726],[9.8303862,47.6689069],[9.830286,47.6693372],[9.8302189,47.6697191],[9.8301647,47.6700485],[9.8301544,47.6703456],[9.8303751,47.6704497],[9.8304889,47.6712993],[9.8305504,47.6716898],[9.8308793,47.6717636],[9.8310185,47.6718155],[9.8319092,47.6723705],[9.8322159,47.6725615],[9.8322916,47.6726087],[9.8329598,47.673027],[9.8330074,47.6730874],[9.8331295,47.6731008],[9.8335734,47.6732091],[9.8336653,47.6732482],[9.8337131,47.673273],[9.8337614,47.6733034],[9.833846,47.6733265],[9.8344876,47.6725023],[9.8352555,47.67264],[9.8354984,47.6726834],[9.835949,47.6727391],[9.836508,47.6728029],[9.8369547,47.6728221],[9.8371336,47.6718327],[9.8371859,47.6715265],[9.8372874,47.6709416],[9.8372893,47.6709123],[9.837376,47.6696199],[9.8377967,47.6693154],[9.8381845,47.6692574],[9.838326,47.6695275],[9.8383594,47.6695913],[9.8384609,47.6697822],[9.8385625,47.6699549],[9.8386106,47.6700365],[9.8387904,47.6702586],[9.8390206,47.6704757],[9.8392022,47.6706202],[9.8393808,47.6707785],[9.8395436,47.6710031],[9.8397628,47.6713617],[9.8398439,47.6715526],[9.8398536,47.6717237],[9.8398373,47.6719566],[9.8397996,47.6723036],[9.8397929,47.6723652],[9.8397791,47.6724933],[9.8397729,47.6727146],[9.8397447,47.673041],[9.8396626,47.6731763],[9.8395238,47.6733737],[9.8395785,47.6733921],[9.8396398,47.6734121],[9.8395379,47.6735614],[9.8393968,47.6737845],[9.8392748,47.6739408],[9.8391921,47.6740398],[9.8390537,47.6741803],[9.8390674,47.6742305],[9.8391163,47.6743055],[9.8392247,47.6744585],[9.8393126,47.6745702],[9.8394602,47.6747327],[9.8395196,47.6747988],[9.8400248,47.6750651],[9.8402649,47.6751776],[9.840462,47.6751738],[9.8408062,47.6750474],[9.8410492,47.6750925],[9.8410594,47.6751854],[9.8410638,47.6753133],[9.8410165,47.6754118],[9.840928,47.6755729],[9.8408588,47.6756717],[9.8406341,47.6759387],[9.8404335,47.6761572],[9.8404056,47.6761875],[9.8403523,47.6762425],[9.8401708,47.6764296],[9.8403298,47.676789],[9.8403574,47.6768698],[9.8403657,47.6768937],[9.8403954,47.6770259],[9.8404112,47.67714],[9.840416,47.6772129],[9.840421,47.6772908],[9.840423,47.6773959],[9.840425,47.677494],[9.841203,47.6774793],[9.8413652,47.6774763],[9.8420181,47.6774703],[9.8423701,47.6774814],[9.8424682,47.6774844],[9.8428883,47.677508],[9.8432137,47.6775394],[9.8438923,47.676793],[9.8439321,47.6767583],[9.8439859,47.6767373],[9.8440398,47.6767277],[9.8440838,47.6767273],[9.844138,47.6767336],[9.8444333,47.6767719],[9.8447144,47.6766279],[9.8448926,47.6765668],[9.8450879,47.6765285],[9.8452531,47.6764972],[9.8454119,47.6764866],[9.8455101,47.6764861],[9.84555,47.6762866],[9.8455678,47.6761563],[9.8455876,47.6759641],[9.8456152,47.6756509],[9.8456864,47.6756617],[9.8457627,47.6756866],[9.8461905,47.6758262],[9.8465756,47.6759733],[9.8469396,47.6760729],[9.8471806,47.6761117],[9.8474175,47.6761141],[9.8476848,47.6761116],[9.847938,47.6760888],[9.8482382,47.6760449],[9.8485248,47.6759965],[9.8485764,47.6759843],[9.8488245,47.6759252],[9.8495339,47.6757064],[9.8496686,47.6756777],[9.8499014,47.6756435],[9.8500961,47.6758733],[9.8503479,47.6762144],[9.850604,47.6766238],[9.8507808,47.6769287],[9.8509365,47.6771721],[9.8511609,47.6774927],[9.8512272,47.677636],[9.8512524,47.6777478],[9.8512203,47.677869],[9.8511635,47.677962],[9.8511376,47.6780044],[9.8510684,47.6781212],[9.8509395,47.6783414],[9.850915,47.6785174],[9.8513992,47.678619],[9.8518834,47.6783502],[9.852178,47.6781925],[9.8523325,47.6781228],[9.8525209,47.6780541],[9.8526069,47.6776173],[9.8527809,47.6775311],[9.8525859,47.6764861],[9.8525301,47.675938],[9.8525617,47.6758371],[9.8526611,47.6757379],[9.852826,47.6755397],[9.8535592,47.6758021],[9.8539918,47.6759513],[9.8540876,47.6759843],[9.8545202,47.6761172],[9.8546694,47.6761225],[9.8548113,47.6761143],[9.8549967,47.6760897],[9.8552762,47.6760251],[9.8557954,47.6768703],[9.8558891,47.676979],[9.8559619,47.6770561],[9.8560547,47.6771261],[9.8562129,47.6772434],[9.8563161,47.6773223],[9.8563646,47.677379],[9.856417,47.6774539],[9.8565778,47.6777131],[9.8566456,47.6776837],[9.8568357,47.6776006],[9.8572745,47.6774087],[9.8574616,47.6773038],[9.8576549,47.6771783],[9.8577518,47.6771225],[9.8581193,47.677066],[9.8582763,47.6771095],[9.8589198,47.6772882],[9.8590838,47.6772109],[9.859235,47.677166],[9.8593632,47.6771463],[9.8595318,47.6771263],[9.859786,47.6771395],[9.8598388,47.6775228],[9.8599717,47.6775647],[9.8602136,47.6776307],[9.8603774,47.6775398],[9.8605584,47.6774511],[9.8608694,47.6773972],[9.8610436,47.677391],[9.8614948,47.6773812],[9.8618141,47.6773307],[9.8619017,47.6772593],[9.8623661,47.6771357],[9.8634059,47.6766288],[9.8636454,47.676497],[9.8639238,47.6763842],[9.8641654,47.6762995],[9.8643537,47.6762494],[9.8645292,47.6762292],[9.8646304,47.6762167],[9.8647792,47.6762082],[9.865016,47.6762126],[9.8652639,47.6762441],[9.8655212,47.6762551],[9.8657658,47.6762913],[9.865973,47.6763188],[9.8663083,47.6763358],[9.8665316,47.6763379],[9.866791,47.6762894],[9.8668617,47.676275],[9.8670532,47.6762157],[9.8673014,47.6761193],[9.8675658,47.6759931],[9.8677965,47.6758809],[9.8679871,47.6757829],[9.8681477,47.6756988],[9.8684291,47.675577],[9.86859,47.6755113],[9.8687814,47.6754543],[9.8689568,47.6754319],[9.8691867,47.6754248],[9.8694107,47.6754499],[9.8696008,47.6754752],[9.8698598,47.6755546],[9.8701088,47.6756319],[9.8703135,47.6757075],[9.8704836,47.675749],[9.8707214,47.6757853],[9.8709724,47.6758146],[9.8712872,47.6758179],[9.8715779,47.6758012],[9.8719155,47.6757701],[9.8722162,47.6757508],[9.8724831,47.6757364],[9.8725441,47.6757359],[9.8726828,47.6757342],[9.8728658,47.6757459],[9.8730764,47.6757781],[9.8732225,47.6758061],[9.8733655,47.6758457],[9.8735632,47.6759075],[9.873758,47.6759808],[9.8739216,47.6760362],[9.8740678,47.6760619],[9.8742133,47.6760626],[9.8743592,47.6760734],[9.874467,47.6760513],[9.8745913,47.6760109],[9.8747652,47.6759311],[9.8748913,47.6758427],[9.8749778,47.6757822],[9.8751139,47.6756777],[9.875249,47.6755387],[9.8753991,47.6752032],[9.8754841,47.6749531],[9.8755894,47.6747118],[9.8756671,47.674448],[9.8757258,47.6741092],[9.8757925,47.6739392],[9.8758498,47.6737991],[9.8759315,47.6736928],[9.8760078,47.6736326],[9.8761786,47.673564],[9.8763405,47.6735392],[9.8763923,47.6735385],[9.8764961,47.6735372],[9.876676,47.6735578],[9.8768965,47.6735778],[9.8771039,47.6736071],[9.877301,47.6736413],[9.8775427,47.6736952],[9.8777305,47.6737524],[9.8779182,47.6738162],[9.8781533,47.6738772],[9.8783981,47.673913],[9.8786435,47.6739784],[9.8789055,47.6740299],[9.8789546,47.6740326],[9.878974,47.6740338],[9.8791359,47.674043],[9.879278,47.6740413],[9.8793823,47.674017],[9.8795197,47.6739649],[9.8795706,47.6739412],[9.87963,47.6739133],[9.8797493,47.673816],[9.8798373,47.6736868],[9.8799795,47.6735142],[9.8801843,47.6732247],[9.8803365,47.6730361],[9.8804924,47.6728568],[9.8806148,47.6727005],[9.8807608,47.6725303],[9.8808666,47.6723993],[9.8809152,47.6722756],[9.8809469,47.6721541],[9.8809449,47.6720469],[9.8809364,47.6719374],[9.8808975,47.6718349],[9.8808515,47.671721],[9.8807851,47.6716007],[9.8806784,47.6714805],[9.8805887,47.6713852],[9.8805619,47.6713536],[9.8804989,47.6712787],[9.880464,47.6712156],[9.8804256,47.6711468],[9.8803973,47.6710694],[9.8803757,47.6709987],[9.8803644,47.6709281],[9.8803663,47.6708481],[9.8803786,47.6707703],[9.8804348,47.6707013],[9.8805182,47.6706367],[9.8806526,47.67059],[9.8808716,47.6705357],[9.8811078,47.6705109],[9.8812933,47.670482],[9.8815121,47.6704254],[9.8816669,47.6703761],[9.8817723,47.6703319],[9.8818112,47.6703155],[9.8819317,47.6702483],[9.8819879,47.6702113],[9.8820621,47.6701626],[9.8821262,47.6701152],[9.8822024,47.6700589],[9.882479,47.6698754],[9.8826841,47.6697694],[9.882879,47.6696902],[9.8830771,47.6696131],[9.8833228,47.6695518],[9.8836729,47.6694621],[9.8839052,47.6693986],[9.8839455,47.6693867],[9.8840831,47.6693286],[9.8842072,47.6692659],[9.884418,47.6691431],[9.8846148,47.668984],[9.8848208,47.6687766],[9.8849734,47.6686018],[9.8850224,47.6685123],[9.8850648,47.6684207],[9.8850999,47.6682993],[9.8851413,47.6681482],[9.8851559,47.6680179],[9.8851733,47.6678556],[9.8851584,47.6676782],[9.8851564,47.6676548],[9.8851604,47.6674949],[9.8851952,47.6673553],[9.8852268,47.6672295],[9.8852784,47.6670852],[9.8853503,47.6669521],[9.8854327,47.6668235],[9.8855085,47.6667178],[9.8856149,47.6666005],[9.8857346,47.6664921],[9.8858784,47.6664065],[9.8860894,47.6662859],[9.8862972,47.6661861],[9.886418,47.6661279],[9.8865821,47.6660443],[9.8868063,47.6659078],[9.8868896,47.665834],[9.8869414,47.6657996],[9.88705,47.6657276],[9.887204,47.6656397],[9.8873748,47.66554],[9.887667,47.6654256],[9.8878715,47.6653372],[9.8880865,47.6652486],[9.8883337,47.6651725],[9.8883992,47.6651523],[9.8887358,47.6650697],[9.8890523,47.6649918],[9.8893662,47.6649594],[9.8896334,47.6649641],[9.8900363,47.664995],[9.8900931,47.6649986],[9.8902562,47.6650091],[9.890527,47.6650206],[9.8907944,47.6650367],[9.89098,47.6650283],[9.8911015,47.6650135],[9.8912228,47.6649851],[9.8913235,47.6649455],[9.8913836,47.6649039],[9.8914335,47.6648601],[9.8914731,47.6647981],[9.8915088,47.6647132],[9.8915437,47.6646334],[9.8915607,47.6645941],[9.891615,47.6644132],[9.891673,47.6642438],[9.8917214,47.6641132],[9.8917937,47.6639938],[9.8918633,47.6639064],[9.8919492,47.6637984],[9.892062,47.6636855],[9.8922119,47.663545],[9.8923652,47.6634204],[9.8925354,47.6632957],[9.8927571,47.6632093],[9.8929482,47.6631187],[9.8930923,47.6630513],[9.8932904,47.6629697],[9.8934988,47.6629041],[9.8937911,47.6627988],[9.894003,47.6627284],[9.8942751,47.6626326],[9.8944466,47.6625855],[9.8946486,47.6625246],[9.8948234,47.6624751],[9.8950252,47.6624163],[9.8952035,47.6623622],[9.8953686,47.6623358],[9.8955508,47.6623251],[9.8956626,47.6623264],[9.895781,47.6623232],[9.8959463,47.6623126],[9.8960204,47.6623047],[9.8960846,47.6622978],[9.8961791,47.6622857],[9.8962466,47.6622736],[9.8964318,47.6622264],[9.89665,47.6621515],[9.8968785,47.6620697],[9.8971137,47.6619763],[9.8972713,47.6619065],[9.8975196,47.6618017],[9.8977648,47.6617152],[9.8980267,47.6616103],[9.8982483,47.6615284],[9.898477,47.6614512],[9.8986656,47.661413],[9.8987703,47.6614052],[9.8988922,47.661418],[9.899004,47.661433],[9.8991737,47.6614705],[9.8993026,47.661499],[9.8994998,47.6615545],[9.8997107,47.6616304],[9.8998196,47.6616705],[9.8999077,47.6616835],[9.8999989,47.6616851],[9.9001477,47.6616861],[9.9002895,47.6616712],[9.9004615,47.6616446],[9.9006601,47.6615973],[9.900835,47.6615501],[9.9010938,47.6614635],[9.9013357,47.6613793],[9.9015168,47.6612933],[9.901751,47.6611542],[9.9019853,47.661029],[9.902183,47.66092],[9.9024045,47.6608291],[9.9026697,47.660724],[9.9028887,47.6606765],[9.9030438,47.6606523],[9.9031722,47.6606489],[9.9033824,47.6606929],[9.9037428,47.6608064],[9.9041609,47.660933],[9.904261,47.6609625],[9.9044711,47.6610245],[9.9046435,47.6610752],[9.9050088,47.6611806],[9.9052584,47.6612527],[9.9054899,47.6613261],[9.90568,47.661377],[9.9059072,47.6614208],[9.9061611,47.6614346],[9.9063572,47.6614352],[9.9065397,47.6614315],[9.9067456,47.6614114],[9.9069345,47.6613916],[9.907113,47.6613559],[9.9073182,47.6612993],[9.9075231,47.6612198],[9.9078997,47.6611094],[9.908242,47.6609672],[9.9084101,47.6609087],[9.9085614,47.6608641],[9.9087331,47.6608238],[9.9090028,47.660778],[9.9091174,47.6607588],[9.909158,47.6607585],[9.9093435,47.6607433],[9.9094298,47.6607346],[9.9094685,47.6607308],[9.9096082,47.660734],[9.9096882,47.6607358],[9.9098607,47.6607411],[9.9100738,47.6607416],[9.9103919,47.6607594],[9.9106931,47.6607866],[9.9109776,47.660814],[9.9111979,47.6608417],[9.9114524,47.6608853],[9.9116421,47.6609133],[9.9118926,47.660934],[9.9120347,47.6609351],[9.9122135,47.6609245],[9.9123453,47.660912],[9.912443,47.6608929],[9.9125271,47.6608738],[9.9126783,47.6608224],[9.9129104,47.6607519],[9.9130749,47.660698],[9.9133138,47.6606252],[9.9136148,47.6605213],[9.9137328,47.6604909],[9.9138139,47.6604721],[9.9139319,47.6604554],[9.9140502,47.6604523],[9.914145,47.6604563],[9.9142333,47.6604786],[9.9146001,47.6605469],[9.914772,47.6606355],[9.9149538,47.6607296],[9.9151162,47.6607802],[9.9151983,47.6608058],[9.9154226,47.6608699],[9.9157604,47.6608835],[9.915894,47.6608753],[9.9161415,47.6608342],[9.9164117,47.6607755],[9.917225,47.6604287],[9.9173162,47.6603861],[9.9176023,47.6602242],[9.9180055,47.6600299],[9.9182441,47.6599211],[9.9183851,47.6598403],[9.9184415,47.6598128],[9.9184893,47.6597893],[9.9186133,47.6597155],[9.9187343,47.6596417],[9.9188381,47.6595726],[9.9189221,47.6595196],[9.9190432,47.6594708],[9.9190967,47.6594517],[9.9191474,47.6594336],[9.9192518,47.6593964],[9.919363,47.6593592],[9.9195682,47.6592802],[9.9196355,47.6592534],[9.9198307,47.6591758],[9.9200897,47.659076],[9.9203137,47.6589771],[9.920492,47.6588172],[9.9206905,47.6585787],[9.9207763,47.6584044],[9.920779,47.6582165],[9.9209493,47.6580458],[9.9210675,47.6580176],[9.9211264,47.6579889],[9.921294,47.657983],[9.92141,47.6579957],[9.9215562,47.6580386],[9.9216719,47.6580358],[9.9220055,47.6581168],[9.9222784,47.6581748],[9.9225976,47.6581632],[9.9229469,47.6581145],[9.9232794,47.6580565],[9.9235758,47.6579664],[9.9240507,47.6577717],[9.924344,47.6575539],[9.9245296,47.6573691],[9.9244751,47.6572307],[9.9245581,47.6571274],[9.9246081,47.6570632],[9.9247031,47.6568389],[9.9247724,47.6567152],[9.9248282,47.6565824],[9.924897,47.6564358],[9.9249532,47.6563419],[9.9250129,47.6562365],[9.9250688,47.6561358],[9.9251353,47.6560509],[9.9252219,47.6559454],[9.9252818,47.6558741],[9.9253754,47.6557982],[9.9254621,47.6557109],[9.9255558,47.6556373],[9.9256294,47.6555728],[9.9257064,47.6555221],[9.9257736,47.6554828],[9.9258542,47.6554482],[9.9259553,47.655411],[9.9261168,47.6553574],[9.9262517,47.6553268],[9.9264674,47.6552707],[9.9265683,47.6552403],[9.9266966,47.6552189],[9.9268317,47.6551976],[9.9269938,47.6551874],[9.9271458,47.6551681],[9.9273283,47.6551623],[9.9275211,47.6551519],[9.9277341,47.6551528],[9.9279911,47.6551535],[9.9283123,47.6551549],[9.9284374,47.6551565],[9.9285386,47.6551397],[9.92865,47.6551276],[9.9287918,47.6551039],[9.9289233,47.6550757],[9.9290377,47.6550338],[9.929135,47.6549944],[9.9292894,47.654909],[9.9294,47.6548443],[9.9295273,47.6547545],[9.9297048,47.6546393],[9.9298255,47.6545678],[9.9299597,47.654487],[9.9301107,47.6544039],[9.9303053,47.6542999],[9.9305168,47.6541981],[9.9306376,47.6541335],[9.9307383,47.654087],[9.9308426,47.6540522],[9.9309738,47.6539943],[9.9310778,47.6539503],[9.9312564,47.6539058],[9.9314115,47.6538659],[9.9315734,47.6538421],[9.9317185,47.6538227],[9.9318872,47.6537965],[9.9320322,47.6537751],[9.9321843,47.6537764],[9.932323,47.6537801],[9.9325191,47.6537856],[9.932725,47.6538056],[9.9327628,47.6538092],[9.9329491,47.6538377],[9.9331255,47.6538798],[9.9332648,47.6539178],[9.9334038,47.6539624],[9.933591,47.6540389],[9.9337338,47.6541087],[9.9339008,47.6542058],[9.9340374,47.6543007],[9.9341947,47.6544297],[9.9343894,47.6545791],[9.9345702,47.6547036],[9.934748,47.6548392],[9.9348202,47.6549233],[9.9349021,47.6549889],[9.9349259,47.6550047],[9.9349567,47.655025],[9.9350589,47.6550838],[9.9351748,47.6551469],[9.9352971,47.6551917],[9.9354361,47.6552251],[9.9355953,47.6552445],[9.9357409,47.655255],[9.9359132,47.6552516],[9.9361361,47.6552433],[9.9364032,47.6552393],[9.9366193,47.6552265],[9.936913,47.6551994],[9.9371259,47.6551889],[9.9372783,47.6552061],[9.9374615,47.6552484],[9.9376007,47.6553022],[9.9377948,47.6553923],[9.937999,47.6554936],[9.9381658,47.6555884],[9.938276,47.65566],[9.9383467,47.6557059],[9.9385379,47.6558301],[9.9387428,47.6559863],[9.9389307,47.6561357],[9.9390373,47.656256],[9.9391096,47.6563467],[9.9391689,47.6564787],[9.9392386,47.6566404],[9.9393086,47.6568065],[9.939386,47.657016],[9.9394559,47.6571867],[9.9395459,47.6573299],[9.9396261,47.6574375],[9.9399066,47.6574963],[9.9401235,47.6575497],[9.9402626,47.6575785],[9.9404389,47.6576094],[9.9406387,47.6576331],[9.9408045,47.6576457],[9.9409939,47.6576467],[9.9411625,47.6576273],[9.9413143,47.6576012],[9.9415266,47.6575496],[9.9416174,47.6575126],[9.941646,47.6573968],[9.9416846,47.6572405],[9.9416969,47.6571916],[9.9417421,47.6570119],[9.9418273,47.6568013],[9.9418993,47.656641],[9.9419955,47.6565149],[9.9421158,47.6564046],[9.9423035,47.6562983],[9.9423988,47.6562419],[9.9424946,47.6561852],[9.9428876,47.656],[9.9430958,47.6558983],[9.9433174,47.6557895],[9.9435221,47.6556832],[9.9436966,47.6555931],[9.9439113,47.655473],[9.9441121,47.6553256],[9.944296,47.6551829],[9.9444096,47.6550977],[9.94455,47.6549803],[9.9446805,47.6548904],[9.9448118,47.6548461],[9.9449366,47.6548226],[9.9450381,47.6548242],[9.9451603,47.6548577],[9.9453098,47.6549159],[9.9455817,47.6550191],[9.945881,47.6551518],[9.9462452,47.6553228],[9.9465001,47.6554239],[9.9467076,47.6555047],[9.9469181,47.6555763],[9.9471149,47.6556229],[9.9473418,47.6556579],[9.9475346,47.6556681],[9.9477306,47.6556668],[9.9478082,47.6556653],[9.9479166,47.6556633],[9.9482107,47.6556681],[9.9486275,47.6556785],[9.9490737,47.6556711],[9.9492597,47.6556834],[9.9494152,47.655687],[9.9496017,47.6557155],[9.9497849,47.6557577],[9.9499341,47.6557932],[9.9501105,47.655849],[9.9503554,47.6559502],[9.9507357,47.656064],[9.9510652,47.6561759],[9.9512421,47.6562433],[9.9513813,47.6562971],[9.9514999,47.6563077],[9.951618,47.6563001],[9.9516535,47.6562964],[9.9517125,47.6562903],[9.9518036,47.6562646],[9.9518672,47.6562208],[9.9519407,47.6561656],[9.9520107,47.656092],[9.9521208,47.6559955],[9.9521938,47.6558923],[9.9523071,47.6557819],[9.9524139,47.6556786],[9.9525275,47.6555819],[9.9526207,47.6554969],[9.9527581,47.6553978],[9.952976,47.6552754],[9.9531304,47.6551991],[9.9533151,47.6551111],[9.953537,47.655016],[9.9537889,47.6549002],[9.954091,47.6547544],[9.9543798,47.6546155],[9.9545048,47.654618],[9.954728,47.6546223],[9.9548119,47.6546169],[9.9551266,47.6545969],[9.9555857,47.6545458],[9.955704,47.6545253],[9.9558453,47.6545007],[9.9561217,47.6544442],[9.9564003,47.6543499],[9.956989,47.6541624],[9.9573278,47.6540112],[9.9574448,47.653928],[9.957541,47.6538245],[9.958164,47.6529805],[9.9583016,47.6528997],[9.9583948,47.6528234],[9.9585317,47.6527105],[9.9586852,47.6525884],[9.9587819,47.6524985],[9.958885,47.6523949],[9.9589943,47.6522502],[9.9591036,47.6521147],[9.9591902,47.6520227],[9.9592873,47.6519716],[9.9593614,47.6519505],[9.9594357,47.6519523],[9.9595342,47.6519767],[9.9595857,47.6520129],[9.9596544,47.6520832],[9.9596744,47.6521065],[9.9597715,47.6522193],[9.9599278,47.6524762],[9.960047,47.6527427],[9.9601512,47.6529405],[9.9602075,47.6530475],[9.9603739,47.6533159],[9.9604768,47.6534946],[9.9604958,47.6535274],[9.9606574,47.6536974],[9.9607712,47.6538337],[9.9609216,47.6539422],[9.9611229,47.654048],[9.9612963,47.6541062],[9.9614693,47.6541392],[9.9616385,47.6541561],[9.9617033,47.6541602],[9.9618721,47.6541704],[9.962183,47.6541634],[9.9624464,47.6541456],[9.9626659,47.6541188],[9.9628107,47.6540949],[9.9631005,47.6540196],[9.9633357,47.653931],[9.9635033,47.6538407],[9.9637073,47.6536997],[9.963902,47.653616],[9.9640937,47.6535506],[9.9643059,47.6534988],[9.9645656,47.653465],[9.964702,47.6534567],[9.9648258,47.6534493],[9.9648744,47.6534464],[9.9650453,47.6534361],[9.9652755,47.6534526],[9.9655732,47.6534665],[9.9659656,47.6534863],[9.9663311,47.6534973],[9.9666489,47.6534927],[9.9669868,47.6534787],[9.9673385,47.6534828],[9.9676771,47.6535123],[9.9679828,47.6535968],[9.9682345,47.6536762],[9.9682377,47.6536772],[9.9684407,47.6537427],[9.9685332,47.6537826],[9.9687374,47.6538565],[9.9690233,47.6539799],[9.9692951,47.6540556],[9.9695563,47.654113],[9.9698782,47.6541562],[9.9702097,47.6541652],[9.9704395,47.6541634],[9.9706289,47.6541551],[9.9706745,47.6542507],[9.9707065,47.6543487],[9.9707277,47.654379],[9.9707653,47.6544328],[9.9708341,47.6545145],[9.9709441,47.6546164],[9.9710675,47.6547206],[9.9711817,47.6548048],[9.9712148,47.6548291],[9.9712226,47.6548332],[9.9712635,47.6548551],[9.9713578,47.6549056],[9.971487,47.6549367],[9.9716637,47.6549925],[9.971837,47.655046],[9.9719421,47.6550658],[9.9720201,47.6550789],[9.9720681,47.6550956],[9.9721425,47.6551214],[9.9722074,47.6551574],[9.9722625,47.6552232],[9.9723282,47.6553118],[9.9724445,47.6553954],[9.9726183,47.6554741],[9.9727854,47.6555642],[9.9729188,47.6556659],[9.973025,47.6557383],[9.9731303,47.6557626],[9.973238,47.6557412],[9.9733395,47.6557427],[9.9734483,47.6557831],[9.973534,47.6558486],[9.9735992,47.6559143],[9.9736538,47.6559483],[9.973739,47.6559795],[9.9738243,47.6560315],[9.9738829,47.6560882],[9.9739087,47.6561162],[9.9739688,47.6561811],[9.9740541,47.6562285],[9.9741496,47.6562849],[9.9742241,47.6562911],[9.9742981,47.6562564],[9.9743037,47.656254],[9.9743508,47.656234],[9.9743752,47.6562237],[9.9744362,47.656221],[9.9744941,47.6562548],[9.9745658,47.6562885],[9.9746606,47.6562992],[9.9747184,47.6563239],[9.974736,47.6563718],[9.9747579,47.6564607],[9.9747828,47.6564936],[9.9747923,47.6565062],[9.9748434,47.6565285],[9.9748503,47.656528],[9.9749514,47.6565209],[9.9750524,47.656495],[9.9750696,47.6564944],[9.9750808,47.6564939],[9.9751268,47.6564922],[9.975205,47.6565099],[9.9752594,47.6565345],[9.9752822,47.6565608],[9.9752918,47.6565717],[9.9753008,47.6565822],[9.9753391,47.6566481],[9.9753403,47.6566646],[9.975346,47.6567415],[9.9753478,47.6567668],[9.9753428,47.6567796],[9.9753023,47.6568859],[9.9752925,47.6569238],[9.9752864,47.6569477],[9.9753114,47.6570229],[9.9753909,47.6571365],[9.9755038,47.6572134],[9.9756067,47.6572948],[9.9756617,47.6573538],[9.9756839,47.6573856],[9.9756999,47.6574084],[9.9757413,47.6574674],[9.9757846,47.6574927],[9.9757939,47.6574981],[9.9758301,47.6575193],[9.9759088,47.6575508],[9.9759253,47.6575574],[9.975927,47.6575591],[9.9759582,47.6575907],[9.9759701,47.6576028],[9.9759677,47.6576599],[9.975958,47.6576873],[9.975891,47.657729],[9.975887,47.6577315],[9.9758341,47.6577659],[9.9758019,47.6578668],[9.9758277,47.6579297],[9.9758374,47.6579531],[9.9758626,47.6580558],[9.9758814,47.658103],[9.9758908,47.6581264],[9.9759239,47.6581444],[9.9759488,47.658158],[9.9760712,47.6581959],[9.9761529,47.6582432],[9.9761778,47.6583047],[9.976159,47.6584053],[9.9761204,47.6585267],[9.97611,47.658617],[9.9761061,47.6586511],[9.9761026,47.65868],[9.9761039,47.6587051],[9.9761128,47.6588763],[9.9761416,47.6589926],[9.9761835,47.6590745],[9.9762696,47.6591652],[9.9763455,47.659256],[9.9763644,47.6592961],[9.9763829,47.6593355],[9.9764261,47.6594267],[9.976441,47.6595439],[9.9764416,47.6595477],[9.9764441,47.6595526],[9.9764835,47.6596296],[9.9765729,47.6597248],[9.9766657,47.6598155],[9.9767941,47.659902],[9.9768469,47.6599375],[9.9769507,47.6599914],[9.9770073,47.6600207],[9.9771539,47.6600996],[9.9772635,47.6601833],[9.9773666,47.6602739],[9.9775009,47.6604373],[9.9775572,47.6605238],[9.9775942,47.6605809],[9.9776294,47.6606351],[9.9776303,47.6606378],[9.9776363,47.660655],[9.9776684,47.6607467],[9.9776663,47.660829],[9.9776338,47.6608901],[9.9776041,47.6609459],[9.9775797,47.6610253],[9.9775527,47.6611132],[9.977541,47.6612297],[9.9775395,47.6613348],[9.9775443,47.6614284],[9.9775597,47.6615426],[9.9775412,47.66165],[9.9775101,47.6617132],[9.9775086,47.6617164],[9.9775096,47.6617212],[9.977523,47.6617848],[9.9775616,47.661837],[9.9775785,47.6618598],[9.9776194,47.6618887],[9.9776777,47.6619299],[9.9775855,47.6620837],[9.9774994,47.6621871],[9.9774461,47.6622491],[9.9773667,47.662348],[9.9773409,47.6624328],[9.9772885,47.6625336],[9.9772807,47.6625394],[9.9772284,47.6625774],[9.9771347,47.6626377],[9.9770738,47.6627151],[9.9770552,47.6627387],[9.9769909,47.6627885],[9.9769449,47.6628241],[9.9768251,47.6629348],[9.9767734,47.6629804],[9.9767418,47.6630084],[9.9767283,47.663013],[9.9766375,47.6630435],[9.9765501,47.6630692],[9.9764729,47.663111],[9.9764667,47.6631208],[9.976399,47.6632271],[9.9763971,47.6632303],[9.9763304,47.6632879],[9.9762697,47.6633067],[9.9761717,47.6633119],[9.9760536,47.6633289],[9.9759366,47.6634074],[9.9758133,47.6635135],[9.9756532,47.6636426],[9.9755596,47.6637232],[9.9755588,47.6637267],[9.9755533,47.6637574],[9.9755349,47.6638582],[9.9755025,47.6639499],[9.9754839,47.6640573],[9.9754839,47.6640611],[9.9754856,47.6641555],[9.9754949,47.6641908],[9.9755108,47.6642513],[9.9755368,47.664294],[9.9755803,47.664365],[9.9756667,47.6644854],[9.9757021,47.6645676],[9.9757441,47.6646652],[9.9758073,47.6647996],[9.975867,47.6649475],[9.9758706,47.6649528],[9.9759427,47.6650613],[9.9759712,47.6651045],[9.9759931,47.6651153],[9.9760666,47.6651516],[9.9761112,47.6651833],[9.9761522,47.6652218],[9.9762308,47.6652646],[9.9763191,47.6652914],[9.9764178,47.6653271],[9.9764964,47.6653699],[9.9765548,47.6654381],[9.9766003,47.6655269],[9.9766394,47.6656361],[9.9767881,47.6656857],[9.9768662,47.6657092],[9.9768992,47.6657226],[9.9769717,47.6657518],[9.9770906,47.6657918],[9.9771303,47.6658006],[9.9771995,47.6658159],[9.9773484,47.6658374],[9.9774739,47.6658545],[9.9776471,47.6659056],[9.9777161,47.6659734],[9.9791009,47.6664611],[9.9796216,47.6666291],[9.9807126,47.6669807],[9.9808181,47.6670234],[9.9809343,47.6671311],[9.9811129,47.6672797],[9.9821057,47.6680824],[9.9822095,47.6681696],[9.9823601,47.6682957],[9.9826487,47.6685379],[9.9827997,47.6686645],[9.987033,47.6722517],[9.9874821,47.6726364],[9.987596,47.6727515],[9.987992,47.6731708],[9.988539,47.6737272],[9.988623,47.6738267],[9.9887068,47.6739192],[9.9888397,47.674058],[9.989015,47.674245],[9.9892044,47.6744455],[9.9893262,47.6745736],[9.9894439,47.6747029],[9.9895876,47.6748544],[9.9896573,47.6749317],[9.9901693,47.6754767],[9.9908833,47.6758258],[9.9914623,47.676105],[9.9916733,47.6762126],[9.9920359,47.6763439],[9.9921575,47.6764015],[9.9922991,47.676467],[9.9925277,47.6765799],[9.9928728,47.6767422],[9.9932136,47.6768994],[9.9940257,47.6772808],[9.9941384,47.6772593],[9.9942551,47.6774007],[9.9943453,47.6775622],[9.9944008,47.6776555],[9.9945357,47.6778782],[9.994684,47.6780828],[9.9948217,47.6782621],[9.9949664,47.6784507],[9.99508,47.678587],[9.9952345,47.6787617],[9.9953922,47.6789228],[9.9956801,47.6791835],[9.9957213,47.6792305],[9.9958348,47.6793605],[9.9959176,47.6794741],[9.996014,47.6796058],[9.996118,47.6797877],[9.9961877,47.6799311],[9.9962431,47.6800312],[9.9962948,47.6800926],[9.996363,47.6801353],[9.9964046,47.6801804],[9.9964929,47.6802141],[9.9966699,47.6802952],[9.9969143,47.680434],[9.9971468,47.6805736],[9.9973756,47.680704],[9.997608,47.6808436],[9.9978404,47.6809763],[9.9980557,47.6811047],[9.998204,47.6811993],[9.9982815,47.6812489],[9.9984833,47.6813796],[9.9986476,47.6814902],[9.9987307,47.6815522],[9.9987711,47.6815822],[9.9988585,47.6816475],[9.9989047,47.681682],[9.9991074,47.6818584],[9.9992898,47.6820326],[9.9993967,47.6821392],[9.9995378,47.6822818],[9.9997061,47.6824174],[9.9999461,47.6825958],[10.0001856,47.6827604],[10.0004968,47.6829427],[10.0007559,47.6830683],[10.0009704,47.6831487],[10.0013378,47.683278],[10.0018275,47.6834314],[10.002133,47.6835063],[10.0023332,47.6835457],[10.0025232,47.6835852],[10.002597,47.6835961],[10.002793,47.6836253],[10.003186,47.6836631],[10.0035753,47.6836849],[10.0040188,47.6836812],[10.004567,47.6836547],[10.0051796,47.683637],[10.0057719,47.6836148],[10.0064859,47.6835763],[10.0068448,47.6835799],[10.0071529,47.6835744],[10.0076201,47.6835869],[10.0078858,47.6836019],[10.0079655,47.6836064],[10.0082737,47.6836399],[10.008806,47.6837365],[10.009318,47.6838608],[10.0098302,47.6839965],[10.0104614,47.6842025],[10.0107531,47.6842931],[10.0111364,47.6843971],[10.011428,47.6844603],[10.0119433,47.6845754],[10.0123873,47.6846517],[10.012811,47.6847167],[10.0132143,47.6847704],[10.0134904,47.6848039],[10.013621,47.6848196],[10.0136669,47.6848237],[10.013756,47.6848316],[10.0141154,47.6848638],[10.0144874,47.6848958],[10.0149648,47.6849401],[10.0151941,47.6849699],[10.0154455,47.6850026],[10.0154809,47.6850079],[10.0158755,47.6850653],[10.0163565,47.6851506],[10.0168071,47.6852369],[10.0170642,47.685281],[10.0173704,47.6853105],[10.0175652,47.6853292],[10.0179008,47.6853745],[10.0181755,47.6853921],[10.0183878,47.6853978],[10.0186792,47.6853759],[10.0191145,47.6853779],[10.019418,47.6854095],[10.0194707,47.68542],[10.019731,47.6854714],[10.0202019,47.685543],[10.0204092,47.6855754],[10.0207375,47.68565],[10.0211946,47.6857733],[10.0212929,47.6857943],[10.0219107,47.686008],[10.0220269,47.6860309],[10.0224822,47.6862569],[10.0224769,47.686321],[10.022944,47.686538],[10.0229828,47.6865559],[10.0231535,47.6866303],[10.0233051,47.6866964],[10.0236136,47.6868005],[10.023949,47.6869047],[10.0242984,47.6870223],[10.0245831,47.6870898],[10.0249015,47.6871597],[10.0254162,47.6872496],[10.0257348,47.6872987],[10.02607,47.6873457],[10.0264323,47.6873904],[10.0267573,47.6874442],[10.0270351,47.6875026],[10.0272859,47.6875659],[10.0274242,47.6876076],[10.0275402,47.6876427],[10.0280209,47.6878075],[10.0283224,47.6873003],[10.0284937,47.6870502],[10.0286829,47.6867974],[10.0291682,47.6861424],[10.0289735,47.6860241],[10.0287172,47.6859216],[10.028445,47.6857655],[10.0281326,47.6855763],[10.0284506,47.6853266],[10.0287102,47.6854191],[10.02888,47.6851237],[10.0284894,47.6850614],[10.0284283,47.6848873],[10.0283999,47.6848104],[10.0284319,47.6847513],[10.0285082,47.6846398],[10.0285993,47.684553],[10.0286804,47.6844595],[10.0287692,47.6842791],[10.0291512,47.684346],[10.029434,47.6843775],[10.0295374,47.6843883],[10.03005,47.6835208],[10.0302078,47.6832615],[10.0304238,47.6831019],[10.0306781,47.6829688],[10.0308684,47.6828693],[10.0310266,47.6827553],[10.0311947,47.6825827],[10.0309833,47.6821913],[10.0306301,47.681794],[10.0305605,47.6816976],[10.030397,47.6813957],[10.0302416,47.6811162],[10.0303139,47.6808879],[10.0303853,47.680701],[10.0302873,47.6805016],[10.0301354,47.6802903],[10.0300148,47.6801569],[10.0297725,47.6800484],[10.029335,47.6798116],[10.028971,47.6796256],[10.0285818,47.6794517],[10.0284435,47.6793815],[10.0282034,47.6792062],[10.027993,47.6787844],[10.027888,47.6786178],[10.0278,47.678366],[10.0282657,47.6782675],[10.0287484,47.6781319],[10.0291582,47.6780311],[10.0294572,47.6779532],[10.0296959,47.6778917],[10.0302027,47.6777657],[10.0299933,47.677395],[10.0297213,47.6770764],[10.0295729,47.676897],[10.0294063,47.6766942],[10.0293772,47.676419],[10.0294016,47.6763158],[10.0294908,47.6760078],[10.0294718,47.6758073],[10.0294449,47.6755781],[10.0294483,47.6755223],[10.0295508,47.6752401],[10.0297159,47.6751038],[10.0299051,47.6749704],[10.0304278,47.6745344],[10.0311896,47.6747529],[10.0316234,47.674872],[10.0320539,47.6750985],[10.0322617,47.6752185],[10.0327188,47.6755233],[10.0328671,47.6756011],[10.033071,47.6756803],[10.0333272,47.6757762],[10.0339385,47.6756597],[10.0345092,47.6755602],[10.0347317,47.6755672],[10.0349515,47.6755981],[10.0351459,47.6756304],[10.0354748,47.6757359],[10.0357276,47.675847],[10.0360921,47.6760379],[10.0362742,47.676157],[10.0365515,47.6762973],[10.0369239,47.6762583],[10.037143,47.6762296],[10.037484,47.6761724],[10.0375911,47.6762595],[10.0377186,47.6763568],[10.0375787,47.6765554],[10.0374187,47.6767382],[10.0372002,47.6769782],[10.0366787,47.6770272],[10.0357895,47.6771037],[10.0356154,47.6772279],[10.0350643,47.6776215],[10.035951,47.6779411],[10.0363825,47.6780967],[10.0362456,47.6785771],[10.0371944,47.678594],[10.0376999,47.6780869],[10.038159,47.678237],[10.039054,47.6779032],[10.0394033,47.6770811],[10.0395037,47.676838],[10.039868,47.6765124],[10.0414324,47.6771958],[10.0422732,47.6775608],[10.0427374,47.6777671],[10.0430961,47.6778997],[10.0434036,47.6778228],[10.043565,47.6777277],[10.0433655,47.6775008],[10.0425716,47.6765887],[10.0423657,47.6763497],[10.0422852,47.6759125],[10.0421819,47.675178],[10.0427542,47.6750733],[10.0435015,47.6755899],[10.0439891,47.6753864],[10.0442796,47.6753778],[10.0446291,47.6757006],[10.044856,47.675629],[10.0453959,47.6757804],[10.0456377,47.6758525],[10.0460454,47.6760217],[10.0463354,47.6761563],[10.046476,47.6762746],[10.0462207,47.6765119],[10.0461287,47.6766294],[10.0459029,47.6768055],[10.0457533,47.6768902],[10.045762,47.6769728],[10.0458754,47.6771409],[10.0461571,47.6773544],[10.0464262,47.6775801],[10.0465411,47.6777029],[10.0466628,47.6779181],[10.046781,47.6780273],[10.0469646,47.6781483],[10.0473925,47.67839],[10.0476896,47.6785884],[10.0480435,47.6788072],[10.0481346,47.6788683],[10.048254,47.6789886],[10.0482574,47.6791533],[10.0484031,47.6792455],[10.0483941,47.6794631],[10.0480573,47.6796263],[10.0482527,47.6800984],[10.0484195,47.6805727],[10.0483919,47.681134],[10.0487891,47.6811729],[10.0493122,47.6811731],[10.0496122,47.6810934],[10.049832,47.6810121],[10.0501754,47.6808068],[10.0498584,47.680163],[10.0500842,47.6799222],[10.05036,47.6797582],[10.050496,47.6797082],[10.0506694,47.679652],[10.0512429,47.6796456],[10.0517721,47.6796681],[10.0522877,47.6796686],[10.0532881,47.6796794],[10.0546952,47.6796183],[10.0556069,47.6798657],[10.0577104,47.6804181],[10.0586745,47.6806982],[10.0591562,47.6805304],[10.0597713,47.6800284],[10.0598259,47.6796399],[10.0601105,47.6789692],[10.060249,47.6784585],[10.0606627,47.6779617],[10.0607899,47.6776093],[10.0609757,47.6774773],[10.061582,47.6770478],[10.0621167,47.6766744],[10.0621659,47.6766311],[10.0625021,47.6761407],[10.0630145,47.6757779],[10.0631604,47.6757566],[10.0635027,47.6753404],[10.0641389,47.6749575],[10.0642746,47.6748836],[10.0643258,47.6747662],[10.0644151,47.6746457],[10.0644601,47.6745034],[10.0643851,47.6742835],[10.0644267,47.6740883],[10.0644277,47.6738721],[10.0644678,47.673862],[10.0644016,47.6737006],[10.0643101,47.6735731],[10.0642152,47.6730949],[10.0640101,47.672735],[10.0639811,47.672568],[10.0643899,47.671994],[10.0644694,47.6718418],[10.0646665,47.6713967],[10.0653529,47.6699391],[10.0654997,47.6695653],[10.065547,47.66943],[10.0660544,47.6684218],[10.0663034,47.6677888],[10.0668405,47.6666134],[10.0675341,47.6650482],[10.0680465,47.6639783],[10.0682185,47.6636727],[10.0685589,47.6634817],[10.0686365,47.6633255],[10.0687279,47.6631875],[10.0687958,47.6630543],[10.0688808,47.6629301],[10.0689956,47.6627804],[10.0691839,47.662591],[10.0693966,47.6624311],[10.0696628,47.6622547],[10.0703938,47.661847],[10.0706059,47.6618105],[10.070818,47.6617739],[10.0710428,47.6616961],[10.0712436,47.6616026],[10.0713964,47.6615004],[10.0714993,47.6614056],[10.0718508,47.6611209],[10.0720392,47.66079],[10.0724024,47.6605667],[10.0728761,47.660292],[10.0730994,47.6601504],[10.0731342,47.6600517],[10.073208,47.6598842],[10.0732919,47.6597142],[10.0735772,47.6594873],[10.0737496,47.6593532],[10.0740887,47.6590889],[10.0747012,47.6586825],[10.0751333,47.6583695],[10.0751892,47.658305],[10.0743456,47.6563682],[10.0741845,47.6560313],[10.0735724,47.654752],[10.0735182,47.6545659],[10.0734619,47.6544366],[10.072895,47.653134],[10.0727461,47.6527917],[10.0724758,47.6522778],[10.0724629,47.6522531],[10.0720786,47.6514414],[10.0717137,47.6505883],[10.0716326,47.6503083],[10.0722397,47.650094],[10.072669,47.6499366],[10.0731869,47.6496707],[10.0736699,47.6493572],[10.0739593,47.6492926],[10.074318,47.6493095],[10.0748379,47.6489819],[10.0750772,47.6488058],[10.0750519,47.6487443],[10.0750221,47.6486213],[10.0748757,47.6482892],[10.0747911,47.6481415],[10.0746614,47.6479157],[10.0742369,47.6475229],[10.0738805,47.6471639],[10.0736707,47.6469182],[10.0736213,47.6467767],[10.0736248,47.6465525],[10.073915,47.6456379],[10.074,47.6454384],[10.0740414,47.645278],[10.0740295,47.645159],[10.0739702,47.6450314],[10.0738704,47.6449016],[10.0736541,47.6446675],[10.0734692,47.6444994],[10.0731792,47.6442865],[10.0729981,47.6441481],[10.0727046,47.6439419],[10.0724392,47.6438064],[10.0723467,47.6437155],[10.0722677,47.6436245],[10.0722158,47.643538],[10.0722037,47.6434008],[10.072252,47.6432404],[10.0724157,47.6429052],[10.07252,47.6426508],[10.0726006,47.6423963],[10.0726558,47.6422404],[10.0727579,47.6420727],[10.0729329,47.6418039],[10.0731986,47.6414957],[10.0733342,47.6413095],[10.0735822,47.6409625],[10.0739761,47.6404359],[10.0742492,47.6401826],[10.074802,47.6398861],[10.0753996,47.6396649],[10.0760915,47.6394178],[10.0769879,47.6391187],[10.0771902,47.6390512],[10.0776052,47.6394923],[10.0779722,47.6398649],[10.0784276,47.6402963],[10.0782506,47.6404143],[10.0781405,47.6405064],[10.0780616,47.6406579],[10.0779773,47.640885],[10.0777523,47.6411953],[10.0772882,47.6413197],[10.0770138,47.6414793],[10.0766068,47.6415919],[10.076153,47.6417252],[10.0760178,47.6419389],[10.0763764,47.6424374],[10.076773,47.6427801],[10.0772582,47.6431566],[10.0777933,47.6434939],[10.0782203,47.643818],[10.0783028,47.6439022],[10.0788034,47.6444134],[10.079389,47.6449699],[10.0800081,47.6454986],[10.0803429,47.6457618],[10.0808764,47.6461974],[10.0810466,47.6462877],[10.0816184,47.6468214],[10.0819942,47.6473381],[10.0819921,47.6473387],[10.0814098,47.647541],[10.0811118,47.6472617],[10.0804494,47.6465548],[10.0803387,47.6465944],[10.0794275,47.6473119],[10.0799125,47.6479599],[10.0801939,47.6485378],[10.0803849,47.6488922],[10.0806008,47.649155],[10.0810391,47.6495319],[10.0820528,47.6490713],[10.0821802,47.6492324],[10.0824009,47.6495124],[10.082932,47.649363],[10.0831847,47.6497601],[10.0828078,47.6504403],[10.0833742,47.6507884],[10.0833343,47.650843],[10.0832953,47.6508967],[10.0827499,47.651453],[10.0823723,47.651447],[10.0818904,47.6514392],[10.081889,47.6514981],[10.081887,47.6515877],[10.0820721,47.6519878],[10.0824543,47.6522784],[10.0826146,47.6523783],[10.0825531,47.6524942],[10.0821483,47.6532561],[10.0830088,47.6537519],[10.0830517,47.6539915],[10.0818037,47.6541209],[10.0814565,47.6547461],[10.081642,47.6548698],[10.0818674,47.6549634],[10.0820936,47.6549404],[10.0830616,47.6548344],[10.0838175,47.6547671],[10.0837694,47.6548727],[10.0836212,47.6550433],[10.0833405,47.655188],[10.0831271,47.6553179],[10.0836927,47.6556202],[10.0841021,47.6558779],[10.0845284,47.656122],[10.0851005,47.6565258],[10.0852089,47.6566879],[10.0852835,47.6567586],[10.0852263,47.656862],[10.0851904,47.6569841],[10.0852089,47.6571141],[10.0852649,47.6572482],[10.0853751,47.6573835],[10.0855322,47.6575019],[10.0857329,47.6576172],[10.0860128,47.6577562],[10.0864332,47.6579453],[10.0867835,47.6580714],[10.0871384,47.6582252],[10.0875579,47.6583875],[10.087602,47.6584674],[10.0879844,47.6590173],[10.0879986,47.6590381],[10.0884824,47.6591861],[10.0889894,47.6593478],[10.0893448,47.6595211],[10.0897307,47.6597857],[10.0900015,47.6600504],[10.0901609,47.6602992],[10.0900228,47.6604411],[10.0898711,47.6606217],[10.0897569,47.6609006],[10.089579,47.661376],[10.0894116,47.661646],[10.0893806,47.6616962],[10.089266,47.6618631],[10.0889897,47.6621398],[10.0886265,47.6625992],[10.0885237,47.6627504],[10.0886326,47.662844],[10.0887962,47.6629843],[10.0888321,47.6630152],[10.0890662,47.6630645],[10.0892087,47.6630945],[10.089495,47.6631173],[10.0895509,47.6631216],[10.0899199,47.6631351],[10.0905454,47.6631078],[10.0909699,47.6629748],[10.0910021,47.6633432],[10.0916762,47.6633025],[10.091623,47.6629438],[10.0917947,47.6629244],[10.0923937,47.6628593],[10.0928735,47.662811],[10.0930103,47.6627942],[10.0930853,47.6627908],[10.0933808,47.663037],[10.093515,47.663181],[10.093682,47.6633837],[10.0937692,47.6635333],[10.0938326,47.6636877],[10.0938905,47.6638697],[10.0939127,47.6640044],[10.093921,47.6642171],[10.0939824,47.6644013],[10.0940225,47.6645654],[10.09411,47.6647262],[10.0942377,47.6648749],[10.0943919,47.6650048],[10.0944947,47.6651264],[10.0945702,47.6652394],[10.0945914,47.6653489],[10.0945644,47.6654388],[10.094514,47.6655402],[10.0944499,47.6656331],[10.0944007,47.6656752],[10.094281,47.6658217],[10.0942796,47.665872],[10.0942465,47.6659778],[10.094071,47.6668632],[10.0938753,47.6672145],[10.0937139,47.6675047],[10.0930713,47.6682284],[10.0930295,47.6686527],[10.093167,47.6688917],[10.0936053,47.6692278],[10.0937879,47.6694343],[10.0938466,47.6696019],[10.0938103,47.6697518],[10.0936491,47.6699941],[10.0931949,47.6703965],[10.0930395,47.6704879],[10.0926404,47.6706544],[10.0921628,47.6707747],[10.0919794,47.6708137],[10.0917121,47.6709826],[10.0914443,47.67122],[10.0913449,47.6713328],[10.0912055,47.6715749],[10.0911119,47.6719196],[10.0909743,47.6725595],[10.090807,47.6730407],[10.0905819,47.6732071],[10.0900335,47.6734443],[10.090113,47.6734743],[10.0902979,47.6735286],[10.090404,47.6735664],[10.0904843,47.6735964],[10.0905804,47.6736276],[10.0913466,47.6739193],[10.0918294,47.6735319],[10.0923246,47.6731268],[10.0927929,47.6727608],[10.093235,47.6724407],[10.0937371,47.672056],[10.094243,47.6716989],[10.0943567,47.6716288],[10.0958282,47.6706774],[10.0962422,47.6704126],[10.0970761,47.6698787],[10.0977398,47.6694452],[10.0981421,47.6691822],[10.0983631,47.6690164],[10.0984575,47.6690436],[10.0986158,47.6691031],[10.0987963,47.6691272],[10.0989459,47.6691404],[10.0989751,47.669076],[10.0989923,47.6690164],[10.099148,47.669013],[10.09931,47.6689753],[10.0992237,47.6688551],[10.0991718,47.6687848],[10.09912,47.6687007],[10.0990711,47.6685984],[10.0990424,47.6684937],[10.0989319,47.6683371],[10.0988051,47.6682331],[10.0988317,47.6681919],[10.0989222,47.6681365],[10.0990894,47.6680052],[10.0998687,47.6683053],[10.1000176,47.6680761],[10.1003434,47.668133],[10.1005066,47.6677417],[10.100588,47.667504],[10.1008991,47.6674903],[10.1010985,47.667473],[10.1016139,47.6673163],[10.1021391,47.667365],[10.1027462,47.6674564],[10.1031157,47.6674993],[10.1037421,47.6675358],[10.1042363,47.6675438],[10.1047739,47.6675101],[10.1052296,47.6674361],[10.1053606,47.6674043],[10.1056072,47.6673444],[10.106043,47.667291],[10.1065231,47.6672533],[10.1069136,47.6671967],[10.1072693,47.6671453],[10.1077049,47.667085],[10.1081706,47.6669995],[10.108555,47.6669169],[10.1088312,47.6668259],[10.1091646,47.6667117],[10.1097133,47.6665228],[10.1100603,47.6664177],[10.1104706,47.6662505],[10.1106117,47.6661787],[10.1108749,47.6661312],[10.1111592,47.6661199],[10.1113113,47.6661235],[10.1117334,47.6662891],[10.111938,47.6663949],[10.1120879,47.6664553],[10.1122098,47.6664681],[10.1127594,47.6663364],[10.1130164,47.6662579],[10.1132385,47.6662184],[10.1133985,47.6661885],[10.1137666,47.6662631],[10.11362,47.666576],[10.1137058,47.6671107],[10.1135589,47.6671323],[10.1135967,47.6674809],[10.1136921,47.6677554],[10.1136146,47.66827],[10.1134704,47.668838],[10.1134657,47.669282],[10.1134557,47.6695788],[10.1138905,47.6696259],[10.1147899,47.6697657],[10.1151292,47.6698271],[10.1156471,47.6698301],[10.1159956,47.6698389],[10.1163282,47.6698957],[10.1172443,47.6705071],[10.1173166,47.6707309],[10.1174537,47.6711556],[10.1175623,47.6714058],[10.1185219,47.671531],[10.1193407,47.6717461],[10.1201306,47.6720666],[10.1207459,47.6727075],[10.121133,47.6727935],[10.1218048,47.6729118],[10.1229835,47.6729782],[10.1236919,47.6734817],[10.1236794,47.6737897],[10.123862,47.6739959],[10.1246485,47.674533],[10.124974,47.6747607],[10.1255772,47.6749325],[10.1263269,47.6753854],[10.1267217,47.6756059],[10.1270771,47.6757379],[10.1273187,47.6757984],[10.1278499,47.6758184],[10.1285745,47.6758632],[10.1295833,47.6760384],[10.1301574,47.6768474],[10.1301908,47.6775407],[10.1300923,47.6779985],[10.1302308,47.6782293],[10.1305856,47.6788222],[10.1306034,47.6788517],[10.1307486,47.6793175],[10.1308072,47.6795579],[10.1308252,47.6796314],[10.1306615,47.6799371],[10.130595,47.6804447],[10.1303109,47.6810305],[10.130318,47.6811605],[10.1304152,47.6813691],[10.1303812,47.681479],[10.1301176,47.6817178],[10.1303663,47.6819037],[10.1309334,47.6823454],[10.1314477,47.6828335],[10.13196,47.6833717],[10.1323354,47.6837293],[10.1325429,47.6840162],[10.1326739,47.6844571],[10.1328012,47.6850076],[10.1327994,47.6850298],[10.132792,47.6851185],[10.1327786,47.6852817],[10.132582,47.6854921],[10.1319759,47.6860506],[10.1317071,47.6864582],[10.1314849,47.686562],[10.1312535,47.6866699],[10.1308084,47.6868267],[10.1303628,47.6869722],[10.1305131,47.6872598],[10.1305894,47.6875601],[10.1305907,47.6878454],[10.1305401,47.6880369],[10.1304565,47.6883537],[10.1301985,47.6887819],[10.1296686,47.6894054],[10.1291115,47.6900223],[10.1288705,47.690216],[10.1282524,47.6907122],[10.1283913,47.690838],[10.1286874,47.6910301],[10.1297266,47.6915497],[10.1302512,47.6916861],[10.1308793,47.6918467],[10.1315932,47.692137],[10.1317001,47.6934009],[10.1317042,47.6934464],[10.132814,47.6941913],[10.1337539,47.6947702],[10.1347829,47.6954525],[10.1355065,47.6958846],[10.1362882,47.696327],[10.1368864,47.6966815],[10.1374069,47.6969618],[10.1376409,47.6970985],[10.1380361,47.6973293],[10.1387221,47.6976751],[10.1390018,47.69782],[10.1392801,47.6979639],[10.1395432,47.699101],[10.1395694,47.6991383],[10.1396625,47.6992715],[10.1397604,47.6994589],[10.1396561,47.6997303],[10.1395617,47.6999809],[10.1395072,47.7001693],[10.1394658,47.7003416],[10.1394445,47.7004954],[10.1394713,47.7006948],[10.139457,47.7008646],[10.1394159,47.7012708],[10.1393658,47.7015326],[10.1393656,47.701739],[10.1394158,47.7019084],[10.1394659,47.7020779],[10.1395572,47.7022882],[10.1396934,47.7025396],[10.1398021,47.7027729],[10.139564,47.703591],[10.1394227,47.7036378],[10.1392502,47.7036688],[10.1390369,47.7036839],[10.1388985,47.7037192],[10.1387636,47.7037707],[10.1385888,47.7038498],[10.1384891,47.7039082],[10.1383434,47.7039937],[10.1381355,47.7041374],[10.1379983,47.704246],[10.1378033,47.7043505],[10.1374846,47.7045568],[10.1372166,47.7047651],[10.1371129,47.7048574],[10.1370027,47.7049615],[10.1369873,47.7050486],[10.1369751,47.7051474],[10.1369679,47.7053332],[10.1368617,47.7054762],[10.1366752,47.7056977],[10.1365241,47.7058665],[10.1362622,47.7061591],[10.1361037,47.7062838],[10.1359902,47.7063423],[10.1359214,47.7063555],[10.1358757,47.7063642],[10.1358204,47.7063561],[10.1357328,47.7063433],[10.1355851,47.7062788],[10.1353137,47.7061545],[10.1350402,47.7060713],[10.134788,47.7060288],[10.1345975,47.7060014],[10.1344003,47.7059834],[10.1342002,47.7059745],[10.1340008,47.7059976],[10.1337345,47.7060398],[10.1335565,47.7061013],[10.133498,47.7061196],[10.1333048,47.70618],[10.1330272,47.7063067],[10.1327663,47.7064265],[10.1324819,47.7065511],[10.1323413,47.7066099],[10.1321974,47.7066712],[10.1320663,47.7067071],[10.1319216,47.7067431],[10.1317811,47.7068043],[10.1315842,47.7069074],[10.1314314,47.7070142],[10.1313147,47.7070797],[10.1311709,47.7071476],[10.1310265,47.7071906],[10.1308648,47.7072269],[10.1307035,47.7072699],[10.1305524,47.7073176],[10.1304252,47.7073694],[10.1302823,47.7074694],[10.1301332,47.7075832],[10.1300044,47.707699],[10.1298856,47.7078078],[10.1298081,47.7079434],[10.1297232,47.7080496],[10.1296382,47.7081557],[10.1295263,47.7082621],[10.1293825,47.7083348],[10.1291648,47.7084196],[10.1289401,47.7085025],[10.1287186,47.7085783],[10.1284966,47.7086313],[10.1282708,47.7086798],[10.128123,47.7087205],[10.127962,47.7087797],[10.1278515,47.7088313],[10.1277118,47.708913],[10.1276284,47.7089551],[10.1274117,47.7090812],[10.1272817,47.7091605],[10.1271251,47.7092515],[10.1269711,47.7093128],[10.1268578,47.7093781],[10.126755,47.7094593],[10.1265793,47.7095917],[10.1263485,47.709695],[10.1260646,47.7098402],[10.1258744,47.7099384],[10.1256872,47.7100321],[10.1255408,47.7101231],[10.1255108,47.7101467],[10.1254116,47.7102252],[10.1252722,47.7103297],[10.125113,47.7104459],[10.1249828,47.7105069],[10.1247657,47.7106215],[10.1245615,47.7107062],[10.1243738,47.7107793],[10.1242194,47.7108315],[10.1241226,47.7108829],[10.1240341,47.7109845],[10.1239163,47.7111298],[10.1237959,47.7113048],[10.1236734,47.7116394],[10.1235811,47.7118024],[10.1235346,47.7118466],[10.1234843,47.7118944],[10.1233941,47.7119681],[10.1233066,47.7120098],[10.123202,47.7120289],[10.1230431,47.7120552],[10.1229082,47.7120767],[10.1228886,47.7120806],[10.1227663,47.7121052],[10.1226517,47.712138],[10.1225541,47.7121798],[10.1224736,47.7122306],[10.1224449,47.7122555],[10.1223534,47.7123343],[10.1220731,47.7126013],[10.1217988,47.7128287],[10.1216451,47.7129562],[10.1215723,47.7130211],[10.1213913,47.7131819],[10.121144,47.7134006],[10.1207916,47.7138076],[10.1206215,47.7139847],[10.1205083,47.714102],[10.1204253,47.7142168],[10.1204226,47.7142262],[10.1203868,47.7143473],[10.1203328,47.7145784],[10.1202703,47.7146953],[10.120192,47.7147637],[10.12017,47.7147829],[10.1200761,47.7148429],[10.119965,47.7148849],[10.1198333,47.7149178],[10.1196609,47.7149304],[10.1194891,47.714982],[10.1193643,47.7150263],[10.1192602,47.7150796],[10.1191631,47.7151466],[10.1190666,47.7152614],[10.1188604,47.7154936],[10.1187509,47.7156193],[10.1186826,47.715698],[10.1185343,47.7158683],[10.1182727,47.7162562],[10.118037,47.7165618],[10.1179607,47.7166674],[10.1178601,47.7167321],[10.117709,47.7168085],[10.117666,47.7168273],[10.1175507,47.7168782],[10.1173797,47.71698],[10.1173429,47.7170038],[10.1172221,47.7170816],[10.1171115,47.7171555],[10.1170046,47.7172476],[10.1168885,47.7174038],[10.1167723,47.7175554],[10.1166798,47.717716],[10.1166495,47.7178007],[10.1166196,47.7178838],[10.1165926,47.7180145],[10.1165517,47.7181269],[10.1164432,47.7182425],[10.116224,47.7183915],[10.1158947,47.7186013],[10.1157855,47.7186917],[10.1157069,47.7187842],[10.1156387,47.7188879],[10.115581,47.7190051],[10.1155588,47.7191859],[10.1155489,47.719314],[10.1155049,47.7194403],[10.1154121,47.7196311],[10.1153741,47.719732],[10.115377,47.7198303],[10.1154383,47.7199734],[10.1155708,47.7201157],[10.1156437,47.7202998],[10.1156512,47.7204506],[10.11566,47.7206515],[10.1156881,47.720811],[10.1157605,47.7209815],[10.1157739,47.7210029],[10.1158659,47.7211518],[10.1159656,47.7213134],[10.1160261,47.7214123],[10.1160991,47.7216078],[10.1161854,47.7219106],[10.1162436,47.7221841],[10.1163038,47.7225282],[10.1162943,47.7226747],[10.1162598,47.7227779],[10.1161388,47.7229301],[10.1160673,47.7230339],[10.1160496,47.7231301],[10.1160726,47.7232327],[10.1161544,47.723371],[10.1163863,47.7238045],[10.1164328,47.7239819],[10.1163974,47.7241537],[10.1162738,47.7243154],[10.1161389,47.724443],[10.1160093,47.7245561],[10.1159739,47.724587],[10.1158587,47.7246913],[10.1157706,47.7248],[10.1157186,47.724877],[10.1156928,47.7249152],[10.1156458,47.725037],[10.1156153,47.7251471],[10.1156151,47.7252452],[10.1156282,47.7253456],[10.1156848,47.7254223],[10.1158075,47.7255553],[10.1160268,47.7257464],[10.1162428,47.7259305],[10.1163074,47.7260438],[10.1163178,47.7261647],[10.1162997,47.7263476],[10.1162996,47.726455],[10.1163303,47.7265688],[10.1163778,47.7266799],[10.1164748,47.7267448],[10.1165953,47.7268116],[10.1167132,47.7268967],[10.1168078,47.7269981],[10.1168687,47.7271091],[10.1168934,47.7272435],[10.1168636,47.7273719],[10.1168014,47.7275509],[10.1167686,47.7276975],[10.1167686,47.7278071],[10.1167979,47.7279849],[10.1168138,47.7280586],[10.1168413,47.7281852],[10.1168677,47.7283743],[10.1169271,47.7285471],[10.1169882,47.728658],[10.1170696,47.7287688],[10.1171789,47.7289043],[10.1173217,47.7290347],[10.1174572,47.7291448],[10.1175589,47.7292482],[10.1176406,47.7293703],[10.1176555,47.7295255],[10.1176442,47.7297061],[10.1176827,47.7298539],[10.1177071,47.7299369],[10.1177244,47.7299951],[10.1178196,47.7301147],[10.1179515,47.7302132],[10.1181239,47.7303112],[10.1182721,47.7303936],[10.118386,47.7304604],[10.1184501,47.7305577],[10.1184568,47.7306695],[10.1184041,47.7308211],[10.1183192,47.73103],[10.1183036,47.7310997],[10.1182892,47.731163],[10.1182918,47.7312475],[10.1183516,47.7313175],[10.1184623,47.7313867],[10.1185389,47.731454],[10.1185826,47.7315538],[10.1185749,47.7317345],[10.1185152,47.7320045],[10.1185006,47.7320712],[10.1184521,47.7322546],[10.1183442,47.7324891],[10.1182903,47.7326087],[10.118259,47.7326959],[10.1182785,47.732771],[10.1183559,47.7328613],[10.1184708,47.7329645],[10.1185762,47.7330865],[10.1186544,47.733204],[10.1186893,47.7333451],[10.1187079,47.733507],[10.1187074,47.7336294],[10.1187059,47.7338771],[10.1186088,47.7341297],[10.1185014,47.7343802],[10.1184108,47.7345185],[10.1182832,47.7346642],[10.1180967,47.7347743],[10.1177028,47.7349627],[10.1173826,47.7351271],[10.1171121,47.7352498],[10.1168711,47.735347],[10.1166327,47.7354166],[10.1162433,47.7355318],[10.1159815,47.7356155],[10.1158613,47.7356665],[10.1157641,47.7357076],[10.1155909,47.7358039],[10.1154353,47.7359203],[10.1152907,47.736064],[10.1151432,47.7362283],[10.1150042,47.7364404],[10.1148733,47.7367003],[10.1147844,47.7368958],[10.1147072,47.7371343],[10.1146344,47.7372975],[10.1145278,47.7374704],[10.1143923,47.7375773],[10.1142493,47.7376639],[10.1140585,47.7377397],[10.1139013,47.7378037],[10.1138182,47.7378387],[10.113744,47.7378699],[10.1136345,47.7379468],[10.113595,47.7379963],[10.1135627,47.7380369],[10.1135377,47.7380897],[10.1134801,47.7382117],[10.1134099,47.7384571],[10.1133824,47.7386653],[10.1133674,47.7388369],[10.1133211,47.738986],[10.1132438,47.739115],[10.1131471,47.7392694],[10.1130736,47.7394142],[10.1130207,47.7395657],[10.113006,47.7398584],[10.1129642,47.7403705],[10.1129201,47.7408074],[10.1128847,47.7409746],[10.1128498,47.7411646],[10.1128174,47.7413136],[10.1128361,47.7414846],[10.1128999,47.7416778],[10.1129907,47.7418728],[10.1130897,47.7420107],[10.1132018,47.7421234],[10.1133259,47.7421969],[10.1134972,47.7422515],[10.1138378,47.7423061],[10.1140997,47.7423365],[10.1142192,47.7423691],[10.1143362,47.7424245],[10.1144445,47.7425302],[10.1145816,47.7426858],[10.11468,47.7428009],[10.1147639,47.7428842],[10.1149397,47.7429822],[10.1151774,47.7430998],[10.1152643,47.7431716],[10.1153317,47.7432665],[10.1153493,47.7433988],[10.1153116,47.7436003],[10.1152882,47.7438336],[10.1153179,47.7441324],[10.1153547,47.7445475],[10.1153605,47.7447415],[10.1153549,47.7449767],[10.1153502,47.7451688],[10.1153096,47.7452813],[10.1153513,47.74542],[10.1154564,47.7456446],[10.1155839,47.7458254],[10.1156651,47.7459292],[10.1157623,47.746001],[10.1158828,47.7460563],[10.1160273,47.7461251],[10.1161288,47.7462333],[10.1161963,47.7463328],[10.1162109,47.7463579],[10.1162501,47.7464256],[10.1162698,47.7465167],[10.1162428,47.746629],[10.1162115,47.7467117],[10.1161461,47.746788],[10.1160667,47.746853],[10.115981,47.7469297],[10.1159153,47.7469992],[10.1157258,47.747333],[10.1156269,47.7475286],[10.115606,47.7476202],[10.1156028,47.7477391],[10.1156663,47.747818],[10.1158219,47.7479163],[10.1160206,47.7479774],[10.1162933,47.7480305],[10.1169276,47.7481561],[10.1172433,47.7482392],[10.1173908,47.748306],[10.1175117,47.7483959],[10.1175961,47.7485137],[10.1176501,47.7486408],[10.1176602,47.748764],[10.1176933,47.7488642],[10.1177332,47.7489687],[10.117853,47.7491522],[10.1179245,47.749302],[10.117993,47.7494519],[10.1180581,47.7496133],[10.1181341,47.7498066],[10.1182672,47.7500205],[10.1183711,47.7501873],[10.1184123,47.7503397],[10.118432,47.7504469],[10.1184312,47.7505519],[10.1184,47.7506506],[10.1183554,47.7507628],[10.1182973,47.7508754],[10.1182287,47.7509743],[10.1181396,47.7510713],[10.1180336,47.7511594],[10.1178969,47.7512499],[10.1177236,47.7513615],[10.1175201,47.7514849],[10.1173433,47.7515897],[10.1171267,47.7517314],[10.1169165,47.7518595],[10.1166903,47.7520265],[10.1164438,47.7521915],[10.1163079,47.7523049],[10.1162127,47.752427],[10.1163044,47.7524854],[10.1167449,47.7524552],[10.1169636,47.7524289],[10.1171883,47.7524021],[10.1171548,47.7525249],[10.1171246,47.7526351],[10.1170406,47.7528664],[10.1169903,47.7530371],[10.1169095,47.7532337],[10.1168693,47.7533387],[10.1168118,47.7534324],[10.1167443,47.7535079],[10.1166903,47.7535764],[10.1166125,47.7536359],[10.1165179,47.7536907],[10.1164264,47.7537411],[10.1163013,47.7537937],[10.1161355,47.7538533],[10.1160036,47.753922],[10.1158919,47.7539792],[10.1158006,47.7540341],[10.1157059,47.7541049],[10.1156113,47.7541783],[10.1155166,47.7542559],[10.1154527,47.7543588],[10.1154122,47.7544524],[10.1153549,47.7545462],[10.1152942,47.7546466],[10.1152097,47.7547608],[10.115122,47.75485],[10.1150273,47.7549232],[10.1149746,47.7550157],[10.1149528,47.7550602],[10.1149083,47.7551507],[10.1149215,47.7552657],[10.1149271,47.755315],[10.1149724,47.7554176],[10.1151427,47.7554897],[10.1154111,47.755534],[10.1156421,47.755567],[10.1158017,47.7555935],[10.1159855,47.7556586],[10.1161862,47.755717],[10.1159987,47.7557944],[10.1158667,47.7558676],[10.115745,47.7559568],[10.11563,47.7560323],[10.1155219,47.7561237],[10.115468,47.756181],[10.1154273,47.7562243],[10.1153495,47.7563204],[10.1152721,47.7564597],[10.1152047,47.7565922],[10.1151984,47.7567269],[10.1152122,47.7568503],[10.1153048,47.7569185],[10.1154518,47.7570204],[10.1153769,47.7572948],[10.1153792,47.7574935],[10.1154179,47.7576121],[10.1154962,47.7581646],[10.1157649,47.7582676],[10.1161279,47.7583859],[10.1165753,47.7585385],[10.1169791,47.7586978],[10.1173725,47.7588571],[10.117861,47.7590598],[10.1184307,47.7592509],[10.1190293,47.7594604],[10.1187298,47.7596516],[10.1184912,47.7598175],[10.1173372,47.7606184],[10.1167154,47.761036],[10.1164286,47.7612286],[10.1161426,47.7614219],[10.1159961,47.7613611],[10.1159043,47.7613296],[10.1157377,47.7613008],[10.1155716,47.761288],[10.1154088,47.761298],[10.1152058,47.7613174],[10.1150128,47.7613504],[10.1147861,47.7613928],[10.114617,47.761437],[10.1144415,47.7615019],[10.1141618,47.761661],[10.1135862,47.7620273],[10.1133476,47.7619145],[10.1130434,47.7619914],[10.1123569,47.7621665],[10.1118354,47.7623906],[10.1117598,47.7624231],[10.1103561,47.7624463],[10.1101224,47.7624502],[10.1101232,47.7625143],[10.1101236,47.7625484],[10.1088011,47.7632132],[10.1076253,47.7638043],[10.1072934,47.7639746],[10.1067021,47.7642781],[10.1065599,47.7643512],[10.1064449,47.764377],[10.1055949,47.7647696],[10.1052873,47.7648651],[10.1028113,47.7644992],[10.0998813,47.7655085],[10.0997275,47.7655615],[10.0988846,47.7657966],[10.0976615,47.7662106],[10.0967766,47.7665102],[10.0955467,47.7669265],[10.0917436,47.7681992],[10.09142,47.7683333],[10.0912994,47.7683833],[10.0905455,47.7686724],[10.0894734,47.7689802],[10.0886378,47.7692564],[10.0882273,47.7694172],[10.0873196,47.7700226],[10.087178,47.7701097],[10.0867631,47.7703672],[10.0857601,47.770558],[10.0852295,47.7706398],[10.0840974,47.7708246],[10.08306,47.7709929],[10.0827188,47.7710505],[10.0824722,47.7711846],[10.0823572,47.7712784],[10.0823437,47.7713605],[10.0823541,47.771445],[10.0824051,47.7715546],[10.082463,47.7716801],[10.0825379,47.7718307],[10.0826482,47.7720414],[10.0827823,47.7725452],[10.0828405,47.7727707],[10.0828444,47.7729921],[10.0828727,47.7734324],[10.0829222,47.7739434],[10.0829309,47.7743647],[10.0830313,47.7746166],[10.0832044,47.7748021],[10.0833539,47.7749923],[10.083496,47.7751462],[10.0836508,47.7752565],[10.0838393,47.7753463],[10.0846265,47.7756797],[10.0849377,47.7757912],[10.084935,47.7762057],[10.0848861,47.7766958],[10.0846695,47.7767453],[10.0844493,47.7767856],[10.0843007,47.7768232],[10.0841254,47.7768951],[10.0840076,47.7769644],[10.0839006,47.7770654],[10.0837719,47.7772155],[10.083518,47.7775522],[10.0829449,47.7781713],[10.0824087,47.7785201],[10.0819015,47.7789875],[10.0816717,47.7792153],[10.0815196,47.7794219],[10.0813838,47.7796125],[10.0812007,47.7797987],[10.080977,47.7799945],[10.0807767,47.780165],[10.0805809,47.7803766],[10.0805404,47.7804202],[10.0801855,47.7807243],[10.0801263,47.780775],[10.0798568,47.7810647],[10.0796734,47.7812488],[10.0793391,47.7811279],[10.0788133,47.7809059],[10.0783045,47.7806951],[10.0781834,47.7806369],[10.0775318,47.7803243],[10.0771348,47.7801218],[10.0767407,47.7804558],[10.0765467,47.7806011],[10.0764839,47.780618],[10.0762329,47.7806855],[10.0757602,47.7807964],[10.0753242,47.7808751],[10.0750556,47.7806374],[10.0741687,47.780909],[10.0737984,47.7810531],[10.0733248,47.7811139],[10.0728459,47.781065],[10.0721723,47.7813098],[10.0716693,47.7814951],[10.0720294,47.7820619],[10.0718638,47.7820837],[10.0714353,47.782014],[10.0706772,47.7818917],[10.0704672,47.7819048],[10.0702988,47.7821617],[10.069774,47.7820035],[10.0694529,47.7818644],[10.0691009,47.7820125],[10.069096,47.7820086],[10.0681463,47.7823695],[10.0675145,47.7823012],[10.0673559,47.7825377],[10.0670725,47.7830147],[10.0667932,47.783625],[10.0669043,47.7837075],[10.0670291,47.7838002],[10.0680335,47.7838052],[10.0684238,47.78371],[10.0684856,47.7839447],[10.0685349,47.7840585],[10.0686276,47.7841195],[10.0687137,47.7841965],[10.0687935,47.7843032],[10.0688538,47.7844223],[10.0689514,47.7846149],[10.0688235,47.7846471],[10.0685127,47.7847254],[10.0677632,47.7847218],[10.0676193,47.7852116],[10.0675529,47.7854883],[10.0666662,47.7855817],[10.066233,47.7856215],[10.0661251,47.785072],[10.0660791,47.784965],[10.0658645,47.7849005],[10.0656372,47.7848907],[10.0654238,47.7849014],[10.0651974,47.7849488],[10.0653401,47.7855505],[10.0653553,47.7856874],[10.0665275,47.785902],[10.0670129,47.7860221],[10.0671145,47.7860041],[10.0673078,47.7860244],[10.0675963,47.7860742],[10.0679768,47.7861471],[10.0682238,47.7861944],[10.0682769,47.7862055],[10.068509,47.7862535],[10.0685912,47.7863139],[10.0684905,47.7865681],[10.068046,47.7864919],[10.0678648,47.786461],[10.0673172,47.7863714],[10.0668822,47.7863448],[10.0666441,47.7863303],[10.0663852,47.7870399],[10.0665886,47.7870533],[10.0668294,47.7870598],[10.0670566,47.7870573],[10.0672974,47.7870547],[10.067545,47.7870452],[10.067701,47.7870358],[10.0678399,47.7870151],[10.0679542,47.7869926],[10.0681212,47.7869598],[10.068368,47.7869321],[10.0681895,47.7880572],[10.0684049,47.7880871],[10.0687244,47.7881327],[10.0691329,47.7882211],[10.0693844,47.7882556],[10.0696264,47.7883246],[10.0699608,47.7884455],[10.0702204,47.7885576],[10.070456,47.7886541],[10.0705,47.7886727],[10.0706848,47.7887505],[10.0708026,47.7888043],[10.0708421,47.7888224],[10.0711175,47.7888705],[10.0714947,47.7889204],[10.0717293,47.7889574],[10.0721271,47.7890183],[10.072457,47.7890775],[10.0725879,47.7891663],[10.0728832,47.7893175],[10.0731785,47.7894611],[10.0734571,47.7896045],[10.0737459,47.7897823],[10.0739634,47.7899373],[10.0740438,47.7899882],[10.0743068,47.7902224],[10.0744428,47.7902975],[10.0746669,47.7903635],[10.0750241,47.7904418],[10.075071,47.7905046],[10.0750409,47.7906576],[10.074917,47.7911283],[10.0748501,47.791373],[10.0748062,47.7915328],[10.0747793,47.7916197],[10.0747421,47.7916563],[10.0746473,47.7917136],[10.0743935,47.7918693],[10.0740618,47.7920753],[10.0738719,47.7922087],[10.074066,47.792271],[10.0744417,47.7924304],[10.0748346,47.7926031],[10.0750906,47.7927018],[10.0752851,47.7927664],[10.0754789,47.7928016],[10.0758831,47.7928487],[10.076128,47.7928788],[10.076267,47.7929954],[10.0763654,47.793078],[10.076608,47.7931767],[10.0769012,47.7932634],[10.0772792,47.7933634],[10.0775008,47.7934279],[10.0778134,47.7934643],[10.0784179,47.7935169],[10.0794366,47.7936005],[10.0800714,47.7936392],[10.0803939,47.7936619],[10.0807915,47.7937114],[10.0807695,47.7938074],[10.0813482,47.7939309],[10.0820902,47.7940896],[10.0822121,47.7941209],[10.0824444,47.7941806],[10.0826754,47.794389],[10.0830313,47.7946288],[10.0834544,47.7948289],[10.084244,47.7951408],[10.0841415,47.7952493],[10.0849625,47.7954695],[10.0856358,47.7956231],[10.0858593,47.7962431],[10.0858515,47.7965946],[10.0857664,47.7969743],[10.0862541,47.7970413],[10.0871894,47.7972212],[10.0880436,47.7975323],[10.0886877,47.7977966],[10.089517,47.7981367],[10.0900629,47.7988714],[10.090196,47.7991068],[10.0902185,47.7991401],[10.0917232,47.8013637],[10.0921139,47.8014115],[10.0919201,47.8016456],[10.09148,47.8022623],[10.0908631,47.8031107],[10.0907568,47.8032963],[10.0906579,47.8035115],[10.0905756,47.8037152],[10.0905407,47.8039185],[10.0905784,47.803948],[10.0906676,47.8040205],[10.0908389,47.804161],[10.0910099,47.8042716],[10.0911942,47.8043664],[10.0915011,47.8044991],[10.0915313,47.8044693],[10.0916005,47.8043988],[10.091739,47.8042579],[10.0920072,47.8040188],[10.0922521,47.8037913],[10.092466,47.8035343],[10.0926061,47.8033463],[10.0928164,47.8030688],[10.0930667,47.8027453],[10.093284,47.8024838],[10.0934781,47.8022772],[10.0935883,47.8021441],[10.0936165,47.8021807],[10.0941323,47.8030581],[10.0941876,47.8031422],[10.0942464,47.8032333],[10.0942674,47.8032924],[10.0942755,47.8033837],[10.0942729,47.8034636],[10.0942568,47.8035254],[10.0946084,47.8037058],[10.095346,47.8040845],[10.0953797,47.8041003],[10.0961944,47.8045402],[10.096229,47.8044977],[10.0962878,47.8044798],[10.0963082,47.8044458],[10.0964007,47.8044257],[10.0963689,47.8043598],[10.096407,47.804327],[10.0964604,47.8043441],[10.0965016,47.8042735],[10.0965349,47.804239],[10.096548,47.8042024],[10.0965471,47.8041226],[10.0965313,47.8039491],[10.0969695,47.8039645],[10.0969248,47.8039304],[10.0973877,47.8034562],[10.0975223,47.8033382],[10.0976697,47.803209],[10.0978146,47.8031013],[10.0980106,47.8029973],[10.0982543,47.8028969],[10.0983615,47.8028757],[10.0990432,47.8024373],[10.0995125,47.8022096],[10.0999029,47.8020449],[10.0999657,47.8020094],[10.0999554,47.8017493],[10.100849,47.8011851],[10.1014433,47.8008636],[10.1022141,47.8005413],[10.1022399,47.8005112],[10.1023385,47.800603],[10.1024212,47.8007038],[10.1026521,47.8009855],[10.1026233,47.8010174],[10.1031315,47.8010132],[10.1040913,47.8010139],[10.1049087,47.8010173],[10.1054849,47.801009],[10.1060133,47.8009903],[10.1061643,47.8009509],[10.1064215,47.8008458],[10.1068402,47.8007171],[10.1071579,47.800604],[10.107471,47.8005003],[10.1077139,47.8003852],[10.1078538,47.8003973],[10.1079175,47.8004423],[10.1080201,47.8004919],[10.1081427,47.8005389],[10.1082449,47.8005702],[10.1083337,47.800606],[10.1085104,47.8006413],[10.1085954,47.800668],[10.1086705,47.8006904],[10.1087945,47.8008263],[10.1088813,47.8009489],[10.108978,47.8010761],[10.1091392,47.8011913],[10.1092255,47.8012888],[10.1093561,47.8014042],[10.1096165,47.8015781],[10.109938,47.8017743],[10.1104102,47.8020539],[10.1106029,47.8020091],[10.1107545,47.801967],[10.1109297,47.8018995],[10.1110373,47.8018485],[10.1111749,47.801754],[10.1113125,47.8016686],[10.1115012,47.8015964],[10.1119088,47.8014407],[10.1123004,47.8013397],[10.1126582,47.8012345],[10.1130779,47.8012041],[10.1133526,47.8012066],[10.1135992,47.8011615],[10.1138185,47.8010983],[10.114163,47.8010205],[10.1146297,47.8009509],[10.1150221,47.8009025],[10.1154995,47.8008718],[10.1157606,47.8008767],[10.1160443,47.8008174],[10.1163451,47.8007652],[10.1167415,47.8007531],[10.1169043,47.8010051],[10.1170896,47.8013122],[10.1173128,47.8015501],[10.1173763,47.8017795],[10.1174206,47.8020436],[10.1176312,47.802138],[10.1178209,47.8022143],[10.1179916,47.8022432],[10.1183131,47.8022258],[10.1185738,47.8022143],[10.1190981,47.8023484],[10.1193369,47.802723],[10.1195555,47.8031003],[10.1198027,47.8035981],[10.1194896,47.8036587],[10.1192105,47.8038054],[10.1189453,47.8039587],[10.1188196,47.8037829],[10.1188989,47.8036444],[10.1189345,47.8035158],[10.1189028,47.8034022],[10.1187258,47.8034718],[10.1184142,47.8037378],[10.1183136,47.8039338],[10.1178872,47.803873],[10.1175425,47.8038224],[10.1173229,47.8037602],[10.1169675,47.8036091],[10.1165177,47.8032978],[10.1160677,47.8032444],[10.1159385,47.8035733],[10.115902,47.8036835],[10.1158315,47.8037831],[10.1155476,47.8041467],[10.1152496,47.8044993],[10.1151825,47.8045188],[10.1151461,47.8047113],[10.1151054,47.8050523],[10.1150591,47.8051856],[10.115083,47.8052083],[10.115041,47.8053295],[10.1149228,47.8055745],[10.114754,47.8058382],[10.1146382,47.8060262],[10.1145555,47.80615],[10.1144757,47.8062373],[10.1144152,47.8062812],[10.1143379,47.8063273],[10.1142268,47.8063737],[10.1140614,47.806416],[10.1138754,47.8064402],[10.1136115,47.806474],[10.1134999,47.8064886],[10.1134321,47.806489],[10.1133198,47.8064625],[10.1131907,47.8064314],[10.1130406,47.8063869],[10.1129423,47.8063739],[10.1128066,47.8063749],[10.1126781,47.8063941],[10.1125163,47.8064523],[10.1122905,47.8065383],[10.1120916,47.8066037],[10.1119799,47.8066159],[10.1117832,47.8066172],[10.111393,47.8065835],[10.1109959,47.8065499],[10.1107074,47.8065383],[10.1107339,47.806582],[10.1107777,47.8066976],[10.1108815,47.8068292],[10.110948,47.8069519],[10.1110242,47.8070563],[10.1111348,47.8072016],[10.1112586,47.8073148],[10.1114273,47.807471],[10.1115647,47.8075933],[10.1116956,47.8077248],[10.1118508,47.8078925],[10.1120405,47.8080942],[10.1121718,47.8082553],[10.1122737,47.8082796],[10.112584,47.8083801],[10.113229,47.8086653],[10.1140586,47.8090312],[10.1138316,47.8092657],[10.1156599,47.8099596],[10.1157075,47.8099779],[10.1157252,47.8102447],[10.1157788,47.8106369],[10.1157957,47.810849],[10.1166426,47.8110275],[10.1174013,47.8111933],[10.1180203,47.8113257],[10.1189256,47.8115543],[10.1197186,47.8117492],[10.1197664,47.8117626],[10.1196874,47.812352],[10.1196915,47.8126053],[10.1200695,47.8126701],[10.120215,47.8126951],[10.1211716,47.812831],[10.1213388,47.8128549],[10.1213899,47.8127127],[10.1215111,47.8125287],[10.1216577,47.8124175],[10.1217048,47.8123966],[10.1217389,47.8124007],[10.1218309,47.8124272],[10.1219373,47.8124764],[10.1220845,47.8125388],[10.1221903,47.8125674],[10.1223757,47.8126661],[10.122431,47.8126782],[10.123031,47.8128113],[10.1231839,47.8128451],[10.1232875,47.8126293],[10.1233802,47.8126527],[10.1235059,47.812519],[10.1244494,47.8126803],[10.1257787,47.812961],[10.1271826,47.8132385],[10.1278305,47.8133917],[10.1280924,47.8134255],[10.128267,47.8129099],[10.1284484,47.8123965],[10.1287889,47.8121623],[10.1291647,47.8119872],[10.129927,47.8116617],[10.1303817,47.8115178],[10.1307858,47.8114062],[10.1309549,47.8113793],[10.1310364,47.8113854],[10.1313097,47.8114669],[10.131776,47.8112451],[10.1318589,47.8113104],[10.1321192,47.8111318],[10.1321699,47.8110961],[10.1319559,47.8109361],[10.1318351,47.8108413],[10.1316182,47.8107088],[10.1318045,47.8099622],[10.1318763,47.8096918],[10.1324669,47.8095738],[10.1328009,47.8094903],[10.1329971,47.8094632],[10.1331254,47.809439],[10.1332946,47.8097114],[10.1331956,47.809982],[10.13368,47.8099541],[10.1340664,47.8098017],[10.1344176,47.8097204],[10.1346566,47.8096402],[10.1347042,47.8096535],[10.1356097,47.8096485],[10.1369119,47.8096304],[10.1375872,47.8096372],[10.1379981,47.8096648],[10.1379731,47.8099004],[10.1379023,47.8100656],[10.1378745,47.8101801],[10.1378633,47.8102876],[10.1378715,47.8103423],[10.1378622,47.8103903],[10.1377903,47.8105053],[10.1376512,47.8106461],[10.1375342,47.8107228],[10.1373965,47.8107767],[10.1370839,47.8109033],[10.1370057,47.8111897],[10.1369708,47.8114368],[10.1369185,47.8115218],[10.13682,47.8116577],[10.1366744,47.8118145],[10.1362465,47.8122279],[10.1358511,47.8125976],[10.1354408,47.8124408],[10.1354037,47.8124902],[10.1351188,47.8129022],[10.1348907,47.8133065],[10.1347022,47.8136627],[10.1346235,47.8137731],[10.1343759,47.8137801],[10.1342677,47.8137951],[10.1341583,47.8137551],[10.1339909,47.8137042],[10.1336828,47.8135796],[10.1334844,47.8138055],[10.1333542,47.813752],[10.1329229,47.81417],[10.1328445,47.8143009],[10.1330186,47.8143471],[10.1334799,47.8144909],[10.1338669,47.813918],[10.1347185,47.8142085],[10.1345488,47.8143587],[10.1343415,47.8144842],[10.1340961,47.8145849],[10.1338175,47.8147112],[10.1336567,47.8147974],[10.1334951,47.8151464],[10.1334234,47.815275],[10.1329493,47.8151635],[10.1326634,47.8151207],[10.1323879,47.8150916],[10.1322894,47.8152319],[10.1320582,47.8155039],[10.1323614,47.815551],[10.1327874,47.8156425],[10.1328722,47.8156418],[10.1332627,47.8156604],[10.1331951,47.8159604],[10.1331815,47.8162507],[10.1330253,47.8165379],[10.1328566,47.817017],[10.132703,47.8175669],[10.1326767,47.8176038],[10.1325864,47.8176549],[10.1325264,47.8177013],[10.1324764,47.8177429],[10.1324434,47.8179261],[10.1324221,47.8181753],[10.1324327,47.8183374],[10.1324369,47.81852],[10.1324148,47.818598],[10.1323657,47.8186716],[10.1322293,47.8187871],[10.1322164,47.8188147],[10.132241,47.8188556],[10.1323244,47.8189347],[10.1323831,47.8189821],[10.1323944,47.8190276],[10.1323905,47.8191533],[10.1323656,47.8192564],[10.1321657,47.8196994],[10.131994,47.8200688],[10.1318488,47.8203811],[10.1315854,47.8211606],[10.1313585,47.8220561],[10.1312129,47.8225054],[10.1305828,47.8225126],[10.1298681,47.8226084],[10.1291844,47.8226772],[10.1287302,47.8226933],[10.1283638,47.8226947],[10.127626,47.8226158],[10.1271615,47.8226386],[10.1267334,47.822611],[10.1261491,47.822621],[10.1257862,47.8227396],[10.125398,47.8228335],[10.1252609,47.8229291],[10.1252125,47.8230564],[10.1252247,47.8231041],[10.1251473,47.8232831],[10.1251332,47.8233997],[10.1250983,47.8235097],[10.124996,47.8236388],[10.1249416,47.8237718],[10.1249069,47.8238932],[10.1249376,47.8240053],[10.1246636,47.8243901],[10.1244243,47.8246937],[10.1243275,47.8247903],[10.1242167,47.8248689],[10.1241533,47.8249196],[10.1240222,47.8249982],[10.1240025,47.8254326],[10.1239302,47.8259768],[10.123969,47.8262551],[10.1239218,47.8264839],[10.1238838,47.826635],[10.1238151,47.826791],[10.1237054,47.8269175],[10.123635,47.8269819],[10.1235783,47.8270327],[10.1222947,47.8269691],[10.122342,47.8269992],[10.1223275,47.8271432],[10.1223114,47.827381],[10.1223106,47.8275385],[10.1223261,47.8276503],[10.1223444,47.8277279],[10.1222739,47.8277323],[10.1218649,47.8276837],[10.1213449,47.8276377],[10.1209541,47.8276178],[10.120676,47.8276269],[10.1203471,47.8276479],[10.120226,47.8279047],[10.1194244,47.8280824],[10.1188212,47.8287382],[10.1186436,47.8288767],[10.1183245,47.8292813],[10.1182582,47.8293778],[10.117938,47.829305],[10.1176408,47.8295997],[10.1174756,47.8298614],[10.1172778,47.830217],[10.1170824,47.8304995],[10.1167691,47.8310458],[10.1167205,47.8311832],[10.1166712,47.8312841],[10.1161893,47.8320828],[10.1159144,47.8324986],[10.1155534,47.8330314],[10.1153576,47.8332865],[10.115264,47.8333854],[10.1151172,47.8335283],[10.1148571,47.833809],[10.1145865,47.8340692],[10.1143397,47.8343386],[10.1140662,47.8346216],[10.1139856,47.8346771],[10.1137714,47.8348616],[10.1136177,47.8349998],[10.1135308,47.8350874],[10.1134775,47.8351449],[10.1134086,47.8352825],[10.1133037,47.8355117],[10.1132262,47.8357476],[10.1132227,47.8357707],[10.1132019,47.8359101],[10.1131779,47.836109],[10.1131435,47.8362645],[10.1131427,47.8364222],[10.1131083,47.8366007],[10.1130656,47.8366991],[10.1130197,47.836784],[10.1128296,47.8369935],[10.1126354,47.8372244],[10.1125093,47.8373989],[10.1124355,47.8374475],[10.1120255,47.8376928],[10.1117864,47.8378335],[10.1116558,47.8379103],[10.1115316,47.8379936],[10.1113986,47.8381476],[10.1113187,47.8382511],[10.1112618,47.8383041],[10.1112317,47.8383248],[10.111171,47.8383504],[10.1110802,47.8384036],[10.1110033,47.8384705],[10.1108996,47.838565],[10.1108769,47.8386199],[10.110848,47.8387184],[10.1108492,47.8387822],[10.1109124,47.8389212],[10.1109476,47.8389849],[10.1109383,47.8390443],[10.1109263,47.8391243],[10.1109031,47.8391679],[10.110847,47.8392598],[10.1108239,47.839301],[10.1108013,47.8393605],[10.1108018,47.8394016],[10.1107891,47.8394452],[10.1107662,47.8395001],[10.1107396,47.8395346],[10.1106861,47.839583],[10.110552,47.8396845],[10.1104988,47.8397536],[10.1104626,47.8398109],[10.1104335,47.8399003],[10.1103805,47.8399828],[10.1098771,47.8400983],[10.1097452,47.8401222],[10.1092708,47.8400076],[10.1091101,47.8401366],[10.10906,47.8401874],[10.1090173,47.8402699],[10.1089207,47.840378],[10.1088905,47.8404057],[10.108857,47.8404334],[10.1088164,47.8404404],[10.1087486,47.8404433],[10.1086158,47.8404215],[10.1084968,47.8404018],[10.1083706,47.8403711],[10.1081423,47.8403155],[10.1079846,47.8402886],[10.1079006,47.8402741],[10.1078187,47.8402497],[10.1077637,47.8402159],[10.1077051,47.8401614],[10.1076774,47.8401365],[10.1076265,47.8401232],[10.1075891,47.8401234],[10.1075649,47.8401053],[10.1075198,47.8400532],[10.1074823,47.8400352],[10.1074245,47.8400311],[10.1073501,47.8400454],[10.1069086,47.8402316],[10.1068103,47.8402484],[10.1066885,47.8402721],[10.1066277,47.8402955],[10.1066117,47.840319],[10.1062954,47.8403139],[10.1058499,47.8404659],[10.1054442,47.8405694],[10.1051812,47.8406766],[10.1050435,47.840776],[10.1048082,47.8409103],[10.1045257,47.8410792],[10.1043168,47.8411792],[10.1041515,47.8412353],[10.1040649,47.8415467],[10.1039582,47.8418465],[10.103781,47.8418252],[10.1036487,47.8418263],[10.1036047,47.8418381],[10.1035476,47.8418773],[10.1034945,47.8419486],[10.103431,47.842013],[10.1033874,47.8420477],[10.1032359,47.8421174],[10.1029596,47.8422429],[10.1027986,47.8423262],[10.1026686,47.8424733],[10.1025,47.8427441],[10.1022492,47.8431686],[10.1021197,47.8433455],[10.1024561,47.8435667],[10.1030396,47.8438545],[10.10364,47.8442221],[10.1038039,47.8442802],[10.1039299,47.8443043],[10.1040408,47.8443285],[10.1042073,47.8443387],[10.1042755,47.8443519],[10.1043339,47.8443994],[10.1044024,47.8444377],[10.1044642,47.8444646],[10.1045389,47.8444709],[10.1046511,47.8444769],[10.1047258,47.8444763],[10.1047939,47.8444917],[10.1048828,47.8445276],[10.1050235,47.8446179],[10.1051127,47.8446788],[10.1052121,47.8447305],[10.1055573,47.8448695],[10.1057073,47.8449094],[10.1057726,47.8449234],[10.1058505,47.8449403],[10.1059461,47.8449669],[10.1060869,47.8450663],[10.1062169,47.845127],[10.1063112,47.8453477],[10.1072111,47.8457563],[10.1080973,47.846133],[10.1087334,47.8463951],[10.1093048,47.8466576],[10.1094966,47.8467341],[10.1098157,47.8468808],[10.1099941,47.8470986],[10.109935,47.8471531],[10.1097644,47.8473143],[10.1095907,47.8474733],[10.1094531,47.8475703],[10.1093831,47.847617],[10.1093255,47.8476557],[10.1092455,47.8477478],[10.1092328,47.8478028],[10.1092102,47.8478668],[10.109198,47.8479469],[10.1091922,47.848004],[10.1091526,47.8480728],[10.1091462,47.8480912],[10.1091235,47.8481068],[10.1091159,47.8481119],[10.1090856,47.8481282],[10.1090419,47.8481445],[10.1090319,47.8481537],[10.1090024,47.8482178],[10.1089595,47.8483027],[10.1089207,47.8484058],[10.108891,47.8484609],[10.1088345,47.8485298],[10.1086873,47.8486543],[10.1084937,47.8488454],[10.1082222,47.8490645],[10.10813,47.8492296],[10.1080823,47.8493467],[10.1080609,47.8494703],[10.1080579,47.8496783],[10.1080609,47.8498382],[10.1080594,47.8499342],[10.1080813,47.8500319],[10.1080927,47.8500824],[10.1081076,47.8501623],[10.1081472,47.8504727],[10.1081592,47.8507467],[10.1081339,47.8510395],[10.1080855,47.8511701],[10.108034,47.8513121],[10.1079798,47.8515067],[10.1079434,47.8517425],[10.1079218,47.8518545],[10.1078679,47.8520607],[10.1077762,47.8522373],[10.1077177,47.8523703],[10.1076591,47.8525102],[10.1076178,47.8526614],[10.1075552,47.8527647],[10.1074724,47.8528613],[10.1072923,47.8530364],[10.1071587,47.8531541],[10.1071188,47.8531933],[10.1070622,47.8532486],[10.1068934,47.8532934],[10.1067474,47.8532786],[10.1065192,47.853244],[10.1062856,47.8531817],[10.1061349,47.8531122],[10.1057357,47.852983],[10.1054824,47.8528595],[10.1049406,47.8525556],[10.1045021,47.8523378],[10.1042211,47.8521778],[10.1039147,47.8519428],[10.1032866,47.8513859],[10.103214,47.8513042],[10.1031344,47.8512318],[10.1030744,47.8511045],[10.1030699,47.8510428],[10.1029962,47.8509109],[10.1029021,47.8507859],[10.1028284,47.8506586],[10.1027718,47.8505265],[10.1026555,47.8503012],[10.102513,47.8501242],[10.102371,47.8499655],[10.1023018,47.8498837],[10.1021117,47.849714],[10.1018976,47.8495056],[10.1016866,47.8492903],[10.1015936,47.8492156],[10.1014337,47.849016],[10.1012418,47.8487227],[10.1011285,47.8484814],[10.1010769,47.8482602],[10.100858,47.8479712],[10.1005985,47.8476808],[10.1002563,47.8473203],[10.1000135,47.8470299],[10.0998679,47.8468575],[10.0997882,47.8467531],[10.0997631,47.8466848],[10.0997656,47.8466208],[10.099753,47.846477],[10.0997507,47.8463514],[10.0997163,47.846121],[10.0996518,47.8459206],[10.0996138,47.8456832],[10.0995913,47.8455623],[10.0995665,47.8454964],[10.0994407,47.8452918],[10.0994462,47.8450861],[10.0990694,47.8450776],[10.0988794,47.8450927],[10.0987409,47.8451373],[10.0985936,47.8452548],[10.0985687,47.8452852],[10.0985446,47.8453147],[10.0984506,47.8454297],[10.0984406,47.8454366],[10.0988074,47.8455823],[10.0985193,47.8458198],[10.0985106,47.8459088],[10.0985287,47.845975],[10.0986582,47.8460105],[10.0987607,47.8460371],[10.0988596,47.846066],[10.0989489,47.8461246],[10.0990245,47.8461812],[10.099111,47.8462742],[10.0991572,47.8463926],[10.0991765,47.8465341],[10.0991585,47.8466644],[10.0988744,47.8467419],[10.098739,47.8467636],[10.0985495,47.8467993],[10.0984178,47.8468437],[10.0983353,47.8468663],[10.0982726,47.8468837],[10.0981554,47.8469137],[10.0981902,47.8469821],[10.0981978,47.8470732],[10.0981921,47.8471645],[10.0981453,47.8472197],[10.0981082,47.8472427],[10.098027,47.8472818],[10.0979427,47.847305],[10.0978512,47.84731],[10.0977359,47.8473152],[10.0976442,47.8473134],[10.0975868,47.8473364],[10.0975498,47.8473618],[10.0975164,47.8474007],[10.0974765,47.8474945],[10.0974712,47.8476155],[10.0974989,47.8476884],[10.0975886,47.8478295],[10.097603,47.8478979],[10.097597,47.8479778],[10.0975777,47.8480602],[10.097524,47.8481288],[10.0974771,47.8481679],[10.0973624,47.8482392],[10.0972646,47.8482921],[10.0971567,47.8483452],[10.0971061,47.8483728],[10.0970462,47.8482727],[10.0970988,47.8481627],[10.0971276,47.8480573],[10.0971431,47.8479726],[10.0971389,47.8479316],[10.0970779,47.8479255],[10.0969586,47.8479154],[10.0968611,47.8479071],[10.0961815,47.8478493],[10.09617,47.8477854],[10.0961656,47.8477283],[10.0961361,47.8476029],[10.0961422,47.8475594],[10.0961019,47.8474044],[10.0960898,47.8472993],[10.0960659,47.8471167],[10.0960518,47.8470641],[10.0960332,47.8469947],[10.0958189,47.8466052],[10.095574,47.8462344],[10.0955008,47.8461006],[10.0946008,47.846243],[10.0947135,47.8458767],[10.0948616,47.8453914],[10.0948943,47.8451305],[10.094743,47.8449463],[10.0945022,47.8446096],[10.0943845,47.8444184],[10.0943532,47.8443574],[10.0943189,47.8442909],[10.0941973,47.8440198],[10.0940597,47.8438265],[10.0931131,47.843808],[10.093101,47.8440781],[10.0930687,47.8443867],[10.0923896,47.8443943],[10.0928696,47.8454711],[10.092507,47.8454933],[10.092073,47.8455114],[10.0919611,47.8455142],[10.0919339,47.8455052],[10.0919067,47.8455008],[10.0920605,47.8456005],[10.092787,47.8460012],[10.0933285,47.8462709],[10.0934313,47.8463222],[10.0940216,47.8466482],[10.0942742,47.8467862],[10.094421,47.8468836],[10.094507,47.8469904],[10.0948407,47.847321],[10.0948822,47.8473619],[10.0949008,47.8473802],[10.0953608,47.8478609],[10.0956302,47.8481099],[10.0958274,47.8483139],[10.0956505,47.8482948],[10.0953209,47.8482611],[10.0950358,47.8482498],[10.0948805,47.8484682],[10.0947571,47.8487573],[10.0944697,47.8490107],[10.0945528,47.8491175],[10.0946353,47.8491946],[10.0947247,47.8492579],[10.0942183,47.8494653],[10.0945912,47.8498388],[10.0949161,47.8501325],[10.0949814,47.8502534],[10.0950265,47.850347],[10.0950578,47.8504565],[10.0950962,47.8510505],[10.0951115,47.8512835],[10.0986604,47.8513954],[10.0992649,47.8514094],[10.0993618,47.8520877],[10.0995182,47.8520941],[10.0995811,47.8523499],[10.0998481,47.8526117],[10.1002144,47.8525967],[10.1002963,47.8526331],[10.1005241,47.8526825],[10.1006666,47.8531048],[10.1002459,47.8531473],[10.1001661,47.8531552],[10.1000798,47.8531638],[10.0998966,47.8531805],[10.0996387,47.8532042],[10.0989874,47.8532908],[10.0987974,47.8533028],[10.0987091,47.8533077],[10.09837,47.8533729],[10.0979871,47.8534723],[10.0976181,47.8536107],[10.0972015,47.8537538],[10.0970087,47.853832],[10.0968394,47.853892],[10.0971406,47.8542223],[10.0976267,47.8547371],[10.0978015,47.8549444],[10.0979257,47.8551908],[10.0981103,47.8553708],[10.0982436,47.8554754],[10.0983482,47.8553951],[10.0989396,47.8550412],[10.099339,47.8548412],[10.0995959,47.8547169],[10.0996466,47.8546848],[10.0997107,47.8546298],[10.0997234,47.8545246],[10.0997735,47.8543942],[10.0998036,47.8543323],[10.0999315,47.85422],[10.1000837,47.8541213],[10.1004353,47.8539168],[10.1006687,47.8538063],[10.1009626,47.853618],[10.1011603,47.8537132],[10.1012559,47.8537838],[10.1013482,47.8538634],[10.1014335,47.8539113],[10.1015137,47.8539481],[10.101522,47.853952],[10.1016309,47.8539814],[10.1016077,47.8540477],[10.1016388,47.8541184],[10.1016938,47.854212],[10.1017898,47.8543189],[10.1018584,47.8544147],[10.1018964,47.8545152],[10.1019177,47.8546065],[10.101901,47.8546705],[10.1018847,47.8547345],[10.1018817,47.8547963],[10.101865,47.8548261],[10.1018179,47.8548948],[10.1017202,47.8549979],[10.1016663,47.8550392],[10.1016088,47.8550896],[10.1015821,47.8551423],[10.1015625,47.8552315],[10.1015731,47.8553023],[10.1015974,47.8553433],[10.101666,47.8554413],[10.1017981,47.8553974],[10.1019404,47.8553742],[10.1021104,47.855385],[10.102192,47.8554077],[10.1022738,47.8554485],[10.1022978,47.8554873],[10.1022949,47.855533],[10.1022751,47.8556107],[10.1022889,47.8556381],[10.1023331,47.8556562],[10.1023878,47.8556744],[10.1024895,47.8556923],[10.1025442,47.8557172],[10.1025956,47.8557719],[10.1025959,47.8558268],[10.1027628,47.8558925],[10.1029435,47.8559627],[10.1032712,47.8560378],[10.103526,47.856162],[10.1037875,47.8562016],[10.1039806,47.8562079],[10.1041778,47.8562146],[10.1043747,47.8562093],[10.1045139,47.8561905],[10.1047307,47.8561259],[10.1048901,47.856091],[10.1050257,47.8560793],[10.105087,47.8560881],[10.1051653,47.8561221],[10.1052573,47.8561584],[10.1054009,47.8562974],[10.1053139,47.8564553],[10.1052605,47.8565582],[10.1051767,47.8567048],[10.1051435,47.8568077],[10.1050872,47.8569953],[10.1050306,47.8571462],[10.1049837,47.8572356],[10.1049168,47.8573317],[10.1048636,47.8574987],[10.1049183,47.8575533],[10.1046816,47.8576775],[10.1046957,47.8577254],[10.1047572,47.857796],[10.1048393,47.8578506],[10.1049448,47.8579006],[10.1049928,47.8579484],[10.1050509,47.8580053],[10.105099,47.8580669],[10.1051918,47.858222],[10.1054083,47.8584067],[10.1055125,47.8585475],[10.1055108,47.8586229],[10.105478,47.8588654],[10.1054745,47.8590323],[10.1054427,47.8591491],[10.1054067,47.859218],[10.1053709,47.8592914],[10.1052237,47.8594069],[10.105043,47.8595273],[10.1048657,47.8596705],[10.1047586,47.8597492],[10.1047184,47.8597724],[10.1046543,47.859782],[10.1044268,47.8597748],[10.104121,47.8597523],[10.1039178,47.8597745],[10.1038236,47.859812],[10.1037163,47.859886],[10.1037717,47.859945],[10.1039336,47.8600693],[10.1039949,47.8601133],[10.1041193,47.8602026],[10.1042905,47.8603112],[10.1044718,47.8603618],[10.1046497,47.8604379],[10.104798,47.8605555],[10.1049659,47.8606569],[10.1050172,47.8608575],[10.1051158,47.8610373],[10.1052119,47.8612787],[10.1052546,47.8613811],[10.1052803,47.8614907],[10.1052858,47.8615337],[10.1051783,47.8618298],[10.1051116,47.8620635],[10.1050651,47.8623039],[10.1050706,47.8624066],[10.1050953,47.862459],[10.1052056,47.8625402],[10.1052872,47.8625579],[10.1054063,47.8625728],[10.1055185,47.8625902],[10.10557,47.8626195],[10.1056183,47.8626671],[10.10566,47.862717],[10.1056543,47.8627742],[10.1056217,47.8628407],[10.1055384,47.8629213],[10.1054313,47.863],[10.1053351,47.8631128],[10.1052395,47.8632621],[10.1050977,47.8634713],[10.1050498,47.8636272],[10.105062,47.8637459],[10.1051076,47.8638141],[10.1051701,47.8638913],[10.1053151,47.864018],[10.1054021,47.8641384],[10.1054068,47.8642091],[10.1054021,47.8643143],[10.1053461,47.8644016],[10.1052792,47.8644525],[10.1051513,47.8645108],[10.1048572,47.8645634],[10.1046278,47.864634],[10.1044624,47.8646857],[10.1043649,47.86473],[10.1042847,47.8647924],[10.104235,47.8648522],[10.1041854,47.8649212],[10.1041521,47.8649512],[10.1041215,47.8649537],[10.1040738,47.8649405],[10.1039948,47.8648863],[10.1039181,47.8647795],[10.1038238,47.8646432],[10.1037446,47.8645753],[10.1036144,47.8645125],[10.1034644,47.8644794],[10.1033355,47.8644783],[10.1032238,47.8644952],[10.10314,47.8645439],[10.1030769,47.8646153],[10.1030006,47.8647073],[10.1029728,47.8647579],[10.1029284,47.8648382],[10.1028349,47.864919],[10.1026409,47.8650647],[10.1024399,47.8652012],[10.1023876,47.8653022],[10.1023463,47.8655061],[10.1022049,47.8653632],[10.1021219,47.86527],[10.1020533,47.8652202],[10.1019711,47.8651706],[10.1019094,47.8651207],[10.1018773,47.8650319],[10.1018556,47.8649567],[10.1018244,47.8649181],[10.1017731,47.8648819],[10.101759,47.8648523],[10.1015098,47.8648206],[10.1012772,47.8647198],[10.1009308,47.8645261],[10.1007049,47.8644116],[10.100622,47.8643685],[10.1003245,47.8642137],[10.0998101,47.8639324],[10.0995497,47.8637975],[10.099286,47.8634936],[10.0990373,47.8632488],[10.0987382,47.8630434],[10.0981788,47.8627076],[10.0980913,47.8627449],[10.0979576,47.8626752],[10.0977157,47.8624374],[10.0976349,47.8624723],[10.0974882,47.8624324],[10.0972355,47.8623385],[10.0968498,47.8622184],[10.0964783,47.8621278],[10.0964369,47.8620939],[10.0963499,47.8619828],[10.096219,47.861881],[10.0959477,47.8617074],[10.0953074,47.8612324],[10.0952662,47.8612052],[10.0951941,47.86116],[10.0951362,47.8611399],[10.0950445,47.8611313],[10.0949801,47.8611432],[10.0949195,47.8611733],[10.0948382,47.8611898],[10.09476,47.8611697],[10.0946784,47.8611634],[10.0946201,47.8611296],[10.0945712,47.8610454],[10.0945322,47.8609269],[10.0945043,47.8608814],[10.094446,47.860843],[10.0944119,47.860834],[10.0943343,47.8608666],[10.0942937,47.860876],[10.0942492,47.8608512],[10.0941739,47.8608036],[10.0941196,47.860804],[10.0940892,47.8608224],[10.0940316,47.8608297],[10.093916,47.8608099],[10.0938579,47.8607829],[10.0938542,47.8607646],[10.0939113,47.8607278],[10.0939346,47.860698],[10.093924,47.8606706],[10.0938099,47.8605502],[10.0938132,47.8605251],[10.0938162,47.8605047],[10.0937886,47.8604752],[10.0937373,47.8604526],[10.0936761,47.860453],[10.0936421,47.8604464],[10.0936248,47.8604236],[10.0936381,47.8604007],[10.0936172,47.8603665],[10.0935695,47.8603555],[10.0935253,47.860349],[10.093518,47.8603193],[10.0935279,47.8602964],[10.0935615,47.8602802],[10.0936393,47.8602638],[10.0936663,47.8602476],[10.0936586,47.8601951],[10.093634,47.8601359],[10.093596,47.8600996],[10.0935551,47.8600908],[10.093447,47.8601189],[10.0934062,47.8601191],[10.0933957,47.8600895],[10.0934156,47.860062],[10.0934521,47.860007],[10.0934577,47.8599362],[10.0934504,47.8598951],[10.0932377,47.8597549],[10.0931448,47.8596734],[10.0930218,47.8596239],[10.0929194,47.8595835],[10.0928752,47.8595883],[10.0928349,47.8596183],[10.0928562,47.8596638],[10.0928536,47.8597118],[10.0928094,47.8597143],[10.0927382,47.859717],[10.0926978,47.8597425],[10.0926645,47.859786],[10.0926308,47.8597977],[10.0925898,47.8597819],[10.0925652,47.8597295],[10.0925407,47.859675],[10.0925062,47.8596523],[10.0924522,47.8596573],[10.0924255,47.8596917],[10.0923786,47.8597309],[10.0923516,47.8597378],[10.0923175,47.8597289],[10.0922424,47.8596951],[10.0921845,47.8596865],[10.0921029,47.8596801],[10.0920685,47.8596575],[10.0920682,47.8596393],[10.0920986,47.8596276],[10.0921422,47.8595976],[10.0921656,47.8595633],[10.0921514,47.8595269],[10.0920624,47.8594818],[10.0920081,47.8594729],[10.0919266,47.8594781],[10.0918589,47.8594877],[10.0917981,47.8595131],[10.0917443,47.8595363],[10.0916867,47.8595459],[10.0916357,47.8595303],[10.0915501,47.8594964],[10.0915025,47.8594899],[10.0914349,47.8595109],[10.0913971,47.8594769],[10.091332,47.8594362],[10.0912779,47.8594526],[10.0912303,47.8594437],[10.0912298,47.8594163],[10.0912022,47.8593824],[10.0911374,47.8593622],[10.091073,47.8593694],[10.0910289,47.8593652],[10.0909843,47.8593358],[10.0909739,47.8593244],[10.0909836,47.8592969],[10.091,47.8592649],[10.090976,47.8592421],[10.0909042,47.859213],[10.0908257,47.8591884],[10.0907507,47.8591592],[10.0906688,47.8591278],[10.0906111,47.8591349],[10.0905871,47.8591123],[10.090549,47.8590624],[10.0904905,47.8590239],[10.0903952,47.8589994],[10.0903342,47.8589998],[10.0902898,47.858991],[10.0902519,47.8589546],[10.0902144,47.858932],[10.0901292,47.8589099],[10.0900978,47.858869],[10.0901112,47.8588483],[10.0901448,47.8588343],[10.0901718,47.8588136],[10.0901474,47.8587704],[10.0901301,47.8587477],[10.0900891,47.8587342],[10.0899869,47.8587166],[10.0899494,47.8587055],[10.0899185,47.8586828],[10.0899146,47.8586486],[10.0899041,47.8586213],[10.0898732,47.8585987],[10.0898052,47.85859],[10.0897507,47.858579],[10.0897333,47.8585539],[10.0897464,47.8585219],[10.089732,47.8584717],[10.0896538,47.8584631],[10.0895923,47.8584338],[10.0896391,47.858397],[10.0896795,47.8583715],[10.0896894,47.8583442],[10.0896784,47.8582985],[10.0896916,47.8582733],[10.0897216,47.8582434],[10.0897313,47.8582022],[10.0896667,47.8581981],[10.0895442,47.8581784],[10.089408,47.8581495],[10.0893198,47.8581502],[10.089235,47.8581599],[10.0891738,47.8581443],[10.0890819,47.8581289],[10.0890002,47.8581088],[10.088922,47.8581071],[10.0888029,47.8580896],[10.0887518,47.858083],[10.0886905,47.8580674],[10.0886358,47.8580427],[10.0885978,47.8579882],[10.0885426,47.857936],[10.0884843,47.8578975],[10.0883991,47.8578799],[10.0883074,47.8578713],[10.0882331,47.8579015],[10.0881555,47.8579271],[10.0880909,47.8579161],[10.0880122,47.85788],[10.0879303,47.857851],[10.0878792,47.8578262],[10.0878613,47.8577851],[10.0878229,47.8577077],[10.0877884,47.8576669],[10.0877302,47.8576399],[10.0876927,47.8576241],[10.0875727,47.8575563],[10.0874977,47.8575227],[10.0873518,47.8575304],[10.0872367,47.8575426],[10.087189,47.8575384],[10.0870762,47.857491],[10.0869457,47.8573915],[10.0865154,47.8572139],[10.0863281,47.857174],[10.0861272,47.8571296],[10.0858408,47.8570402],[10.0856189,47.856964],[10.0854793,47.8569307],[10.0851323,47.8568849],[10.0850644,47.8568853],[10.0850273,47.8568925],[10.0849598,47.856925],[10.0848888,47.8569321],[10.0848379,47.8569325],[10.0847866,47.85691],[10.0846943,47.8568673],[10.0844722,47.8567682],[10.0843325,47.8567325],[10.0842742,47.8567078],[10.0842295,47.8566739],[10.0842122,47.8566374],[10.0841806,47.8565714],[10.0841362,47.8565557],[10.0840444,47.8565449],[10.0839966,47.8565224],[10.0840466,47.8564672],[10.0840565,47.8564489],[10.0839638,47.856381],[10.0838373,47.8563156],[10.0837514,47.856259],[10.083704,47.8562503],[10.0836159,47.8562622],[10.0835176,47.856272],[10.08348,47.8562609],[10.0834387,47.8562269],[10.0834418,47.8561972],[10.0834618,47.8561742],[10.0834712,47.8561171],[10.0834536,47.8560898],[10.0833512,47.8560425],[10.0833099,47.8560107],[10.0832644,47.855922],[10.0832366,47.8558742],[10.0831601,47.8557674],[10.0831177,47.8556421],[10.0829362,47.8558567],[10.0827018,47.8561992],[10.0823965,47.8567619],[10.0823442,47.8568581],[10.0821504,47.8571911],[10.0818541,47.8576803],[10.0815775,47.8581237],[10.0813158,47.8584755],[10.0810805,47.85877],[10.0810284,47.8588825],[10.0810261,47.8589077],[10.0810142,47.8590357],[10.0809923,47.8593192],[10.0809869,47.8593977],[10.0805654,47.8599887],[10.0801742,47.8605618],[10.0805753,47.8607482],[10.0807122,47.8607972],[10.0810061,47.8608973],[10.0813482,47.8610267],[10.0818789,47.8612548],[10.0808917,47.8619967],[10.0805766,47.8623794],[10.0800602,47.8629769],[10.0799877,47.8630509],[10.0798875,47.8631115],[10.0791696,47.8634309],[10.0790044,47.8644232],[10.0791307,47.8644467],[10.0794406,47.8645864],[10.0798179,47.8648211],[10.0800625,47.8650575],[10.0802142,47.865254],[10.0802625,47.8653973],[10.0798034,47.865622],[10.0793737,47.865801],[10.0785145,47.866109],[10.0779001,47.8664336],[10.0778639,47.8669427],[10.0778325,47.8670299],[10.0777861,47.8670761],[10.0776533,47.8671827],[10.0774397,47.8673246],[10.0772234,47.8674757],[10.0771013,47.8676005],[10.0770327,47.8676973],[10.0770003,47.8677569],[10.0769931,47.8678393],[10.0772526,47.8677811],[10.0775532,47.8677202],[10.0778754,47.8676979],[10.0780694,47.8677089],[10.0783325,47.8677604],[10.0787252,47.8678238],[10.0788243,47.8678431],[10.0790314,47.8679591],[10.079301,47.868113],[10.0796741,47.868325],[10.0798145,47.8684829],[10.0800332,47.8687606],[10.0803905,47.869128],[10.080647,47.8694236],[10.0807717,47.8696228],[10.0807991,47.8697479],[10.0807639,47.869849],[10.081144,47.8698493],[10.0822502,47.8698502],[10.0823161,47.8698499],[10.0823784,47.869927],[10.0829393,47.8697477],[10.0834329,47.8696077],[10.0838786,47.8694565],[10.0841694,47.869368],[10.0843881,47.8692525],[10.084499,47.8691809],[10.0846125,47.8690525],[10.0847662,47.8689079],[10.0849637,47.8687334],[10.0851104,47.8685773],[10.0852436,47.8684078],[10.0853731,47.8682245],[10.0854231,47.8681694],[10.0855069,47.8681073],[10.0856383,47.8680426],[10.0857767,47.8679984],[10.0860336,47.8679145],[10.0863337,47.8677962],[10.0865835,47.8676965],[10.0868505,47.8676241],[10.0870335,47.8675932],[10.0870407,47.8676273],[10.0873372,47.8674817],[10.087655,47.8673883],[10.0878578,47.8673369],[10.0882615,47.8673113],[10.0887496,47.8672487],[10.0896261,47.8672678],[10.0908224,47.8673144],[10.0913324,47.8673497],[10.0914722,47.8673784],[10.0915509,47.8674098],[10.09165,47.8674524],[10.0918865,47.8675739],[10.0923497,47.8678694],[10.0927445,47.8681152],[10.0930228,47.8683048],[10.093254,47.8685153],[10.0935842,47.868766],[10.0937974,47.8689287],[10.0939977,47.8691165],[10.0942212,47.8692859],[10.0947246,47.8695288],[10.095017,47.8697502],[10.0952784,47.8699444],[10.0955818,47.8702182],[10.0959823,47.8707991],[10.0961306,47.8709371],[10.0961651,47.8709688],[10.0962129,47.8709799],[10.0962501,47.8709796],[10.0963956,47.8709444],[10.096477,47.8709347],[10.0965212,47.8709367],[10.0965725,47.8709546],[10.0966412,47.8710043],[10.0966696,47.8710702],[10.0966968,47.8710859],[10.0967479,47.8710856],[10.0967919,47.8710807],[10.096833,47.8710942],[10.096847,47.8711237],[10.0968682,47.8711737],[10.0968858,47.8712078],[10.096913,47.8712122],[10.0969709,47.8712231],[10.0970531,47.8712567],[10.0971118,47.8713179],[10.0971294,47.8713566],[10.0971368,47.8713907],[10.0971339,47.8714136],[10.0971377,47.8714477],[10.0971654,47.8714727],[10.097183,47.8715136],[10.0971671,47.871566],[10.0971742,47.8715933],[10.0972053,47.8716205],[10.0972602,47.8716543],[10.0972743,47.8716953],[10.0972782,47.8717158],[10.0972723,47.8717729],[10.0972897,47.8718046],[10.0973278,47.8718385],[10.097342,47.8718704],[10.09736,47.8719409],[10.0973707,47.871975],[10.097395,47.8719931],[10.0974497,47.872011],[10.0974936,47.8720083],[10.0975211,47.8720241],[10.0975488,47.8720536],[10.0975766,47.8720944],[10.0976177,47.8721192],[10.0976967,47.8721643],[10.0978063,47.872225],[10.0978445,47.8722659],[10.0978827,47.8723157],[10.0979276,47.8723633],[10.0979967,47.8724336],[10.0973482,47.8730421],[10.09741,47.8732992],[10.0975422,47.8736744],[10.098296,47.8740637],[10.0987252,47.8743411],[10.0983795,47.8745875],[10.0979297,47.8748568],[10.0978029,47.8750174],[10.09779,47.8755656],[10.0978672,47.8760263],[10.0979352,47.8762817],[10.0980131,47.8765233],[10.0981008,47.8767168],[10.0981486,47.8767326],[10.0982743,47.8767455],[10.0984271,47.8767446],[10.0984984,47.8767442],[10.0986548,47.8767523],[10.0987124,47.8767428],[10.0988203,47.8766942],[10.098871,47.8766825],[10.0990105,47.876693],[10.0991299,47.876722],[10.099208,47.8767352],[10.0992997,47.8767255],[10.0994179,47.8766906],[10.0995397,47.8766465],[10.0996071,47.8766186],[10.099682,47.8766159],[10.0997431,47.8766246],[10.0997907,47.8766335],[10.0998347,47.8766149],[10.0998786,47.8765986],[10.0999874,47.8766072],[10.1001166,47.8766223],[10.1001641,47.876622],[10.1002385,47.8765942],[10.1003595,47.876509],[10.1004273,47.876488],[10.1004651,47.8764865],[10.1004985,47.8764853],[10.1005464,47.8765101],[10.1005878,47.87656],[10.1006188,47.8765873],[10.1006631,47.8765961],[10.1007141,47.8765981],[10.1007621,47.8766321],[10.1008134,47.876673],[10.1008612,47.8766794],[10.1009223,47.8766882],[10.1009841,47.8767289],[10.1010285,47.8767493],[10.1010797,47.8767626],[10.1011339,47.8767576],[10.1012318,47.8767206],[10.1013805,47.8766534],[10.1014211,47.8766372],[10.1015025,47.8766458],[10.1016115,47.8766634],[10.1016795,47.8766676],[10.1017437,47.8766512],[10.1019028,47.8766068],[10.1020318,47.8766015],[10.1020828,47.8766036],[10.1021471,47.876587],[10.1021914,47.8765914],[10.1022461,47.8766321],[10.1022804,47.8766593],[10.1023416,47.8766636],[10.1023892,47.8766541],[10.1024334,47.8766789],[10.1025365,47.8767583],[10.1025739,47.8767649],[10.1026214,47.8767576],[10.1026587,47.8767597],[10.1027067,47.8767891],[10.1028094,47.8768593],[10.1028401,47.876866],[10.1028876,47.8768543],[10.1029348,47.8768311],[10.1029411,47.8767991],[10.1029509,47.8767648],[10.1030015,47.876744],[10.103076,47.8767299],[10.1031411,47.8767637],[10.1032607,47.8768223],[10.1032914,47.8768312],[10.1033292,47.8768607],[10.1033677,47.8769472],[10.1034054,47.8769743],[10.1034632,47.8769809],[10.1035347,47.8769896],[10.1035963,47.8770327],[10.1036579,47.8770756],[10.1036954,47.8770845],[10.1037269,47.8771345],[10.1037712,47.8771481],[10.1038424,47.8771476],[10.1039306,47.8771425],[10.103958,47.877156],[10.1040058,47.8771786],[10.10406,47.8771668],[10.1040973,47.8771666],[10.1041282,47.8771892],[10.1041552,47.8772259],[10.1041767,47.8772551],[10.1042211,47.8772754],[10.1042755,47.8772819],[10.1043399,47.877277],[10.104384,47.8772629],[10.1044141,47.8772376],[10.1044447,47.8772375],[10.1044857,47.87726],[10.10452,47.8772827],[10.1045609,47.8772915],[10.1046017,47.8772914],[10.1046391,47.8772911],[10.1046768,47.8773137],[10.1047281,47.8773568],[10.1047592,47.8773908],[10.1051991,47.8775228],[10.1055566,47.8775961],[10.1059823,47.8776687],[10.1061567,47.8777613],[10.1062628,47.8778292],[10.1063966,47.8779243],[10.1069798,47.8781101],[10.1070038,47.8781822],[10.107111,47.8785045],[10.1070646,47.8788541],[10.1070121,47.87898],[10.1070017,47.8792221],[10.1069524,47.8795992],[10.1068787,47.8799217],[10.1068448,47.8799219],[10.1067326,47.8799226],[10.1066476,47.8799162],[10.1068544,47.8803785],[10.1065018,47.8804264],[10.10638,47.8804568],[10.1064156,47.880589],[10.1064463,47.8808354],[10.1065451,47.8811112],[10.1065674,47.8812527],[10.1065442,47.881303],[10.1065172,47.8813169],[10.1064497,47.8813378],[10.1063447,47.8813613],[10.1062192,47.8813849],[10.106094,47.8814154],[10.1058747,47.8815172],[10.1057266,47.8816163],[10.10567,47.8816966],[10.1056678,47.8817903],[10.1057126,47.8818402],[10.1057881,47.8818991],[10.1058876,47.8819715],[10.1059769,47.8820464],[10.106015,47.8821033],[10.1060328,47.8821602],[10.1059964,47.8822358],[10.1059228,47.8823139],[10.1058631,47.8824125],[10.1058711,47.8825129],[10.1059131,47.8825856],[10.1059921,47.8826651],[10.1061674,47.8828148],[10.106384,47.8830052],[10.1064772,47.8831165],[10.1063721,47.8831355],[10.1062939,47.8831313],[10.1061583,47.8831391],[10.1060973,47.8831601],[10.1060263,47.8831786],[10.1059516,47.8831906],[10.1058801,47.8831797],[10.1057472,47.8831393],[10.1056757,47.8831261],[10.1056248,47.8831332],[10.1054929,47.8831797],[10.1053982,47.8832077],[10.1051613,47.8832549],[10.1049882,47.8832719],[10.1048687,47.8832247],[10.1047248,47.883125],[10.1044321,47.8828506],[10.104121,47.8829393],[10.1036415,47.8831523],[10.1030035,47.8834347],[10.1028246,47.8835295],[10.1026021,47.8836519],[10.1024306,47.8837718],[10.1022695,47.8839075],[10.1020657,47.884169],[10.1019324,47.884357],[10.1018302,47.8843418],[10.1017246,47.8843104],[10.1015706,47.8842223],[10.1012864,47.8840482],[10.1010906,47.8838896],[10.1008404,47.8837153],[10.1006968,47.8836545],[10.1004752,47.8835895],[10.1000561,47.8834917],[10.0997228,47.8834595],[10.0995121,47.8834608],[10.0993222,47.8834825],[10.0992208,47.8835128],[10.0991028,47.8835751],[10.0990195,47.8836807],[10.0989734,47.8838066],[10.0989496,47.8840647],[10.0989079,47.88425],[10.0988755,47.8843507],[10.0988348,47.8843622],[10.0987128,47.884379],[10.0984824,47.8844193],[10.0983533,47.8844268],[10.0982444,47.8844116],[10.0979951,47.8843057],[10.0978007,47.8842453],[10.0976478,47.8842439],[10.0973334,47.8843349],[10.0971003,47.8844391],[10.096935,47.8845223],[10.0965993,47.8845792],[10.0963585,47.8846012],[10.0961579,47.8845773],[10.0957121,47.8845138],[10.0956407,47.8847368],[10.0955965,47.8848902],[10.0959034,47.8849933],[10.0962248,47.8851467],[10.0965388,47.8852728],[10.0968935,47.8853802],[10.0972069,47.8854537],[10.0976596,47.88554],[10.0981616,47.8856647],[10.0984631,47.8856882],[10.0988652,47.8857931],[10.0991724,47.8859193],[10.0993195,47.8859891],[10.0994746,47.8861617],[10.0996574,47.8863798],[10.0997928,47.886596],[10.0999326,47.8868874],[10.1001369,47.8871945],[10.100268,47.8873445],[10.1004158,47.8874691],[10.1005829,47.8875297],[10.1007869,47.887556],[10.1011281,47.8871542],[10.1011841,47.887178],[10.1013391,47.8871736],[10.1014307,47.887189],[10.1014889,47.8872206],[10.1015886,47.8873091],[10.1016577,47.8874022],[10.101793,47.8876138],[10.1019359,47.887887],[10.1020332,47.88806],[10.1022347,47.8881502],[10.1023894,47.8882816],[10.1026058,47.8884698],[10.1027882,47.8886376],[10.1028719,47.8888016],[10.1031424,47.8889689],[10.1032188,47.8890896],[10.1032129,47.8891695],[10.1031592,47.8892064],[10.103106,47.8892957],[10.1031385,47.8894417],[10.1031261,47.889524],[10.1031036,47.8896292],[10.1031848,47.8898685],[10.1031956,47.8901607],[10.1032061,47.8904393],[10.1034462,47.8906159],[10.103505,47.8906908],[10.1034835,47.89075],[10.1035093,47.8907617],[10.1035757,47.8908959],[10.1036326,47.8910875],[10.1038066,47.8913924],[10.1039596,47.8916906],[10.1039881,47.8917726],[10.1039586,47.8918596],[10.103941,47.8920675],[10.1039505,47.8922684],[10.1040186,47.8925397],[10.1040931,47.8927722],[10.104125,47.8928749],[10.1041407,47.8930345],[10.1041471,47.8932515],[10.1041698,47.8934272],[10.1041416,47.8935986],[10.1040765,47.8938228],[10.1039279,47.8941364],[10.103761,47.8943682],[10.1034569,47.8947377],[10.1032988,47.8948528],[10.1030857,47.8949182],[10.1029888,47.8950422],[10.1028586,47.8952097],[10.1027725,47.8953746],[10.1027479,47.895578],[10.1027302,47.8960257],[10.1027512,47.8964397],[10.1027399,47.8965887],[10.1026845,47.8967495],[10.1026227,47.8969493],[10.1024809,47.8972389],[10.1021047,47.8977708],[10.1017488,47.8982978],[10.101616,47.8985164],[10.1016482,47.8986148],[10.1018145,47.8988336],[10.101909,47.89903],[10.1019058,47.8991274],[10.1019019,47.8992454],[10.1018976,47.8996487],[10.1019255,47.8999212],[10.1019901,47.900119],[10.1022074,47.9005265],[10.1018613,47.9012919],[10.1018193,47.9018243],[10.101537,47.9022191],[10.101577,47.9027896],[10.1019125,47.9032198],[10.101749,47.903767],[10.1019693,47.9044963],[10.101631,47.9056967],[10.1046643,47.9059575],[10.1048175,47.9059787],[10.104352,47.9067307],[10.1040744,47.907394],[10.1039356,47.9078775],[10.1038705,47.9083284],[10.1039036,47.908769],[10.1048708,47.9092844],[10.1053151,47.9094395],[10.1059946,47.9096747],[10.1077199,47.9101137],[10.1104057,47.9105996],[10.1102168,47.9113569],[10.1101023,47.9117886],[10.1097493,47.912736],[10.1086767,47.9150619],[10.1085721,47.9155611],[10.1098553,47.9157257],[10.1109838,47.9159239],[10.1125146,47.9165273],[10.1122931,47.9167134],[10.1116401,47.9171574],[10.110554,47.9177294],[10.110233,47.9178727],[10.110316,47.9179726],[10.1104366,47.9180907],[10.1097578,47.9184035],[10.1093292,47.918601],[10.1092121,47.9186498],[10.1092287,47.9188318],[10.1092592,47.9191203],[10.1082894,47.9193698],[10.1075371,47.9196675],[10.106848,47.9200745],[10.1063095,47.9205252],[10.1057357,47.9211418],[10.1053372,47.9218454],[10.1052022,47.9222013],[10.1050695,47.9226664],[10.1050085,47.9234131],[10.1051763,47.9242999],[10.1058986,47.9254822],[10.1069564,47.9268393],[10.1081784,47.9284974],[10.1082598,47.928734],[10.1082659,47.9289533],[10.1082612,47.9292573],[10.1081131,47.93059],[10.1081086,47.9308207],[10.1081563,47.9310646],[10.1082842,47.931264],[10.1084444,47.9314035],[10.1087696,47.9316187],[10.1098122,47.9323337],[10.1107221,47.9331785],[10.1110338,47.9336225],[10.1112715,47.9342755],[10.1112579,47.9349321],[10.1109649,47.9356432],[10.1107947,47.9360032],[10.1105284,47.9363356],[10.1103939,47.9364937],[10.1099265,47.9370435],[10.1097114,47.9372966],[10.1094573,47.9376146],[10.1092664,47.9379551],[10.1088295,47.9386381],[10.1086385,47.9387663],[10.1083288,47.9389494],[10.1081826,47.9390359],[10.1073216,47.9395446],[10.1070034,47.9397116],[10.1068435,47.939775],[10.1063128,47.9399849],[10.1052583,47.9402949],[10.1035251,47.9407544],[10.1013619,47.9412983],[10.1003455,47.941562],[10.1002821,47.9415784],[10.1001992,47.9415961],[10.1001163,47.9416138],[10.1000134,47.9416434],[10.0994844,47.9417961],[10.0983549,47.9422293],[10.0982365,47.9422893],[10.0961169,47.9433313],[10.0950434,47.943931],[10.0941117,47.9445023],[10.0924347,47.9456469],[10.0902139,47.9473557],[10.0894651,47.9480911],[10.0884143,47.9492582],[10.0874798,47.950457],[10.0869126,47.9514053],[10.0863866,47.9523803],[10.0858906,47.9533883],[10.0855051,47.9543477],[10.0852415,47.9551168],[10.0850903,47.9557252],[10.0849444,47.9566091],[10.0848271,47.9574042],[10.084774,47.9579841],[10.08478,47.9595339],[10.0848569,47.9603984],[10.0849173,47.9607211],[10.0849796,47.9610539],[10.0852083,47.9620288],[10.0858357,47.9640907],[10.0864033,47.9654076],[10.0864327,47.9654919],[10.0867745,47.9664784],[10.086918,47.9668693],[10.0871113,47.9674497],[10.0872657,47.9677353],[10.0876879,47.9683642],[10.088252,47.9690667],[10.0888569,47.9696272],[10.0896962,47.9702875],[10.0903563,47.9707447],[10.0911081,47.9712232],[10.0922279,47.9718498],[10.0938983,47.9724774],[10.0952723,47.9728618],[10.0971253,47.9731923],[10.0985143,47.9733824],[10.1014491,47.9737539],[10.1058937,47.9744141],[10.1073343,47.9738734],[10.1077507,47.9743773],[10.10799,47.9745618],[10.1081022,47.9746273],[10.1083725,47.9747285],[10.1093722,47.974896],[10.109712,47.9749488],[10.1102227,47.975029],[10.1115873,47.9752357],[10.1125282,47.9752854],[10.1128828,47.9752876],[10.1134467,47.9752945],[10.1141567,47.9755966],[10.1148674,47.9755829],[10.1154623,47.9758849],[10.1157384,47.9761342],[10.1160036,47.9763763],[10.1158435,47.9767046],[10.1154396,47.9776236],[10.1154054,47.9782434],[10.1148282,47.9793629],[10.1154497,47.9806264],[10.1155709,47.9808815],[10.1155169,47.9810887],[10.1156145,47.9813899],[10.1156393,47.9821178],[10.1156234,47.9826122],[10.1156268,47.9829769],[10.115616,47.9830424],[10.1156777,47.9831932],[10.115775,47.9835138],[10.1157598,47.9845032],[10.1158574,47.9848341],[10.1159164,47.9851285],[10.1161177,47.9858043],[10.1160442,47.986122],[10.1157073,47.9870439],[10.1151568,47.9880315],[10.1150165,47.9882831],[10.1150011,47.988929],[10.1153746,47.9893383],[10.1156321,47.9899594],[10.1165241,47.9913157],[10.1169382,47.9917845],[10.1170047,47.9919314],[10.11796,47.9925891],[10.1182254,47.9929046],[10.1185457,47.9936182],[10.1189679,47.9942562],[10.1193658,47.9945824],[10.1195032,47.9948007],[10.1195884,47.994867],[10.1196355,47.9949038],[10.119889,47.9951207],[10.1202318,47.9953287],[10.1206801,47.99559],[10.120774,47.9957068],[10.1208953,47.9958574],[10.1210099,47.9960001],[10.1213341,47.996294],[10.1214349,47.9963855],[10.1215815,47.996647],[10.121657,47.9969146],[10.1216522,47.9969707],[10.121629,47.9972364],[10.1216109,47.9974444],[10.121514,47.997886],[10.1214107,47.9983578],[10.121223,47.9986104],[10.1210276,47.9988736],[10.1209225,47.9989587],[10.1207917,47.9990648],[10.1207897,47.9991112],[10.1207661,47.9996686],[10.1209221,48.0004928],[10.1209715,48.0007645],[10.1209414,48.0011328],[10.120775,48.001493],[10.120614,48.0016132],[10.1205268,48.0016756],[10.1203373,48.001741],[10.1201726,48.0018498],[10.1201086,48.0020538],[10.1199899,48.0022467],[10.1197496,48.0026624],[10.1194469,48.003193],[10.1194144,48.0033141],[10.1194057,48.0033464],[10.119409,48.0035134],[10.1194719,48.0037688],[10.119499,48.0038293],[10.1196677,48.0042063],[10.1198491,48.0045957],[10.1203165,48.0051727],[10.1206271,48.0053807],[10.1211527,48.0056143],[10.1223248,48.0060212],[10.1234926,48.0063573],[10.1237565,48.0064557],[10.1243353,48.006891],[10.1244625,48.0069868],[10.1245383,48.0070838],[10.1255047,48.0087273],[10.1253538,48.0090582],[10.1252404,48.0093061],[10.1251801,48.0094381],[10.1251056,48.0098576],[10.1250575,48.0100427],[10.1250968,48.0101669],[10.1253356,48.0105182],[10.1259674,48.011046],[10.1260759,48.0111374],[10.1263312,48.0112595],[10.1264453,48.0113139],[10.1275146,48.0118338],[10.1286042,48.0123722],[10.128983,48.0128093],[10.1292903,48.0129484],[10.1294091,48.0130213],[10.1302495,48.0135378],[10.1311231,48.0140984],[10.1322921,48.0149393],[10.132919,48.0153328],[10.133188,48.0156057],[10.1336853,48.0161101],[10.133839,48.0162661],[10.1349158,48.0173579],[10.1349165,48.0174116],[10.1349184,48.0175729],[10.1349198,48.0176773],[10.1349028,48.0177611],[10.13458,48.0182617],[10.1342132,48.0188467],[10.1341979,48.0198983],[10.1342086,48.0200536],[10.134237,48.0210216],[10.1344322,48.02148],[10.1344763,48.0215834],[10.1348019,48.0220723],[10.1350426,48.0222514],[10.1351816,48.0223335],[10.135276,48.0223843],[10.1356064,48.0225095],[10.1359455,48.0226379],[10.1360677,48.0227606],[10.1360837,48.0228495],[10.1361204,48.0230551],[10.135924,48.0233394],[10.1355448,48.0238908],[10.1354267,48.0241959],[10.1350719,48.0245761],[10.1349753,48.0246319],[10.1338516,48.0251884],[10.1331806,48.0255279],[10.1331235,48.0255477],[10.1330755,48.0255643],[10.1326122,48.0259732],[10.1323593,48.0261965],[10.1320444,48.0264793],[10.1318603,48.0266473],[10.1316003,48.0268774],[10.1315458,48.0269273],[10.1314953,48.0269751],[10.1313893,48.0270755],[10.131359,48.0271044],[10.1313218,48.0274516],[10.1312179,48.02771],[10.1310566,48.02783],[10.1307381,48.0280669],[10.1305232,48.0285218],[10.130259,48.0288708],[10.1301939,48.0292275],[10.1300594,48.0295251],[10.129903,48.0297097],[10.1298081,48.0298217],[10.1294254,48.0303858],[10.1292829,48.0306346],[10.1284193,48.0320491],[10.1281896,48.0325157],[10.1280195,48.032962],[10.1280475,48.0333161],[10.1281412,48.0336229],[10.1283767,48.0340497],[10.1287973,48.0345337],[10.1289907,48.0347563],[10.1290406,48.0348099],[10.1292315,48.0349573],[10.1295523,48.0352051],[10.1299766,48.035542],[10.1300958,48.0356445],[10.1302546,48.035742],[10.1304109,48.0358377],[10.1307244,48.03603],[10.1307857,48.0360744],[10.1311859,48.0363636],[10.1313233,48.036463],[10.1317124,48.0367443],[10.1318853,48.0368707],[10.1320007,48.0369553],[10.132116,48.0370397],[10.1322664,48.0371499],[10.1324284,48.0372683],[10.1326956,48.0374665],[10.1327183,48.0375089],[10.132807,48.0376738],[10.1329432,48.0379526],[10.1329989,48.0380622],[10.1334449,48.0386422],[10.1335364,48.0387612],[10.1335983,48.0388126],[10.1338236,48.0389997],[10.1338999,48.0390635],[10.1346599,48.0396977],[10.134865,48.0401018],[10.1350786,48.0405226],[10.1352007,48.0406892],[10.1356421,48.041319],[10.1357939,48.0416484],[10.1358628,48.0417979],[10.135946,48.041966],[10.1358527,48.0424643],[10.135721,48.0428449],[10.1357427,48.0431478],[10.1359324,48.0435465],[10.1361179,48.0438249],[10.1363781,48.0440903],[10.1366018,48.0443283],[10.1371297,48.0447086],[10.1374837,48.0448025],[10.1374915,48.0448046],[10.1377584,48.0448658],[10.1380449,48.0449316],[10.1381432,48.0449401],[10.1385272,48.0449732],[10.1387793,48.044995],[10.1388072,48.0450065],[10.13891,48.0450494],[10.1389607,48.0452499],[10.1389684,48.0452926],[10.1390236,48.0456037],[10.1398554,48.0463027],[10.1402814,48.04641],[10.1410465,48.0464719],[10.1411855,48.0465417],[10.1412129,48.0467332],[10.1408664,48.0476574],[10.1406659,48.0489299],[10.1407438,48.0497101],[10.1409952,48.0499906],[10.1412565,48.0502737],[10.1413196,48.0503816],[10.1411819,48.0505841],[10.1410604,48.0507441],[10.1409839,48.0507793],[10.1408901,48.0508224],[10.1408276,48.0508408],[10.1405853,48.050912],[10.1404744,48.0509391],[10.14011,48.0510285],[10.1398989,48.0510792],[10.1398491,48.0511064],[10.1397405,48.0511708],[10.1395447,48.0512861],[10.1395129,48.0516691],[10.1394755,48.0517675],[10.1394605,48.0518112],[10.1393519,48.0520787],[10.1395109,48.0522112],[10.139499,48.0523445],[10.1392184,48.052526],[10.1391611,48.0527355],[10.1393343,48.0529837],[10.1394806,48.0529419],[10.1396056,48.0530786],[10.1393693,48.0533146],[10.1395323,48.0536224],[10.1399383,48.0537038],[10.1400588,48.0538584],[10.1402571,48.0540918],[10.1404933,48.05426],[10.1406802,48.0543614],[10.1407983,48.0544257],[10.1409366,48.0544708],[10.141252,48.0545738],[10.1413134,48.054594],[10.1415277,48.0547473],[10.1417491,48.0547472],[10.1419515,48.0547473],[10.142207,48.0547622],[10.1424541,48.0547699],[10.1427062,48.0548833],[10.1427525,48.0549823],[10.1427939,48.0552573],[10.1426254,48.0553968],[10.1423579,48.0555664],[10.142074,48.0557442],[10.1419735,48.0558968],[10.1419378,48.0559426],[10.141905,48.05628],[10.1419725,48.0566183],[10.1419935,48.0566499],[10.142101,48.0569132],[10.1421537,48.0570085],[10.1425654,48.0577519],[10.1429978,48.0581458],[10.1434807,48.0584775],[10.1436632,48.0585601],[10.143801,48.0586679],[10.1439544,48.0590309],[10.1439375,48.0593185],[10.1439333,48.0593928],[10.143726,48.0598533],[10.1434573,48.0601555],[10.1428222,48.0606112],[10.1425868,48.0608529],[10.142528,48.0609132],[10.1423869,48.0612135],[10.1423473,48.0612815],[10.1420814,48.0617369],[10.1418091,48.0623121],[10.1416811,48.0625823],[10.1416357,48.062788],[10.141571,48.0630785],[10.1411604,48.0641449],[10.1410036,48.0646614],[10.140983,48.0648899],[10.1409778,48.0649481],[10.1409558,48.0652019],[10.1409444,48.0655101],[10.1409387,48.0656655],[10.1410161,48.0661585],[10.1411392,48.0663925],[10.1413292,48.0667472],[10.1413636,48.0668116],[10.1414109,48.0668989],[10.1415136,48.0670883],[10.1416224,48.0672707],[10.1417124,48.067422],[10.1420904,48.0679082],[10.1422365,48.0679871],[10.1423352,48.0681221],[10.1422522,48.0684245],[10.1421401,48.0685731],[10.1421411,48.0687468],[10.142264,48.0690041],[10.1424645,48.0692648],[10.1426367,48.0694886],[10.14264,48.0694919],[10.1428937,48.0697522],[10.1433967,48.070131],[10.1433971,48.0701568],[10.1433988,48.0702596],[10.143405,48.0706337],[10.1434193,48.0714976],[10.143431,48.0716221],[10.1434572,48.0718411],[10.1435476,48.0725972],[10.1440931,48.0739225],[10.14411,48.0741455],[10.1440294,48.0743718],[10.1439245,48.0745136],[10.1437649,48.0746737],[10.1435541,48.0747905],[10.1432821,48.0749396],[10.1430402,48.0750087],[10.1425324,48.0750944],[10.1420791,48.0751844],[10.1418228,48.0751903],[10.1417413,48.0751921],[10.1417442,48.0750962],[10.1415396,48.0750944],[10.1412429,48.0751065],[10.141011,48.0751231],[10.140414,48.0751153],[10.1402912,48.0751157],[10.1401592,48.0751108],[10.1400045,48.075105],[10.1398472,48.0751149],[10.1397794,48.0751191],[10.1390706,48.0752806],[10.1384313,48.0753903],[10.1383209,48.0754194],[10.1382174,48.0754689],[10.1377689,48.0755645],[10.1372448,48.0757985],[10.1369759,48.0759064],[10.1366425,48.0760761],[10.1362582,48.0762915],[10.135922,48.0765822],[10.135732,48.0768085],[10.1357236,48.0768349],[10.1356448,48.0770758],[10.1355982,48.0772974],[10.135592,48.0774069],[10.1356706,48.0776043],[10.1356956,48.0776669],[10.1357134,48.0777863],[10.1357382,48.0779521],[10.1358042,48.0781687],[10.135798,48.0782472],[10.1357785,48.078493],[10.1356952,48.0788902],[10.1356588,48.0790638],[10.1356911,48.079381],[10.1356045,48.0797436],[10.135581,48.0798423],[10.1354575,48.0802237],[10.1354333,48.0802991],[10.1354726,48.080646],[10.1355186,48.0809172],[10.1355643,48.0811867],[10.1355829,48.0815221],[10.1355631,48.0816204],[10.1353123,48.0819452],[10.1351573,48.0822901],[10.1350666,48.0825984],[10.1351873,48.0828424],[10.1354344,48.0831248],[10.1357337,48.0835464],[10.135927,48.0839521],[10.1360586,48.0843421],[10.1361896,48.0846134],[10.1365697,48.0849138],[10.136649,48.0849981],[10.1367346,48.0850595],[10.1370741,48.0852252],[10.1371862,48.0852799],[10.1376681,48.0854362],[10.1380579,48.0855723],[10.1383283,48.085761],[10.1384758,48.0859138],[10.1385607,48.0862558],[10.1386049,48.0864338],[10.1386501,48.0865774],[10.1387074,48.0866481],[10.139076,48.0871037],[10.13908,48.0871659],[10.1390835,48.0872178],[10.1392407,48.0879226],[10.1394024,48.088162],[10.1395401,48.0883784],[10.139747,48.0887751],[10.1398164,48.0889941],[10.1397964,48.0897222],[10.139788,48.0900919],[10.1396495,48.0903433],[10.1394536,48.0907045],[10.1392862,48.0909859],[10.1391812,48.0911003],[10.1390698,48.091331],[10.1389655,48.0915891],[10.138864,48.0917515],[10.1387283,48.0919023],[10.1384227,48.092154],[10.1377514,48.0929085],[10.1374064,48.0934501],[10.1373392,48.0936167],[10.1373578,48.0939546],[10.1374166,48.0940686],[10.1376532,48.0944892],[10.1384167,48.09492],[10.1387156,48.0949817],[10.1388334,48.095006],[10.139086,48.0950556],[10.1393831,48.0951293],[10.1396154,48.0951869],[10.13981,48.0952367],[10.1403445,48.0953208],[10.1405541,48.0953538],[10.1408203,48.0953966],[10.1408145,48.0955747],[10.1406758,48.0958033],[10.1405498,48.0958194],[10.1403325,48.0960047],[10.1403234,48.0962171],[10.140334,48.0969132],[10.1403455,48.0971983],[10.1404827,48.0973212],[10.140661,48.0975263],[10.1407065,48.0977316],[10.1406324,48.0978893],[10.140463,48.098127],[10.1401954,48.0984766],[10.1399106,48.0987831],[10.1396741,48.0989082],[10.1395091,48.0989871],[10.1394059,48.0990364],[10.1393005,48.0990918],[10.1391935,48.0991481],[10.138944,48.0992808],[10.1386406,48.099439],[10.1383609,48.0995993],[10.138028,48.0998105],[10.1378154,48.0999473],[10.1377219,48.1000076],[10.1375236,48.100142],[10.1373358,48.1002832],[10.1371883,48.1004056],[10.1370547,48.1005416],[10.1369484,48.100666],[10.1368757,48.1007717],[10.1367742,48.1009244],[10.1367487,48.1010515],[10.1367142,48.101182],[10.136693,48.1013101],[10.1366963,48.1014608],[10.1367062,48.1015977],[10.1367473,48.1017685],[10.1368468,48.1021054],[10.1369026,48.102315],[10.1369155,48.1024381],[10.1369364,48.1026137],[10.136928,48.1028604],[10.1369186,48.1030408],[10.1368813,48.1032217],[10.1368107,48.1034232],[10.1367391,48.1035769],[10.1366405,48.1037445],[10.1365212,48.1039033],[10.1364117,48.1040482],[10.136226,48.1042921],[10.136053,48.1044924],[10.1359301,48.1046444],[10.1358949,48.1047451],[10.1358859,48.1048092],[10.135878,48.1049143],[10.1358973,48.1050169],[10.1359448,48.1051534],[10.1360227,48.1052941],[10.1361038,48.1054121],[10.1362612,48.1055955],[10.1364015,48.1057699],[10.1365477,48.10591],[10.1366167,48.1059435],[10.1366786,48.1059635],[10.1367605,48.105974],[10.1372117,48.1060152],[10.1374145,48.1060795],[10.1376241,48.1061527],[10.1379235,48.1062731],[10.1374263,48.1067848],[10.1372936,48.1069483],[10.1370408,48.1072431],[10.1368705,48.107416],[10.1368176,48.1074964],[10.1367921,48.1075675],[10.1367931,48.1076131],[10.1368109,48.1076563],[10.1368681,48.10777],[10.1369113,48.1078745],[10.1369193,48.1079294],[10.136914,48.1080024],[10.1368948,48.1080597],[10.1368553,48.1081285],[10.1367922,48.1082022],[10.136692,48.1083014],[10.1366212,48.1084518],[10.1364734,48.1087477],[10.1363195,48.1090849],[10.1362056,48.1093736],[10.1361157,48.1096738],[10.1360433,48.1099897],[10.1360251,48.110088],[10.1359969,48.1102413],[10.1359809,48.1104792],[10.1359844,48.1105772],[10.1359908,48.1106412],[10.1360342,48.1109246],[10.1360701,48.1112438],[10.1360878,48.1114584],[10.1360776,48.1116434],[10.1360487,48.1117328],[10.1359919,48.1117882],[10.1359178,48.111839],[10.1358366,48.1118739],[10.1356742,48.1119417],[10.1353627,48.112054],[10.135173,48.1121195],[10.1350377,48.1121778],[10.1349229,48.1122359],[10.1347072,48.1123589],[10.1344881,48.1124979],[10.1342453,48.1126416],[10.133881,48.1128412],[10.1337431,48.1129188],[10.1334897,48.1130616],[10.1331727,48.1132493],[10.1330414,48.1133419],[10.1329408,48.1134341],[10.1328175,48.1135791],[10.1326708,48.1137609],[10.1325574,48.1138852],[10.1325002,48.1139314],[10.1324228,48.1139869],[10.1323555,48.1140285],[10.1322812,48.1140704],[10.1321931,48.1141053],[10.1321289,48.1141288],[10.1320576,48.1141454],[10.1319556,48.1141599],[10.1314519,48.1142031],[10.1308906,48.1142592],[10.1307952,48.1142659],[10.1306761,48.114276],[10.1305436,48.1142977],[10.1304179,48.1143193],[10.130258,48.1143528],[10.1302194,48.1143614],[10.1299595,48.1144192],[10.1294828,48.1145139],[10.1292461,48.1145625],[10.1291546,48.1145859],[10.129019,48.114626],[10.1289176,48.114668],[10.1286748,48.1148117],[10.1284961,48.1149184],[10.1283677,48.114988],[10.1282325,48.1150509],[10.1281075,48.1151],[10.1279721,48.1151512],[10.1278568,48.1151866],[10.1277584,48.1152103],[10.1276952,48.1152187],[10.127612,48.1152298],[10.1274589,48.115238],[10.1274115,48.1152399],[10.1272442,48.1152489],[10.1270944,48.115257],[10.1268937,48.115277],[10.1266047,48.115316],[10.1262851,48.1153645],[10.1257106,48.115447],[10.1255648,48.1154723],[10.1255167,48.1154807],[10.1253028,48.1155214],[10.1251691,48.1155498],[10.1251128,48.1155617],[10.1249532,48.1156066],[10.1247873,48.1156605],[10.1246315,48.1157213],[10.1244621,48.1157838],[10.1243531,48.1158015],[10.1241715,48.11598],[10.1240759,48.1160663],[10.1240131,48.1161221],[10.1239237,48.1161944],[10.1238443,48.116262],[10.123781,48.1163066],[10.1237243,48.116344],[10.1236741,48.1163655],[10.1236338,48.1163844],[10.1235899,48.1163965],[10.123536,48.1164135],[10.1234616,48.116433],[10.1234006,48.1164478],[10.1233945,48.1164949],[10.1233589,48.1165169],[10.1232677,48.1165369],[10.1231698,48.1165658],[10.1229817,48.1166445],[10.1228438,48.1166994],[10.1226425,48.1167895],[10.1225553,48.1168321],[10.1224942,48.116936],[10.1224357,48.1170124],[10.1223869,48.1170772],[10.1223258,48.117181],[10.1222822,48.1172912],[10.1222422,48.1174039],[10.1221877,48.117592],[10.1221832,48.1176067],[10.1221297,48.1177802],[10.1220938,48.1179157],[10.1220471,48.1180351],[10.1220021,48.1181089],[10.1219495,48.1181624],[10.1218866,48.118216],[10.1218582,48.1182399],[10.1218172,48.1182743],[10.1217437,48.1183211],[10.1216635,48.1183725],[10.1216339,48.1183915],[10.1214934,48.1184693],[10.1213595,48.1185401],[10.1212353,48.1185925],[10.1210606,48.1186662],[10.1209532,48.1187184],[10.1208467,48.1187886],[10.1207672,48.1188516],[10.1206977,48.1189099],[10.1206489,48.1189725],[10.1206005,48.1190487],[10.1205335,48.1191753],[10.1205049,48.1192306],[10.1204771,48.1193088],[10.1204564,48.1193981],[10.1204316,48.1195977],[10.1210136,48.1203364],[10.1207436,48.1207084],[10.120547,48.1208235],[10.1198352,48.12124],[10.1198552,48.1212555],[10.1198828,48.1212768],[10.1199161,48.1213049],[10.118645,48.1220848],[10.1186143,48.122064],[10.1185436,48.1220203],[10.1177723,48.122385],[10.116623,48.1229528],[10.1157689,48.1233852],[10.1153156,48.1235824],[10.1150801,48.123671],[10.1145752,48.1238577],[10.1137891,48.124149],[10.1131937,48.1244134],[10.1129528,48.1245204],[10.1127294,48.1246115],[10.1125774,48.124686],[10.112401,48.124787],[10.1121697,48.1249385],[10.1119781,48.1250887],[10.1117371,48.1253147],[10.1114521,48.125564],[10.1113221,48.1257066],[10.1112722,48.125778],[10.1112362,48.1258536],[10.1112137,48.12592],[10.1111888,48.1260045],[10.1111758,48.1260779],[10.1111543,48.1261901],[10.1111516,48.1262244],[10.111159,48.1264206],[10.1111765,48.1266077],[10.1112006,48.1267901],[10.1112069,48.1269248],[10.1112128,48.1270526],[10.1112045,48.127144],[10.1111829,48.1272584],[10.111154,48.1273546],[10.1111353,48.1274391],[10.1110663,48.1275653],[10.1110069,48.1276732],[10.1109411,48.1277857],[10.1109051,48.1278637],[10.1108828,48.127937],[10.1108805,48.1279987],[10.1108853,48.128067],[10.1109042,48.1281514],[10.1109732,48.1284775],[10.1109988,48.1286164],[10.1110069,48.1286894],[10.1110114,48.1287282],[10.1110129,48.1288035],[10.1110004,48.1288607],[10.1109773,48.1289065],[10.1109543,48.128941],[10.1109278,48.1289754],[10.1108809,48.1290193],[10.110834,48.1290654],[10.1107401,48.129147],[10.1106696,48.1292154],[10.1106096,48.1292798],[10.1105635,48.1293601],[10.110544,48.1294082],[10.1105312,48.1294496],[10.1105217,48.1294884],[10.1104907,48.1296439],[10.1104823,48.1296703],[10.1104456,48.1297745],[10.1104031,48.1298685],[10.1103375,48.1299993],[10.110249,48.1301713],[10.1101259,48.1304076],[10.1100276,48.130534],[10.1099392,48.1306353],[10.1096256,48.1309032],[10.1093272,48.1311684],[10.1089876,48.1314159],[10.1088393,48.1315063],[10.1087414,48.1315573],[10.1080088,48.1318654],[10.107774,48.1319795],[10.1077606,48.1319911],[10.1074872,48.1321465],[10.1073677,48.1322158],[10.1073353,48.1322347],[10.1072714,48.132281],[10.1072278,48.1323155],[10.107208,48.13235],[10.107195,48.1323798],[10.1071891,48.1324232],[10.1071901,48.132478],[10.1071982,48.132542],[10.1072435,48.1327539],[10.107324,48.1330134],[10.1073633,48.1331406],[10.1074275,48.1333475],[10.1074517,48.1334233],[10.1076051,48.1339242],[10.1076948,48.1343093],[10.1078216,48.1351781],[10.1078177,48.1353288],[10.1078061,48.1354202],[10.1077739,48.1355232],[10.1077348,48.1356173],[10.1076629,48.1357663],[10.1075272,48.1359845],[10.1073628,48.1362805],[10.1072279,48.1365827],[10.1071866,48.1366885],[10.1071479,48.136794],[10.1071193,48.1369015],[10.1070908,48.1370453],[10.1070764,48.137144],[10.1070707,48.137208],[10.1070663,48.1373221],[10.10706,48.1375162],[10.1070653,48.137772],[10.1069837,48.1377909],[10.1068921,48.1378214],[10.1068931,48.1378649],[10.1068909,48.1379289],[10.1068825,48.1380111],[10.1068667,48.1380821],[10.1068473,48.1381369],[10.1068246,48.1381943],[10.1067913,48.1382425],[10.1067546,48.1382817],[10.1066909,48.1383349],[10.1066001,48.1384018],[10.1063678,48.1385546],[10.1059437,48.1388553],[10.1056818,48.1390427],[10.1055651,48.1391264],[10.1052002,48.1394424],[10.1051207,48.1395113],[10.1049865,48.1396379],[10.1048319,48.1398501],[10.1047538,48.1399882],[10.1046662,48.1401539],[10.104603,48.1403397],[10.1045503,48.1405323],[10.1045039,48.1407087],[10.1043389,48.1411655],[10.1042664,48.1413812],[10.1042404,48.1415484],[10.1042438,48.1416762],[10.1042645,48.1418085],[10.1043096,48.1419587],[10.1043859,48.1421314],[10.1044648,48.1422698],[10.1045676,48.1424054],[10.1046879,48.1425638],[10.1050316,48.1428754],[10.1050912,48.1429334],[10.1051291,48.1429705],[10.1052061,48.1430611],[10.1052484,48.1431292],[10.1052807,48.1431997],[10.1053124,48.1432876],[10.1053342,48.1436478],[10.1053451,48.1442957],[10.1052541,48.1445408],[10.105173,48.1447583],[10.104714,48.1450919],[10.1043713,48.1453732],[10.1041934,48.1455037],[10.1040661,48.1455973],[10.1039784,48.1456616],[10.1038369,48.1457709],[10.1036626,48.145911],[10.1034646,48.1460831],[10.1034078,48.1461325],[10.1033621,48.1461795],[10.1033274,48.1462155],[10.1031334,48.1464091],[10.10306,48.1464896],[10.1030198,48.1465406],[10.1029166,48.1466715],[10.1024848,48.1472207],[10.102413,48.1473473],[10.1023843,48.1474185],[10.1023547,48.1475927],[10.1023016,48.1478879],[10.1022767,48.1481007],[10.1022757,48.1483132],[10.1023172,48.1484736],[10.1023744,48.1486138],[10.1024315,48.1487137],[10.1024939,48.1488153],[10.1025518,48.1488882],[10.1026169,48.1489775],[10.1027041,48.1490671],[10.1028218,48.149189],[10.1030776,48.1494601],[10.1029028,48.1495694],[10.1028185,48.1496137],[10.1027577,48.1496396],[10.1026901,48.1496632],[10.102611,48.1496799],[10.1024379,48.1496797],[10.1023201,48.1496625],[10.1021042,48.1496193],[10.1020711,48.1496131],[10.1019303,48.1495828],[10.1018311,48.1495701],[10.1017216,48.1495599],[10.1016397,48.1495609],[10.1015444,48.1495734],[10.1014563,48.1495972],[10.1013584,48.1496394],[10.1012673,48.1496884],[10.1011669,48.1497649],[10.1010599,48.1498598],[10.1010005,48.1499335],[10.1009474,48.1500005],[10.1008944,48.1500672],[10.1008585,48.1501361],[10.1008395,48.1501981],[10.1008336,48.1502393],[10.1008381,48.1502802],[10.1008602,48.1503463],[10.1008857,48.1504191],[10.1008937,48.1504669],[10.1008981,48.1505034],[10.1008957,48.1505423],[10.1008928,48.1505652],[10.1008732,48.150602],[10.100623,48.1509111],[10.1005633,48.1509849],[10.1004424,48.1511344],[10.1003523,48.1512154],[10.1002242,48.1512853],[10.099687,48.151513],[10.0996197,48.1515503],[10.0995865,48.1515826],[10.0995718,48.1521081],[10.0993692,48.1524828],[10.0992128,48.1527837],[10.0991131,48.1530112],[10.0990124,48.1533935],[10.0990118,48.1535009],[10.0990338,48.1535669],[10.0990795,48.1536234],[10.0991596,48.1536842],[10.0992562,48.1537242],[10.0994347,48.1537655],[10.0997054,48.153815],[10.0999352,48.1538581],[10.1000796,48.153893],[10.1001689,48.1539195],[10.1002722,48.1539663],[10.1003346,48.1539999],[10.1003936,48.1540404],[10.0999878,48.1543418],[10.0998608,48.1544459],[10.0997779,48.1545497],[10.0994888,48.1550143],[10.0992636,48.1550238],[10.0990761,48.1550282],[10.0988512,48.1550398],[10.098657,48.155058],[10.0984905,48.1550896],[10.0982835,48.1551377],[10.0980867,48.1551901],[10.0979376,48.1552397],[10.0978027,48.155303],[10.097668,48.1553797],[10.0975709,48.1554516],[10.0974504,48.1555557],[10.0973242,48.1556943],[10.0971217,48.1559341],[10.0969169,48.1562378],[10.096871,48.1563293],[10.0966602,48.1567501],[10.0966441,48.1567868],[10.0966356,48.1568601],[10.0966978,48.1571814],[10.0967403,48.1573842],[10.0967947,48.1575115],[10.096856,48.1576432],[10.0968405,48.1577119],[10.0964371,48.1583857],[10.0962657,48.1586412],[10.0961459,48.1587774],[10.0960356,48.1588699],[10.0958744,48.1589768],[10.0953502,48.1593231],[10.0951817,48.1594139],[10.0950074,48.1595439],[10.0949039,48.1596433],[10.0948179,48.1597561],[10.0947789,48.159832],[10.0947666,48.1598937],[10.0947683,48.1599668],[10.094787,48.1600328],[10.0948436,48.1601144],[10.0949172,48.160189],[10.0950604,48.1603267],[10.0951962,48.1604586],[10.0952876,48.160548],[10.0954375,48.1606786],[10.0955629,48.1607733],[10.0957492,48.1608985],[10.0963186,48.1612535],[10.0963905,48.1613989],[10.0964353,48.1615605],[10.0964704,48.1617406],[10.0964964,48.1619665],[10.0965024,48.1620511],[10.096512,48.1621855],[10.0965111,48.1624345],[10.0964832,48.1626815],[10.0964458,48.1628417],[10.0963985,48.1629931],[10.0963372,48.1631445],[10.0962585,48.1632801],[10.0961662,48.1634137],[10.0960794,48.1635014],[10.0959897,48.1635961],[10.0958189,48.1637328],[10.0956814,48.1638394],[10.0955404,48.1639323],[10.09524,48.1640704],[10.0950804,48.1641179],[10.0948359,48.1641687],[10.0946831,48.1642023],[10.0946187,48.1642259],[10.0945683,48.1642562],[10.0945216,48.1643023],[10.0945051,48.1643277],[10.0944638,48.1644515],[10.0942988,48.1651134],[10.0942675,48.1652258],[10.0942285,48.1653084],[10.0941496,48.1654326],[10.0940674,48.1655637],[10.0940053,48.1656786],[10.0939537,48.1658002],[10.0938902,48.1660019],[10.0938519,48.1661301],[10.0936832,48.1667343],[10.0936397,48.1668412],[10.0935894,48.1668964],[10.0933975,48.1670824],[10.0932607,48.1672619],[10.0930626,48.1674668],[10.0927002,48.1678691],[10.0926213,48.1679456],[10.0925408,48.1680298],[10.092358,48.168221],[10.0922696,48.1683132],[10.0921904,48.1684307],[10.0921251,48.1685547],[10.0920578,48.1687291],[10.0917622,48.1690704],[10.0916461,48.1692157],[10.0915537,48.1693491],[10.0914542,48.1694917],[10.0914284,48.1695287],[10.0913097,48.1697082],[10.0911396,48.1699055],[10.091034,48.1700395],[10.090583,48.1706019],[10.090537,48.1706593],[10.0904746,48.1707627],[10.0904291,48.1708547],[10.0904172,48.1709211],[10.0904193,48.1710078],[10.090429,48.1711242],[10.0904465,48.171277],[10.0904181,48.1715102],[10.0904136,48.1717387],[10.0904188,48.1719511],[10.0904412,48.1721608],[10.0904814,48.1724116],[10.0905113,48.1725305],[10.0905552,48.1727064],[10.0906503,48.1730217],[10.0907389,48.1732856],[10.0908153,48.1734789],[10.0909712,48.1738448],[10.0910024,48.1740407],[10.0910902,48.1746556],[10.0912046,48.1754583],[10.0912609,48.1758527],[10.0895893,48.1796194],[10.0892496,48.1798534],[10.0882186,48.1805635],[10.0879731,48.1807237],[10.0877408,48.1808677],[10.0876939,48.180892],[10.0874643,48.18101],[10.0872275,48.1811063],[10.0871115,48.1811484],[10.0870413,48.1811722],[10.0865705,48.1813349],[10.0864084,48.1814052],[10.0863107,48.1814633],[10.0862169,48.1815441],[10.0861401,48.1816157],[10.086077,48.1816918],[10.0860111,48.181793],[10.0859723,48.1818824],[10.0859409,48.1819969],[10.0859011,48.182189],[10.0858915,48.1823581],[10.0858388,48.1827239],[10.0857873,48.1831422],[10.085759,48.1832385],[10.0857132,48.1833348],[10.0855889,48.1835553],[10.0854924,48.1838028],[10.0854093,48.1840481],[10.0852912,48.1843941],[10.0851863,48.1847149],[10.0851296,48.1849186],[10.0850794,48.1851132],[10.0850625,48.1852526],[10.0850585,48.1853782],[10.0850888,48.1854989],[10.0850998,48.1855533],[10.0851512,48.1858113],[10.0851663,48.1858861],[10.0852329,48.1862474],[10.0853038,48.1866334],[10.0854646,48.1875014],[10.0856099,48.1881504],[10.084872,48.1885069],[10.084589,48.188642],[10.0843772,48.188746],[10.084432,48.1889336],[10.0848051,48.1902137],[10.0847658,48.1904234],[10.0842587,48.1924785],[10.0837566,48.1945122],[10.0836751,48.1948467],[10.0835843,48.1952224],[10.0835154,48.1955018],[10.0834909,48.1956255],[10.0834796,48.1957352],[10.0834888,48.1958425],[10.083515,48.1959428],[10.0835721,48.1960611],[10.0836292,48.1961724],[10.0837849,48.1964085],[10.0839741,48.1966809],[10.0840253,48.1967784],[10.0840696,48.1969264],[10.0840863,48.1970611],[10.0840923,48.1971798],[10.0840694,48.1975366],[10.084059,48.1976829],[10.0840628,48.1977168],[10.0840802,48.1978725],[10.084085,48.197903],[10.0840994,48.1979659],[10.0841352,48.1980407],[10.0841812,48.1981112],[10.0842653,48.1982132],[10.0843611,48.1983675],[10.0845064,48.1986085],[10.0847992,48.1990939],[10.0850146,48.1993748],[10.0850486,48.1996627],[10.085109,48.2001076],[10.0851336,48.200425],[10.0851506,48.2006807],[10.0850809,48.2011059],[10.0849483,48.2016913],[10.0848136,48.2023864],[10.0846905,48.2029261],[10.084635,48.2033969],[10.0846655,48.2038217],[10.0846774,48.2039887],[10.0847517,48.2041453],[10.0847652,48.2041879],[10.0847899,48.2042662],[10.0848969,48.2044417],[10.0850695,48.2047266],[10.0851696,48.204932],[10.0851978,48.205009],[10.0852495,48.205151],[10.0852742,48.205288],[10.0852583,48.2054867],[10.0851702,48.2056218],[10.0850475,48.2057731],[10.085031,48.2057935],[10.0848681,48.2059926],[10.0846679,48.2062011],[10.0845151,48.2063842],[10.0843422,48.2066176],[10.0842509,48.2068213],[10.0841906,48.2070177],[10.0841846,48.2071526],[10.0841831,48.2074928],[10.0841811,48.2077351],[10.0841343,48.2079224],[10.0840197,48.2081809],[10.0838471,48.208476],[10.0836884,48.208803],[10.0834728,48.2087786],[10.0832781,48.2087745],[10.0830776,48.2087548],[10.0827789,48.2087257],[10.082536,48.2087127],[10.0822759,48.2089787],[10.0819857,48.2092854],[10.0818958,48.2093349],[10.0816117,48.2094917],[10.0814032,48.2096068],[10.0810897,48.2095879],[10.0808136,48.2095686],[10.0805572,48.2095692],[10.0791268,48.2095562],[10.0788819,48.2095592],[10.0787206,48.2096122],[10.0786697,48.2096405],[10.07823,48.2098854],[10.0779366,48.2099937],[10.0776301,48.2101635],[10.0773745,48.2103149],[10.0772353,48.2104798],[10.0771264,48.2104675],[10.0770642,48.2105193],[10.0769384,48.2106313],[10.0769091,48.2106962],[10.0766235,48.2110378],[10.0765854,48.211087],[10.0764955,48.2113864],[10.0764599,48.2119174],[10.0766041,48.2122687],[10.0768563,48.2128884],[10.0769662,48.2131349],[10.0768716,48.2131518],[10.0771651,48.2140059],[10.0772516,48.2139926],[10.077436,48.2141434],[10.0778557,48.2144673],[10.0779708,48.2147528],[10.0778636,48.2150324],[10.0778366,48.2151027],[10.0778444,48.2153971],[10.077811,48.2158138],[10.077841,48.2159631],[10.0778697,48.2161052],[10.077787,48.2162736],[10.0775362,48.2167841],[10.0775287,48.2168818],[10.0775061,48.2171822],[10.077531,48.2172403],[10.0776485,48.2175161],[10.0777478,48.2177483],[10.0779459,48.2185351],[10.0779575,48.2185813],[10.078101,48.219177],[10.0781165,48.2195058],[10.0781542,48.2201133],[10.0781924,48.2202022],[10.0772771,48.2215638],[10.0771269,48.2216099],[10.0764289,48.2227356],[10.0761639,48.2229739],[10.0759622,48.2229996],[10.0753297,48.2229854],[10.0741629,48.2229654],[10.0732764,48.2230024],[10.0730362,48.2230124],[10.072185,48.2230262],[10.0701862,48.2231871],[10.0694614,48.2231663],[10.0691265,48.2231969],[10.0690721,48.223261],[10.0685936,48.2242408],[10.068575,48.2243006],[10.0685273,48.2244063],[10.0684795,48.2246219],[10.068379,48.2249936],[10.0682146,48.2254007],[10.0681048,48.225704],[10.0679955,48.2259181],[10.0679165,48.2261158],[10.0678407,48.2262061],[10.0677499,48.2263537],[10.0676554,48.2264967],[10.0675556,48.2267862],[10.0674117,48.2270901],[10.0673685,48.2273397],[10.0673738,48.2275043],[10.0674038,48.2275793],[10.0674748,48.2276606],[10.0675664,48.227737],[10.0676139,48.2278278],[10.0676326,48.2279806],[10.0676748,48.2281125],[10.0677342,48.2281551],[10.0678125,48.2283506],[10.0678366,48.2283978],[10.0679697,48.2286569],[10.0681812,48.2289487],[10.0683815,48.2292109],[10.0685779,48.2293364],[10.0687521,48.2294956],[10.0689667,48.229687],[10.0689801,48.2296504],[10.0690065,48.2295926],[10.0691042,48.2294798],[10.0692138,48.2295647],[10.069643,48.2300165],[10.0697705,48.2301742],[10.0699853,48.2304401],[10.0700373,48.2305376],[10.0700074,48.230561],[10.0696199,48.2308017],[10.0690561,48.2310506],[10.0690244,48.2310647],[10.0685677,48.2312906],[10.0681445,48.2315062],[10.0676816,48.2317422],[10.0673292,48.2318455],[10.0671183,48.2319703],[10.0668554,48.2321086],[10.0667077,48.232193],[10.0666241,48.2322468],[10.0665475,48.2323141],[10.0665024,48.2323971],[10.0664326,48.232462],[10.0662812,48.2325373],[10.0659709,48.2326699],[10.0656215,48.2329744],[10.0653143,48.233308],[10.0650132,48.233621],[10.0647564,48.2339389],[10.0646178,48.2340697],[10.0644766,48.2341712],[10.064103,48.2343814],[10.0639314,48.2345448],[10.0638265,48.234659],[10.0637525,48.2347815],[10.0636853,48.2350687],[10.0636223,48.2354566],[10.0635718,48.2358237],[10.0635286,48.2362822],[10.0635283,48.2369526],[10.0636485,48.2375769],[10.0637278,48.2380358],[10.0637902,48.2382938],[10.0638244,48.2385331],[10.0638281,48.2386843],[10.0638644,48.2389503],[10.0636977,48.2393443],[10.0634241,48.239547],[10.0631229,48.2398466],[10.0629181,48.2400188],[10.0622694,48.2405651],[10.0623906,48.2407319],[10.0623752,48.2413026],[10.0624037,48.2421732],[10.0624273,48.2433043],[10.0624036,48.2434893],[10.0624211,48.2438374],[10.0624631,48.2442032],[10.0625339,48.2444357],[10.0627105,48.2447532],[10.0630843,48.2452343],[10.0633924,48.2456064],[10.0636432,48.2459134],[10.0640369,48.2462909],[10.0644707,48.2466516],[10.0646158,48.2467863],[10.0650144,48.2471203],[10.0655833,48.2475333],[10.0659308,48.2477474],[10.0663262,48.2479484],[10.0666487,48.2481228],[10.0669441,48.2482997],[10.0670042,48.2483744],[10.0670442,48.2484653],[10.0670889,48.2486018],[10.067065,48.2487368],[10.0669726,48.2489959],[10.0668391,48.2492487],[10.0666958,48.2495243],[10.0666769,48.2497142],[10.0667094,48.2499102],[10.0668265,48.2502011],[10.0670408,48.2505434],[10.0672858,48.25089],[10.0675144,48.2512618],[10.0677153,48.251534],[10.0680621,48.2520571],[10.0682975,48.2524241],[10.0685044,48.2527517],[10.0685224,48.2527801],[10.0686949,48.2531002],[10.0687648,48.2532749],[10.0688304,48.2534388],[10.0689266,48.2536376],[10.0689895,48.2537681],[10.0690133,48.2538888],[10.068802,48.253948],[10.0684109,48.2540575],[10.0674751,48.2544086],[10.06727,48.2545096],[10.066773,48.2547262],[10.0660409,48.255026],[10.0656398,48.2552583],[10.065066,48.2556509],[10.0649065,48.2557489],[10.0643746,48.256076],[10.0639833,48.2562044],[10.0637228,48.2563114],[10.0633861,48.2565317],[10.0629876,48.2567502],[10.062593,48.2570325],[10.0623083,48.2572306],[10.0621986,48.2573171],[10.0621729,48.2573565],[10.0620972,48.2574728],[10.0620379,48.2577265],[10.0620017,48.2578796],[10.0619924,48.258003],[10.0620036,48.2581126],[10.0620563,48.2582494],[10.0620843,48.2583269],[10.0621603,48.2584157],[10.0623952,48.2586387],[10.0627298,48.2589701],[10.0628269,48.2590664],[10.0633146,48.2596446],[10.063803,48.2602799],[10.0638617,48.2603103],[10.0639783,48.2603706],[10.0643668,48.2605748],[10.0647624,48.2607788],[10.0648246,48.2608448],[10.0648767,48.2609314],[10.0649049,48.2610248],[10.0649193,48.2610956],[10.0649573,48.2611435],[10.0649987,48.2611799],[10.065071,48.2612253],[10.0651536,48.2612614],[10.0653047,48.2613317],[10.0654286,48.2613998],[10.0655799,48.2614814],[10.0657073,48.2615723],[10.0657663,48.2616497],[10.0658462,48.261775],[10.0659122,48.2618981],[10.0659615,48.2620555],[10.0659663,48.2621947],[10.0659506,48.2623661],[10.0659043,48.2625375],[10.0658746,48.2626495],[10.0657969,48.2627966],[10.0657469,48.2629172],[10.065605,48.2631232],[10.0655238,48.2632514],[10.0653315,48.2635559],[10.0652088,48.2637239],[10.0649799,48.2640367],[10.0649439,48.2640953],[10.0649045,48.2641698],[10.0647096,48.2644396],[10.0644593,48.26479],[10.0642195,48.2651265],[10.064003,48.2654287],[10.0638273,48.2656894],[10.0637732,48.2657698],[10.0636754,48.2659128],[10.0635534,48.266063],[10.0635097,48.2661523],[10.0634865,48.266239],[10.0635145,48.2663097],[10.0635495,48.2663828],[10.0637588,48.2668296],[10.0637886,48.2670989],[10.0637743,48.2674232],[10.0636984,48.2677387],[10.0635687,48.2681478],[10.0634564,48.2686095],[10.063391,48.268973],[10.0632738,48.2696264],[10.0631981,48.269967],[10.0630939,48.2701798],[10.0630025,48.270308],[10.0629378,48.2703471],[10.0628506,48.2704238],[10.0628258,48.2704456],[10.062748,48.2705647],[10.0626906,48.2707284],[10.0626554,48.2708134],[10.062537,48.2710974],[10.0623249,48.2715002],[10.0622549,48.27169],[10.0622427,48.2718681],[10.0622748,48.2720074],[10.0623083,48.2720663],[10.0624034,48.2722329],[10.0624557,48.2723333],[10.0624842,48.2724542],[10.062491,48.272641],[10.0624929,48.2726619],[10.0625459,48.2728324],[10.0626295,48.2729355],[10.063099,48.2733265],[10.063422,48.273564],[10.0636699,48.2736948],[10.063779,48.2737525],[10.064128,48.2739244],[10.064534,48.2741244],[10.0646786,48.2741754],[10.0647851,48.2742097],[10.0647971,48.2742137],[10.0653381,48.2743294],[10.0660482,48.2744838],[10.0660514,48.2745931],[10.0660173,48.2747143],[10.0659743,48.274881],[10.065955,48.2749181],[10.0658544,48.2751103],[10.0656525,48.2754659],[10.0653195,48.2759438],[10.0651702,48.2761581],[10.0652543,48.2761526],[10.0654934,48.2770777],[10.0656709,48.277764],[10.0655924,48.277795],[10.0658226,48.2778709],[10.0658724,48.2778875],[10.0660105,48.2779422],[10.0661087,48.2780202],[10.0661348,48.2780409],[10.0661595,48.2781363],[10.0661315,48.2783437],[10.0660155,48.27856],[10.0659618,48.2786599],[10.0658342,48.2788975],[10.0657593,48.2791703],[10.0656893,48.2793906],[10.0656527,48.2795922],[10.0656219,48.2798507],[10.0656244,48.2800013],[10.0656754,48.2802491],[10.0657165,48.2804241],[10.0658053,48.2806736],[10.0658088,48.2808332],[10.0658096,48.2808676],[10.0657961,48.2810481],[10.0657579,48.281293],[10.0657419,48.2814311],[10.0656504,48.2815875],[10.0655635,48.2816866],[10.0654661,48.2817767],[10.0653855,48.2818455],[10.0653552,48.2818714],[10.0652574,48.2819432],[10.0651429,48.2820221],[10.0649803,48.2821317],[10.0647888,48.2822369],[10.0644438,48.2823191],[10.0644147,48.2823299],[10.0640295,48.2824717],[10.0637002,48.2826029],[10.063457,48.282763],[10.0632381,48.2829228],[10.0630325,48.2830779],[10.0629549,48.2831551],[10.0628583,48.2832511],[10.062674,48.2834379],[10.0625534,48.2835511],[10.0624323,48.2836459],[10.0622972,48.2837386],[10.062114,48.2838159],[10.0618933,48.2839094],[10.0617438,48.2839611],[10.0614955,48.2840413],[10.0613213,48.2840635],[10.0611029,48.2840954],[10.0609691,48.2841113],[10.0609074,48.2841148],[10.0606582,48.2841295],[10.0601406,48.2841117],[10.0595375,48.284097],[10.0592538,48.2841272],[10.0591687,48.2841487],[10.0590774,48.2842089],[10.0589379,48.2843954],[10.0586622,48.284696],[10.058289,48.2851032],[10.0579889,48.2854604],[10.0576767,48.2857559],[10.0575895,48.2858367],[10.0578137,48.28591],[10.0574971,48.2863037],[10.0573292,48.2864493],[10.0571668,48.2865492],[10.0570791,48.2866026],[10.0567596,48.2867153],[10.0564664,48.2868316],[10.056118,48.2869491],[10.0559284,48.2870249],[10.0556656,48.2871301],[10.0552181,48.2873451],[10.0547954,48.2875872],[10.0546395,48.2876908],[10.0543977,48.2878516],[10.0542339,48.287964],[10.0541416,48.2880636],[10.0540833,48.288156],[10.0540029,48.2883011],[10.0539706,48.2886352],[10.0539329,48.2890058],[10.053923,48.2891087],[10.0539013,48.2891885],[10.0538807,48.2892648],[10.0536803,48.2894073],[10.0536245,48.2894746],[10.0534779,48.2895796],[10.0533673,48.2896431],[10.0532534,48.2897203],[10.0528624,48.2900488],[10.0525072,48.2902625],[10.0521124,48.2905134],[10.0516293,48.2907908],[10.0512356,48.2910376],[10.051154,48.2910887],[10.0506693,48.2913159],[10.0504433,48.291411],[10.0501288,48.2915211],[10.0499667,48.2915833],[10.0495301,48.2917205],[10.0493226,48.2917559],[10.0490228,48.2917995],[10.048951,48.2918076],[10.0487737,48.2918242],[10.048589,48.2918295],[10.0483939,48.2918349],[10.0480128,48.2918114],[10.0478204,48.2917893],[10.0473087,48.2917496],[10.0470237,48.2917292],[10.0468048,48.2917326],[10.0465422,48.2917666],[10.0463575,48.2918296],[10.0461432,48.2919615],[10.0460326,48.2920249],[10.0459146,48.292077],[10.0458248,48.2921088],[10.0457726,48.2921272],[10.0456089,48.292146],[10.0452367,48.2923644],[10.0448765,48.2926329],[10.0447321,48.2927166],[10.0446417,48.292769],[10.044338,48.2928904],[10.0441251,48.2929715],[10.0439004,48.2931007],[10.0435981,48.2933592],[10.0433259,48.2935965],[10.042972,48.2939448],[10.0425596,48.2943356],[10.0424903,48.2944458],[10.0424338,48.2945884],[10.042363,48.2947794],[10.0422921,48.2950234],[10.0422082,48.2952224],[10.0421753,48.2953006],[10.0421401,48.2953919],[10.0420658,48.2955845],[10.0419491,48.2959234],[10.0418867,48.2962495],[10.0418796,48.2963076],[10.0418434,48.2966069],[10.0418527,48.2969904],[10.0419202,48.2974844],[10.0419598,48.2979879],[10.0419912,48.2983779],[10.0420111,48.2984329],[10.0420282,48.2984797],[10.0421162,48.298635],[10.0421693,48.2987203],[10.0422177,48.2987989],[10.0422453,48.2988441],[10.0424514,48.2990751],[10.0427511,48.2994111],[10.0433485,48.3002094],[10.0425582,48.3008347],[10.0422391,48.301082],[10.0418468,48.3013891],[10.0410649,48.3017945],[10.0406046,48.301732],[10.0401716,48.3017315],[10.0397461,48.3018026],[10.0398555,48.3024063],[10.0398828,48.3027042],[10.0399199,48.303115],[10.0398959,48.3036545],[10.0398695,48.3040386],[10.0398472,48.3044149],[10.0397944,48.3046652],[10.0396639,48.3047439],[10.0388116,48.3050931],[10.0385001,48.3052852],[10.0383592,48.3054101],[10.038231,48.3055456],[10.0377974,48.3061033],[10.0371274,48.3068613],[10.0365673,48.3074221],[10.0362481,48.3078352],[10.035976,48.3081818],[10.0358071,48.3083405],[10.035512,48.3085251],[10.0346689,48.3089326],[10.0343866,48.3091364],[10.0338968,48.3094901],[10.0332451,48.309869],[10.0327254,48.3101555],[10.0324616,48.3103765],[10.0321149,48.3107967],[10.0314174,48.3115615],[10.0312441,48.3118733],[10.0311315,48.3121502],[10.0305081,48.3130585],[10.0302959,48.3133089],[10.0300653,48.3134634],[10.0298307,48.3135722],[10.0295414,48.3136906],[10.0292775,48.3139046],[10.0290067,48.3143516],[10.0289476,48.3145392],[10.0283944,48.3151001],[10.0281113,48.3154101],[10.0279144,48.3157676],[10.0278882,48.3160853],[10.027812,48.3167364],[10.0277282,48.3170978],[10.0275595,48.3172838],[10.0274217,48.3174513],[10.027235,48.3177997],[10.0270386,48.3181982],[10.0267638,48.3188508],[10.026594,48.3194135],[10.0262132,48.3203156],[10.0257714,48.3212729],[10.0254877,48.3217749],[10.0248831,48.3225917],[10.0247697,48.3228003],[10.024407,48.3231951],[10.0242674,48.3233469],[10.0239721,48.3237134],[10.0237367,48.3238901],[10.0231132,48.3239448],[10.0227454,48.3240184],[10.0224274,48.3240878],[10.0221132,48.3240971],[10.022051,48.3240827],[10.0211522,48.3241564],[10.0208334,48.3243349],[10.0203883,48.324771],[10.0198934,48.3252163],[10.0196475,48.3254565],[10.0191417,48.3258021],[10.0187791,48.3259396],[10.0182833,48.3262485],[10.0174777,48.3268836],[10.0174154,48.3269328],[10.0172344,48.3270654],[10.016783,48.3272693],[10.0162766,48.3274915],[10.0160963,48.3276923],[10.0154231,48.3284428],[10.0151773,48.32866],[10.0149721,48.3288089],[10.0144765,48.3291475],[10.0140491,48.329461],[10.0137794,48.3297422],[10.0134752,48.3299482],[10.0133178,48.3300146],[10.0128868,48.3302345],[10.0127397,48.330294],[10.0124868,48.3304589],[10.0124186,48.3305686],[10.0123167,48.3308496],[10.0122524,48.3310986],[10.0120068,48.3315192],[10.0117406,48.3318828],[10.0114364,48.3321595],[10.0113683,48.3322418],[10.0112558,48.3324978],[10.0111637,48.332635],[10.0109622,48.3328179],[10.010795,48.3329986],[10.0105393,48.3334214],[10.0102462,48.3340066],[10.0100486,48.334434],[10.0099575,48.3349481],[10.0099656,48.3353865],[10.0099236,48.3363596],[10.0098159,48.3370746],[10.0097215,48.3376048],[10.0095212,48.3382856],[10.0094331,48.3385846],[10.0094384,48.3387344],[10.0094376,48.3392956],[10.0094241,48.3393831],[10.0093295,48.3396393],[10.0091846,48.3400535],[10.0091735,48.3402116],[10.0091847,48.3405223],[10.0091998,48.3405838],[10.0092288,48.3406408],[10.0095857,48.3408831],[10.0096861,48.3409532],[10.0099036,48.3411047],[10.0101433,48.3412719],[10.0101986,48.3413106],[10.0102488,48.3413454],[10.0104788,48.3415393],[10.010469,48.3416787],[10.0103255,48.3418684],[10.0100013,48.3423441],[10.0098788,48.3425783],[10.009865,48.3426045],[10.0096573,48.3429839],[10.0094284,48.3432766],[10.0091311,48.343567],[10.008837,48.3437684],[10.0084434,48.3438877],[10.0078681,48.3440071],[10.00762,48.3440406],[10.007456,48.344063],[10.0073067,48.3440831],[10.0066958,48.344417],[10.006465,48.3445432],[10.0061349,48.3446],[10.0059822,48.3446261],[10.00595,48.3446147],[10.0044163,48.3445086],[10.003244,48.3444209],[10.0031048,48.3447438],[10.0028695,48.3451483],[10.0028269,48.3454998],[10.0027521,48.346117],[10.0025724,48.3468777],[10.0006622,48.3469752],[10.0000083,48.3470086],[9.9995496,48.347032],[9.9988422,48.3469537],[9.9988043,48.3469495],[9.9984823,48.3472118],[9.9981046,48.3475907],[9.9979721,48.348113],[9.9979464,48.3486475],[9.998088,48.3494102],[9.9980668,48.3496925],[9.9980609,48.3497737],[9.9979471,48.3502317],[9.9977912,48.3508866],[9.9977238,48.3511705],[9.9975976,48.351672],[9.9973898,48.3520765],[9.997228,48.3522955],[9.9970443,48.3524275],[9.9969594,48.3524885],[9.9968506,48.3525638],[9.9960655,48.3531073],[9.9954622,48.3535854],[9.9949719,48.3543039],[9.9946333,48.3548397],[9.9945965,48.3550803],[9.9946789,48.3556864],[9.9948411,48.3562049],[9.9950983,48.3568087],[9.9957093,48.3575631],[9.9973363,48.3590897],[9.997238,48.3593368],[9.9972044,48.3595046],[9.9974642,48.3597072],[9.9978136,48.3599555],[9.9986606,48.3604557],[9.998842,48.3605145],[9.9994435,48.3607098],[10.0000242,48.3611549],[10.0002815,48.3613606],[10.0003777,48.3615516],[10.0004298,48.3617771],[10.0004326,48.3620238],[10.0004356,48.3622885],[10.0003536,48.363023],[10.0003457,48.3630931],[10.0003061,48.363449],[10.0002374,48.3636321],[10.0000562,48.3638505],[9.9999173,48.3639269],[9.9997395,48.3639717],[9.999397,48.3639858],[9.9991156,48.3639814],[9.9990095,48.3639796],[9.9988419,48.3639753],[9.9984502,48.363965],[9.997849,48.3640708],[9.9969243,48.3640989],[9.9959413,48.3640089],[9.9954549,48.3639285],[9.9946741,48.3637935],[9.9942933,48.3636988],[9.9932612,48.3634118],[9.9927504,48.3640417],[9.9926834,48.3643791],[9.9926224,48.3647381],[9.9925541,48.3652822],[9.9925552,48.36576],[9.9927928,48.3666581],[9.9931004,48.3680333],[9.9930931,48.3683164],[9.9929377,48.3685499],[9.9924852,48.3688382],[9.9923797,48.3689722],[9.9923261,48.3690771],[9.9919866,48.3692254],[9.9914557,48.3695168],[9.9907417,48.3698901],[9.9901,48.370137],[9.9895342,48.3702735],[9.9889989,48.3703867],[9.9886792,48.3704487],[9.9884647,48.370482],[9.9882567,48.3705177],[9.9877233,48.3704759],[9.9869566,48.3702618],[9.9866429,48.3701666],[9.9863113,48.3700765],[9.9857904,48.3698829],[9.98487,48.3693568],[9.9845815,48.3692371],[9.984197,48.3690779],[9.9835303,48.3686945],[9.9831348,48.3683724],[9.9829152,48.3679987],[9.9828442,48.3675476],[9.9829205,48.3667363],[9.9830668,48.3659603],[9.9831143,48.3657087],[9.9831769,48.3653747],[9.9831904,48.3653341],[9.9832432,48.3651785],[9.9832779,48.3651298],[9.9833126,48.3650811],[9.9834196,48.3649294],[9.9835135,48.3647951],[9.9838878,48.3643337],[9.9839054,48.3642561],[9.9840531,48.3638773],[9.984146,48.3635223],[9.9841191,48.3634245],[9.9840138,48.3633392],[9.9820992,48.3622977],[9.9816958,48.3624537],[9.9810778,48.3622994],[9.9808499,48.3622797],[9.980303,48.3622957],[9.9792547,48.362444],[9.9787291,48.3625214],[9.9783956,48.3626117],[9.978284,48.3626419],[9.9781823,48.3626695],[9.9778617,48.3627563],[9.9769868,48.3630962],[9.9765953,48.3632516],[9.9764918,48.3632852],[9.9764194,48.3633344],[9.9761665,48.3634217],[9.9761625,48.3634239],[9.9759334,48.3635457],[9.9756145,48.3637781],[9.9749048,48.3643921],[9.9745246,48.3647667],[9.974285,48.3651419],[9.974046,48.3654189],[9.9737113,48.3657063],[9.9734212,48.3658757],[9.9732362,48.3659837],[9.9731715,48.3660214],[9.9731079,48.3660591],[9.9726077,48.3664485],[9.9722398,48.3667748],[9.9720357,48.3669558],[9.9716858,48.3672851],[9.9713644,48.3675876],[9.9710484,48.3678943],[9.9707804,48.3681543],[9.9707411,48.3682459],[9.970581,48.3686203],[9.9704232,48.3689385],[9.9703863,48.3690131],[9.9703061,48.3692081],[9.9700351,48.3695677],[9.9696036,48.3699475],[9.9693813,48.3702153],[9.9690108,48.3709412],[9.9685518,48.3718077],[9.9683975,48.3721085],[9.9682202,48.3724602],[9.9679962,48.3727804],[9.9678087,48.3730681],[9.9676959,48.3734416],[9.9676663,48.3735267],[9.9674293,48.3742096],[9.9676752,48.3745398],[9.9677523,48.3746046],[9.9683738,48.3751268],[9.9688799,48.3755838],[9.9694101,48.3759978],[9.9701403,48.3765557],[9.9703982,48.3767331],[9.9704827,48.3767678],[9.9707555,48.3768794],[9.9710389,48.3769954],[9.9707364,48.3774525],[9.9704845,48.377833],[9.9702877,48.3780575],[9.9701172,48.3782518],[9.9698517,48.3785449],[9.96965,48.378768],[9.9697095,48.3789003],[9.9697308,48.3789478],[9.9697526,48.379331],[9.9698157,48.3794585],[9.9698821,48.3795722],[9.9700773,48.3798381],[9.9702744,48.3799715],[9.9712389,48.3803378],[9.9716398,48.3803552],[9.971988,48.3803752],[9.9723904,48.3803981],[9.9726678,48.380414],[9.9729442,48.3804298],[9.9731315,48.3806357],[9.9736085,48.3811601],[9.9736349,48.381189],[9.9739536,48.3814594],[9.9740096,48.3815066],[9.974388,48.3816964],[9.9750164,48.3820228],[9.9760432,48.3826459],[9.9765531,48.3830191],[9.9768781,48.3832688],[9.9774952,48.3835473],[9.9791063,48.3842232],[9.9800697,48.3846439],[9.980881,48.3850115],[9.9816745,48.3853474],[9.9822528,48.3855759],[9.9829396,48.3858947],[9.9833629,48.3860977],[9.9838964,48.3864546],[9.9843407,48.3868081],[9.9847306,48.3871848],[9.9853331,48.3879654],[9.9857999,48.3885376],[9.9861776,48.3891064],[9.9861999,48.3891486],[9.9864279,48.3895453],[9.9864518,48.3895808],[9.9864802,48.3896223],[9.9865099,48.3896646],[9.9865498,48.3897025],[9.9866035,48.3897956],[9.9866526,48.3898811],[9.9867096,48.3899802],[9.9867247,48.3900063],[9.9867491,48.3900536],[9.9870635,48.3906644],[9.9872968,48.3912232],[9.9874726,48.3916854],[9.9876362,48.3919611],[9.9884186,48.3927353],[9.9887002,48.3930104],[9.9889266,48.3932515],[9.9892596,48.3935309],[9.9897612,48.3938411],[9.9903524,48.394167],[9.9910933,48.3944163],[9.9919892,48.3946991],[9.9930184,48.3949649],[9.9937911,48.3951528],[9.994698,48.3953728],[9.9952169,48.3955632],[9.9958202,48.395717],[9.9961243,48.3957946],[9.9965597,48.3959048],[9.9970385,48.396026],[9.9977291,48.3962302],[9.9983172,48.396438],[9.9988402,48.3966963],[9.9988863,48.3967192],[9.9995418,48.3970221],[9.9997531,48.3971132],[10.0000428,48.3971851],[10.0025939,48.3983213],[10.0031351,48.3985254],[10.0035571,48.3986843],[10.0040937,48.3988982],[10.004473,48.3990441],[10.0047899,48.399166],[10.0071302,48.4000238],[10.0083178,48.4004698],[10.0090133,48.4007825],[10.0094958,48.4010183],[10.011245,48.4020054],[10.0126014,48.4028348],[10.0135591,48.4033834],[10.014059,48.4037316],[10.0148585,48.4043847],[10.0150696,48.4045877],[10.0152706,48.4047864],[10.0154189,48.4049445],[10.0155999,48.4051753],[10.0158111,48.4053762],[10.0159893,48.4056276],[10.0161356,48.4058382],[10.0162643,48.4060355],[10.0164079,48.406269],[10.0164941,48.4064188],[10.0165875,48.4065776],[10.016672,48.4067844],[10.0167239,48.4069216],[10.0167385,48.4069595],[10.0168127,48.4071733],[10.0168402,48.4072822],[10.0168587,48.4073554],[10.0169026,48.4075855],[10.0169332,48.4078319],[10.0169488,48.4080349],[10.0169609,48.4082243],[10.0169759,48.4085302],[10.017008,48.4087056],[10.0170225,48.4091188],[10.0170126,48.4096464],[10.0169916,48.4101445],[10.0169407,48.410684],[10.0168774,48.4111392],[10.0168182,48.411624],[10.0166943,48.4126325],[10.0166355,48.4131219],[10.0165834,48.4136135],[10.0165552,48.4141003],[10.0165001,48.4146033],[10.0164716,48.4150809],[10.0164776,48.4155627],[10.0164957,48.4158548],[10.0165256,48.4160759],[10.0165601,48.4163405],[10.0165866,48.4165594],[10.0166427,48.4167369],[10.0166759,48.4168255],[10.0167663,48.416998],[10.0168708,48.4171818],[10.0169743,48.4173292],[10.0170867,48.4174749],[10.017102,48.4175049],[10.017199,48.4176683],[10.0172096,48.4176821],[10.0173269,48.4178335],[10.0175141,48.4180415],[10.0177255,48.4182559],[10.0178694,48.4183844],[10.0179711,48.4184678],[10.0181118,48.4186055],[10.0182524,48.4187272],[10.0184132,48.4188417],[10.018577,48.4189427],[10.0187652,48.4190546],[10.0189432,48.419176],[10.0192465,48.4193552],[10.0195104,48.4194778],[10.0200638,48.4197819],[10.0211367,48.4202767],[10.0222254,48.4208466],[10.0227825,48.4211621],[10.0233743,48.4214864],[10.0244484,48.4221568],[10.0255289,48.4228112],[10.0263896,48.4233711],[10.0278853,48.4242592],[10.0281715,48.4244013],[10.0283059,48.4244842],[10.0287214,48.4247407],[10.0292493,48.4250371],[10.0298366,48.4253667],[10.031201,48.4261536],[10.0321157,48.426634],[10.0327157,48.4269246],[10.0339258,48.4275106],[10.0345323,48.4277966],[10.0351443,48.4280347],[10.0357862,48.4282471],[10.0364509,48.4284181],[10.037171,48.4286045],[10.0384775,48.4289856],[10.0399951,48.4294141],[10.0417202,48.4298968],[10.0415749,48.4300696],[10.0414985,48.4301606],[10.0414445,48.4302247],[10.0413689,48.4303149],[10.0412574,48.4304477],[10.0411523,48.4305725],[10.0404235,48.4314395],[10.0399996,48.4320184],[10.0397087,48.4324115],[10.0405753,48.432383],[10.0410709,48.4323587],[10.0411959,48.4323629],[10.0415886,48.4325732],[10.0423185,48.4331142],[10.0428303,48.4334855],[10.0423219,48.4337345],[10.0422286,48.4336692],[10.0420426,48.4337691],[10.0413235,48.4341399],[10.0410559,48.4342487],[10.0406944,48.4344297],[10.0406068,48.4344647],[10.0380779,48.4355526],[10.0373364,48.4357991],[10.0376656,48.435104],[10.0372318,48.4349047],[10.0381924,48.4338991],[10.0373347,48.4334991],[10.0351321,48.4324721],[10.0349032,48.4329844],[10.034888,48.4335469],[10.0345354,48.4340316],[10.0344355,48.4341129],[10.0327836,48.4357205],[10.0316526,48.4362499],[10.0313342,48.4363988],[10.0279958,48.4368905],[10.0278916,48.4369026],[10.027923,48.4370261],[10.0280071,48.437187],[10.0280927,48.4373868],[10.0281748,48.4375911],[10.028213,48.4378142],[10.028263,48.4379825],[10.0282967,48.4381738],[10.0283193,48.4383402],[10.0283281,48.4385067],[10.0283429,48.4386458],[10.0283477,48.4391091],[10.0283259,48.4392829],[10.028331,48.4394404],[10.0283459,48.4395863],[10.0283801,48.4396862],[10.0285111,48.4399104],[10.028642,48.4401415],[10.0287444,48.4402861],[10.0296783,48.4410587],[10.0304508,48.44168],[10.0307982,48.4422532],[10.0311461,48.4429621],[10.0314162,48.4433511],[10.031691,48.4436673],[10.0318168,48.443762],[10.0321814,48.4437604],[10.0324462,48.4437722],[10.032815,48.4438165],[10.033129,48.4438663],[10.0333677,48.4439195],[10.0335686,48.4439687],[10.0338075,48.4440266],[10.0340581,48.4441252],[10.0342878,48.4442151],[10.0344961,48.4442824],[10.0347085,48.4443681],[10.0352324,48.4436458],[10.0358115,48.4438146],[10.0364844,48.4440114],[10.0368759,48.4441146],[10.0370629,48.4441618],[10.037322,48.4442079],[10.037653,48.4442505],[10.0379188,48.444292],[10.0382533,48.4443345],[10.0374789,48.4452522],[10.0372524,48.4454451],[10.037187,48.4455419],[10.0371729,48.4456288],[10.0372058,48.4456877],[10.0372912,48.4457729],[10.0373665,48.4458629],[10.0374404,48.4460123],[10.0374615,48.4461237],[10.0374563,48.4462697],[10.0374201,48.4464094],[10.0373529,48.446552],[10.0372801,48.4467265],[10.0371725,48.4468877],[10.0370899,48.4469758],[10.03701,48.44705],[10.0368825,48.4471318],[10.0367413,48.4472162],[10.036552,48.4473036],[10.0363699,48.447393],[10.0361495,48.4474741],[10.0359495,48.4475412],[10.035604,48.4475809],[10.0355852,48.4477084],[10.0356025,48.4477931],[10.0356008,48.4479232],[10.035592,48.4480476],[10.0355907,48.4481612],[10.03559,48.4482502],[10.0356211,48.4483151],[10.0356439,48.4483547],[10.0356802,48.448418],[10.0357823,48.4486015],[10.035898,48.4487243],[10.0359783,48.4488797],[10.0361024,48.4490632],[10.0361826,48.4492075],[10.0362836,48.4493793],[10.0363541,48.4495218],[10.0363898,48.4495995],[10.0363633,48.4496821],[10.0363454,48.4497832],[10.0362364,48.4499511],[10.03621,48.4503486],[10.036228,48.4506019],[10.0362282,48.4508096],[10.0361888,48.450933],[10.0361792,48.450963],[10.0361095,48.4510981],[10.036012,48.4512245],[10.0358572,48.4514083],[10.0356786,48.4516172],[10.0355001,48.4517563],[10.0354446,48.4517879],[10.035244,48.4519081],[10.0350264,48.4520261],[10.0347878,48.4521304],[10.0345352,48.4522191],[10.0339923,48.4524102],[10.0332849,48.452607],[10.03327,48.4526122],[10.0328446,48.4527585],[10.0324074,48.4529008],[10.0320284,48.4530314],[10.0315921,48.4532263],[10.0307444,48.4536547],[10.0301217,48.4539947],[10.0314376,48.4547376],[10.0316069,48.4547103],[10.0315894,48.4550411],[10.0315547,48.4558047],[10.0313913,48.4574954],[10.032105,48.4575837],[10.0324844,48.4576543],[10.0326734,48.4576894],[10.0332559,48.4578153],[10.0333798,48.4578371],[10.0337312,48.4578988],[10.0341619,48.4579848],[10.0345544,48.4580506],[10.035068,48.4581565],[10.0353026,48.4582188],[10.0354122,48.4582089],[10.0355102,48.4581708],[10.0361769,48.4583778],[10.0366436,48.4585274],[10.0369611,48.4586369],[10.0371706,48.4587452],[10.0373934,48.4588555],[10.0376786,48.4590251],[10.0379494,48.4591919],[10.0382135,48.459351],[10.038508,48.4595152],[10.0385203,48.4595214],[10.0387232,48.4596245],[10.0389219,48.4596972],[10.0390649,48.459725],[10.0390627,48.4594529],[10.0390784,48.4593118],[10.0390921,48.4591609],[10.0390771,48.458964],[10.0390747,48.4587221],[10.039085,48.4584965],[10.0390698,48.4582778],[10.0390417,48.458123],[10.0390403,48.4581159],[10.0390434,48.4579283],[10.0390441,48.4578851],[10.0391198,48.4578897],[10.0391801,48.4578934],[10.0394694,48.4580996],[10.0398227,48.4583591],[10.0402497,48.4586889],[10.040707,48.4590315],[10.0411081,48.4593237],[10.041322,48.4594894],[10.0413735,48.4595293],[10.041582,48.4594189],[10.0417864,48.4592676],[10.0419603,48.4591528],[10.0420692,48.4590566],[10.0421814,48.4589443],[10.0422864,48.4587978],[10.0423843,48.4586332],[10.0424998,48.4585004],[10.0425602,48.4583747],[10.042621,48.4582832],[10.0427478,48.4582553],[10.0431526,48.4582148],[10.0436193,48.4581742],[10.0441204,48.4581423],[10.0444771,48.4581136],[10.0447484,48.4581055],[10.0449957,48.458109],[10.0452464,48.4581058],[10.0456553,48.4581382],[10.0462257,48.4581701],[10.0462565,48.4581253],[10.0464764,48.457249],[10.0469635,48.4572837],[10.0475599,48.4573303],[10.0479788,48.4573112],[10.0482766,48.4572741],[10.0486141,48.4573693],[10.048786,48.4574943],[10.0488585,48.4575598],[10.0489296,48.4576089],[10.049629,48.4574987],[10.0499329,48.4574632],[10.0503349,48.4573726],[10.0510928,48.4572691],[10.0516311,48.4571892],[10.0519842,48.4571284],[10.0521661,48.4571048],[10.0521787,48.4570664],[10.0523761,48.456968],[10.0529926,48.456934],[10.0533934,48.4569268],[10.0538683,48.4569426],[10.0541767,48.4569279],[10.0544516,48.4569254],[10.0547129,48.4569822],[10.0548609,48.457009],[10.0550806,48.4569989],[10.0552195,48.4569996],[10.0554323,48.4570026],[10.0557866,48.4570364],[10.0562097,48.4570746],[10.0567942,48.4571183],[10.057183,48.4571588],[10.0575684,48.4572086],[10.0578882,48.4572479],[10.0579538,48.4572561],[10.0584085,48.4573463],[10.058624,48.4573902],[10.0589114,48.4574317],[10.0598661,48.4576416],[10.060762,48.4578269],[10.0614408,48.457959],[10.0620229,48.4580667],[10.062208,48.4578009],[10.0623297,48.4574631],[10.0624685,48.4572061],[10.0626283,48.4571292],[10.0623859,48.4570262],[10.0611164,48.456562],[10.0608636,48.456491],[10.0606193,48.4564224],[10.060381,48.4563446],[10.060129,48.4562006],[10.0600891,48.4561779],[10.0598589,48.4559995],[10.0598469,48.4559887],[10.0597049,48.4558615],[10.0593957,48.4556791],[10.0589478,48.4554317],[10.0579759,48.4549092],[10.0578058,48.4548177],[10.0573125,48.4545134],[10.0567919,48.4541924],[10.0566515,48.4541057],[10.0566462,48.4539163],[10.0566375,48.4536032],[10.0575947,48.4536727],[10.0580192,48.4537034],[10.058141,48.4537139],[10.0590436,48.4537928],[10.0614861,48.4540731],[10.0627965,48.4542492],[10.0632584,48.4543113],[10.0631864,48.4546296],[10.0632847,48.4547407],[10.0635008,48.4550563],[10.0636588,48.4552907],[10.0637487,48.4554244],[10.0639502,48.4557013],[10.0639514,48.4559275],[10.0639736,48.4561557],[10.064015,48.4563381],[10.0641206,48.4566114],[10.0643664,48.4572079],[10.0650371,48.4573759],[10.0669015,48.4577641],[10.0684103,48.4580361],[10.0691646,48.4581768],[10.0700192,48.458344],[10.070678,48.4585172],[10.070795,48.4582293],[10.0708793,48.4580227],[10.0745242,48.4593404],[10.0741746,48.4597836],[10.0742615,48.4598053],[10.0749885,48.4600448],[10.0759184,48.460308],[10.0765915,48.4605054],[10.0769933,48.4606372],[10.0770515,48.4606562],[10.0785058,48.4611946],[10.0799727,48.4617118],[10.0804298,48.4618411],[10.0817551,48.4622494],[10.0829888,48.4625951],[10.0837569,48.4627796],[10.0837673,48.4625496],[10.083882,48.4625453],[10.087386,48.4634614],[10.0870556,48.464187],[10.0868664,48.4646048],[10.086764,48.4648238],[10.0866011,48.4654255],[10.0864543,48.4659188],[10.0864395,48.4659571],[10.0874214,48.4660325],[10.087981,48.4660722],[10.0901561,48.46622],[10.0901491,48.4674864],[10.0902399,48.4674875],[10.0908145,48.4675432],[10.0913986,48.467542],[10.0921014,48.4674908],[10.0927416,48.467418],[10.0935803,48.4673173],[10.0941354,48.4672685],[10.0940482,48.4676507],[10.0939987,48.4678001],[10.0938292,48.4683109],[10.0935485,48.468951],[10.0935186,48.4690044],[10.0936189,48.4690263],[10.0938434,48.4690591],[10.094552,48.469186],[10.0956507,48.4693691],[10.0957762,48.4694013],[10.0963925,48.4695594],[10.0964196,48.4699534],[10.0964319,48.4701362],[10.0964326,48.4703552],[10.0964332,48.470483],[10.09676,48.4705012],[10.09937,48.4705464],[10.1005565,48.4705662],[10.1005738,48.470619],[10.1008877,48.4715745],[10.101403,48.4728301],[10.1015084,48.4728182],[10.1033833,48.4726057],[10.1033909,48.472652],[10.1034374,48.4729009],[10.1034774,48.4733977],[10.1034784,48.4734092],[10.103471,48.4738068],[10.1034666,48.4740585],[10.1034409,48.4749439],[10.1034285,48.4753694],[10.1045574,48.4768613],[10.1051021,48.4775896],[10.1051761,48.4775744],[10.1067716,48.4772447],[10.1074127,48.4771156],[10.1075567,48.4770866],[10.1077007,48.4770576],[10.108055,48.4769861],[10.1123583,48.4759377],[10.1125737,48.47616],[10.1127106,48.476142],[10.1142878,48.4759012],[10.1143836,48.475883],[10.1145571,48.4758527],[10.1172004,48.4754226],[10.1173809,48.4753931],[10.1166671,48.473493],[10.1166465,48.4734369],[10.1191303,48.4730628],[10.1182566,48.4707816],[10.1172184,48.4680706],[10.1173034,48.468044],[10.1179445,48.4679133],[10.1179939,48.4678145],[10.1187211,48.4664561],[10.1188406,48.4662231],[10.118927,48.4660549],[10.119199,48.4655499],[10.1192548,48.4654558],[10.1193045,48.4653869],[10.1193796,48.465377],[10.1195817,48.4653631],[10.1198281,48.4653445],[10.1200851,48.4653278],[10.12038,48.4653201],[10.1205375,48.4653183],[10.1206541,48.46531],[10.1207363,48.4653138],[10.1208122,48.4653221],[10.1209121,48.4653414],[10.1209388,48.4653138],[10.1212134,48.4648082],[10.1213157,48.4646199],[10.1213489,48.4645566],[10.1213853,48.4644873],[10.1214218,48.4644179],[10.1214481,48.4643674],[10.1215413,48.4641895],[10.1223246,48.462616],[10.1228938,48.4615354],[10.123344,48.4607242],[10.1233791,48.4606491],[10.1253735,48.4609854],[10.1268153,48.4579184],[10.1268385,48.457864],[10.1273162,48.4579379],[10.1276464,48.4569276],[10.1277176,48.4569383],[10.1303365,48.4572703],[10.1315504,48.4574351],[10.1315832,48.4573661],[10.131886,48.4568104],[10.1324716,48.455548],[10.1328587,48.4555987],[10.1334961,48.4556703],[10.1335191,48.4556196],[10.1338477,48.4548928],[10.133914,48.4549188],[10.1340319,48.454942],[10.1368786,48.4555021],[10.1393659,48.4559877],[10.140623,48.4562763],[10.1408736,48.4563222],[10.1409499,48.4563361],[10.1412285,48.4563825],[10.1414761,48.45642],[10.141649,48.4564588],[10.1416552,48.4564601],[10.1418821,48.4564909],[10.1421946,48.4565074],[10.1428818,48.4565517],[10.1437269,48.4566141],[10.145775,48.4567758],[10.1486168,48.4569957],[10.1498232,48.4571078],[10.1521327,48.4573213],[10.1539474,48.4574916],[10.1546143,48.4575634],[10.1547932,48.4575989],[10.1549039,48.4576644],[10.1550353,48.4577504],[10.1551497,48.4578388],[10.1553192,48.4579474],[10.1554542,48.4580311],[10.1555923,48.4580782],[10.1557546,48.4580983],[10.1598661,48.4586093],[10.1633733,48.4590396],[10.1649781,48.4592142],[10.1650764,48.4592178],[10.1649022,48.4597831],[10.1654825,48.4597337],[10.1659618,48.4596928],[10.1668565,48.4596028],[10.1672681,48.4595581],[10.1675731,48.4595111],[10.1675858,48.45955],[10.1679997,48.4596629],[10.1683323,48.4596321],[10.1702896,48.4594329],[10.1716099,48.4592986],[10.1723608,48.459216],[10.1723921,48.4592734],[10.172417,48.4593188],[10.1724418,48.4593641],[10.173203,48.4605109],[10.1738422,48.460455],[10.1738207,48.4604945],[10.1731358,48.4615099],[10.172886,48.4618522],[10.1725945,48.4621813],[10.1729887,48.462294],[10.1734705,48.4624038],[10.1735169,48.4624144],[10.1741173,48.4625388],[10.1746142,48.4626344],[10.1750735,48.4627509],[10.1755504,48.4628765],[10.176142,48.4630601],[10.1766745,48.4632148],[10.1769026,48.4632765],[10.1770613,48.4633069],[10.1772436,48.4633166],[10.1774772,48.4633211],[10.1776694,48.4633102],[10.1779851,48.4632958],[10.1776706,48.4641204],[10.1776675,48.4641278],[10.1774392,48.4646794],[10.1772082,48.4652498],[10.1770811,48.4652465],[10.1769505,48.46525],[10.1768066,48.4652628],[10.1766765,48.4652846],[10.1765718,48.4653587],[10.176542,48.4654092],[10.1765266,48.4654891],[10.1765214,48.4655621],[10.1765435,48.465635],[10.1766127,48.4657987],[10.1766393,48.4659194],[10.1767005,48.4660396],[10.1767651,48.4661669],[10.1768028,48.4663103],[10.1768154,48.4664174],[10.1768102,48.4664904],[10.176791,48.46655],[10.1767512,48.466612],[10.1766873,48.4666742],[10.176623,48.4667183],[10.1765451,48.4667692],[10.1764396,48.466809],[10.1763065,48.4668445],[10.1761181,48.4668782],[10.1759889,48.4669],[10.1759027,48.4669145],[10.175704,48.4669484],[10.175689,48.4670421],[10.1757201,48.4672038],[10.1753838,48.4672185],[10.1751368,48.4672299],[10.1749244,48.4672549],[10.1747703,48.4672836],[10.1745858,48.4673334],[10.1744128,48.4674194],[10.1743284,48.4674933],[10.174275,48.4675645],[10.1742628,48.4676216],[10.1742672,48.467665],[10.174306,48.4677126],[10.1743755,48.4677508],[10.1744864,48.4677885],[10.174756,48.4678657],[10.1750443,48.4679999],[10.1752387,48.4680915],[10.1753675,48.4681679],[10.175476,48.4682581],[10.175557,48.4683486],[10.1756181,48.4684645],[10.1756381,48.4685943],[10.1755996,48.468711],[10.1755501,48.4688052],[10.1754529,48.4689157],[10.1752701,48.4690293],[10.1748645,48.4691792],[10.1773764,48.4699583],[10.1777079,48.4697315],[10.178014,48.4695263],[10.1783712,48.469287],[10.1787648,48.4690033],[10.1790101,48.4688268],[10.1796885,48.4684391],[10.1803774,48.4680674],[10.1812356,48.4675843],[10.1827026,48.4668332],[10.1834462,48.466445],[10.1844861,48.4671651],[10.1833714,48.468002],[10.1819223,48.4690861],[10.1812364,48.4695949],[10.1813479,48.4696601],[10.1825209,48.4700274],[10.184458,48.4706158],[10.1860005,48.4710595],[10.1853007,48.4719551],[10.1852226,48.4720552],[10.1851162,48.4721775],[10.1844759,48.4729136],[10.1820025,48.4720224],[10.1794215,48.4710684],[10.1772453,48.4702403],[10.1770176,48.470528],[10.1768566,48.4707314],[10.1766811,48.4709533],[10.1765163,48.4711616],[10.1763701,48.4713463],[10.177164,48.471655],[10.1780383,48.4719949],[10.1798977,48.4726817],[10.1812468,48.4732392],[10.1830695,48.4739154],[10.182933,48.4739971],[10.1825888,48.4742036],[10.182419,48.4743055],[10.1821772,48.4744505],[10.1820254,48.4745415],[10.1808341,48.4753449],[10.1809145,48.4753958],[10.1809776,48.4754384],[10.1813051,48.4754868],[10.1817459,48.4755385],[10.1820587,48.4755749],[10.182342,48.4756178],[10.1828326,48.4757236],[10.18324,48.4758076],[10.1836067,48.475908],[10.1838387,48.4760138],[10.1846774,48.476253],[10.1857116,48.4765231],[10.186733,48.4768113],[10.1870752,48.4769078],[10.1872933,48.4769713],[10.1875045,48.4770417],[10.1878938,48.4772011],[10.1880988,48.4772825],[10.1884737,48.4774312],[10.1894934,48.477795],[10.1911774,48.4784632],[10.1912515,48.4784921],[10.1913949,48.4785484],[10.1915475,48.4786084],[10.1921184,48.4788325],[10.1938304,48.4795047],[10.1946293,48.4798089],[10.1950661,48.4799753],[10.1961015,48.4803524],[10.1965608,48.4805197],[10.1967557,48.4805907],[10.1987584,48.4813055],[10.1989792,48.4813844],[10.1992541,48.4814839],[10.200729,48.4820178],[10.2026493,48.4827151],[10.2029568,48.482831],[10.205426,48.483722],[10.2068419,48.4842428],[10.2084507,48.4848457],[10.208843,48.4849926],[10.2131188,48.4865148],[10.2159184,48.4875566],[10.2176658,48.4882058],[10.2178494,48.4882863],[10.2180079,48.4883265],[10.2181874,48.4883428],[10.2188299,48.4883535],[10.2224372,48.4884465],[10.2228688,48.4884576],[10.2229729,48.4884603],[10.2252001,48.4885014],[10.2253515,48.4885042],[10.2253999,48.4885056],[10.2289237,48.4886066],[10.2300137,48.4886406],[10.2301611,48.4886444],[10.2314391,48.4886775],[10.2332728,48.4887249],[10.2337483,48.4887376],[10.2349914,48.4887708],[10.2356107,48.4887872],[10.2359237,48.4887983],[10.2361406,48.4888215],[10.2362448,48.4888436],[10.2362957,48.4888544],[10.2364135,48.4889012],[10.2366266,48.4890819],[10.2375626,48.4898516],[10.2383478,48.4904766],[10.2385954,48.4906615],[10.2388037,48.490767],[10.2390218,48.4908586],[10.2396826,48.491081],[10.2397558,48.4911098],[10.2404929,48.4914002],[10.2412824,48.4917082],[10.2414593,48.4917866],[10.2416219,48.491849],[10.2413115,48.4927552],[10.2411862,48.4931207],[10.2410773,48.4934307],[10.2409323,48.4938435],[10.2405481,48.49441],[10.2398622,48.4957174],[10.2398039,48.4958288],[10.239713,48.4960021],[10.239322,48.4966407],[10.2392499,48.4967586],[10.2391281,48.4969923],[10.2390985,48.4970495],[10.2388492,48.4975282],[10.2386694,48.4978631],[10.2384728,48.4982304],[10.2384378,48.4982956],[10.2384162,48.4983408],[10.2380701,48.4990602],[10.2379519,48.4993052],[10.2374495,48.5001693],[10.2406855,48.5000729],[10.2421993,48.5000368],[10.2424191,48.5000315],[10.2426052,48.500027],[10.2426282,48.5000902],[10.2424942,48.5003587],[10.2421622,48.5010672],[10.2419865,48.501771],[10.2419754,48.5018153],[10.2418437,48.5023532],[10.2416676,48.5030735],[10.2414324,48.5040327],[10.2413535,48.5043546],[10.2410601,48.5055793],[10.2410588,48.5055853],[10.2409674,48.5060336],[10.2408542,48.506034],[10.2385127,48.5061883],[10.2382667,48.5061107],[10.2373173,48.5060014],[10.2361534,48.5057487],[10.235753,48.5057021],[10.2353926,48.5056184],[10.2349805,48.505638],[10.2344613,48.5056766],[10.2339173,48.5057357],[10.2331379,48.5058029],[10.2330457,48.5058109],[10.2324495,48.5058622],[10.2314881,48.50581],[10.2309588,48.5057149],[10.2280951,48.5051171],[10.2279397,48.5050987],[10.2278228,48.5050959],[10.227695,48.5051938],[10.2275802,48.505362],[10.2269645,48.5065336],[10.2267505,48.5068266],[10.2265805,48.5069981],[10.227483,48.5072545],[10.2281875,48.5074476],[10.2302003,48.5080006],[10.2310257,48.5082056],[10.2310375,48.5082533],[10.2311014,48.5083119],[10.2318204,48.5084224],[10.2323547,48.5084603],[10.2327616,48.5084953],[10.2341617,48.5087057],[10.2340049,48.5081142],[10.2349343,48.507822],[10.2357561,48.5075977],[10.2365603,48.507369],[10.2371413,48.5072577],[10.2375084,48.5072203],[10.2376359,48.5072322],[10.2377616,48.5072874],[10.2380921,48.507511],[10.2383066,48.5076585],[10.2339795,48.5098823],[10.2337686,48.5099538],[10.2309654,48.5104902],[10.2309845,48.5105471],[10.2311135,48.5106023],[10.2316099,48.5107435],[10.2322521,48.5109214],[10.2325888,48.5110171],[10.2333796,48.5113229],[10.2341022,48.5117555],[10.2344371,48.5120017],[10.2348756,48.5120548],[10.2353502,48.5120479],[10.2359707,48.5118811],[10.2362684,48.5118335],[10.2375828,48.5119513],[10.2387013,48.5120766],[10.2390855,48.5120366],[10.2394886,48.511953],[10.2401411,48.5117106],[10.2402994,48.5116124],[10.2405145,48.5114874],[10.2407697,48.5114059],[10.2412282,48.5113374],[10.2423062,48.5111754],[10.2432779,48.5110286],[10.2439133,48.5109005],[10.2448862,48.5106851],[10.2453019,48.5105715],[10.2460639,48.5103227],[10.2467524,48.510139],[10.2477157,48.5099442],[10.2475175,48.5100865],[10.247368,48.5102441],[10.2472543,48.5104445],[10.2471661,48.510793],[10.2472286,48.5108126],[10.2498828,48.5115248],[10.2495704,48.5121621],[10.2488104,48.5138158],[10.248893,48.5138214],[10.2489658,48.513834],[10.2481608,48.5155842],[10.2504145,48.5167613],[10.2511404,48.5160379],[10.2516697,48.5155179],[10.2524047,48.5145983],[10.2524603,48.514625],[10.2553317,48.516017],[10.2537997,48.518478],[10.2547155,48.5187729],[10.2561293,48.5191645],[10.2570939,48.5193514],[10.2575323,48.5194123],[10.2579626,48.5191744],[10.2592108,48.5192985],[10.2605772,48.5193412],[10.2604977,48.5194495],[10.2605743,48.5194851],[10.2616965,48.5196564],[10.2626009,48.5198124],[10.2644484,48.5201051],[10.2652236,48.5192307],[10.265452,48.5189893],[10.265522,48.5188419],[10.2655392,48.5187503],[10.2653102,48.5185143],[10.2653006,48.5183477],[10.2654295,48.5182108],[10.2660838,48.5176217],[10.2661175,48.5175708],[10.2662152,48.5176102],[10.2665252,48.5177146],[10.2675271,48.5181132],[10.2678786,48.5182259],[10.268318,48.518296],[10.2687639,48.518357],[10.2692033,48.5183357],[10.2695312,48.5182753],[10.2698813,48.5182578],[10.2705234,48.5181417],[10.270952,48.5180156],[10.2715616,48.5178528],[10.2716194,48.5178374],[10.2724328,48.5177046],[10.2729709,48.5158337],[10.2730432,48.5158325],[10.2736738,48.5158675],[10.2744233,48.5159596],[10.2752862,48.5160407],[10.2759524,48.5161092],[10.2765272,48.516209],[10.2772153,48.516405],[10.277836,48.5166296],[10.2778551,48.5165858],[10.278172,48.5160596],[10.2804002,48.5165892],[10.2804656,48.5166048],[10.2835665,48.5173964],[10.2842158,48.5175565],[10.285382,48.5177487],[10.2855878,48.5178152],[10.2860043,48.5172145],[10.2864105,48.5166286],[10.2868361,48.516015],[10.2869572,48.5160346],[10.2870824,48.5160551],[10.2879781,48.5162009],[10.2893279,48.5164333],[10.2907361,48.5166578],[10.2935058,48.5170857],[10.2942287,48.5171974],[10.295672,48.5174451],[10.2957888,48.5174447],[10.2958291,48.5174256],[10.2962691,48.5168968],[10.2963232,48.5168773],[10.2963864,48.5169032],[10.2973167,48.5172678],[10.2974438,48.5173178],[10.2975694,48.517367],[10.2986666,48.5177666],[10.2987484,48.517803],[10.2988814,48.5178622],[10.3028149,48.5193704],[10.3069768,48.5209647],[10.3070872,48.5210135],[10.3072128,48.5210688],[10.3111783,48.5226023],[10.3120374,48.5229345],[10.3120672,48.522946],[10.3108508,48.5244041],[10.3106852,48.5246161],[10.3091675,48.5263713],[10.3096549,48.5264458],[10.3099721,48.5264681],[10.3102646,48.5264748],[10.3145315,48.5264909],[10.3141932,48.5269279],[10.3135401,48.5278747],[10.313032,48.5288419],[10.3127148,48.5293835],[10.3122288,48.5301061],[10.3115429,48.5297723],[10.3106426,48.52941],[10.310044,48.5292118],[10.3096378,48.529104],[10.3091833,48.5290793],[10.308781,48.5290749],[10.3086809,48.5290738],[10.3081754,48.5290704],[10.3076787,48.5290259],[10.3068393,48.528916],[10.3064019,48.5288932],[10.3059599,48.5289346],[10.3054458,48.5290752],[10.3044687,48.5294333],[10.3039896,48.5295894],[10.3036259,48.5297072],[10.303228,48.5299236],[10.3031756,48.5299953],[10.3029556,48.5308551],[10.3026803,48.5321816],[10.3021269,48.5347461],[10.3021142,48.5348048],[10.3018749,48.5359143],[10.3018704,48.535935],[10.3018297,48.5361389],[10.3016091,48.5371722],[10.3016244,48.5372177],[10.3017701,48.5372519],[10.3020497,48.5373754],[10.303285,48.5379675],[10.3039011,48.5382753],[10.3035972,48.5385199],[10.3037354,48.5386318],[10.3031293,48.5392856],[10.3027623,48.5396817],[10.3020757,48.5406678],[10.3017033,48.5413017],[10.3021107,48.5414391],[10.3018098,48.5419668],[10.301867,48.5420251],[10.3018959,48.5420386],[10.3020418,48.542107],[10.3017637,48.5428809],[10.3016496,48.5435985],[10.3016432,48.5436388],[10.3016273,48.5436755],[10.3021212,48.5436401],[10.3019648,48.5448786],[10.3019473,48.5450153],[10.302661,48.5450604],[10.3027716,48.5450673],[10.3027464,48.5452483],[10.3027312,48.5454783],[10.3027221,48.5456154],[10.3025893,48.546242],[10.3025607,48.5464164],[10.3025168,48.5466843],[10.3025114,48.5467173],[10.3024959,48.5468131],[10.30248,48.5469057],[10.3024214,48.5472487],[10.3023629,48.5475928],[10.3025999,48.5477475],[10.3027605,48.5479094],[10.302992,48.5480359],[10.3032076,48.5480986],[10.303628,48.5481216],[10.3041568,48.5480925],[10.3041765,48.5482319],[10.3041955,48.5483946],[10.304302,48.5486261],[10.3044122,48.5486796],[10.3044555,48.5489229],[10.3044786,48.5490889],[10.3044794,48.5492325],[10.3044311,48.5493143],[10.3043721,48.5494343],[10.3044515,48.5495812],[10.3045846,48.5495718],[10.3045178,48.5500976],[10.3048279,48.5501986],[10.3049145,48.5502761],[10.304981,48.5503354],[10.3052186,48.5507951],[10.3055509,48.5507599],[10.3068296,48.5506247],[10.3069716,48.5506102],[10.3073336,48.5505732],[10.3075959,48.5505003],[10.3079398,48.5504057],[10.3081966,48.5509198],[10.3084237,48.5512883],[10.308592,48.5514613],[10.3086979,48.5515327],[10.3089331,48.5515654],[10.3092249,48.5515447],[10.3095353,48.5514711],[10.3096874,48.5513955],[10.3100395,48.5511342],[10.3100557,48.5511222],[10.3117078,48.5522299],[10.312454,48.5528548],[10.3133029,48.5535601],[10.3138091,48.5539309],[10.3157335,48.5555328],[10.3160545,48.5557236],[10.3159772,48.5557684],[10.3158282,48.5557458],[10.3147882,48.5555721],[10.3146337,48.5555646],[10.3144814,48.555557],[10.3129852,48.5559348],[10.3132255,48.5575221],[10.3136298,48.5607689],[10.3136147,48.5609473],[10.3136058,48.561053],[10.3133574,48.5639727],[10.3125586,48.5654114],[10.3131804,48.5655467],[10.3132205,48.5655962],[10.3132346,48.5656896],[10.3130654,48.5666106],[10.3128744,48.5675844],[10.3124319,48.5687955],[10.3121473,48.5694538],[10.3119047,48.5698835],[10.3115848,48.5702685],[10.3111283,48.5708148],[10.3109983,48.5710926],[10.3108338,48.5714871],[10.3106216,48.5716631],[10.3100287,48.5721312],[10.310055,48.5722108],[10.3107769,48.5726493],[10.3108825,48.5727347],[10.3109158,48.5728165],[10.3108056,48.5729365],[10.3101187,48.5737413],[10.3094934,48.5744174],[10.3093307,48.5746367],[10.3100438,48.5750933],[10.3100483,48.5751365],[10.3099848,48.5752263],[10.3093992,48.5758573],[10.3091194,48.5759787],[10.3091316,48.5760608],[10.3092021,48.5761308],[10.3107144,48.5767258],[10.3107296,48.5767895],[10.3107077,48.5768925],[10.3104758,48.5773125],[10.309917,48.5789796],[10.3097838,48.5791933],[10.3096918,48.5792376],[10.3093637,48.5795147],[10.3086684,48.5801697],[10.3085672,48.5802687],[10.3083969,48.5806698],[10.3081621,48.5811126],[10.3080802,48.5813053],[10.307516,48.582121],[10.3074792,48.5821788],[10.3066382,48.5835406],[10.3065042,48.5837574],[10.306488,48.5837836],[10.3062233,48.5841194],[10.3060457,48.5842011],[10.3058083,48.5842193],[10.3048058,48.5842381],[10.3041346,48.5842696],[10.3035853,48.5843731],[10.3029858,48.5845453],[10.3025077,48.5848923],[10.2999924,48.5864846],[10.2990686,48.5872581],[10.2979466,48.5881203],[10.2968349,48.588818],[10.2964562,48.588995],[10.2961754,48.5890823],[10.295428,48.5892581],[10.2930904,48.5897095],[10.2937063,48.5904365],[10.2942054,48.5911919],[10.2945936,48.5918402],[10.2947493,48.5920722],[10.2950895,48.5925798],[10.295118,48.5926196],[10.2954023,48.5935591],[10.2954076,48.5935745],[10.2954789,48.5937875],[10.2956576,48.594319],[10.2957386,48.5950321],[10.2957226,48.5952481],[10.2957068,48.5954599],[10.2956036,48.5959096],[10.2957406,48.5967153],[10.2956379,48.5974733],[10.2953417,48.5980618],[10.2953111,48.5982199],[10.2952043,48.5987381],[10.2952448,48.5989147],[10.2952711,48.5990407],[10.2952751,48.5990602],[10.2952845,48.599286],[10.295277,48.5995167],[10.295277,48.599681],[10.295303,48.5998906],[10.2953422,48.6002504],[10.295371,48.6004183],[10.2956826,48.6003076],[10.2959135,48.6002349],[10.2960835,48.6001885],[10.2962821,48.6001689],[10.2964203,48.6001824],[10.2968794,48.600309],[10.2968646,48.6001543],[10.2968655,48.6000105],[10.2968837,48.5998665],[10.2968952,48.5997362],[10.29699,48.5997496],[10.2975543,48.5997554],[10.2981419,48.5997471],[10.2980001,48.6004647],[10.2979205,48.6007813],[10.2978863,48.6008883],[10.2976348,48.6016741],[10.2975591,48.6019354],[10.2975384,48.6020068],[10.2974123,48.602203],[10.2971088,48.6024459],[10.2971036,48.602497],[10.2970892,48.6026334],[10.2970918,48.6039273],[10.297848,48.6042602],[10.2982223,48.604425],[10.2989979,48.6047601],[10.2991556,48.6048211],[10.299419,48.6048574],[10.3002658,48.6049173],[10.3009135,48.6049947],[10.3018029,48.6050835],[10.301983,48.6049411],[10.3022574,48.6047443],[10.3025662,48.6045493],[10.3028539,48.6043455],[10.3032134,48.6042088],[10.3036895,48.6040542],[10.3040302,48.6039658],[10.3044161,48.6038835],[10.3047352,48.6038457],[10.3049756,48.6038254],[10.3051461,48.6037858],[10.3054081,48.6037058],[10.3059356,48.6035478],[10.3072495,48.6031633],[10.307075,48.6012311],[10.3090336,48.6011042],[10.3090209,48.6016135],[10.3090356,48.6018824],[10.3089988,48.6023167],[10.3089611,48.6026483],[10.3088854,48.6027341],[10.3088889,48.6028162],[10.3088244,48.6032487],[10.3087917,48.603546],[10.3086323,48.6043294],[10.3085274,48.6048677],[10.3086068,48.6048709],[10.3105817,48.6048736],[10.3106133,48.6048733],[10.3109175,48.6048704],[10.3111154,48.6048684],[10.3113428,48.6048643],[10.3115762,48.6048395],[10.3117583,48.6048272],[10.312012,48.6047973],[10.3123687,48.6047566],[10.3126155,48.6047269],[10.3129785,48.6046747],[10.3134575,48.604593],[10.3138065,48.6045318],[10.3141109,48.6044806],[10.3144088,48.6044341],[10.3146763,48.6044018],[10.3149265,48.6043722],[10.3152084,48.6043533],[10.3154836,48.604346],[10.3157869,48.604345],[10.3162313,48.6043611],[10.3163736,48.6043662],[10.3169704,48.6043805],[10.3171197,48.6043786],[10.3173435,48.60437],[10.3175529,48.6043549],[10.3177695,48.6043464],[10.3179751,48.6043198],[10.3182007,48.6042816],[10.3184637,48.6042288],[10.3188322,48.6041468],[10.3189766,48.6041054],[10.3190703,48.6040786],[10.31927,48.6040197],[10.3193254,48.6040032],[10.319541,48.603972],[10.3197166,48.6039711],[10.31989,48.6039954],[10.3200678,48.6040492],[10.3201972,48.6040949],[10.3202654,48.6041622],[10.3203287,48.6042682],[10.3205438,48.6047963],[10.3206558,48.6050798],[10.3206998,48.6052228],[10.3207084,48.6052982],[10.3207108,48.6053209],[10.320677,48.605415],[10.3206611,48.6054357],[10.3206182,48.6054914],[10.3205631,48.6055278],[10.3205043,48.6055666],[10.3203824,48.6056144],[10.3201146,48.6057197],[10.3182613,48.6062529],[10.3188281,48.6074747],[10.319454,48.6075217],[10.3199815,48.6076127],[10.3204201,48.6077211],[10.3208526,48.6078458],[10.3213237,48.6079903],[10.3216214,48.608106],[10.3222631,48.6083774],[10.3228112,48.6085502],[10.322842,48.6085947],[10.3230463,48.6088908],[10.3230487,48.60903],[10.3229721,48.6091707],[10.3228366,48.6093102],[10.3227009,48.6094359],[10.3224563,48.6095978],[10.3220437,48.6098588],[10.3202541,48.6108816],[10.3155609,48.6135041],[10.3154568,48.6135622],[10.3131192,48.6148465],[10.3086682,48.617349],[10.3063105,48.6187384],[10.3048514,48.6196385],[10.3044735,48.6198716],[10.3038945,48.6202224],[10.3036874,48.6203491],[10.3001272,48.6225274],[10.2992983,48.623065],[10.2994259,48.6231472],[10.2992948,48.6232337],[10.2991945,48.6232996],[10.2978946,48.6241135],[10.2977568,48.6241998],[10.2979949,48.6243248],[10.2984001,48.6245203],[10.2988733,48.6246984],[10.2992341,48.6248285],[10.2996369,48.6249738],[10.299725,48.6250115],[10.2992127,48.6254335],[10.299063,48.6255379],[10.2988979,48.6256002],[10.2986669,48.6256358],[10.2983902,48.6256788],[10.2980689,48.6257327],[10.2977634,48.6257854],[10.2974161,48.6258599],[10.2970363,48.6259781],[10.2970086,48.6259868],[10.2971462,48.6261688],[10.2972284,48.6263079],[10.297249,48.6264148],[10.2972366,48.6265448],[10.2971867,48.6267086],[10.2968828,48.6272999],[10.2963625,48.6283091],[10.2961937,48.6286516],[10.2961167,48.628808],[10.2957427,48.6294459],[10.2955949,48.6296608],[10.2953831,48.6298849],[10.2951266,48.6301503],[10.2948388,48.6304947],[10.2947177,48.6306397],[10.2946518,48.6307185],[10.2946359,48.6307595],[10.294593,48.6308697],[10.2945771,48.6309105],[10.2945357,48.6310555],[10.2945308,48.631215],[10.2945263,48.6313344],[10.2945572,48.6314881],[10.2947885,48.6323465],[10.2948334,48.6325125],[10.295132,48.6336197],[10.295012,48.6336334],[10.2948821,48.6336542],[10.2936328,48.6337807],[10.2929972,48.6338249],[10.2925272,48.633875],[10.2920341,48.6339484],[10.2915125,48.6340839],[10.2909492,48.6342044],[10.2906053,48.6343506],[10.2906377,48.6343878],[10.2903396,48.6344316],[10.2901912,48.6344205],[10.2899645,48.6344404],[10.2898347,48.6344723],[10.2896581,48.6345347],[10.2894128,48.6346097],[10.2894135,48.6346624],[10.2894382,48.6356184],[10.289451,48.6361066],[10.2865333,48.6363094],[10.2866512,48.636764],[10.286092,48.6367393],[10.2849597,48.6366902],[10.2844146,48.6366675],[10.2838719,48.6367156],[10.2833053,48.6368554],[10.2838241,48.6371685],[10.2841469,48.6374071],[10.2846353,48.6377322],[10.2848028,48.6379622],[10.2850707,48.6383823],[10.2845486,48.6385144],[10.2840692,48.6386801],[10.2837212,48.638855],[10.2834747,48.6390003],[10.2832963,48.6391818],[10.2831213,48.6392922],[10.2828072,48.6394528],[10.2825062,48.6395972],[10.2822268,48.639764],[10.2819588,48.6398758],[10.2814992,48.6401097],[10.2813422,48.640184],[10.2812489,48.6402281],[10.2809326,48.6403339],[10.2806908,48.6404066],[10.2804276,48.6404613],[10.2801368,48.6405142],[10.279838,48.6405466],[10.2798518,48.6407222],[10.2798582,48.6408842],[10.2798424,48.6410945],[10.2798102,48.6412435],[10.2797542,48.6413996],[10.2795766,48.6416875],[10.2794042,48.6419672],[10.2792635,48.6422481],[10.2792077,48.6424089],[10.2791717,48.6425464],[10.2791611,48.6427201],[10.279157,48.64288],[10.2791878,48.6430484],[10.2792629,48.6432046],[10.2793234,48.6433383],[10.2793,48.6434506],[10.2792342,48.6436184],[10.2792845,48.6439372],[10.2794096,48.6442273],[10.2795781,48.6444823],[10.2797363,48.6448289],[10.2798808,48.6451734],[10.2800501,48.6457162],[10.280198,48.6462411],[10.2802666,48.6467627],[10.2799008,48.6466616],[10.2786342,48.6464366],[10.2785764,48.6464654],[10.2778836,48.6468101],[10.2772847,48.6468318],[10.2768361,48.6468142],[10.2762344,48.6467674],[10.2755979,48.6467051],[10.2757663,48.646426],[10.2758752,48.6463039],[10.2761592,48.6459856],[10.276178,48.6458972],[10.2761796,48.6458893],[10.27617,48.6456407],[10.2760305,48.6453348],[10.2759669,48.6452902],[10.2758142,48.6452655],[10.2746393,48.6454475],[10.2743269,48.6457473],[10.2741789,48.6459303],[10.2740706,48.6460713],[10.2739882,48.6462553],[10.2739552,48.6463837],[10.2739139,48.6465602],[10.2738481,48.6467325],[10.2737674,48.64696],[10.2736632,48.6472037],[10.2734845,48.6476634],[10.2733033,48.6480567],[10.2744752,48.6480552],[10.2747446,48.6480688],[10.2748808,48.6481191],[10.274967,48.6482021],[10.2750056,48.6483133],[10.2749172,48.6484311],[10.2748695,48.6484965],[10.2748125,48.6485744],[10.2747359,48.6486443],[10.2746715,48.6486704],[10.2741341,48.6486773],[10.2730975,48.6485137],[10.2728266,48.6489165],[10.2726423,48.6491341],[10.2725863,48.6491145],[10.2724414,48.6490317],[10.2723183,48.6489616],[10.2719139,48.646891],[10.2712104,48.6469668],[10.2708807,48.6469975],[10.2708032,48.6468618],[10.2706981,48.6468226],[10.2704542,48.6468425],[10.2702706,48.6468184],[10.270183,48.646781],[10.2701067,48.6466772],[10.2699668,48.6464468],[10.2698952,48.6463818],[10.2698017,48.6463652],[10.269616,48.6463797],[10.2682707,48.6466171],[10.2681987,48.6468055],[10.2681766,48.6469405],[10.26822,48.6470859],[10.2682848,48.6472447],[10.268702,48.6481371],[10.268747,48.6485074],[10.268848,48.6487914],[10.2690905,48.649092],[10.2694231,48.6495055],[10.2696505,48.6497879],[10.2698997,48.6500794],[10.2700085,48.650272],[10.2700234,48.6504429],[10.2700235,48.6505729],[10.2700032,48.6507146],[10.2699542,48.6509433],[10.2698599,48.6514006],[10.2700569,48.6520576],[10.2694319,48.6517638],[10.2686255,48.6517778],[10.2681187,48.6517724],[10.2675628,48.6517401],[10.2675419,48.6518613],[10.2675641,48.652178],[10.2675918,48.6524309],[10.2676605,48.6526811],[10.2677467,48.6529264],[10.2664238,48.6528392],[10.2662921,48.6528157],[10.2661712,48.653189],[10.2641158,48.6534252],[10.2633019,48.653535],[10.2631026,48.6536925],[10.2629339,48.6550996],[10.2628433,48.6554451],[10.2625326,48.6567034],[10.2620174,48.6566523],[10.26206,48.6565675],[10.2613214,48.6565396],[10.2594512,48.6564903],[10.2594114,48.6569326],[10.2606759,48.6569723],[10.2612706,48.6569965],[10.2613633,48.6570005],[10.2618426,48.6570212],[10.261869,48.657131],[10.2622412,48.6572402],[10.262481,48.6573034],[10.2626817,48.6573304],[10.2629815,48.6573219],[10.2629893,48.657403],[10.2629854,48.6574542],[10.2638228,48.6574365],[10.2645364,48.6574271],[10.2649609,48.6574443],[10.2653136,48.6574786],[10.2659367,48.6575549],[10.2663907,48.6576288],[10.2666884,48.6576706],[10.2667961,48.6576965],[10.2667943,48.6577012],[10.2666191,48.6581817],[10.2665433,48.6583898],[10.2663503,48.658919],[10.2662207,48.6591923],[10.2660557,48.659441],[10.2656704,48.659809],[10.2655465,48.6599338],[10.2654278,48.6600038],[10.2652572,48.6600586],[10.2649807,48.6600395],[10.264161,48.6599588],[10.2638673,48.6599374],[10.2635156,48.6599376],[10.2632506,48.6599593],[10.2630175,48.6599989],[10.2627639,48.660057],[10.2624984,48.66017],[10.2622604,48.6602827],[10.2618833,48.6604657],[10.2613439,48.6607625],[10.2607627,48.661044],[10.2603012,48.6612875],[10.2600584,48.661359],[10.2595629,48.6615094],[10.2591352,48.6616223],[10.2588444,48.6616992],[10.2585083,48.6617582],[10.2577947,48.6619935],[10.2576357,48.6620527],[10.257331,48.6621661],[10.2570483,48.6622885],[10.2568214,48.6624285],[10.2566112,48.662543],[10.2562136,48.6627445],[10.2559424,48.6629009],[10.2557366,48.6630543],[10.2554986,48.6632811],[10.2551567,48.6636052],[10.2548552,48.6639012],[10.2545584,48.6642383],[10.2543358,48.6645242],[10.2542442,48.6646851],[10.2543394,48.6648757],[10.2543754,48.6650327],[10.2543725,48.6651696],[10.2543349,48.6654098],[10.2542876,48.6656708],[10.2542742,48.6657987],[10.2543066,48.6659672],[10.2544566,48.6661341],[10.2546515,48.6663073],[10.2547029,48.6663494],[10.2549131,48.6665208],[10.2551272,48.6666458],[10.2552348,48.6667837],[10.2553133,48.6669835],[10.2553841,48.6671007],[10.2554341,48.6671834],[10.2554694,48.6672417],[10.255561,48.6674277],[10.2557194,48.6676447],[10.2558838,48.6678321],[10.2560497,48.667969],[10.2562749,48.6681146],[10.2566281,48.6682744],[10.257176,48.6685639],[10.2574336,48.6686656],[10.2570734,48.6687479],[10.2571818,48.6688808],[10.2573043,48.6689547],[10.2575715,48.6690265],[10.2581231,48.6691883],[10.258589,48.6693557],[10.2589618,48.669513],[10.2594987,48.6697526],[10.2600613,48.6700511],[10.2604658,48.6703014],[10.2609076,48.6703162],[10.2611374,48.6707332],[10.2612303,48.670837],[10.2614682,48.6709548],[10.2620687,48.6711913],[10.2621698,48.6712431],[10.2631582,48.6717499],[10.2634199,48.6718469],[10.2636872,48.6719074],[10.2639369,48.6719498],[10.2641202,48.6719634],[10.264331,48.6719788],[10.264801,48.6720092],[10.2643843,48.6721471],[10.2640234,48.6721906],[10.2636048,48.6722599],[10.2632968,48.6723417],[10.2629901,48.6723525],[10.2627325,48.6723877],[10.2624781,48.6724161],[10.2621948,48.6725089],[10.2620408,48.6725543],[10.2619013,48.6726155],[10.2617912,48.6726735],[10.2615347,48.6728723],[10.2611922,48.673082],[10.2608489,48.673253],[10.2606458,48.6733832],[10.2604909,48.6735199],[10.2603346,48.673718],[10.260188,48.6738957],[10.2598585,48.6744316],[10.2597098,48.6746503],[10.2594118,48.674962],[10.2591691,48.6751614],[10.2589331,48.6752259],[10.2586176,48.6752938],[10.2584129,48.6753739],[10.2582816,48.6754806],[10.2581928,48.6755864],[10.258125,48.6756674],[10.2579537,48.6758315],[10.257693,48.6759991],[10.2569288,48.6764126],[10.2551812,48.6774134],[10.2552508,48.6776727],[10.2553194,48.6780164],[10.2553841,48.6782256],[10.2553993,48.6783944],[10.2554049,48.678586],[10.2553997,48.678885],[10.2557652,48.6791247],[10.2559168,48.6792369],[10.2559494,48.6794782],[10.2559519,48.6794967],[10.2559844,48.6797743],[10.2559797,48.6798488],[10.2559702,48.6800077],[10.2560091,48.6801624],[10.2560642,48.6802827],[10.2561155,48.680508],[10.2564916,48.6806242],[10.2567855,48.680648],[10.257079,48.6806626],[10.2574516,48.680658],[10.257766,48.6806769],[10.2580015,48.6807059],[10.2581913,48.6807127],[10.258436,48.6807074],[10.2586873,48.680686],[10.2589893,48.6806343],[10.2594169,48.6805126],[10.2597534,48.6804582],[10.2599959,48.6804939],[10.2602517,48.680509],[10.2605936,48.680523],[10.2610861,48.6804964],[10.2613966,48.6804971],[10.2616582,48.6804779],[10.2619505,48.6804514],[10.2622492,48.6803974],[10.2626235,48.6803379],[10.2629634,48.6802836],[10.2631933,48.6802441],[10.2634262,48.6801887],[10.2636416,48.6801199],[10.2639337,48.679961],[10.2641033,48.6798607],[10.2643146,48.6797782],[10.2645755,48.6797293],[10.2649022,48.6796956],[10.2653951,48.6796871],[10.2660956,48.6796944],[10.2665927,48.6797041],[10.2669763,48.6797359],[10.2673958,48.679799],[10.2676387,48.6798531],[10.2677674,48.6798857],[10.2677253,48.6799798],[10.2674591,48.6802046],[10.2671926,48.6804018],[10.2669392,48.6805898],[10.2666304,48.6807627],[10.2662003,48.6810396],[10.2658137,48.6812658],[10.2655534,48.6814562],[10.2653748,48.6815999],[10.2651273,48.6817514],[10.2648182,48.6820337],[10.2642161,48.6824475],[10.264304,48.682499],[10.2647794,48.682833],[10.2651948,48.6831223],[10.2655957,48.6833797],[10.2659785,48.6836169],[10.2663958,48.6838513],[10.2666793,48.6839916],[10.2669111,48.6841369],[10.2670896,48.6842237],[10.2673404,48.684305],[10.267549,48.6843617],[10.2678021,48.6844042],[10.2680476,48.684424],[10.268269,48.6844418],[10.2684703,48.6844827],[10.268707,48.6845595],[10.2690558,48.684692],[10.2692585,48.6847785],[10.2694879,48.6848373],[10.2707626,48.6851363],[10.2713571,48.6852953],[10.2719691,48.685452],[10.2722225,48.6855082],[10.272496,48.6855458],[10.2727292,48.6856159],[10.2727299,48.6857149],[10.2727314,48.6859264],[10.2727035,48.6860696],[10.272602,48.6863432],[10.2724396,48.6866877],[10.2723172,48.6869791],[10.2722132,48.6873205],[10.2721379,48.6877003],[10.2720238,48.688165],[10.2719258,48.6889332],[10.2718882,48.6891073],[10.2717798,48.6896105],[10.271692,48.6900293],[10.2716294,48.690256],[10.271527,48.6904056],[10.2715027,48.6904403],[10.2714044,48.6905806],[10.2712893,48.6907784],[10.2712181,48.6909414],[10.27106,48.6913108],[10.2708925,48.6918401],[10.2706983,48.6925158],[10.270599,48.6929005],[10.2705023,48.6932464],[10.2704294,48.6934732],[10.270446,48.6936852],[10.270438,48.693729],[10.2704107,48.6938786],[10.270388,48.694061],[10.2702964,48.6943925],[10.2700032,48.695182],[10.2698688,48.6954545],[10.2696513,48.695849],[10.2694403,48.6962251],[10.2693947,48.6964648],[10.2692868,48.6969514],[10.26918,48.6972237],[10.2690524,48.6973642],[10.2689481,48.6974657],[10.2687845,48.6975473],[10.2687094,48.6975658],[10.2686499,48.6977653],[10.2686308,48.6982717],[10.2686231,48.6986941],[10.2686372,48.6989001],[10.2686234,48.6990368],[10.2686176,48.6990941],[10.2685479,48.6994305],[10.2683872,48.699969],[10.2682779,48.7003653],[10.2681936,48.7006768],[10.268144,48.7008805],[10.2680918,48.7011915],[10.2680348,48.7015303],[10.2681574,48.7020742],[10.2682898,48.7024858],[10.2683092,48.702548],[10.2683661,48.7027313],[10.2684889,48.7030471],[10.2686007,48.703331],[10.2687047,48.7035845],[10.2692256,48.703572],[10.2701107,48.7034993],[10.2709532,48.7033906],[10.2722367,48.7031279],[10.2751829,48.7024631],[10.2760628,48.7022146],[10.2769009,48.7019461],[10.2774218,48.701814],[10.2778471,48.7017196],[10.2782113,48.7016649],[10.2787987,48.7015615],[10.2794244,48.7014738],[10.2799334,48.7014103],[10.2804602,48.7013602],[10.2809553,48.7012947],[10.281112,48.7012655],[10.2814153,48.701209],[10.2817782,48.7011085],[10.2820895,48.7010063],[10.2823388,48.7009142],[10.2826135,48.7007441],[10.282826,48.7005702],[10.2831014,48.7003087],[10.2832902,48.7001489],[10.2833681,48.7001066],[10.2834975,48.7000367],[10.2837339,48.699972],[10.2840826,48.699858],[10.2844134,48.699717],[10.2849175,48.6994823],[10.2853547,48.699205],[10.2856199,48.6990328],[10.2858448,48.6988868],[10.2859678,48.698807],[10.2867676,48.6982375],[10.2880608,48.6974485],[10.2883475,48.6972735],[10.2884459,48.6972041],[10.2893022,48.6964309],[10.2904207,48.6953924],[10.2908871,48.6950516],[10.2912593,48.6948094],[10.2914293,48.6946621],[10.2912431,48.6944442],[10.291272,48.6940971],[10.2916221,48.6939852],[10.2919589,48.6939031],[10.2921502,48.6937967],[10.2923999,48.6936513],[10.2925743,48.6935541],[10.2926832,48.6934689],[10.2927778,48.6933428],[10.292845,48.6932328],[10.2928116,48.6930732],[10.2928089,48.6929111],[10.2928512,48.6927534],[10.2929359,48.6926523],[10.2929714,48.6924947],[10.2929413,48.6923442],[10.2928239,48.6921168],[10.2925303,48.6914453],[10.2933945,48.6913482],[10.2935313,48.6914956],[10.2936796,48.6917046],[10.2938761,48.691911],[10.2943236,48.6918532],[10.2944459,48.6918273],[10.294815,48.6917494],[10.2952896,48.6916503],[10.2957626,48.6914759],[10.2962775,48.6913103],[10.2968538,48.6911169],[10.2972175,48.6909981],[10.2976435,48.6908877],[10.2981312,48.6907589],[10.298749,48.6907889],[10.2991328,48.6908433],[10.2998437,48.6908636],[10.3002887,48.6908673],[10.3008092,48.6908501],[10.3011743,48.6908156],[10.3014738,48.6907816],[10.3016801,48.6907391],[10.3018621,48.6906946],[10.3020818,48.6906314],[10.3023079,48.6905295],[10.3025266,48.6903977],[10.3027351,48.6902799],[10.3028814,48.6901579],[10.3030068,48.690027],[10.3031804,48.689782],[10.3032801,48.6896416],[10.3029194,48.6895254],[10.3028146,48.6894854],[10.3026731,48.6894312],[10.3024293,48.6892823],[10.3021882,48.68909],[10.3025008,48.6890101],[10.3028031,48.6889283],[10.3030749,48.6888943],[10.3033192,48.688863],[10.3034805,48.6888951],[10.3035406,48.6889071],[10.3037603,48.6890516],[10.3039985,48.6888537],[10.3041994,48.6886994],[10.3048436,48.6882156],[10.3044675,48.6873509],[10.3042673,48.6873385],[10.3038781,48.6873755],[10.3034353,48.687495],[10.3033679,48.6875212],[10.3029347,48.6876901],[10.3024508,48.687835],[10.301779,48.6878714],[10.3015396,48.6877933],[10.3015776,48.6875899],[10.3018946,48.6875603],[10.3022527,48.6873205],[10.3025671,48.6871289],[10.3026721,48.6870442],[10.3028156,48.6869286],[10.3030268,48.686765],[10.303186,48.6865859],[10.3031912,48.6862595],[10.303377,48.6862308],[10.3037858,48.6861413],[10.3040436,48.6860734],[10.3042311,48.6859488],[10.3048049,48.6862414],[10.3051284,48.6864105],[10.3056528,48.686635],[10.3066217,48.6870483],[10.3067466,48.6871023],[10.3071595,48.6868301],[10.3075733,48.6866104],[10.3079529,48.6864046],[10.3084667,48.6861979],[10.3088028,48.6860815],[10.3088856,48.6860601],[10.3091018,48.6860154],[10.3091248,48.6860128],[10.3093222,48.6859911],[10.3094321,48.6859674],[10.3095692,48.6859118],[10.30976,48.6857643],[10.3100153,48.6855549],[10.310501,48.6855287],[10.3117494,48.6848808],[10.3119904,48.6848587],[10.3123665,48.6846552],[10.312815,48.6844442],[10.3130614,48.684333],[10.3133979,48.6842439],[10.3136305,48.6841609],[10.3137373,48.6841229],[10.3141244,48.6839628],[10.3142595,48.6838951],[10.3145041,48.6837728],[10.3147611,48.6836638],[10.3149424,48.6835849],[10.3150206,48.6835227],[10.315368,48.6832465],[10.316392,48.6823878],[10.3164545,48.6824125],[10.3173307,48.6828514],[10.3177274,48.6830701],[10.3181355,48.6833434],[10.3183911,48.6835858],[10.3184204,48.6836971],[10.318472,48.6838935],[10.318595,48.6842395],[10.3186375,48.6845154],[10.3186241,48.6847483],[10.3185068,48.685169],[10.3183035,48.6851911],[10.3183376,48.6853757],[10.3184322,48.6858864],[10.3185389,48.6865018],[10.318539,48.6867187],[10.3185083,48.6869562],[10.3183004,48.6875215],[10.3182368,48.6876361],[10.3181146,48.6877625],[10.3178192,48.6880522],[10.3172869,48.6886038],[10.3177332,48.6886384],[10.3180844,48.6887054],[10.3183624,48.6887295],[10.319064,48.6887624],[10.3196762,48.688776],[10.3198452,48.6887796],[10.3201962,48.6885125],[10.3202969,48.6883406],[10.320317,48.6880893],[10.3203784,48.6876211],[10.3207783,48.6874037],[10.3210015,48.687345],[10.3215525,48.6875078],[10.3223281,48.6876895],[10.3228339,48.6878297],[10.3232158,48.6879936],[10.3235372,48.688231],[10.3233309,48.6884789],[10.3232001,48.688699],[10.3230967,48.6889167],[10.3230655,48.6891154],[10.3230756,48.6893139],[10.3230991,48.6894872],[10.3231638,48.6896374],[10.3232487,48.6897761],[10.3233928,48.6899256],[10.3235999,48.6899493],[10.3241085,48.6900439],[10.3248178,48.6901781],[10.3261455,48.6903673],[10.3267354,48.6903814],[10.3272971,48.6903454],[10.3276209,48.6903202],[10.3278211,48.6903348],[10.328012,48.6904111],[10.3281957,48.6906609],[10.3283301,48.6908653],[10.3293113,48.6905479],[10.3296246,48.6907282],[10.3301877,48.6905577],[10.331613,48.6901261],[10.3321209,48.68999],[10.3322165,48.6899644],[10.332806,48.6898066],[10.3331773,48.6897215],[10.3333943,48.6896856],[10.3334954,48.6896429],[10.3337025,48.6895555],[10.3343015,48.6892817],[10.3347019,48.6890961],[10.3351121,48.6888477],[10.3353163,48.6887241],[10.3355174,48.6885925],[10.3357422,48.6885628],[10.3360985,48.6886264],[10.3364539,48.6886237],[10.3368398,48.6887924],[10.3372268,48.6886023],[10.3375853,48.6888007],[10.3378483,48.6886297],[10.3380566,48.6884933],[10.3382163,48.6883528],[10.3383484,48.6881942],[10.3384735,48.6880333],[10.3385751,48.687925],[10.3382945,48.6878564],[10.3380736,48.6878487],[10.3377734,48.6878509],[10.3376075,48.6878361],[10.3374095,48.6877576],[10.3371159,48.6875289],[10.3369199,48.6874456],[10.3370183,48.687374],[10.3370975,48.6873257],[10.3371818,48.6872743],[10.3373529,48.6871973],[10.3375408,48.6871156],[10.3377497,48.6870404],[10.3379865,48.6869766],[10.3379414,48.6868081],[10.3378912,48.6867196],[10.3378135,48.6866426],[10.3376804,48.6865481],[10.3374775,48.6864336],[10.3373237,48.6863415],[10.3370797,48.6862343],[10.3374391,48.6861572],[10.3378149,48.6860765],[10.3380916,48.6861035],[10.3385314,48.6853802],[10.3385584,48.6853481],[10.3386311,48.6853588],[10.3388036,48.6853549],[10.3389624,48.68536],[10.3391353,48.6853744],[10.3393602,48.6853996],[10.3394972,48.6854321],[10.3398276,48.6852154],[10.339889,48.6851752],[10.3401277,48.6850291],[10.3403521,48.6848696],[10.3406273,48.6846524],[10.3409157,48.6844101],[10.341136,48.6842422],[10.3411946,48.6841975],[10.3414262,48.6840424],[10.3417057,48.6838755],[10.3419547,48.6837248],[10.3421558,48.6835974],[10.342377,48.6834425],[10.3426252,48.683253],[10.3428281,48.6830524],[10.3425965,48.6828628],[10.3429307,48.682635],[10.3431278,48.6825007],[10.3432466,48.6824104],[10.3434602,48.6822327],[10.3437555,48.6820038],[10.344439,48.6815383],[10.3448202,48.6812995],[10.3450277,48.6811628],[10.3452215,48.6810217],[10.345374,48.6808992],[10.3454292,48.6808444],[10.345634,48.680641],[10.3459078,48.6803827],[10.3461456,48.6802],[10.3462948,48.6800799],[10.3466512,48.6798116],[10.3469191,48.6795967],[10.3470579,48.6794744],[10.3471655,48.6793524],[10.347221,48.6792081],[10.3472427,48.6790915],[10.3472438,48.6789863],[10.3472239,48.6788678],[10.3471766,48.6787473],[10.3471226,48.6786496],[10.347048,48.678559],[10.3469637,48.6784937],[10.3468796,48.6784374],[10.3470042,48.6782947],[10.3471187,48.6781658],[10.3472259,48.6780208],[10.3473223,48.6778464],[10.3474075,48.6776515],[10.3475026,48.6774224],[10.3476104,48.677145],[10.3476862,48.6769823],[10.3477416,48.676838],[10.3478007,48.6767025],[10.3478221,48.6765769],[10.3478225,48.6764353],[10.3477782,48.6763033],[10.3477458,48.6762443],[10.3476596,48.6760738],[10.3475875,48.6759513],[10.3474777,48.6758222],[10.3472736,48.6756439],[10.346965,48.6752718],[10.3469423,48.6752444],[10.3466593,48.674909],[10.3458951,48.67416],[10.3461396,48.6741304],[10.3463635,48.6741033],[10.3466005,48.674051],[10.3468374,48.6739895],[10.3471661,48.6738677],[10.3473853,48.6737835],[10.3476659,48.6736668],[10.3481107,48.6734847],[10.34838,48.6733279],[10.3483683,48.6726567],[10.3481879,48.6721869],[10.3482445,48.6721455],[10.3484903,48.671966],[10.3485108,48.6719511],[10.3487228,48.6718578],[10.3489394,48.6718126],[10.3492517,48.6717695],[10.3492765,48.6717661],[10.3492294,48.6714004],[10.3491699,48.6709393],[10.3489721,48.6700969],[10.3489754,48.6700126],[10.3489754,48.6699761],[10.348996,48.669944],[10.3490442,48.6699234],[10.3502872,48.6696857],[10.3503353,48.6696627],[10.3503491,48.6696375],[10.3503766,48.6695964],[10.350329,48.6680231],[10.350694,48.6679675],[10.3506939,48.6679036],[10.3505306,48.6669609],[10.3506716,48.6669697],[10.3508095,48.6669786],[10.3508647,48.6669854],[10.3508715,48.66691],[10.3511833,48.6660414],[10.3515037,48.6660705],[10.3516584,48.6659446],[10.3517994,48.665805],[10.3520231,48.6657132],[10.3518989,48.6656609],[10.3518508,48.6656519],[10.3517579,48.6656383],[10.3514581,48.6656068],[10.351162,48.6655731],[10.3508347,48.6655509],[10.3506212,48.6655239],[10.3504523,48.6654854],[10.3503214,48.6654605],[10.3502113,48.6654537],[10.3500667,48.6654608],[10.3498014,48.6654591],[10.3494881,48.665455],[10.348913,48.6654424],[10.3484309,48.6654478],[10.3482391,48.6654122],[10.3480806,48.6654162],[10.3479616,48.6654489],[10.3478208,48.665521],[10.3477408,48.665571],[10.3475987,48.6656204],[10.3475029,48.6656343],[10.347296,48.6656371],[10.3473855,48.665333],[10.3478227,48.6639751],[10.347998,48.663966],[10.3481237,48.6634437],[10.3491567,48.6634039],[10.3491603,48.6633443],[10.3486953,48.6626334],[10.3482972,48.6620008],[10.3480381,48.6597501],[10.3492652,48.6597307],[10.349337,48.6597174],[10.3493144,48.6589519],[10.3495626,48.6590119],[10.3499116,48.6590832],[10.3502878,48.6592064],[10.3503978,48.6591395],[10.3504951,48.659064],[10.3506336,48.6589567],[10.3511129,48.6587644],[10.3524447,48.6582587],[10.3528209,48.6581376],[10.3526155,48.6579117],[10.3522986,48.6576039],[10.3519322,48.6572744],[10.3517473,48.6571073],[10.3516222,48.656964],[10.3514307,48.6566784],[10.3513404,48.6565371],[10.3512724,48.6564308],[10.3511548,48.6562369],[10.3510939,48.6560054],[10.3509668,48.6553819],[10.3509471,48.6553343],[10.351023,48.6553348],[10.3511095,48.6553301],[10.3510836,48.6551184],[10.3510897,48.654661],[10.3518017,48.6546209],[10.3524109,48.6545969],[10.3532104,48.6545821],[10.3538692,48.654582],[10.3544336,48.6545591],[10.3549258,48.654538],[10.3552627,48.6545184],[10.3555845,48.6544717],[10.3559648,48.6544236],[10.3562902,48.6543837],[10.3566516,48.6543063],[10.3570031,48.6542337],[10.3575715,48.6540941],[10.3581227,48.6539527],[10.3583641,48.6538896],[10.3587712,48.6538248],[10.3591097,48.6537731],[10.3593177,48.653727],[10.3594128,48.6536994],[10.3595003,48.6536631],[10.3596681,48.6535743],[10.3600522,48.6533478],[10.3605315,48.6530892],[10.360672,48.6530127],[10.3608348,48.652956],[10.3609583,48.6529485],[10.3610179,48.6529484],[10.3610364,48.6530451],[10.3610549,48.6531071],[10.3610625,48.6531257],[10.3610644,48.6531452],[10.3610599,48.6532275],[10.3610716,48.653299],[10.3610933,48.6533664],[10.3611262,48.6534386],[10.3611745,48.653533],[10.3612088,48.6535556],[10.3612566,48.653567],[10.3615471,48.6535903],[10.3618751,48.653624],[10.3619741,48.6536352],[10.3619672,48.6536715],[10.3618339,48.6552752],[10.3618266,48.6553302],[10.3622361,48.6553751],[10.3627062,48.655391],[10.3632817,48.6553815],[10.3639667,48.6553534],[10.3645273,48.6553259],[10.3646135,48.6569654],[10.36462,48.6570284],[10.3648475,48.6569506],[10.3653452,48.6567807],[10.3656496,48.6566705],[10.3656841,48.6567336],[10.3657646,48.6569443],[10.3658603,48.6573032],[10.3659155,48.6574321],[10.3659268,48.6575142],[10.3659505,48.6576279],[10.365978,48.657753],[10.3660192,48.6578755],[10.3661083,48.6580538],[10.3663089,48.65844],[10.3667194,48.6591981],[10.3667481,48.659282],[10.3667687,48.6593409],[10.3667625,48.6594165],[10.3667596,48.6594897],[10.3667388,48.6596159],[10.3666879,48.6598231],[10.3665908,48.6602553],[10.3665048,48.6606346],[10.3664813,48.6608363],[10.3664802,48.6608798],[10.3664775,48.6609554],[10.3664812,48.6610238],[10.3664979,48.6610783],[10.3665001,48.6611171],[10.3665179,48.6611899],[10.3665695,48.6613143],[10.3666206,48.6614273],[10.3666383,48.6614978],[10.3666688,48.661616],[10.3666767,48.6616981],[10.3666901,48.6617503],[10.3667152,48.6618298],[10.3667143,48.6618779],[10.3667125,48.6619075],[10.3667093,48.6619762],[10.3667189,48.6620239],[10.3667323,48.6620809],[10.3667412,48.6621195],[10.3667581,48.6621762],[10.3667846,48.662219],[10.3668042,48.6622597],[10.3668376,48.6623045],[10.3669003,48.6623795],[10.367238,48.6627323],[10.3683001,48.6638098],[10.3701631,48.6630532],[10.3702452,48.6631656],[10.3702873,48.6632423],[10.3702568,48.6633138],[10.3696416,48.6635461],[10.3694046,48.6636319],[10.369489,48.6637831],[10.3703006,48.6635483],[10.3711705,48.6633693],[10.3718096,48.6631914],[10.3719352,48.6634718],[10.3734463,48.6630301],[10.3735263,48.6629801],[10.3736062,48.6630512],[10.3737148,48.6631423],[10.3738967,48.6632544],[10.3740871,48.6633916],[10.374374,48.6635264],[10.3747094,48.6636667],[10.3752453,48.6638753],[10.3754206,48.663926],[10.3754778,48.6637096],[10.375743,48.6638288],[10.3759622,48.6639219],[10.3761918,48.6640213],[10.3764081,48.6641259],[10.3765196,48.6642122],[10.3766212,48.6643035],[10.376684,48.6643775],[10.3767829,48.6644802],[10.3768381,48.6645429],[10.3769948,48.6647583],[10.3772092,48.6650184],[10.3776599,48.6655414],[10.3776624,48.6655446],[10.3780501,48.6659398],[10.3781097,48.6660082],[10.3782157,48.6661301],[10.3782779,48.6661971],[10.3783571,48.6662546],[10.3784239,48.6662758],[10.3785081,48.6663035],[10.3786146,48.6663557],[10.3786483,48.6664075],[10.3786683,48.6664468],[10.3787075,48.6665408],[10.3796298,48.6664337],[10.3801219,48.6663485],[10.3803661,48.6662693],[10.3804703,48.666221],[10.3805942,48.666154],[10.3806265,48.6661357],[10.3808485,48.6660106],[10.3812249,48.6658275],[10.3818549,48.6656132],[10.382519,48.6653933],[10.3830873,48.6661383],[10.3831028,48.6661587],[10.3831194,48.6662003],[10.3837482,48.6669109],[10.3838819,48.6669603],[10.384048,48.6669676],[10.3842478,48.6669627],[10.3843957,48.6669522],[10.3845398,48.6669395],[10.3846734,48.6669225],[10.3848037,48.6669101],[10.3849586,48.6669018],[10.3851759,48.6668987],[10.3852793,48.6668962],[10.3854065,48.6668886],[10.3855431,48.6668623],[10.3857277,48.6668326],[10.3858505,48.6668068],[10.3859948,48.6667962],[10.3861152,48.666791],[10.3862259,48.6667951],[10.3863734,48.6667801],[10.3864991,48.6667427],[10.3865593,48.6667093],[10.3866762,48.6666378],[10.3867303,48.6666204],[10.3867297,48.6667325],[10.3867445,48.6667758],[10.3869469,48.6675491],[10.386962,48.6676111],[10.3881116,48.6673879],[10.3888828,48.6672346],[10.3892678,48.6671784],[10.3893586,48.6675946],[10.3894567,48.6680452],[10.3894677,48.66813],[10.3894859,48.6682057],[10.3894278,48.6684039],[10.389367,48.6685721],[10.3892741,48.6687742],[10.3891623,48.6691269],[10.3890029,48.6696755],[10.3887064,48.6706153],[10.3886451,48.6707974],[10.3885394,48.6710725],[10.3885004,48.6711084],[10.3889666,48.6709941],[10.3892763,48.6709209],[10.3893027,48.6709509],[10.3889683,48.672416],[10.3871024,48.6724341],[10.3870988,48.6724685],[10.3870894,48.6725581],[10.3870198,48.6732187],[10.3868712,48.6740558],[10.3871756,48.6740889],[10.3876532,48.6741569],[10.3881909,48.6742765],[10.3894612,48.6744727],[10.3907814,48.6747163],[10.3909248,48.6755045],[10.3911598,48.6755248],[10.3911693,48.6759059],[10.3911613,48.6761411],[10.3911247,48.6763378],[10.3910624,48.6764732],[10.3909356,48.6766481],[10.3907715,48.6768437],[10.3905178,48.6770543],[10.3902229,48.6772629],[10.3900548,48.6774774],[10.3899506,48.6775421],[10.3900531,48.6775858],[10.3902013,48.6776466],[10.3903676,48.6776791],[10.3906511,48.6777034],[10.391985,48.6778973],[10.3920215,48.6779212],[10.3923577,48.6779519],[10.3928966,48.6779826],[10.3928687,48.6781107],[10.3928238,48.6782527],[10.3927013,48.6784526],[10.3924957,48.6786579],[10.3923016,48.678902],[10.3921184,48.6791665],[10.3919898,48.6794098],[10.3919449,48.679545],[10.3919068,48.679817],[10.391847,48.6800482],[10.3918136,48.6802358],[10.3917922,48.680487],[10.3917916,48.680745],[10.3917583,48.6809325],[10.3917459,48.6811335],[10.3917205,48.6813598],[10.3917325,48.6815697],[10.3917311,48.6817912],[10.3917275,48.681887],[10.3917249,48.6819577],[10.391739,48.6821105],[10.3917635,48.68227],[10.3918053,48.6824271],[10.3918828,48.6826248],[10.3919627,48.6827929],[10.3920355,48.6829496],[10.3920653,48.6830451],[10.3922033,48.6833153],[10.3924801,48.6833556],[10.3926546,48.6835797],[10.3928053,48.6838177],[10.3929801,48.6840509],[10.3931127,48.6842526],[10.3931257,48.6843598],[10.3930874,48.684488],[10.3929645,48.6846788],[10.3928136,48.6848585],[10.3926482,48.6850018],[10.3924817,48.6850995],[10.3922541,48.6852526],[10.3920682,48.6854052],[10.3918396,48.685643],[10.3918433,48.6859394],[10.3918534,48.6860741],[10.391867,48.6861995],[10.3918977,48.6863271],[10.3919286,48.6864545],[10.3919696,48.6865864],[10.3920043,48.6867367],[10.392001,48.6868851],[10.3919841,48.6870359],[10.3919408,48.6871003],[10.392612,48.6880219],[10.3928606,48.6883115],[10.3931069,48.6886421],[10.3932789,48.6889072],[10.3934481,48.6891907],[10.3939225,48.6892586],[10.3943345,48.6893202],[10.3947784,48.6894032],[10.3954457,48.6894359],[10.3962047,48.6895313],[10.3970049,48.6896393],[10.3970681,48.6896478],[10.3976962,48.6897451],[10.3978524,48.68978],[10.3982108,48.6898602],[10.3992013,48.6901505],[10.3991247,48.6902339],[10.3990434,48.6903722],[10.398927,48.6905956],[10.3988166,48.6908896],[10.3986457,48.6913286],[10.3990259,48.691448],[10.3993907,48.6916114],[10.3996625,48.6917851],[10.3999374,48.6919383],[10.4001842,48.6920897],[10.4004783,48.6923089],[10.4006491,48.6924523],[10.4011006,48.6922418],[10.4017346,48.6920216],[10.4022679,48.6918784],[10.4028017,48.6917466],[10.4034269,48.6915699],[10.4035126,48.6916507],[10.4035845,48.6917341],[10.4036183,48.6918066],[10.4036389,48.6919022],[10.4036245,48.6919823],[10.4035857,48.6920561],[10.4034791,48.6921674],[10.4031498,48.6922252],[10.4028823,48.6922682],[10.4026492,48.6923108],[10.4023614,48.6923724],[10.4020809,48.6924408],[10.4017869,48.6925233],[10.4014367,48.6926704],[10.4011068,48.6928081],[10.4011891,48.6928913],[10.4012681,48.6929814],[10.4013464,48.6930463],[10.4014569,48.6931428],[10.4016555,48.6932995],[10.4016977,48.693317],[10.4019106,48.6933891],[10.4020501,48.6934279],[10.4021931,48.6934691],[10.4023531,48.6935076],[10.4025339,48.6935413],[10.4027141,48.6935635],[10.4029707,48.693596],[10.403155,48.6937369],[10.4033288,48.6938735],[10.4038863,48.6945063],[10.4040634,48.6942409],[10.4053749,48.6943036],[10.405567,48.6943128],[10.405784,48.6943938],[10.4058728,48.6944105],[10.4059401,48.6944232],[10.406179,48.6944422],[10.4064278,48.6944497],[10.4066938,48.6944591],[10.4069286,48.6944645],[10.4070981,48.6944733],[10.4072924,48.6944999],[10.4074458,48.6945454],[10.4075924,48.694591],[10.4076903,48.694626],[10.4069519,48.6956037],[10.406701,48.6957311],[10.4051764,48.6965387],[10.4054195,48.69677],[10.4056405,48.6969675],[10.4057025,48.6970647],[10.4057712,48.6972486],[10.405844,48.6974507],[10.4059097,48.6976529],[10.4059751,48.6979373],[10.4060918,48.6981951],[10.4061185,48.6982406],[10.4061941,48.6983701],[10.4073627,48.6986254],[10.4080675,48.6987443],[10.4086109,48.6987836],[10.4087938,48.698783],[10.4090843,48.6987989],[10.4094399,48.6988001],[10.4097184,48.6987727],[10.4099375,48.6987236],[10.4101322,48.6986657],[10.4103328,48.6985757],[10.410468,48.6984981],[10.4106602,48.6983718],[10.4108274,48.698223],[10.4109741,48.6980744],[10.4111338,48.6979098],[10.4114208,48.6976334],[10.4118843,48.6978521],[10.4128548,48.6983571],[10.412945,48.6986617],[10.4125723,48.6990397],[10.4125653,48.6990469],[10.4130162,48.6991083],[10.4133212,48.699143],[10.4134119,48.6990398],[10.413718,48.6986919],[10.4140764,48.6985151],[10.4150352,48.6980519],[10.4158778,48.6976285],[10.4167715,48.6971842],[10.4168445,48.6971924],[10.4170975,48.6971736],[10.4172319,48.6971637],[10.4172688,48.697161],[10.4180754,48.6966566],[10.4184378,48.6963787],[10.4186569,48.696142],[10.4189464,48.6958493],[10.4192574,48.6955769],[10.419543,48.6953666],[10.4198298,48.6951837],[10.4199862,48.6950749],[10.4201293,48.6949755],[10.4204022,48.6947973],[10.4205971,48.6946502],[10.4207589,48.6944556],[10.4208761,48.6942593],[10.4208901,48.6941723],[10.4213391,48.6942794],[10.421996,48.694504],[10.4226649,48.6946875],[10.4231366,48.6948513],[10.4231685,48.6948713],[10.4235067,48.694971],[10.424109,48.6952149],[10.424461,48.6954034],[10.4247856,48.6956039],[10.4249764,48.6957311],[10.4250811,48.6956654],[10.4251911,48.6955711],[10.4252961,48.6956174],[10.4255135,48.695717],[10.4257484,48.6958255],[10.4260925,48.6960034],[10.4262993,48.696094],[10.4264669,48.6961677],[10.426541,48.6962002],[10.4267444,48.6963022],[10.4268888,48.6963846],[10.4270154,48.6964605],[10.4270763,48.6964903],[10.4271699,48.696536],[10.4273487,48.6966179],[10.4275305,48.696686],[10.4276733,48.6967228],[10.4277843,48.696744],[10.4279154,48.6967398],[10.4280144,48.6968115],[10.4281492,48.6969169],[10.4282291,48.6970414],[10.4283,48.6971957],[10.4283246,48.6973142],[10.4283459,48.6974373],[10.4283677,48.6975718],[10.4283897,48.6977108],[10.4284366,48.6978701],[10.4284791,48.6980089],[10.4285386,48.6981383],[10.4285942,48.6982518],[10.4286712,48.6983832],[10.4287403,48.6984873],[10.4288231,48.6985957],[10.4289167,48.6987042],[10.4290377,48.6988165],[10.4291723,48.6989174],[10.4293235,48.699002],[10.4293968,48.6990391],[10.4294992,48.6990908],[10.4295652,48.6990391],[10.4296033,48.6990093],[10.4297108,48.6989233],[10.4299667,48.6990389],[10.430205,48.6991467],[10.43053,48.6992676],[10.4310352,48.6994087],[10.4314528,48.6995076],[10.4316472,48.6995367],[10.431744,48.699236],[10.4317884,48.6990388],[10.431795,48.6990089],[10.431835,48.6987592],[10.4318604,48.6984961],[10.4319216,48.6983649],[10.4319931,48.6982291],[10.4320854,48.6980998],[10.4321853,48.6979977],[10.4323034,48.6979161],[10.4324689,48.6978016],[10.4326316,48.6977169],[10.4328217,48.697625],[10.4330056,48.6975514],[10.4332958,48.6974557],[10.4335865,48.6973783],[10.4337777,48.6973161],[10.4339341,48.6972499],[10.434087,48.6971744],[10.4342421,48.6970669],[10.4344372,48.6969134],[10.4345472,48.6967997],[10.4346564,48.6966655],[10.4347954,48.6964852],[10.4348346,48.696423],[10.4367767,48.6969038],[10.4369041,48.6966859],[10.4370188,48.6965524],[10.4371302,48.6964256],[10.4373168,48.6962617],[10.4374498,48.6961806],[10.4375627,48.6961303],[10.4377064,48.6960663],[10.4378771,48.6959826],[10.4380751,48.6958665],[10.4386259,48.695455],[10.4390161,48.6945815],[10.4390422,48.6945235],[10.4391705,48.694552],[10.4393075,48.6941579],[10.4393936,48.6937983],[10.4394399,48.6935191],[10.4394519,48.6932608],[10.4394062,48.6930532],[10.4393544,48.6928755],[10.4393475,48.6928631],[10.4391468,48.6925025],[10.4388585,48.6920504],[10.4386828,48.6917229],[10.4385921,48.6914997],[10.4385248,48.6912376],[10.4384896,48.6910276],[10.4383114,48.6910301],[10.4380906,48.6910332],[10.4380377,48.691034],[10.4377031,48.6910369],[10.4374407,48.6910278],[10.4371194,48.6910055],[10.4368427,48.6909759],[10.4366144,48.6909505],[10.4364276,48.6909247],[10.4362448,48.6909172],[10.4360376,48.6909191],[10.4358274,48.69093],[10.4356239,48.6909364],[10.4353991,48.6909109],[10.435074,48.6908635],[10.434662,48.6907985],[10.4341089,48.6907441],[10.433974,48.6907293],[10.4339848,48.690576],[10.4340481,48.6904589],[10.4341632,48.6903438],[10.4343023,48.6902328],[10.4344591,48.6901262],[10.4346088,48.6900313],[10.434783,48.6899429],[10.4349918,48.6898566],[10.4350227,48.6896712],[10.4350881,48.6894968],[10.4351892,48.6893681],[10.4352731,48.6892083],[10.4346399,48.6875951],[10.4342877,48.687573],[10.4339829,48.6875117],[10.4327865,48.6872001],[10.4320337,48.6869942],[10.4315823,48.6868542],[10.4312122,48.6866874],[10.4309455,48.6865673],[10.4303118,48.6862826],[10.4298909,48.6861081],[10.4295918,48.6861045],[10.429042,48.6870051],[10.4286483,48.6869834],[10.428334,48.6869564],[10.4280544,48.6869361],[10.4269905,48.6868497],[10.4269157,48.6869029],[10.4268345,48.6869813],[10.4267649,48.6871167],[10.4267086,48.6872383],[10.4266832,48.6873505],[10.4266612,48.6874627],[10.4266705,48.6875838],[10.4266868,48.6876978],[10.42671,48.687828],[10.426744,48.6879739],[10.4267845,48.6881061],[10.4268281,48.6882177],[10.4268853,48.6883178],[10.4269562,48.6884177],[10.427072,48.6885218],[10.4272155,48.6886257],[10.427209,48.6888131],[10.4271745,48.6889893],[10.4271611,48.6891838],[10.4271345,48.6894058],[10.4271312,48.6895908],[10.4271009,48.6897968],[10.4271041,48.689959],[10.4270834,48.6901352],[10.4270598,48.6903274],[10.4270183,48.6904946],[10.4269697,48.6906619],[10.4269117,48.6908543],[10.4268462,48.6910355],[10.4267597,48.6911871],[10.426656,48.6913502],[10.4265322,48.6915479],[10.4263675,48.6915859],[10.426093,48.691657],[10.4257364,48.6917561],[10.4253661,48.6918714],[10.4245684,48.6919882],[10.4243724,48.6918459],[10.4241901,48.6917035],[10.4239836,48.6915453],[10.4237627,48.6913645],[10.4235701,48.6912177],[10.4233838,48.6910456],[10.4232402,48.6909303],[10.4230927,48.6907945],[10.4229278,48.6906543],[10.4228188,48.6905524],[10.4227341,48.6904549],[10.4227115,48.6903614],[10.4227402,48.6902445],[10.4227689,48.6901255],[10.4227899,48.6899676],[10.4227769,48.6898283],[10.4227843,48.689682],[10.4228023,48.6895492],[10.4228417,48.6894461],[10.4229844,48.6891638],[10.4227513,48.6890651],[10.4226052,48.6889957],[10.4225005,48.6889348],[10.4224199,48.6888692],[10.422332,48.688781],[10.422254,48.6886765],[10.4221299,48.6885062],[10.4220124,48.6883221],[10.4219994,48.6881829],[10.4220792,48.6878621],[10.422159,48.687537],[10.4222236,48.6873215],[10.422307,48.6871814],[10.4223808,48.687071],[10.4224269,48.6869586],[10.4224554,48.6868327],[10.4224908,48.6867067],[10.4225704,48.6865506],[10.422633,48.6864061],[10.4226616,48.6862778],[10.4226861,48.6861198],[10.4226871,48.6859964],[10.4226738,48.685848],[10.422661,48.6857248],[10.4225209,48.6852619],[10.4224289,48.6849726],[10.422387,48.6847764],[10.422358,48.6845276],[10.4226974,48.6842594],[10.4224585,48.6842043],[10.4222811,48.6841283],[10.4220581,48.6840114],[10.4216845,48.6837748],[10.4208961,48.6833178],[10.4204404,48.6831206],[10.4195904,48.6826894],[10.4191794,48.682997],[10.4188266,48.6825933],[10.4193739,48.6823782],[10.420119,48.6820357],[10.4210349,48.6816276],[10.4216263,48.6813664],[10.4220234,48.6812189],[10.4223136,48.6810746],[10.4225185,48.6809699],[10.4227908,48.6807917],[10.4232424,48.6804369],[10.4235206,48.6802184],[10.4242766,48.6797294],[10.424729,48.6794283],[10.4246091,48.6794293],[10.4228916,48.6794424],[10.4234586,48.6783037],[10.423527,48.6770809],[10.4235343,48.6769525],[10.4235763,48.6764358],[10.4235816,48.6762371],[10.4234589,48.6758821],[10.4232132,48.6751769],[10.4230327,48.6747288],[10.4228997,48.6745135],[10.4230412,48.6743816],[10.4232114,48.6742792],[10.4233283,48.6744968],[10.4233617,48.6745591],[10.4234198,48.6747093],[10.4235243,48.6749325],[10.4236138,48.6750984],[10.423734,48.6752437],[10.4238331,48.6753752],[10.4238486,48.6754043],[10.4238939,48.675489],[10.4239378,48.6755829],[10.4239994,48.6753754],[10.4240203,48.6753046],[10.4240897,48.6751828],[10.424139,48.6751368],[10.4241739,48.6751042],[10.4243035,48.6750455],[10.4244203,48.6750188],[10.4244715,48.6750071],[10.4247025,48.6749998],[10.4248792,48.6750321],[10.4250601,48.6750894],[10.4253835,48.6751976],[10.4260444,48.6743267],[10.4259396,48.6741313],[10.4258728,48.6739518],[10.4258583,48.6737897],[10.4258817,48.6736204],[10.425912,48.6734648],[10.4259504,48.6733455],[10.425941,48.6732451],[10.4259144,48.673145],[10.425824,48.6729838],[10.4257122,48.6727841],[10.4255799,48.6726074],[10.4254916,48.6725114],[10.42542,48.6724243],[10.4253637,48.6723004],[10.4253127,48.6721073],[10.4252443,48.6719987],[10.4251297,48.6718456],[10.4250426,48.6716931],[10.4250001,48.6714545],[10.4248984,48.6713224],[10.424816,48.6712226],[10.4247193,48.6711363],[10.4246048,48.6710634],[10.4245234,48.6710277],[10.4244135,48.6710144],[10.4242004,48.6709901],[10.4240149,48.6709686],[10.4238536,48.6709498],[10.4236971,48.6708983],[10.4236184,48.6708725],[10.4233216,48.6707873],[10.4229767,48.6706923],[10.4225522,48.6706048],[10.4222233,48.6705153],[10.4221119,48.670485],[10.4205348,48.6699614],[10.4200647,48.6701546],[10.4198144,48.6702852],[10.4196753,48.6704018],[10.4193,48.6708231],[10.4188913,48.6712964],[10.4186005,48.6716711],[10.4181893,48.6721215],[10.4178093,48.6725701],[10.4177283,48.6725207],[10.4175113,48.6724255],[10.4167833,48.6720674],[10.4156745,48.6714855],[10.415199,48.671205],[10.4145131,48.6708339],[10.4156457,48.6695908],[10.4149833,48.6692275],[10.4145704,48.6690191],[10.4145188,48.668995],[10.4144381,48.6689574],[10.4141283,48.6688538],[10.413251,48.6686031],[10.4127189,48.6684407],[10.4120214,48.6682733],[10.4113021,48.6680894],[10.4112731,48.668082],[10.4111399,48.6680477],[10.4109887,48.6680291],[10.410394,48.6679686],[10.409727,48.6679045],[10.409146,48.6678488],[10.4085712,48.6678048],[10.4085884,48.6677709],[10.4085047,48.667568],[10.4084574,48.6672789],[10.4085143,48.6667102],[10.4085539,48.6655237],[10.4085684,48.6653318],[10.4084892,48.6653209],[10.4083093,48.665296],[10.4077805,48.665223],[10.4073447,48.6651527],[10.4073938,48.6650236],[10.4074069,48.6649669],[10.4075347,48.6644607],[10.4079457,48.6645466],[10.4084594,48.6646523],[10.4089128,48.6647116],[10.4091156,48.6647282],[10.4092731,48.6647604],[10.4092934,48.6646718],[10.4093542,48.6644197],[10.4094378,48.6640976],[10.4095282,48.6637845],[10.4097201,48.6633341],[10.409845,48.6629236],[10.4099143,48.6626735],[10.409928,48.6626242],[10.4099275,48.6625377],[10.4099411,48.6624491],[10.4099124,48.6623802],[10.4098921,48.6622705],[10.4098885,48.6621772],[10.4098946,48.6620997],[10.4098971,48.6620314],[10.409904,48.6619336],[10.4099141,48.6618427],[10.4099274,48.6617563],[10.4099452,48.6616472],[10.4099459,48.6616449],[10.4099758,48.6615589],[10.4099969,48.6614474],[10.4100411,48.6613729],[10.4100746,48.6613005],[10.4101426,48.661231],[10.4102416,48.6611642],[10.410305,48.6611286],[10.4104722,48.6610811],[10.4106765,48.6610909],[10.4106789,48.661091],[10.4108295,48.6611205],[10.4110029,48.6611916],[10.4112093,48.661304],[10.4113518,48.6613722],[10.4114945,48.6614313],[10.4116065,48.6614876],[10.411718,48.6615531],[10.411792,48.6616044],[10.411913,48.6616995],[10.4119962,48.6617851],[10.412052,48.6618612],[10.4121888,48.6619953],[10.4122308,48.662078],[10.412294,48.6621403],[10.4124117,48.6622264],[10.4125203,48.6622782],[10.4126392,48.6623324],[10.4127615,48.6623844],[10.4129181,48.6624414],[10.413155,48.66247],[10.4134166,48.6624899],[10.413703,48.6624851],[10.4143158,48.6625193],[10.4149228,48.6625216],[10.4148188,48.6626385],[10.4147864,48.6627702],[10.4147376,48.6628856],[10.4147516,48.6629791],[10.4147622,48.6630682],[10.4148051,48.6631281],[10.4148986,48.6632092],[10.4149953,48.6632084],[10.4151026,48.6631963],[10.4151857,48.6631885],[10.4152692,48.6631692],[10.4153428,48.6631339],[10.415389,48.6630982],[10.4154636,48.6630309],[10.4155515,48.6629867],[10.4156435,48.662922],[10.41575,48.6628371],[10.4159252,48.6627553],[10.4160192,48.6627341],[10.4161614,48.6627111],[10.4162862,48.6626947],[10.4165075,48.6626798],[10.4164678,48.6634127],[10.4164274,48.6639771],[10.4164982,48.6639815],[10.4166086,48.6639882],[10.4177595,48.6640586],[10.4193947,48.6641537],[10.419569,48.6641563],[10.4196258,48.6641572],[10.4196033,48.6640088],[10.4195829,48.6638035],[10.4195825,48.6635187],[10.4196339,48.6633326],[10.4197285,48.6630948],[10.4199153,48.6630771],[10.4201029,48.6630412],[10.4203179,48.663008],[10.4205199,48.6629495],[10.4206511,48.6629012],[10.4207995,48.6628466],[10.4210092,48.66277],[10.4212837,48.6627103],[10.4216645,48.6626751],[10.4219339,48.6626631],[10.4222272,48.6626606],[10.4223654,48.6626559],[10.4226454,48.6626351],[10.4229123,48.6626025],[10.4231675,48.6626018],[10.4234977,48.6626272],[10.4237777,48.6627135],[10.4240459,48.6628337],[10.4245608,48.6630077],[10.4247695,48.663152],[10.4249981,48.6633217],[10.4252378,48.6634666],[10.4254477,48.6635835],[10.4256008,48.6636427],[10.4257484,48.6636656],[10.426296,48.6637944],[10.4265768,48.6638465],[10.4268107,48.6638681],[10.4268794,48.6638759],[10.4270054,48.6639212],[10.4272908,48.6640462],[10.4274618,48.6640919],[10.4276981,48.6641365],[10.4279035,48.664185],[10.4281652,48.6641982],[10.4282915,48.6641362],[10.4283865,48.6640852],[10.4284535,48.6640407],[10.4285421,48.6639736],[10.4285965,48.6638948],[10.4286553,48.6637954],[10.4286843,48.6636523],[10.428767,48.6633596],[10.4287324,48.6629673],[10.4287137,48.6629331],[10.4287858,48.6626756],[10.428959,48.6622182],[10.428972,48.6621925],[10.4290141,48.6621104],[10.4289908,48.6620195],[10.4290484,48.6619609],[10.4296992,48.6618136],[10.4301895,48.661801],[10.4305478,48.6618138],[10.4307848,48.6618428],[10.4310072,48.6617092],[10.4312629,48.6616102],[10.4315906,48.6615196],[10.4320381,48.6614582],[10.4322984,48.6614143],[10.4326608,48.6614112],[10.4325727,48.6616341],[10.4325644,48.6619385],[10.4325835,48.6621541],[10.4326069,48.6624361],[10.4326617,48.6627141],[10.4327447,48.6630635],[10.4328035,48.6633186],[10.4328528,48.6635576],[10.4329179,48.6637488],[10.4330914,48.6640869],[10.4331943,48.6642],[10.4333478,48.6643503],[10.4336813,48.6644784],[10.4340129,48.6645699],[10.4346025,48.6646766],[10.4352201,48.6647745],[10.4354062,48.6647742],[10.4356408,48.6647739],[10.4359505,48.664746],[10.4365093,48.6646958],[10.4385711,48.6645304],[10.4386078,48.664761],[10.4386192,48.66503],[10.439249,48.6649755],[10.439858,48.6649185],[10.4404979,48.6648687],[10.4410482,48.6648176],[10.4414359,48.6647778],[10.4415475,48.6652418],[10.441647,48.6656556],[10.4417184,48.6660827],[10.4417648,48.6663362],[10.4417855,48.6663909],[10.4418178,48.6664766],[10.441828,48.6665035],[10.4418515,48.6665221],[10.4425662,48.6664512],[10.4428139,48.6664294],[10.4432952,48.6663676],[10.4444091,48.6662043],[10.4455473,48.6660592],[10.4461214,48.6659923],[10.4469336,48.6659356],[10.4470121,48.6658872],[10.4472624,48.66579],[10.4477466,48.6656778],[10.4485952,48.6655113],[10.4488526,48.6654482],[10.4489009,48.6654549],[10.4489567,48.6655094],[10.4489922,48.6655983],[10.4491314,48.6657005],[10.4492802,48.6657706],[10.4495054,48.6658815],[10.4499172,48.6660301],[10.4501834,48.6661294],[10.4504157,48.6662515],[10.4506354,48.6664653],[10.4508351,48.6667317],[10.4511074,48.6670457],[10.4513727,48.6673276],[10.4514512,48.6675421],[10.4515476,48.6678158],[10.4519789,48.6678798],[10.4523926,48.6679121],[10.4527814,48.6678942],[10.4532638,48.6679076],[10.45367,48.6678873],[10.4540004,48.6678834],[10.4539431,48.6682468],[10.4538123,48.668531],[10.4535534,48.6687608],[10.4533724,48.6688967],[10.4531989,48.6690597],[10.4531189,48.6692681],[10.452946,48.6694953],[10.4528933,48.6696829],[10.4532189,48.6698367],[10.4535785,48.6699559],[10.4540541,48.6699855],[10.4545116,48.6699306],[10.4544959,48.6700609],[10.4544488,48.6701503],[10.4543744,48.6702398],[10.4542928,48.6703431],[10.4539929,48.6705938],[10.4541514,48.6706066],[10.4543757,48.6706466],[10.4544413,48.6706486],[10.4546962,48.6706496],[10.4547856,48.670624],[10.4549366,48.6705958],[10.4551975,48.6705145],[10.4553621,48.6704656],[10.4555306,48.6704487],[10.45581,48.6704816],[10.4562233,48.6704749],[10.4565985,48.670457],[10.4570526,48.6704318],[10.4574865,48.6704204],[10.4578276,48.6704186],[10.4581824,48.6704213],[10.4583718,48.6704227],[10.4587407,48.6704528],[10.4588923,48.6704589],[10.4589887,48.6704538],[10.4591439,48.6704691],[10.459337,48.6704908],[10.4606495,48.6705184],[10.4610009,48.6705233],[10.4612039,48.6704972],[10.4617445,48.6704944],[10.4624068,48.6705664],[10.4629966,48.6706387],[10.4633727,48.6706984],[10.4635905,48.6707728],[10.4638037,48.6707991],[10.4640488,48.6708147],[10.4643315,48.6708161],[10.464573,48.6708225],[10.4648072,48.6708108],[10.4650717,48.6707804],[10.4651334,48.6707659],[10.4651546,48.6707944],[10.4652185,48.6708587],[10.4653737,48.6710055],[10.46555,48.6711681],[10.4656597,48.671279],[10.4657304,48.6713605],[10.4657736,48.6714377],[10.4658024,48.6714831],[10.4658334,48.6715419],[10.4662744,48.6716409],[10.466676,48.6718125],[10.4669431,48.6719642],[10.4670889,48.6720457],[10.4672106,48.6721341],[10.4672631,48.6722048],[10.4674232,48.6723342],[10.4676841,48.6725454],[10.4678235,48.6726612],[10.4680222,48.6728384],[10.4683101,48.673006],[10.4684916,48.6732015],[10.4686483,48.6733265],[10.4688724,48.6735392],[10.4690329,48.6737325],[10.4691404,48.6738258],[10.4692344,48.6739122],[10.4693907,48.674028],[10.4697134,48.6742412],[10.4702095,48.6745772],[10.4705426,48.6747973],[10.4707508,48.6749357],[10.4708514,48.6749992],[10.4709656,48.6750491],[10.4710799,48.6750964],[10.4712012,48.6751416],[10.4713119,48.6751891],[10.4714159,48.6752709],[10.4715134,48.6753618],[10.4716663,48.6754914],[10.4717982,48.6756004],[10.4719372,48.6756935],[10.4721002,48.6757909],[10.4723808,48.6759337],[10.4731021,48.676406],[10.4733867,48.6766731],[10.4737532,48.676903],[10.4741791,48.6771714],[10.474434,48.6773268],[10.4746043,48.6773894],[10.4747255,48.6774111],[10.474936,48.6774094],[10.4754853,48.6779988],[10.4757989,48.6783364],[10.4760552,48.6785672],[10.4765725,48.6790952],[10.476802,48.6793605],[10.476946,48.6795008],[10.4771069,48.6796137],[10.4773332,48.6797191],[10.4776671,48.6798717],[10.4780304,48.6800381],[10.4781129,48.6800758],[10.4784679,48.6802442],[10.4787117,48.680361],[10.4789617,48.6804479],[10.4792018,48.680551],[10.4793444,48.680607],[10.4795735,48.6806827],[10.4798056,48.6807356],[10.480024,48.6807864],[10.4802911,48.6808617],[10.4805031,48.6809378],[10.4808779,48.6812269],[10.4810036,48.6813081],[10.4813019,48.6815682],[10.481269,48.6818311],[10.4812159,48.6821216],[10.4811388,48.6824101],[10.4810564,48.6826117],[10.4806944,48.6831673],[10.481083,48.6836347],[10.4812498,48.6838731],[10.4816578,48.684806],[10.4814599,48.6851022],[10.4814351,48.6851837],[10.4814177,48.6852396],[10.481533,48.6858392],[10.4816443,48.686247],[10.4817425,48.6865044],[10.4819377,48.6865332],[10.48322,48.6867228],[10.4841199,48.686866],[10.4845805,48.6869581],[10.4850452,48.6870753],[10.485361,48.6871663],[10.4857051,48.6872937],[10.4858817,48.6871552],[10.486188,48.6869288],[10.4862928,48.6868229],[10.4864314,48.6866802],[10.486598,48.686537],[10.4867674,48.686385],[10.4869929,48.6862666],[10.4871946,48.6861691],[10.487465,48.6860641],[10.4877393,48.685975],[10.4881616,48.6858687],[10.4885121,48.6857973],[10.4890975,48.6857354],[10.4892672,48.6859462],[10.4894365,48.6861321],[10.4896266,48.6863201],[10.4896472,48.6863377],[10.4899108,48.6865621],[10.490125,48.6867544],[10.4903596,48.6869352],[10.4909149,48.6872708],[10.4912967,48.6870393],[10.4914978,48.6869073],[10.4916914,48.6867549],[10.4918571,48.6865869],[10.4920367,48.6864118],[10.4922367,48.6862365],[10.4924627,48.6859721],[10.4930634,48.6863348],[10.493252,48.6864541],[10.4933847,48.6865307],[10.4935238,48.6865935],[10.4936733,48.6866402],[10.4938262,48.686696],[10.4941559,48.686796],[10.4947738,48.6869827],[10.4950142,48.6871018],[10.4951298,48.6871989],[10.4952288,48.6873146],[10.4953212,48.6874577],[10.4954078,48.6876488],[10.4955163,48.6879013],[10.4955694,48.6881454],[10.4955731,48.6883303],[10.4946441,48.6888154],[10.4942445,48.6890288],[10.4939921,48.6891862],[10.4938115,48.6892974],[10.4936621,48.6894128],[10.4935471,48.6895417],[10.4934431,48.6896909],[10.4932966,48.6899616],[10.4930702,48.690023],[10.4929053,48.6900632],[10.4927887,48.6900983],[10.4926961,48.6901288],[10.4925726,48.6901664],[10.4924938,48.6901899],[10.4924148,48.6902111],[10.4923496,48.6902323],[10.4922879,48.6902555],[10.4922367,48.6902857],[10.492196,48.6903179],[10.4921447,48.6903413],[10.4920656,48.6903556],[10.4919728,48.6903792],[10.4919043,48.6903958],[10.4918493,48.6904167],[10.4917878,48.690447],[10.4917196,48.6904864],[10.4916584,48.6905372],[10.4916007,48.6905811],[10.4915396,48.6906318],[10.4914715,48.6906804],[10.4914096,48.6906946],[10.4913063,48.6907],[10.4911406,48.6907037],[10.4910238,48.6907252],[10.4909209,48.6907557],[10.490842,48.6907792],[10.4907564,48.6908142],[10.4907086,48.6908352],[10.49064,48.6908609],[10.4905747,48.6908751],[10.490499,48.6908803],[10.4904333,48.6908786],[10.4903574,48.6908815],[10.4902611,48.6909006],[10.4901856,48.6909171],[10.4900928,48.6909453],[10.490007,48.6909712],[10.4899041,48.6909973],[10.4898078,48.6910117],[10.4896703,48.6910357],[10.4895256,48.6910506],[10.4893739,48.6910586],[10.4892222,48.6910645],[10.4890601,48.6910658],[10.4888908,48.6910558],[10.48878,48.6910316],[10.488648,48.690994],[10.4885547,48.6909856],[10.4884308,48.691005],[10.4883312,48.6910285],[10.4882593,48.6910542],[10.4881942,48.6910777],[10.4881322,48.6910919],[10.4880635,48.6911016],[10.4879946,48.6911067],[10.4878877,48.6911123],[10.4877946,48.6911176],[10.4876982,48.6911229],[10.487588,48.6911376],[10.487492,48.691168],[10.4874133,48.6912006],[10.4873482,48.6912263],[10.4872487,48.6912523],[10.4871318,48.6912715],[10.4869869,48.6912796],[10.4868732,48.6912805],[10.4867491,48.6912952],[10.4866426,48.6913212],[10.4865052,48.6913521],[10.4863612,48.6913943],[10.4863062,48.6914108],[10.4861619,48.6914486],[10.4860281,48.6914816],[10.4859047,48.6915214],[10.4857777,48.6915569],[10.4854198,48.6916032],[10.4860493,48.6920456],[10.4863053,48.6922489],[10.4864394,48.6924053],[10.4865326,48.6925828],[10.4866155,48.6927625],[10.4867308,48.6930105],[10.4868733,48.693594],[10.486906,48.6938495],[10.4869997,48.694061],[10.4870382,48.6942664],[10.4870689,48.6944259],[10.4870684,48.6945766],[10.487095,48.6946997],[10.4871387,48.6948204],[10.4871899,48.6949684],[10.4872577,48.6950819],[10.4873364,48.6952276],[10.4874118,48.6953777],[10.4874902,48.6955026],[10.4875371,48.6956072],[10.4875596,48.6957075],[10.4875721,48.6958124],[10.4875712,48.6959403],[10.4875704,48.6960753],[10.4875627,48.6962145],[10.4875347,48.6963723],[10.4874994,48.6965119],[10.487412,48.69662],[10.4872875,48.6967389],[10.4872747,48.6967823],[10.4865456,48.6967354],[10.4861374,48.6966942],[10.4856575,48.6966789],[10.4843571,48.6966861],[10.4840287,48.6966668],[10.4838793,48.6966228],[10.4836372,48.6964586],[10.4833817,48.6963152],[10.4830954,48.6961768],[10.4827232,48.6960482],[10.4820423,48.6958683],[10.4818129,48.6958],[10.4817042,48.6957235],[10.4814864,48.6955705],[10.4812134,48.6954136],[10.4809967,48.6952994],[10.4807277,48.6951608],[10.4804243,48.6950339],[10.4801177,48.6949092],[10.4798967,48.6948352],[10.4798081,48.6948053],[10.4795682,48.6947347],[10.4796249,48.6950699],[10.479632,48.695216],[10.4796168,48.6952983],[10.4795596,48.6954978],[10.4795283,48.6956282],[10.4795028,48.6958501],[10.4795014,48.6960895],[10.4795783,48.6963175],[10.4796768,48.6966088],[10.4797005,48.6967249],[10.4796819,48.6968097],[10.4796606,48.6969286],[10.4796474,48.6970886],[10.479657,48.6971982],[10.4796875,48.6973121],[10.4797213,48.6974305],[10.4797275,48.69754],[10.4796791,48.6978191],[10.4796993,48.6979309],[10.4797704,48.6980169],[10.4800627,48.6982627],[10.4798787,48.6983491],[10.4795189,48.6985905],[10.4793948,48.6987335],[10.4793867,48.6987603],[10.4793724,48.6988068],[10.4793814,48.6988912],[10.4794113,48.69898],[10.4794291,48.6990225],[10.479492,48.6991732],[10.4795535,48.6992867],[10.4796355,48.699391],[10.4797452,48.6995085],[10.4801353,48.7000753],[10.4792937,48.7003101],[10.4789695,48.7005036],[10.4787898,48.7006814],[10.478299,48.701405],[10.4778846,48.7016796],[10.4773779,48.7018827],[10.4769912,48.701975],[10.4765332,48.7020047],[10.4761547,48.7020446],[10.4752085,48.7023158],[10.4738091,48.7026555],[10.4732557,48.7027183],[10.4726543,48.702698],[10.4717036,48.7027602],[10.4715761,48.7027645],[10.4715525,48.7028738],[10.4715819,48.7033644],[10.4715377,48.7038488],[10.4714596,48.7042585],[10.4713897,48.704611],[10.4714397,48.7047495],[10.4715774,48.7049253],[10.471708,48.7049118],[10.4719207,48.7048787],[10.4721138,48.7048734],[10.4723744,48.7049239],[10.4734789,48.7053011],[10.4739624,48.7054965],[10.4742492,48.7055992],[10.4743643,48.7056229],[10.4745064,48.7056522],[10.4747832,48.7056728],[10.4752068,48.7056456],[10.4761802,48.7054657],[10.4762701,48.7054405],[10.476887,48.7052672],[10.4768331,48.705202],[10.4775013,48.7049814],[10.4777662,48.7048676],[10.4778855,48.7047311],[10.4794588,48.7050984],[10.4790985,48.7057111],[10.4790416,48.7058834],[10.4790054,48.7059933],[10.4801993,48.7064557],[10.4808261,48.7065981],[10.4810653,48.7063634],[10.4812326,48.7061391],[10.4815471,48.7056176],[10.4825136,48.7049725],[10.4826801,48.7048615],[10.4830727,48.7051295],[10.4820594,48.7058539],[10.481855,48.7062869],[10.4819454,48.7063997],[10.4818172,48.7064658],[10.4817367,48.706531],[10.4821184,48.7068745],[10.4825784,48.7071893],[10.4831645,48.7076531],[10.4832423,48.7083397],[10.4829482,48.708582],[10.4829362,48.7087239],[10.4828045,48.7087946],[10.4824096,48.7092009],[10.4821816,48.7092752],[10.4821896,48.7094877],[10.4820568,48.7096201],[10.4818779,48.7096321],[10.4815692,48.7102197],[10.4823796,48.7105976],[10.482264,48.7110952],[10.482042,48.7117889],[10.4817791,48.7125815],[10.4807274,48.7124771],[10.4792962,48.712365],[10.4781459,48.7122006],[10.4781069,48.7122675],[10.4766605,48.7121145],[10.4742085,48.7119666],[10.4736896,48.7119353],[10.4736368,48.7124721],[10.4735479,48.7125659],[10.471024,48.7145587],[10.4710007,48.7145994],[10.4707134,48.7145816],[10.4703658,48.7146084],[10.4694258,48.7148357],[10.4686386,48.7150763],[10.4682829,48.7152087],[10.4683615,48.7156145],[10.4679903,48.7166189],[10.468069,48.7170845],[10.4682507,48.7175343],[10.4685517,48.7181881],[10.4681853,48.7192393],[10.4681183,48.7194316],[10.4660371,48.7193817],[10.4660006,48.7195769],[10.46557,48.7195555],[10.4655838,48.7200076],[10.4674333,48.7200624],[10.467165,48.7207222],[10.4676442,48.7209749],[10.4680938,48.7213536],[10.4679187,48.7213771],[10.4671152,48.721317],[10.4670875,48.7216783],[10.4662857,48.7217483],[10.4647029,48.7218057],[10.4631688,48.7219674],[10.4631686,48.7220541],[10.4631645,48.7221186],[10.4631555,48.7222555],[10.4624842,48.7223097],[10.4619121,48.7225197],[10.4622986,48.7242338],[10.4623136,48.7243004],[10.4642823,48.7240714],[10.4651698,48.7240697],[10.4656351,48.7239957],[10.4656761,48.7241891],[10.4656273,48.7242946],[10.4655496,48.7245785],[10.4654373,48.7249745],[10.4654339,48.7251959],[10.4654934,48.725437],[10.4655005,48.7256606],[10.4654905,48.7258934],[10.4653636,48.7263787],[10.4653125,48.7266234],[10.4653195,48.7274013],[10.4652872,48.7275866],[10.4650431,48.7278725],[10.4643084,48.7279395],[10.4627376,48.7280829],[10.4621967,48.7288538],[10.4617776,48.7291965],[10.4615008,48.7293276],[10.4599909,48.7291587],[10.4593936,48.7292321],[10.4588012,48.7292438],[10.4577302,48.7291426],[10.4576255,48.7293402],[10.4575399,48.7295654],[10.4572352,48.7294911],[10.4567643,48.7293762],[10.4548562,48.7292651],[10.4547736,48.7294125],[10.454528,48.7299501],[10.4544566,48.730127],[10.4563913,48.7309575],[10.4568214,48.7312058],[10.4573634,48.731608],[10.4580698,48.7321918],[10.4592489,48.7331298],[10.4601247,48.7337488],[10.4617256,48.7345886],[10.4617895,48.7346222],[10.4637033,48.7358795],[10.4635376,48.7359692],[10.4633905,48.7360254],[10.4626615,48.7359361],[10.4617281,48.7360786],[10.4605823,48.7361734],[10.4593451,48.7359763],[10.45888,48.7356864],[10.4574937,48.735239],[10.4560845,48.7343202],[10.4546431,48.7337669],[10.4544578,48.7337166],[10.4536721,48.7339206],[10.4528028,48.7341073],[10.4528089,48.7342009],[10.4527995,48.7347494],[10.4504039,48.7349619],[10.4503701,48.7347408],[10.450234,48.7334722],[10.4500815,48.7320526],[10.4499857,48.7317874],[10.4498864,48.7315135],[10.4497269,48.7310128],[10.449285,48.7304584],[10.4490671,48.7301023],[10.4487628,48.7296394],[10.4486379,48.7292457],[10.4485667,48.7288836],[10.4484812,48.728448],[10.448074,48.727466],[10.4479115,48.7274611],[10.4477598,48.7274698],[10.4471417,48.7284963],[10.4471169,48.7285447],[10.4465221,48.72971],[10.4458067,48.7296973],[10.4453051,48.7296883],[10.4440988,48.7295521],[10.4438846,48.7294267],[10.4437165,48.7292232],[10.4436188,48.7291832],[10.4434531,48.7291898],[10.4430017,48.7299949],[10.4427197,48.7305443],[10.4426501,48.730649],[10.4428942,48.730726],[10.4436329,48.7309388],[10.4441228,48.7311455],[10.4442989,48.7312578],[10.4447625,48.7313939],[10.4456681,48.7315178],[10.4462122,48.7316713],[10.4468805,48.7318597],[10.4468371,48.7320272],[10.4461598,48.7319096],[10.4453067,48.7318057],[10.4446884,48.7317013],[10.4441932,48.7315427],[10.443808,48.7313689],[10.4432715,48.7312269],[10.4431921,48.7319391],[10.4431455,48.7322347],[10.4430023,48.7324216],[10.4423933,48.7327493],[10.4416336,48.7331291],[10.4415435,48.7329976],[10.4414085,48.7329946],[10.4413288,48.7328653],[10.4409545,48.7330688],[10.4406366,48.7337863],[10.4404138,48.7337607],[10.4399362,48.7337056],[10.4398662,48.7338231],[10.4397217,48.7343467],[10.4397657,48.735187],[10.4393623,48.7356044],[10.4392117,48.7365314],[10.4388987,48.7369726],[10.4386793,48.7374059],[10.43859,48.7379311],[10.4390458,48.738035],[10.4394596,48.7383811],[10.4395947,48.7386347],[10.4395419,48.7388496],[10.4387737,48.738453],[10.4383813,48.7383734],[10.4377446,48.7382442],[10.4374996,48.7383837],[10.4373998,48.7381526],[10.4371113,48.7379756],[10.4369989,48.7379066],[10.4368306,48.7378758],[10.4365914,48.7383318],[10.4360397,48.7388415],[10.4355562,48.7385692],[10.4361032,48.7380141],[10.4363965,48.7376394],[10.4365387,48.737294],[10.4353205,48.7374015],[10.4353039,48.7375474],[10.4346418,48.7376826],[10.4343087,48.7374625],[10.434076,48.7373089],[10.4334488,48.7375803],[10.4331316,48.7375795],[10.43287,48.7374974],[10.4322499,48.7372572],[10.4311981,48.7373946],[10.4306979,48.7378947],[10.4307402,48.7380714],[10.4310127,48.738633],[10.4318869,48.7396116],[10.4324037,48.7401315],[10.4329133,48.7404054],[10.4335354,48.7406098],[10.4340704,48.7409429],[10.4343445,48.7411778],[10.4337641,48.7414865],[10.4330995,48.741223],[10.4318452,48.7416005],[10.4303724,48.7420437],[10.4281432,48.7429102],[10.4277198,48.7433019],[10.4270007,48.7439244],[10.4268095,48.7442661],[10.4268043,48.7442753],[10.4263313,48.7442658],[10.4237614,48.7442086],[10.42526,48.7457965],[10.425279,48.7458168],[10.4251615,48.7459235],[10.424705,48.7463277],[10.4245729,48.7465194],[10.424328,48.7468584],[10.4242689,48.74694],[10.4239367,48.7471365],[10.4237783,48.7471322],[10.4226503,48.7471009],[10.4218746,48.7470425],[10.4216346,48.7469953],[10.4213722,48.7468935],[10.4208374,48.746594],[10.4207776,48.7465605],[10.4204754,48.7465163],[10.4199814,48.7465136],[10.4194826,48.7465798],[10.4184808,48.7469042],[10.4177436,48.7471793],[10.4166885,48.7476691],[10.4159736,48.7478619],[10.4158902,48.748285],[10.4163323,48.7483472],[10.4175028,48.7482795],[10.4209205,48.747995],[10.4225996,48.7480138],[10.4228444,48.7481136],[10.4230054,48.7483172],[10.423034,48.7486161],[10.4229293,48.7489919],[10.4227843,48.749407],[10.4219511,48.749442],[10.4210727,48.7493407],[10.4210329,48.7490053],[10.4209132,48.7489246],[10.4201906,48.7486842],[10.4186835,48.748695],[10.4189838,48.7491933],[10.4191723,48.7495063],[10.4188717,48.7499647],[10.4184004,48.7504872],[10.4182463,48.7505237],[10.4174877,48.750513],[10.4173839,48.7505115],[10.4171129,48.7510448],[10.4169552,48.7510768],[10.4171188,48.751406],[10.4175259,48.7518815],[10.4176921,48.7522688],[10.4178997,48.7529125],[10.4180862,48.7532836],[10.4185853,48.7538265],[10.4194548,48.7538487],[10.4203304,48.7539709],[10.4203982,48.753927],[10.4201711,48.7537087],[10.4199384,48.7535567],[10.4201057,48.7530816],[10.4203879,48.7530171],[10.4206964,48.7530317],[10.4212885,48.7531709],[10.4214032,48.7537043],[10.421962,48.7536299],[10.4223809,48.7531155],[10.4232032,48.7533179],[10.4228807,48.7538837],[10.4228561,48.7539269],[10.4237546,48.7541241],[10.4240993,48.7543877],[10.4245432,48.755038],[10.4245705,48.755078],[10.4245979,48.7555835],[10.424009,48.7557849],[10.4239813,48.7559111],[10.4238125,48.7560619],[10.4238004,48.7566366],[10.4245952,48.7566411],[10.4256696,48.7563654],[10.4266365,48.756152],[10.4271809,48.7560318],[10.4282908,48.7559205],[10.4276184,48.7572605],[10.4272817,48.7577222],[10.4270984,48.7578387],[10.4268132,48.7579039],[10.4249281,48.7577087],[10.4232653,48.7580868],[10.4232214,48.758256],[10.422591,48.7590483],[10.4225751,48.7590684],[10.4217229,48.7598034],[10.4209675,48.7601384],[10.4206495,48.7605434],[10.4201613,48.7613151],[10.4198479,48.7617611],[10.4195915,48.762008],[10.4190441,48.7623656],[10.4184459,48.7629084],[10.4184351,48.7629241],[10.4183527,48.763044],[10.4183203,48.7632587],[10.418333,48.7634774],[10.4184069,48.7636633],[10.4185722,48.7638962],[10.4188255,48.7641849],[10.4188468,48.7642122],[10.4190689,48.7644966],[10.4192223,48.7648116],[10.4191084,48.7648175],[10.4183504,48.7648038],[10.4183237,48.7649705],[10.4171979,48.7651754],[10.4173263,48.767565],[10.4171814,48.7675759],[10.416692,48.7676501],[10.4168395,48.7679971],[10.4173185,48.7687209],[10.4173354,48.7687528],[10.4176244,48.769303],[10.4177016,48.7696072],[10.4177132,48.7696531],[10.4176247,48.7696565],[10.4171395,48.7696757],[10.4165953,48.7697643],[10.4157974,48.7699494],[10.4143617,48.7700781],[10.4121073,48.7705173],[10.4120665,48.7712062],[10.4121401,48.7713718],[10.4124139,48.7716557],[10.4126605,48.7720929],[10.4127633,48.7723149],[10.4131253,48.7722719],[10.4138468,48.7722087],[10.4148837,48.7720413],[10.4155668,48.7721039],[10.4156877,48.7722301],[10.4158441,48.7725177],[10.4157281,48.7733763],[10.4157491,48.7736496],[10.4159607,48.7740926],[10.4156585,48.7751711],[10.4156871,48.7752738],[10.4157751,48.775396],[10.4166768,48.776305],[10.4169006,48.7763718],[10.4171598,48.776383],[10.4174163,48.7763254],[10.4178405,48.7760837],[10.4181421,48.7760344],[10.4201894,48.7760555],[10.4203195,48.7760301],[10.4202246,48.7750325],[10.4198105,48.7745542],[10.419713,48.7745309],[10.4188415,48.7744028],[10.4186093,48.7739809],[10.4182383,48.7736652],[10.4181624,48.772864],[10.4186017,48.7726346],[10.4196568,48.7727304],[10.420039,48.7723648],[10.4205834,48.7723598],[10.4208883,48.7724848],[10.421208,48.7734418],[10.4218,48.7732417],[10.4219463,48.7727497],[10.4235716,48.7726185],[10.4234392,48.7721338],[10.4234172,48.7717478],[10.4242425,48.7717883],[10.4245667,48.7726789],[10.4246514,48.772906],[10.4249313,48.7731914],[10.4261894,48.7731877],[10.4281563,48.7729771],[10.4279862,48.7725046],[10.427323,48.7722029],[10.4274089,48.7717533],[10.4279627,48.7713687],[10.4290062,48.770813],[10.4284592,48.7701299],[10.4284145,48.7699546],[10.4290725,48.7699499],[10.4300304,48.770029],[10.4304776,48.7700945],[10.4309957,48.7702134],[10.4310829,48.7702414],[10.4307754,48.7708368],[10.430494,48.771578],[10.4302128,48.7722391],[10.4301851,48.7722742],[10.4299665,48.7725497],[10.4291874,48.7730757],[10.4282994,48.7735554],[10.4312202,48.7748389],[10.4303174,48.7757755],[10.4300493,48.7769425],[10.4302125,48.7768845],[10.431113,48.7761401],[10.4315274,48.7750824],[10.4321776,48.7753606],[10.4332909,48.775893],[10.4339062,48.7760757],[10.434194,48.7761869],[10.4343505,48.7763761],[10.4342154,48.7767721],[10.4340009,48.7770318],[10.433897,48.7771578],[10.4334082,48.7774369],[10.4331055,48.7777033],[10.4329683,48.7778913],[10.4328767,48.7780074],[10.4324911,48.7781999],[10.4321446,48.77841],[10.4317714,48.7788037],[10.4310158,48.7789603],[10.4306421,48.7790378],[10.4297384,48.7791372],[10.4299489,48.7788108],[10.4299557,48.7784813],[10.4301982,48.7779323],[10.4301673,48.7778552],[10.4293787,48.7777351],[10.4289356,48.778352],[10.4288441,48.7784794],[10.4285723,48.7784205],[10.4281592,48.7785244],[10.427878,48.7788156],[10.4277305,48.7793261],[10.4280279,48.7798283],[10.4270158,48.7803049],[10.4270675,48.7809558],[10.4267659,48.7816568],[10.4289188,48.7815822],[10.4289357,48.781663],[10.4291483,48.7826794],[10.4294305,48.7832375],[10.4279867,48.7833373],[10.4280716,48.784353],[10.4276481,48.7844452],[10.4274123,48.7844907],[10.4272781,48.7844977],[10.4272752,48.7845936],[10.427389,48.7848378],[10.4278457,48.7854451],[10.4278339,48.7857326],[10.4274356,48.7858496],[10.4272844,48.7862652],[10.4274036,48.7864727],[10.4289812,48.7871822],[10.4292914,48.7879084],[10.4295023,48.7880871],[10.4298462,48.7882311],[10.4302276,48.7882787],[10.430862,48.7882008],[10.4312145,48.7882192],[10.4325353,48.7878898],[10.4338543,48.7875608],[10.4346513,48.7876555],[10.4346255,48.7881029],[10.4345746,48.7886855],[10.4344647,48.7891048],[10.4343855,48.7895099],[10.4341683,48.7897489],[10.4333389,48.7899423],[10.4322971,48.7903793],[10.4319841,48.7905106],[10.4317589,48.7904851],[10.4314612,48.7902124],[10.4313006,48.7898414],[10.4304487,48.7897502],[10.4299147,48.7899176],[10.4295645,48.7899491],[10.4293304,48.7900379],[10.4288163,48.7903509],[10.4285097,48.7906827],[10.4280396,48.7909766],[10.4277531,48.79155],[10.4280374,48.7916539],[10.4285079,48.7916931],[10.4288417,48.7917598],[10.4298007,48.792182],[10.4299126,48.7922963],[10.4300727,48.7925761],[10.4304467,48.7930229],[10.4306098,48.7933711],[10.4306886,48.7935796],[10.4306698,48.7936939],[10.4303007,48.7937102],[10.4298858,48.7936676],[10.4289766,48.7935694],[10.4275558,48.7936734],[10.4267339,48.7938597],[10.4259284,48.7939956],[10.4252896,48.7944249],[10.4253563,48.7949536],[10.4253608,48.7949834],[10.4241491,48.7952022],[10.4239223,48.7952701],[10.4238936,48.7952479],[10.4229079,48.7944196],[10.4223377,48.7948277],[10.421347,48.795257],[10.4208547,48.7955687],[10.4204133,48.7960728],[10.4203222,48.7962149],[10.4206594,48.7970897],[10.4210616,48.7981216],[10.4210516,48.7985555],[10.4209685,48.7989763],[10.4209685,48.7989764],[10.4209756,48.7990282],[10.4209892,48.7991276],[10.4211587,48.7993121],[10.4215357,48.7996647],[10.4217989,48.7999438],[10.4218795,48.8000567],[10.4220226,48.8000841],[10.4221963,48.8001354],[10.4222986,48.8000882],[10.4224543,48.8000906],[10.4226417,48.8001062],[10.4228327,48.8001332],[10.4230216,48.8001967],[10.4232071,48.800258],[10.4233443,48.8003269],[10.4233749,48.800418],[10.4234037,48.8005546],[10.4234319,48.8006753],[10.4235203,48.8007334],[10.4237144,48.8007421],[10.4238662,48.8007307],[10.4241163,48.8007546],[10.4243174,48.8007746],[10.424571,48.8008052],[10.4248691,48.8008215],[10.4251252,48.800827],[10.4253467,48.800824],[10.4255435,48.8008097],[10.4257707,48.8007837],[10.4260048,48.8007436],[10.426252,48.8006876],[10.4265714,48.8006168],[10.4269629,48.8005199],[10.427351,48.8004366],[10.4276738,48.800368],[10.4279796,48.8003043],[10.4282853,48.8002359],[10.428687,48.800141],[10.428931,48.8000918],[10.4292025,48.8000401],[10.4292579,48.800142],[10.4294974,48.8001705],[10.4297894,48.8002098],[10.4300708,48.8002423],[10.4303136,48.800264],[10.430578,48.8003037],[10.4308911,48.800354],[10.4312278,48.8003926],[10.4315614,48.8004359],[10.4318326,48.8004753],[10.4320867,48.8005219],[10.4322785,48.8005695],[10.4324497,48.8006173],[10.4326311,48.8006603],[10.4328098,48.8007287],[10.4329653,48.8007852],[10.433251,48.8008891],[10.4335309,48.8009856],[10.4337195,48.8010378],[10.4340522,48.8011564],[10.4343679,48.8012889],[10.4347045,48.8014234],[10.4350029,48.801554],[10.4351827,48.8016519],[10.4353277,48.8017482],[10.4354381,48.8018402],[10.4355873,48.8019568],[10.4357263,48.8020782],[10.4358679,48.8021767],[10.4360228,48.8022591],[10.4361809,48.8023299],[10.436465,48.8024469],[10.4367807,48.8025749],[10.4370826,48.8027053],[10.4374405,48.8028556],[10.4376653,48.8029513],[10.4378406,48.8030257],[10.4380827,48.8031296],[10.4382731,48.8032344],[10.438395,48.8033605],[10.4384755,48.8034941],[10.4385499,48.803653],[10.4386449,48.8038024],[10.4387025,48.8038677],[10.4388003,48.8039446],[10.4389902,48.8040424],[10.4392041,48.8041239],[10.4404348,48.8047141],[10.4406951,48.8048406],[10.4408999,48.8049632],[10.4410339,48.805039],[10.4411367,48.8051198],[10.4412293,48.8051916],[10.4412882,48.8052981],[10.441334,48.8054323],[10.4413492,48.8055761],[10.4413333,48.8057225],[10.4413003,48.805876],[10.4412315,48.8059935],[10.4411498,48.8061364],[10.4411191,48.8062534],[10.4411232,48.8063768],[10.4411232,48.806484],[10.4411511,48.8065957],[10.4412017,48.8066589],[10.4413153,48.8067464],[10.4414457,48.8068199],[10.4415249,48.8068028],[10.4416944,48.8068071],[10.4417941,48.806888],[10.4419045,48.8069801],[10.4419619,48.8070303],[10.4420434,48.8071015],[10.4421411,48.8072326],[10.4422252,48.8073662],[10.442239,48.8073972],[10.4422887,48.807507],[10.4423593,48.8076545],[10.4424359,48.8077721],[10.4424882,48.8078879],[10.4425521,48.8080401],[10.4425812,48.8081508],[10.4426142,48.8082426],[10.443153,48.8084153],[10.4436664,48.8085633],[10.4441517,48.8086935],[10.4445887,48.8088219],[10.4449875,48.8089511],[10.4454593,48.8090928],[10.4458924,48.8092077],[10.4464201,48.8093668],[10.4469763,48.8095439],[10.4474936,48.8096964],[10.4475585,48.8097185],[10.4478787,48.8098279],[10.4482082,48.8099579],[10.4484984,48.8100708],[10.4485764,48.8101012],[10.4488148,48.8101915],[10.4489375,48.8102422],[10.4489527,48.8103487],[10.4488912,48.8104549],[10.4489647,48.8104695],[10.4491433,48.8105163],[10.449368,48.8105898],[10.449716,48.8107111],[10.4500594,48.8108895],[10.4504189,48.8111156],[10.4506649,48.81128],[10.4505346,48.8113122],[10.4503496,48.811359],[10.4501412,48.8114245],[10.4499055,48.8114974],[10.449622,48.8115917],[10.4493931,48.8116645],[10.4491235,48.8117517],[10.4490465,48.8117719],[10.448853,48.8118231],[10.4484998,48.8119049],[10.4482668,48.8119618],[10.4483012,48.812041],[10.4483309,48.8120885],[10.4480335,48.8121739],[10.4474746,48.8123032],[10.4471735,48.8123887],[10.4468652,48.8134399],[10.4468794,48.813531],[10.4468981,48.8136091],[10.4469182,48.8137072],[10.4469541,48.8138647],[10.4469644,48.8138875],[10.4470209,48.8140126],[10.4470736,48.8141607],[10.4471473,48.8143109],[10.4471934,48.8144659],[10.4472219,48.8145146],[10.4472628,48.8145842],[10.4473078,48.8147025],[10.4473288,48.814826],[10.4473499,48.8149583],[10.4473624,48.8151458],[10.4473739,48.8153013],[10.4474019,48.8154291],[10.4474302,48.8155638],[10.4474564,48.8157465],[10.4474749,48.8158996],[10.4474894,48.8160414],[10.4475191,48.816231],[10.4475409,48.8163795],[10.4475445,48.8164528],[10.4475347,48.8164636],[10.4474934,48.8165534],[10.4474314,48.8166367],[10.4473424,48.8167479],[10.4472504,48.8168615],[10.4471474,48.8169662],[10.4469918,48.8171334],[10.4468642,48.8173002],[10.446802,48.8173904],[10.446791,48.8174544],[10.446798,48.8175388],[10.4468529,48.8175241],[10.4471817,48.8174427],[10.4477196,48.817307],[10.4479837,48.8172449],[10.4480827,48.8172934],[10.4482538,48.8174089],[10.4489379,48.8179349],[10.4476672,48.8185909],[10.4467889,48.8190251],[10.446943,48.8191478],[10.4471721,48.8193237],[10.4475458,48.8196387],[10.4481472,48.8200977],[10.4484124,48.8203027],[10.4485453,48.820419],[10.4486505,48.8205105],[10.4486892,48.8205441],[10.4487952,48.8206746],[10.4488517,48.8207785],[10.44886,48.8208902],[10.4488489,48.8210365],[10.4487678,48.8212458],[10.4486701,48.8214691],[10.4485228,48.8216704],[10.4483759,48.8218809],[10.4482279,48.8220468],[10.448204,48.8220736],[10.4480997,48.8222193],[10.4480606,48.8223616],[10.4480832,48.82246],[10.4480756,48.8225531],[10.4479853,48.8226255],[10.4478548,48.8227353],[10.4476899,48.8228457],[10.4475278,48.8229423],[10.4473945,48.8230611],[10.4472554,48.8232122],[10.4471297,48.8233538],[10.4469954,48.8235343],[10.4469199,48.8236294],[10.4468536,48.823661],[10.4467684,48.8237303],[10.446702,48.8237978],[10.44662,48.8239066],[10.4465353,48.8240293],[10.4465107,48.8241028],[10.4466452,48.824156],[10.4467608,48.8241927],[10.4471542,48.8243177],[10.4480268,48.8245642],[10.4490228,48.824863],[10.4496272,48.8250709],[10.4494266,48.8254149],[10.4492967,48.8256282],[10.4492451,48.8257129],[10.4490137,48.8260621],[10.4485202,48.8260233],[10.4480925,48.8259812],[10.4479948,48.8261314],[10.4479174,48.8262871],[10.4478446,48.8264379],[10.447665,48.8268683],[10.4481543,48.8268866],[10.4486918,48.826904],[10.4492567,48.8269071],[10.4495593,48.8269403],[10.4496811,48.8269563],[10.4496433,48.8270485],[10.4495797,48.8271843],[10.449477,48.8272959],[10.4494193,48.827411],[10.4493385,48.8275496],[10.4491987,48.8277714],[10.4490463,48.8277674],[10.4488383,48.8277645],[10.4486236,48.8277661],[10.4484228,48.8277677],[10.4483509,48.8277895],[10.4483389,48.8278215],[10.4483104,48.8278975],[10.4483061,48.8279252],[10.4482828,48.8280695],[10.4482758,48.8283162],[10.4483036,48.8285691],[10.4483528,48.8287533],[10.4483807,48.8288777],[10.4483833,48.8289439],[10.4486298,48.8289599],[10.4487233,48.8289559],[10.4487283,48.8290767],[10.4487174,48.8292322],[10.448662,48.8294],[10.4485473,48.8295574],[10.448408,48.8297037],[10.4482037,48.8298765],[10.4480423,48.8299936],[10.448533,48.8301283],[10.4492505,48.8303091],[10.4490442,48.8305115],[10.4487527,48.830752],[10.4484848,48.8309739],[10.448054,48.8307764],[10.4480444,48.830877],[10.4479999,48.8310605],[10.4479301,48.8315503],[10.4479494,48.8318469],[10.4479585,48.8318991],[10.4477057,48.8319016],[10.4473391,48.8319129],[10.4469311,48.8319341],[10.4465197,48.8319508],[10.4459774,48.8319906],[10.445466,48.8320184],[10.4448271,48.832069],[10.4442089,48.8321147],[10.4437597,48.8321391],[10.4434421,48.8321678],[10.443249,48.8321873],[10.4431957,48.8321903],[10.4432788,48.8323561],[10.4434291,48.832768],[10.4435973,48.8332068],[10.4436747,48.8334356],[10.4435263,48.8334493],[10.4423835,48.8335434],[10.4416832,48.8336158],[10.4417104,48.8336837],[10.4417781,48.8338948],[10.4418179,48.8341065],[10.4419106,48.8344197],[10.4418387,48.8344416],[10.4416743,48.834488],[10.441383,48.8345597],[10.4410227,48.8346439],[10.440649,48.8347399],[10.4402089,48.8348234],[10.4398166,48.8348854],[10.4394548,48.8349332],[10.439214,48.8349719],[10.4392312,48.8350486],[10.4392616,48.8351143],[10.4392803,48.8351556],[10.4392011,48.8351639],[10.4390977,48.8351772],[10.4389287,48.8351963],[10.438725,48.8352138],[10.4384659,48.83523],[10.4382066,48.8352393],[10.4379711,48.8352437],[10.4378154,48.8352488],[10.4377253,48.8352388],[10.4375852,48.835212],[10.4374272,48.8351602],[10.4372833,48.8351147],[10.4371121,48.8350815],[10.4369202,48.8350485],[10.4367253,48.835027],[10.4365451,48.8350257],[10.436373,48.8350518],[10.4362113,48.8350799],[10.4360742,48.8351142],[10.4359242,48.8351719],[10.4357481,48.8352733],[10.4356711,48.8353341],[10.4356359,48.8354078],[10.4356098,48.8355315],[10.4355956,48.8356893],[10.4355879,48.8358082],[10.4355763,48.8358726],[10.4354019,48.8358462],[10.4351651,48.8358162],[10.434968,48.8358245],[10.4348066,48.8358594],[10.4345702,48.8359233],[10.4342768,48.8360292],[10.4339426,48.836161],[10.4335681,48.8363165],[10.4332069,48.8364624],[10.432815,48.8366182],[10.4324407,48.8367827],[10.4321009,48.836942],[10.4316977,48.8370796],[10.4313523,48.8371865],[10.4310846,48.8372462],[10.4307585,48.8373187],[10.4305693,48.8373519],[10.4303276,48.8373677],[10.4300995,48.8373856],[10.4298403,48.8373974],[10.4296393,48.8373989],[10.4294032,48.8373825],[10.4291944,48.8373567],[10.4289469,48.8373248],[10.4287236,48.8372834],[10.428486,48.837233],[10.4281606,48.8371591],[10.428051,48.8371367],[10.4278114,48.8370879],[10.4274837,48.8370346],[10.4271877,48.8369989],[10.426934,48.8369786],[10.4266527,48.8369586],[10.4264795,48.8369549],[10.4265495,48.83734],[10.4266138,48.8375987],[10.4266801,48.8378655],[10.4267643,48.8382398],[10.4267894,48.8383508],[10.4268172,48.8384688],[10.4268984,48.8387896],[10.4269215,48.8388834],[10.4270006,48.8392037],[10.4271009,48.8395677],[10.4271335,48.8396967],[10.4271496,48.8397612],[10.4270745,48.839783],[10.4269518,48.8398351],[10.427024,48.8400077],[10.4271031,48.840269],[10.4272232,48.8406944],[10.4273238,48.8410698],[10.4273693,48.8412655],[10.4273949,48.8414844],[10.4274479,48.8417873],[10.4274587,48.842075],[10.4274371,48.8424182],[10.4274132,48.842791],[10.4274056,48.8428688],[10.4276038,48.8428884],[10.4281851,48.8429703],[10.4288299,48.8430807],[10.4293836,48.8431583],[10.4293466,48.8435588],[10.4292978,48.8440965],[10.4292666,48.8443689],[10.4292649,48.8445997],[10.4292469,48.8448583],[10.4291965,48.8450807],[10.429126,48.8454154],[10.429031,48.8456547],[10.4290063,48.8457304],[10.4291959,48.8457503],[10.4295228,48.8457975],[10.4298396,48.8458583],[10.4302643,48.8459432],[10.4305012,48.8459933],[10.4306408,48.8460238],[10.4307623,48.8460503],[10.4310092,48.846089],[10.4312526,48.8461232],[10.4314646,48.8461485],[10.4317566,48.8461868],[10.4320556,48.8462249],[10.4323059,48.8462591],[10.4324556,48.8462874],[10.4326362,48.8463038],[10.4325768,48.8464596],[10.4329942,48.8465285],[10.4334963,48.8466651],[10.4339948,48.8468041],[10.4342074,48.8468695],[10.4345,48.8469441],[10.4346868,48.8469866],[10.4349123,48.8470378],[10.435261,48.847103],[10.4357637,48.8472065],[10.4360984,48.8472671],[10.436434,48.8473462],[10.4366713,48.8473949],[10.4368564,48.8474374],[10.4370276,48.8474757],[10.4371862,48.8474571],[10.4373793,48.8474311],[10.4375722,48.847405],[10.4377378,48.8473908],[10.4380143,48.8474685],[10.4384168,48.8475784],[10.4387772,48.8476729],[10.4389385,48.847725],[10.4390558,48.8478054],[10.4392727,48.8479549],[10.4396033,48.8481778],[10.4398096,48.8483183],[10.4399806,48.8484435],[10.4403733,48.8480302],[10.4405225,48.8481171],[10.4407188,48.8482293],[10.4408729,48.8483099],[10.441006,48.8483702],[10.4413591,48.8485197],[10.441789,48.8486957],[10.4420969,48.8488318],[10.4424047,48.848968],[10.4425833,48.8490507],[10.4427052,48.8491033],[10.442775,48.849123],[10.4429487,48.8491817],[10.4431896,48.8492447],[10.4434971,48.849332],[10.4437725,48.8493968],[10.4440618,48.8494593],[10.4443891,48.8495211],[10.444758,48.8495779],[10.445088,48.8496146],[10.4453519,48.8496385],[10.4456014,48.8496444],[10.445847,48.8496411],[10.4459476,48.8496355],[10.4461097,48.8496262],[10.4464874,48.8496349],[10.4471035,48.8496268],[10.4474663,48.8496082],[10.4480206,48.8496145],[10.4480376,48.8500551],[10.4480407,48.8503793],[10.4480482,48.8507354],[10.4480514,48.8507935],[10.4480645,48.8510343],[10.4480633,48.8510811],[10.448061,48.8511645],[10.4492646,48.8510097],[10.4500165,48.8509154],[10.4499668,48.8518648],[10.4499435,48.852219],[10.4498653,48.8528691],[10.4500637,48.8529031],[10.4504424,48.8529508],[10.4507519,48.8529971],[10.4512311,48.8530571],[10.4516483,48.8531135],[10.4521836,48.8531866],[10.4525273,48.8532278],[10.4526699,48.8532443],[10.4527306,48.8533075],[10.4527705,48.8533733],[10.452797,48.8534505],[10.4528097,48.8535304],[10.4528051,48.8536105],[10.452796,48.8536505],[10.4527725,48.8537554],[10.452753,48.853842],[10.4527037,48.8541717],[10.4526623,48.8545311],[10.4526236,48.8548721],[10.4526041,48.8551511],[10.4525832,48.855501],[10.4525651,48.8557206],[10.4525309,48.8559701],[10.4524922,48.8561813],[10.4524862,48.8562198],[10.4524788,48.8564893],[10.4524777,48.8565262],[10.4525237,48.8566764],[10.4526332,48.8569927],[10.4527784,48.8573381],[10.4529206,48.8577066],[10.4529867,48.8578328],[10.453053,48.8579622],[10.4531628,48.8581551],[10.4532777,48.8583982],[10.4534024,48.8587369],[10.4534923,48.8589552],[10.4535573,48.8591801],[10.4535737,48.8592376],[10.4537477,48.859713],[10.4537834,48.8598175],[10.4539305,48.8602478],[10.4535894,48.8603073],[10.4532222,48.8603664],[10.4525971,48.860467],[10.4519841,48.860576],[10.4520098,48.860659],[10.4520281,48.8607118],[10.4519102,48.8607087],[10.4517414,48.860736],[10.4515244,48.8607709],[10.4513108,48.8608102],[10.4509802,48.8608715],[10.4508853,48.8608889],[10.4506978,48.8609231],[10.450343,48.8609849],[10.4500186,48.861045],[10.4495025,48.8611374],[10.4490856,48.8612068],[10.4485715,48.8612682],[10.4484236,48.8612976],[10.4483079,48.8613721],[10.4481834,48.8614994],[10.4481008,48.8616308],[10.4480296,48.8618076],[10.4479543,48.862076],[10.4478532,48.8624063],[10.4477423,48.8627596],[10.4476848,48.8629809],[10.4476644,48.8630601],[10.4475965,48.8633512],[10.4475747,48.8634688],[10.4475294,48.8635755],[10.4476697,48.8635321],[10.4480946,48.863402],[10.4486939,48.8632099],[10.4493143,48.8630241],[10.449808,48.8628814],[10.4499963,48.8635748],[10.4500628,48.8637864],[10.4501963,48.8642108],[10.4503168,48.8646586],[10.4501371,48.8647688],[10.4496816,48.8650066],[10.4491729,48.8653094],[10.4487071,48.8655519],[10.4484264,48.8657414],[10.4485012,48.8657821],[10.4485608,48.8658145],[10.4486991,48.8659036],[10.4489935,48.8660908],[10.449334,48.8662998],[10.4497138,48.8665494],[10.4500336,48.8667636],[10.4504316,48.8670311],[10.4508257,48.8672897],[10.4511452,48.8674945],[10.4514784,48.8677037],[10.4516522,48.8678104],[10.4517106,48.8678613],[10.4517525,48.8678979],[10.4518145,48.8679837],[10.4517263,48.8680331],[10.4516439,48.8680549],[10.4516731,48.8680978],[10.4517835,48.8682695],[10.4519167,48.8685961],[10.4520135,48.8688732],[10.4520673,48.8690161],[10.4521644,48.8690168],[10.4522435,48.8690018],[10.4522912,48.8691654],[10.4523685,48.869388],[10.4524976,48.8697877],[10.452561,48.8700082],[10.4524958,48.8700206],[10.4523685,48.8700477],[10.4525239,48.8711663],[10.4525087,48.8712257],[10.4523805,48.8713169],[10.4521641,48.8714596],[10.4518322,48.871675],[10.4514158,48.8719419],[10.4508985,48.8722927],[10.4511471,48.8724576],[10.4514348,48.8726493],[10.4517406,48.8728567],[10.4520635,48.8730639],[10.4524468,48.8733111],[10.4526201,48.8734043],[10.4525545,48.87345],[10.4520445,48.8738305],[10.4513152,48.8743361],[10.4503696,48.8749804],[10.4492768,48.8757239],[10.4484576,48.8762712],[10.4475156,48.8769131],[10.44695,48.8772782],[10.447027,48.8773554],[10.4470754,48.8774041],[10.4472141,48.8775435],[10.4474613,48.877841],[10.4476593,48.8780977],[10.4479099,48.8783792],[10.4482376,48.8787194],[10.4483997,48.8788918],[10.4483173,48.8789336],[10.4480383,48.8790361],[10.4474389,48.8792483],[10.4465818,48.8795767],[10.4457897,48.8798703],[10.4451462,48.8801261],[10.44465,48.8802919],[10.4447032,48.8803645],[10.4447606,48.8804853],[10.4448703,48.8806398],[10.4450765,48.8809581],[10.4452645,48.8812355],[10.4453564,48.8813536],[10.4455776,48.8813223],[10.4459165,48.881281],[10.4463001,48.881228],[10.4466215,48.8811822],[10.447036,48.8811107],[10.4472292,48.8810752],[10.4475542,48.8810156],[10.4480725,48.8809341],[10.4482828,48.8808823],[10.4483132,48.8809269],[10.4485042,48.8811858],[10.4487099,48.8814722],[10.448993,48.8818392],[10.4490814,48.8819537],[10.449178,48.8819302],[10.4494715,48.881871],[10.4495004,48.8819416],[10.4496802,48.8823423],[10.4499706,48.8829661],[10.4500173,48.8830686],[10.4502177,48.883026],[10.4502331,48.8831173],[10.450279,48.8833911],[10.4503366,48.8837356],[10.4503836,48.8840687],[10.4504409,48.8844086],[10.4504967,48.8848582],[10.4508108,48.8847852],[10.4511834,48.8846889],[10.4515977,48.8846037],[10.4520979,48.8844676],[10.4526464,48.8843243],[10.4529674,48.8842535],[10.452982,48.8843036],[10.4530894,48.8847162],[10.4533969,48.885735],[10.4537036,48.8867059],[10.4539045,48.8873463],[10.4539054,48.8873989],[10.4537739,48.8874044],[10.4534794,48.8874111],[10.4529981,48.8874238],[10.4525689,48.8874473],[10.4523024,48.8874606],[10.4523644,48.8876589],[10.4527296,48.8885951],[10.4531237,48.8896064],[10.4533478,48.8901737],[10.4530791,48.8902601],[10.4527274,48.8903745],[10.4523512,48.8904685],[10.4520198,48.8905394],[10.4517054,48.8905943],[10.4515571,48.8906319],[10.4515306,48.8907121],[10.4514762,48.8907742],[10.4513829,48.8907886],[10.4511201,48.8908224],[10.4505562,48.8908789],[10.4500481,48.8909488],[10.4496782,48.8909972],[10.4493635,48.8910382],[10.4493925,48.8911157],[10.449527,48.8915031],[10.4498446,48.8925013],[10.450088,48.893194],[10.4497316,48.8932306],[10.4490261,48.8933019],[10.4484311,48.8933588],[10.4478533,48.8934109],[10.4473651,48.8934487],[10.4473864,48.8935108],[10.4474088,48.8935762],[10.4473094,48.8935934],[10.4472015,48.893612],[10.4469043,48.8936575],[10.4462959,48.8937464],[10.4453873,48.8939036],[10.444689,48.8940182],[10.444976,48.8952588],[10.4447301,48.8952765],[10.4442837,48.8953071],[10.4442943,48.8953943],[10.4442964,48.8954509],[10.4440193,48.8954597],[10.4440311,48.8957704],[10.4438407,48.8957763],[10.4437195,48.8957794],[10.4434734,48.895772],[10.4430814,48.8957497],[10.4425337,48.895733],[10.4420985,48.8957203],[10.4421186,48.8959259],[10.4421986,48.8964458],[10.4418871,48.8964617],[10.4416551,48.8964793],[10.4416589,48.8965549],[10.4416607,48.8966049],[10.4414632,48.8966064],[10.4411154,48.8966198],[10.4410671,48.8969665],[10.4408864,48.8981277],[10.4407476,48.8987144],[10.4398923,48.8986871],[10.4398685,48.8987778],[10.4398451,48.898842],[10.4396404,48.8988135],[10.4391202,48.8987868],[10.4384517,48.8988022],[10.4380637,48.898809],[10.4380025,48.8988106],[10.4378913,48.899015],[10.4377684,48.8992414],[10.4376217,48.8995392],[10.4375608,48.8997836],[10.4374742,48.8997867],[10.4346057,48.9002779],[10.4321694,48.9007268],[10.4320416,48.9007482],[10.4319379,48.9005781],[10.4318776,48.9005056],[10.4315567,48.9003874],[10.4291773,48.9009223],[10.4286803,48.9010154],[10.4273715,48.9015758],[10.4267283,48.9019803],[10.4264028,48.90217],[10.4249221,48.9027934],[10.4244981,48.9029018],[10.4242769,48.9029332],[10.4241874,48.9029856],[10.4239731,48.9047134],[10.4238592,48.9051905],[10.4231473,48.905782],[10.4225765,48.9058091],[10.4220479,48.905767],[10.4215066,48.9056795],[10.4214084,48.9057921],[10.4212612,48.906051],[10.421616,48.9061394],[10.4219463,48.9062007],[10.4224172,48.9061899],[10.4226439,48.9061911],[10.42276,48.9061917],[10.4233437,48.9062828],[10.4239622,48.9063735],[10.4245316,48.9064534],[10.4249246,48.9065347],[10.4251823,48.9065963],[10.4251319,48.9066857],[10.4246433,48.9072121],[10.4244373,48.9075027],[10.4246794,48.9075152],[10.4246855,48.9076088],[10.4246764,48.9076773],[10.4249464,48.9076659],[10.425178,48.9076458],[10.425447,48.9075775],[10.4260908,48.9073714],[10.4262141,48.9073066],[10.4263067,48.9072556],[10.4270303,48.9070627],[10.427328,48.9069845],[10.428016,48.9068037],[10.4286779,48.9066319],[10.4293521,48.9063937],[10.4298125,48.906196],[10.4298689,48.9062503],[10.429908,48.9063001],[10.4307848,48.9059622],[10.4308053,48.9079215],[10.4308894,48.9079643],[10.4310326,48.9080338],[10.4330108,48.9080496],[10.4339184,48.9080513],[10.4346686,48.907979],[10.4358963,48.907873],[10.4359563,48.9081144],[10.4359975,48.9084471],[10.4360916,48.9084783],[10.4362665,48.9085658],[10.436401,48.9087176],[10.4364514,48.9088084],[10.4364842,48.9088903],[10.4365191,48.9090839],[10.4376776,48.9091611],[10.4381767,48.9091729],[10.4384671,48.9091385],[10.4387455,48.9090313],[10.4390603,48.9088417],[10.4391374,48.9088843],[10.4393494,48.9089236],[10.4407871,48.9087407],[10.4410283,48.9086817],[10.4412903,48.9086202],[10.441587,48.9085585],[10.4418346,48.9084606],[10.4422528,48.9080752],[10.4423247,48.9080469],[10.4426681,48.908456],[10.4437659,48.9084618],[10.4438561,48.9084607],[10.4438486,48.9085458],[10.4438456,48.9085818],[10.4438381,48.9086983],[10.4438867,48.9088255],[10.4438357,48.9089973],[10.4438049,48.9091368],[10.4438173,48.9092119],[10.4438761,48.9093436],[10.4438625,48.9094761],[10.4438429,48.909522],[10.4438922,48.9096858],[10.4439757,48.9098309],[10.4439921,48.9099242],[10.4440625,48.9099578],[10.4441043,48.9099777],[10.4441294,48.9099979],[10.4442103,48.9100632],[10.4441316,48.9107419],[10.4445797,48.9107892],[10.4448029,48.9108528],[10.4451833,48.9109557],[10.4456307,48.9111082],[10.4457525,48.9111341],[10.4465077,48.9111415],[10.4472889,48.9112169],[10.4476682,48.9112719],[10.4480493,48.9114113],[10.4487443,48.9116991],[10.4488968,48.9117621],[10.4492181,48.9119369],[10.4492865,48.9119659],[10.448974,48.91246],[10.4512924,48.9133982],[10.4507586,48.9142899],[10.4508317,48.9143003],[10.4533381,48.9148945],[10.4534894,48.9150003],[10.4535207,48.9150222],[10.4536199,48.9151366],[10.4540098,48.9149987],[10.4546742,48.9170696],[10.4547882,48.9170481],[10.454923,48.9170351],[10.4563293,48.9170513],[10.4569049,48.9170578],[10.456852,48.9185713],[10.4568403,48.9204496],[10.4550616,48.9219442],[10.4548752,48.9220736],[10.4544769,48.9225159],[10.4541967,48.9228502],[10.4538549,48.9232808],[10.4533368,48.9242738],[10.4526587,48.9256045],[10.4525049,48.9258278],[10.4520048,48.9265499],[10.4501833,48.9261896],[10.4491221,48.9260329],[10.4490791,48.9261177],[10.447982,48.9278658],[10.4477922,48.9281486],[10.4476366,48.928294],[10.4466007,48.9290767],[10.4452506,48.93005],[10.4411702,48.931013],[10.4408947,48.9320061],[10.4395697,48.9323448],[10.4388804,48.9324826],[10.4383987,48.9326112],[10.438042,48.932759],[10.4378988,48.9329772],[10.4378491,48.9331922],[10.4378261,48.9333703],[10.4379379,48.9335425],[10.4381232,48.9337321],[10.4386938,48.9340836],[10.4392976,48.9343948],[10.4397363,48.935091],[10.4399072,48.9353123],[10.4400051,48.9354386],[10.4401824,48.9354475],[10.4413847,48.9354134],[10.4425394,48.9353159],[10.4428411,48.9352678],[10.4440739,48.9350713],[10.4455099,48.9347777],[10.4470132,48.9343557],[10.4471507,48.9342984],[10.4473445,48.934903],[10.4473845,48.9349754],[10.4487833,48.9345376],[10.4489835,48.9344796],[10.4489966,48.9344759],[10.4493575,48.9355278],[10.4492379,48.935593],[10.4476886,48.9365937],[10.4477851,48.9366558],[10.4478607,48.936724],[10.448911,48.9360849],[10.4492635,48.9369545],[10.4492934,48.9370212],[10.4505467,48.9371629],[10.451801,48.9373368],[10.4514662,48.9386526],[10.4514721,48.9386996],[10.4499861,48.9386738],[10.4478079,48.9386359],[10.4481336,48.9399825],[10.4480687,48.9400231],[10.4449944,48.940279],[10.4448318,48.9402877],[10.4448612,48.9403581],[10.4455374,48.9431125],[10.4456313,48.9432552],[10.4457576,48.9433108],[10.4456872,48.9434051],[10.4458062,48.943447],[10.4457304,48.9435938],[10.4456404,48.9437272],[10.4453862,48.943949],[10.445016,48.9442315],[10.4446257,48.9445461],[10.4442721,48.9448731],[10.4441418,48.9449935],[10.4441015,48.9450309],[10.4430828,48.9458293],[10.4429809,48.945908],[10.4409485,48.9457233],[10.440205,48.9456541],[10.4395426,48.9456388],[10.4392003,48.94567],[10.4386175,48.9456469],[10.4381031,48.9455933],[10.4371681,48.9456266],[10.4373898,48.9453551],[10.4370008,48.9453205],[10.4365497,48.9451752],[10.4362651,48.9442363],[10.434961,48.9442286],[10.4329589,48.9451606],[10.4327307,48.9453206],[10.4325072,48.9455168],[10.4323062,48.945786],[10.4322129,48.9460515],[10.4315611,48.946169],[10.4308088,48.9463044],[10.4302188,48.9469337],[10.4299199,48.9472997],[10.4297273,48.9476166],[10.4295908,48.9480019],[10.4295897,48.9481342],[10.4296919,48.9484163],[10.4299057,48.9493115],[10.4297571,48.9498946],[10.4296914,48.9507988],[10.4300035,48.9508239],[10.4303504,48.9508224],[10.4306137,48.9508013],[10.4309631,48.9507541],[10.4311872,48.9507038],[10.4313731,48.9506425],[10.431385,48.9506941],[10.4314249,48.9507943],[10.4314464,48.9508511],[10.4308735,48.9509493],[10.4301648,48.9510097],[10.4297775,48.9510217],[10.4294964,48.9515284],[10.4301594,48.9516236],[10.4306477,48.9516355],[10.4307986,48.9511849],[10.4312379,48.9511677],[10.4311721,48.9515356],[10.4310969,48.951591],[10.4310242,48.9517719],[10.4314855,48.9518298],[10.4314567,48.9519578],[10.4311631,48.9529391],[10.4309164,48.9534477],[10.4298634,48.9532325],[10.4295505,48.9540998],[10.4294805,48.9542397],[10.4291888,48.9541916],[10.4283476,48.9560765],[10.4282772,48.9562026],[10.4262829,48.9559947],[10.4261339,48.9559913],[10.4259494,48.9563213],[10.4256327,48.957182],[10.4252034,48.9575528],[10.4241498,48.9584397],[10.4241268,48.9584944],[10.4238378,48.9591793],[10.4226318,48.9593029],[10.4224444,48.9592816],[10.4220473,48.958575],[10.4212725,48.9586153],[10.4206532,48.9586568],[10.4203751,48.958721],[10.4199689,48.9588601],[10.4197352,48.9589493],[10.4195985,48.9590308],[10.4194226,48.9591412],[10.4194455,48.9591737],[10.4198312,48.9597224],[10.4201131,48.9600255],[10.4204923,48.9606084],[10.4207937,48.9611326],[10.4213004,48.9611273],[10.4213384,48.9612571],[10.4222426,48.9613229],[10.4228207,48.9611203],[10.423217,48.961011],[10.4235785,48.9609449],[10.4243924,48.9607941],[10.4251022,48.9606523],[10.425074,48.9607395],[10.4249516,48.9609329],[10.4247394,48.9613479],[10.4246624,48.9617005],[10.4245401,48.9620549],[10.4245241,48.9624239],[10.4244946,48.9625018],[10.424133,48.9633936],[10.4249332,48.963502],[10.4251405,48.9635369],[10.4251525,48.9635625],[10.4251887,48.9636379],[10.4251467,48.9640062],[10.424838,48.9640616],[10.4240161,48.9642162],[10.4234959,48.9642183],[10.423565,48.9648044],[10.4224279,48.9648136],[10.4220892,48.9647863],[10.4213431,48.9647649],[10.4211181,48.96591],[10.4196411,48.9663734],[10.4196894,48.9654145],[10.4184441,48.9654791],[10.4184934,48.9659078],[10.4184899,48.9661041],[10.418445,48.9662984],[10.4184026,48.9664401],[10.4181565,48.9670034],[10.4181075,48.9671334],[10.4180807,48.967205],[10.4180583,48.9674948],[10.4181155,48.9677911],[10.4181559,48.9679277],[10.4184185,48.9682634],[10.4188488,48.9682005],[10.4200175,48.9680296],[10.4201165,48.9683345],[10.4186105,48.9685381],[10.4177197,48.9686911],[10.4176308,48.9682484],[10.4168765,48.9683045],[10.4168961,48.9684866],[10.4146551,48.968568],[10.4146022,48.9687713],[10.4144558,48.9692782],[10.4134541,48.9694108],[10.4137338,48.9688446],[10.4137866,48.9687376],[10.4119635,48.9685551],[10.4117887,48.9687747],[10.4115667,48.9690536],[10.4112642,48.9692471],[10.4106711,48.9695703],[10.4104257,48.9694892],[10.411452,48.968941],[10.411586,48.968679],[10.4115688,48.9685722],[10.4115471,48.9684377],[10.4112745,48.9683684],[10.4112694,48.9683206],[10.4106907,48.9680044],[10.4097809,48.9673074],[10.4093846,48.9670595],[10.4091306,48.9669261],[10.4087419,48.9668082],[10.4083768,48.9667744],[10.4076576,48.9667365],[10.4068812,48.9667448],[10.4060753,48.9668154],[10.4056248,48.9668193],[10.4047546,48.9667194],[10.4045563,48.9667338],[10.4041688,48.9667616],[10.4039109,48.9667802],[10.4037682,48.9667809],[10.4037061,48.9667932],[10.4037852,48.9670979],[10.4036385,48.9679466],[10.4037314,48.9682737],[10.403736,48.96829],[10.4036907,48.9684981],[10.403612,48.9687549],[10.402875,48.9695683],[10.4028766,48.9696324],[10.4028883,48.9701021],[10.4029926,48.9704408],[10.4032557,48.9711903],[10.403263,48.9714228],[10.4032503,48.9717881],[10.4031887,48.9721428],[10.4030659,48.9724274],[10.4029974,48.9725676],[10.4029037,48.9727834],[10.4028666,48.9729255],[10.4030746,48.9729294],[10.4020601,48.9740729],[10.4017702,48.9743371],[10.4015314,48.9743541],[10.4030179,48.9754155],[10.403117,48.9754758],[10.4032147,48.975495],[10.4045432,48.9757602],[10.4051478,48.9758409],[10.4054514,48.9758937],[10.4058198,48.9759115],[10.406229,48.9759037],[10.407314,48.9757634],[10.408916,48.9756278],[10.409424,48.9755615],[10.409807,48.9767996],[10.4098844,48.9770495],[10.409934,48.9771881],[10.4100279,48.9773053],[10.4101372,48.9774079],[10.4102215,48.9774545],[10.4102889,48.9774919],[10.4105493,48.977636],[10.4112293,48.9775145],[10.4113887,48.9775105],[10.4116574,48.9775739],[10.4119101,48.9776921],[10.4119175,48.9779808],[10.4119239,48.9785411],[10.4102758,48.9785453],[10.410252,48.9786256],[10.4101956,48.9788566],[10.4100529,48.9790593],[10.4098894,48.9792669],[10.4096926,48.9794019],[10.4093923,48.979561],[10.4091955,48.9797005],[10.4090171,48.9798718],[10.4088268,48.9801026],[10.4086811,48.9803212],[10.4072568,48.980384],[10.4068919,48.980366],[10.4062484,48.9803154],[10.4059256,48.9803005],[10.40578,48.9802937],[10.4057497,48.9803576],[10.4054234,48.9810456],[10.4052837,48.9815518],[10.4050815,48.9819816],[10.4049349,48.9822929],[10.4040837,48.9821013],[10.4039969,48.98223],[10.4039688,48.9822786],[10.4034548,48.9821555],[10.4026733,48.9820204],[10.4018679,48.9832879],[10.4018465,48.9833216],[10.4021717,48.9834277],[10.4017199,48.9843528],[10.4016723,48.9845007],[10.4015777,48.9847935],[10.4014884,48.98507],[10.4013023,48.9859749],[10.4012913,48.9860539],[10.4012905,48.986113],[10.4002432,48.986134],[10.3992418,48.987165],[10.3981627,48.9867324],[10.3980862,48.9867368],[10.3971526,48.9867255],[10.3963187,48.9875716],[10.3958566,48.9878835],[10.395629,48.9879547],[10.3951933,48.9880908],[10.3949384,48.9882586],[10.3947214,48.9884211],[10.3946919,48.988474],[10.3946484,48.9886343],[10.3946232,48.9888286],[10.394641,48.9890519],[10.3946785,48.989364],[10.3949583,48.9895427],[10.3949396,48.989609],[10.3949201,48.9898649],[10.3948666,48.9900434],[10.3947717,48.9902337],[10.394426,48.9901574],[10.3940498,48.9900838],[10.3916849,48.9899766],[10.3915691,48.9896537],[10.3915662,48.9894025],[10.3906749,48.9892742],[10.3903407,48.989226],[10.3893776,48.9891335],[10.3883249,48.9890694],[10.3873877,48.9889103],[10.3864648,48.9887603],[10.3860123,48.9887057],[10.3849482,48.9885983],[10.3844481,48.9885694],[10.3842764,48.9885072],[10.3838993,48.9883994],[10.383905,48.9882144],[10.3837624,48.9881999],[10.3834819,48.9882189],[10.3816416,48.9882861],[10.3815154,48.9883744],[10.3809689,48.9888459],[10.380421,48.9892764],[10.3799811,48.9895825],[10.3786858,48.990498],[10.3788847,48.9905439],[10.3794542,48.9906281],[10.3796924,48.9906633],[10.3801627,48.9907404],[10.3804315,48.9908061],[10.3807667,48.9908985],[10.3816927,48.9914434],[10.3818556,48.9915833],[10.3814365,48.9918777],[10.3821114,48.992236],[10.3823228,48.9933778],[10.3823401,48.9934711],[10.3821272,48.9941218],[10.3828787,48.9941938],[10.3827693,48.9944049],[10.382619,48.9946304],[10.3821698,48.9952607],[10.3820506,48.9954201],[10.3817299,48.9958498],[10.3814413,48.996241],[10.3808395,48.9967337],[10.3809737,48.997287],[10.3810021,48.9974033],[10.3815018,48.998206],[10.381715,48.9985484],[10.3817647,48.9986282],[10.3817992,48.9990005],[10.3818073,48.9990867],[10.3820157,48.9992305],[10.3815913,48.9993241],[10.3809498,48.9994817],[10.3805879,48.9995768],[10.3802003,48.9997543],[10.3794937,49.0000816],[10.3794327,49.000056],[10.3790934,48.999914],[10.378887,48.9998276],[10.3786116,48.9997308],[10.3779349,48.9994929],[10.3778433,48.9995738],[10.3777822,48.9996754],[10.3775104,48.9999997],[10.3763063,48.9996641],[10.3760301,48.999587],[10.3759644,48.9996058],[10.3758827,48.9996819],[10.3757444,48.9998886],[10.375506,49.0002904],[10.3751682,49.0007637],[10.3748707,49.0011635],[10.3746184,49.0017412],[10.3742582,49.0016165],[10.3739813,49.0018246],[10.3739398,49.0018724],[10.3738319,49.0019971],[10.373125,49.0027659],[10.372986,49.0029315],[10.3729546,49.0030083],[10.3729297,49.003069],[10.3729251,49.0031878],[10.3729235,49.003286],[10.3729561,49.0033497],[10.3728658,49.0033459],[10.3727299,49.0033197],[10.3723126,49.0032868],[10.3718677,49.0032679],[10.3711133,49.0032173],[10.3706755,49.0031982],[10.370186,49.0031955],[10.3694893,49.0032564],[10.3691441,49.0033668],[10.3687078,49.003423],[10.3687498,49.0036122],[10.3682885,49.0036391],[10.3676294,49.0036584],[10.366924,49.0036394],[10.3663694,49.0036831],[10.3658637,49.0037422],[10.3655488,49.0037951],[10.3650629,49.0037913],[10.3649931,49.0037908],[10.3641497,49.0038049],[10.3629904,49.0038217],[10.3618727,49.0040072],[10.3606738,49.0039557],[10.3598495,49.0039283],[10.3595091,49.003929],[10.3587631,49.0039627],[10.3587219,49.0046913],[10.3564097,49.0045511],[10.3557127,49.004598],[10.3549188,49.0046755],[10.3540692,49.0047239],[10.3540034,49.0049185],[10.353806,49.0053036],[10.3536946,49.0054667],[10.3537617,49.0055277],[10.3541068,49.006132],[10.3544363,49.0066474],[10.3545698,49.0069379],[10.3544772,49.006955],[10.3544036,49.0069754],[10.3547323,49.0077544],[10.3547533,49.0077946],[10.3548184,49.0079296],[10.355041,49.0082815],[10.3559637,49.0094623],[10.35648,49.0101228],[10.3565134,49.0101644],[10.357391,49.0112521],[10.3575045,49.0113806],[10.3576174,49.0115269],[10.3572623,49.011453],[10.3554515,49.0144949],[10.3543827,49.0139073],[10.3542693,49.0139768],[10.3529433,49.0152641],[10.3513483,49.0145127],[10.349009,49.015142],[10.349001,49.0152139],[10.3489706,49.0154848],[10.3489614,49.015729],[10.3488762,49.0166284],[10.348397,49.0169579],[10.3481614,49.0170733],[10.3478718,49.0171873],[10.3475987,49.017258],[10.3475328,49.0172738],[10.3467474,49.0174626],[10.3466212,49.0174929],[10.3465074,49.0175135],[10.3463482,49.0175122],[10.345457,49.0174036],[10.3454649,49.0174356],[10.3455023,49.0177427],[10.3454907,49.0180779],[10.345489,49.0181276],[10.3454824,49.0186742],[10.3460528,49.0186922],[10.3459888,49.0196196],[10.3459452,49.020114],[10.345803,49.0204749],[10.3461869,49.020508],[10.3473902,49.0206116],[10.3475424,49.0206239],[10.3478549,49.0206491],[10.3488176,49.0207269],[10.3488085,49.0209753],[10.3492202,49.0210467],[10.3492465,49.0214975],[10.349284,49.0218647],[10.3495443,49.0218339],[10.3495551,49.0218762],[10.3495695,49.0219241],[10.3505729,49.0217471],[10.350596,49.0219483],[10.3507088,49.021941],[10.350711,49.0219874],[10.3507174,49.0221183],[10.3511047,49.0221178],[10.3510529,49.0223312],[10.3510426,49.0226637],[10.3510951,49.0230168],[10.3511214,49.0230696],[10.3506513,49.0231014],[10.3503568,49.0231759],[10.3500575,49.0232939],[10.3501658,49.023843],[10.3501967,49.0239781],[10.3503872,49.0247758],[10.3504775,49.0248925],[10.3503551,49.0257418],[10.3503616,49.0260328],[10.3502881,49.0270628],[10.3502779,49.0271449],[10.3502238,49.0278534],[10.3501922,49.0283082],[10.3501379,49.0283424],[10.3496831,49.0282638],[10.348571,49.0282306],[10.3477997,49.0282279],[10.3474863,49.0282257],[10.3461372,49.0282085],[10.3455802,49.0281801],[10.3451952,49.0281445],[10.344442,49.0280286],[10.3443393,49.0279799],[10.3442637,49.0280328],[10.3441522,49.028111],[10.344078,49.028095],[10.343433,49.0279549],[10.3432986,49.0279094],[10.3430787,49.0280139],[10.3428734,49.0280869],[10.3425947,49.0281101],[10.3422692,49.0283216],[10.3417447,49.0287346],[10.33971,49.0284252],[10.3396323,49.0284134],[10.340289,49.027503],[10.3402408,49.0274263],[10.3393281,49.0273995],[10.3380909,49.0273659],[10.3377268,49.0273426],[10.3376355,49.0273831],[10.3369112,49.0274144],[10.336885,49.0276429],[10.3368217,49.0279903],[10.3367466,49.029117],[10.3365903,49.0296762],[10.3362191,49.0299408],[10.3355745,49.0304645],[10.3352978,49.0306981],[10.3350938,49.0310328],[10.3343812,49.0314293],[10.3334633,49.0320359],[10.3333565,49.0320366],[10.3329125,49.0320398],[10.332817,49.0318656],[10.3323873,49.031631],[10.3322477,49.0314881],[10.3321559,49.0313447],[10.3321355,49.031081],[10.3321138,49.0310328],[10.3320021,49.0307859],[10.33188,49.0301578],[10.3321137,49.0300306],[10.3321524,49.0300096],[10.3321841,49.0298987],[10.3321138,49.0297268],[10.3320826,49.0296502],[10.3320823,49.0293292],[10.3321138,49.0291829],[10.3321478,49.0290254],[10.3325037,49.0287778],[10.3326533,49.0285303],[10.3330379,49.028237],[10.3331973,49.0280912],[10.3333104,49.0279389],[10.3330935,49.0275069],[10.3330763,49.0272249],[10.3332093,49.0268252],[10.3332251,49.0267662],[10.3330117,49.0267467],[10.3328038,49.0267272],[10.3322646,49.02667],[10.332195,49.0266655],[10.3321139,49.0266604],[10.331779,49.0266394],[10.3313699,49.026611],[10.3313568,49.0266879],[10.3314329,49.0271555],[10.3315698,49.0274331],[10.3316172,49.0276973],[10.3315686,49.0278422],[10.3315152,49.0280377],[10.3314429,49.0282701],[10.3312861,49.028479],[10.3309877,49.0288579],[10.3307775,49.0288966],[10.3305063,49.0289],[10.3302828,49.028955],[10.3299564,49.0290394],[10.3295911,49.029182],[10.3294707,49.0292851],[10.3293921,49.0295313],[10.3285713,49.0302571],[10.3278789,49.0302533],[10.3274397,49.0301619],[10.3274951,49.0300204],[10.3276322,49.0296698],[10.3275866,49.0294695],[10.3275862,49.0292664],[10.3276147,49.028951],[10.3276572,49.0286254],[10.3276753,49.0282861],[10.3276862,49.027964],[10.3276738,49.0276651],[10.3276188,49.0273436],[10.3274895,49.0269542],[10.3274413,49.0268497],[10.3290097,49.0265587],[10.3289248,49.026165],[10.328802,49.0259253],[10.3286106,49.0256322],[10.3285027,49.0254149],[10.3285107,49.0250902],[10.3290296,49.0247216],[10.3292401,49.0244228],[10.3290658,49.0242421],[10.3288342,49.0242583],[10.3283103,49.0243665],[10.3281433,49.0246035],[10.3278632,49.0250263],[10.3277771,49.0250432],[10.3274588,49.0250603],[10.3271165,49.0250868],[10.3271414,49.0247031],[10.3272228,49.0246429],[10.3273773,49.0245841],[10.3276939,49.0245056],[10.3277919,49.0244086],[10.3278415,49.0243145],[10.3278185,49.0242326],[10.3276951,49.0241494],[10.3275359,49.024099],[10.3272803,49.0241467],[10.3271273,49.0242163],[10.3270063,49.0243056],[10.3268974,49.0243559],[10.3267452,49.0243751],[10.3264678,49.0243877],[10.3262176,49.0247587],[10.3260818,49.0248987],[10.3259665,49.0249628],[10.3258519,49.0249675],[10.3257799,49.0249141],[10.3257305,49.024826],[10.3256523,49.0247912],[10.3254825,49.0248061],[10.3254149,49.0248464],[10.3253866,49.0249087],[10.3254083,49.0250019],[10.3254983,49.0251349],[10.3255303,49.0252211],[10.32552,49.0253005],[10.3254108,49.0253403],[10.3253046,49.0253767],[10.3252105,49.0253696],[10.3251039,49.0253236],[10.3249959,49.0252483],[10.3248035,49.0251517],[10.3246451,49.0251138],[10.3245553,49.0251248],[10.3244403,49.0251935],[10.3243441,49.0252915],[10.3242431,49.0254331],[10.3241938,49.0254935],[10.3241111,49.025509],[10.3240337,49.0254901],[10.3240005,49.0254518],[10.3239046,49.0254105],[10.3237787,49.0253971],[10.3236615,49.0254178],[10.3236081,49.0254647],[10.3234154,49.0255808],[10.3233205,49.0256306],[10.3232278,49.02566],[10.3231098,49.0256626],[10.3230084,49.0256509],[10.3228604,49.0256129],[10.3227247,49.0256089],[10.3226051,49.0256548],[10.322448,49.025786],[10.3223365,49.0258569],[10.3222199,49.0258914],[10.3221157,49.0258935],[10.3220277,49.0258703],[10.3219829,49.0258073],[10.3220475,49.0257761],[10.3220848,49.0257547],[10.322073,49.0257276],[10.3219841,49.0256883],[10.3219166,49.02566],[10.321825,49.0256367],[10.321697,49.0256463],[10.3216262,49.0256226],[10.321571,49.0255575],[10.3215378,49.0255193],[10.321424,49.0254669],[10.3212313,49.0254365],[10.3211339,49.0254386],[10.3210973,49.0254549],[10.3210693,49.0254673],[10.321044,49.0255182],[10.3210951,49.0255674],[10.3211421,49.0256076],[10.3211171,49.0256675],[10.3210185,49.0257153],[10.3209142,49.0257152],[10.3209051,49.0257144],[10.3208444,49.0257097],[10.3207725,49.0257319],[10.3207511,49.0257986],[10.3207269,49.0258722],[10.3206506,49.0259493],[10.3205559,49.0260153],[10.3206892,49.0262243],[10.3207685,49.0263607],[10.320745,49.0264111],[10.3205541,49.0267528],[10.3201504,49.0272763],[10.3194813,49.0280492],[10.3187258,49.0286912],[10.3170176,49.0285348],[10.3166508,49.0286085],[10.3165902,49.0286323],[10.3164265,49.0286969],[10.3159061,49.0289611],[10.3152026,49.0292859],[10.3145107,49.0294829],[10.3138698,49.0296247],[10.3130201,49.0297588],[10.3126008,49.0298465],[10.3115389,49.0307219],[10.3106992,49.0313812],[10.3103241,49.0316032],[10.3100032,49.0317425],[10.309547,49.0319034],[10.3091391,49.0320321],[10.3082846,49.0315497],[10.3077818,49.0312612],[10.3076097,49.0311894],[10.307516,49.0311901],[10.3073323,49.0312302],[10.3069686,49.0313128],[10.3068576,49.0313273],[10.3059513,49.0314253],[10.3045388,49.0315978],[10.3045156,49.0315961],[10.3044204,49.0315897],[10.3039606,49.031561],[10.3024939,49.0314438],[10.3024843,49.0318595],[10.3024283,49.0322138],[10.3031607,49.0323157],[10.3031475,49.0323722],[10.3030802,49.0326612],[10.302906,49.0330163],[10.3027557,49.0333485],[10.302774,49.0335881],[10.3029101,49.0339776],[10.3030213,49.0343443],[10.3030901,49.034527],[10.303096,49.0348009],[10.3030678,49.0350868],[10.3029803,49.0355307],[10.3028912,49.0358335],[10.3028705,49.0359041],[10.3026858,49.0363512],[10.3023659,49.0369661],[10.302243,49.0371904],[10.3021814,49.0374374],[10.3021103,49.0377165],[10.3020506,49.0380595],[10.302039,49.0382887],[10.3042205,49.0380947],[10.3042811,49.03819],[10.3037363,49.0382214],[10.3034015,49.0383448],[10.3031229,49.0384953],[10.302769,49.038717],[10.3024837,49.0388881],[10.3018327,49.0388038],[10.3016251,49.0388488],[10.301154,49.0395211],[10.3010061,49.0398006],[10.3008102,49.0400746],[10.3005958,49.0403742],[10.3001096,49.040581],[10.2999513,49.0406597],[10.2993678,49.0408763],[10.2982603,49.0412999],[10.2979754,49.0414142],[10.2977911,49.0414883],[10.2974161,49.0416896],[10.2970264,49.0418591],[10.2963776,49.042099],[10.2956215,49.0423716],[10.2954597,49.042422],[10.2953877,49.0424443],[10.2951931,49.0425048],[10.2950761,49.0424964],[10.2948209,49.0424778],[10.294754,49.0424282],[10.2946838,49.0423784],[10.2941409,49.0423231],[10.2937439,49.0422621],[10.2933883,49.0415822],[10.2931073,49.0411939],[10.2927668,49.0407924],[10.2922001,49.0409586],[10.2914467,49.0411741],[10.2913571,49.0418322],[10.2913114,49.0421999],[10.2910442,49.0420215],[10.2906753,49.0415632],[10.2904551,49.0412864],[10.2899173,49.0408686],[10.2896727,49.0409192],[10.2893033,49.0409836],[10.2889786,49.0410379],[10.2886839,49.0411397],[10.2882227,49.0413293],[10.2879643,49.0414368],[10.2878301,49.0414926],[10.2876185,49.0415858],[10.2874071,49.0417521],[10.2873395,49.0420277],[10.2873639,49.0422603],[10.2874589,49.0425121],[10.2873725,49.0426759],[10.2872226,49.0428251],[10.2871275,49.0428728],[10.2870162,49.042875],[10.2868612,49.0428369],[10.2867532,49.0427545],[10.2869161,49.0424381],[10.2866394,49.042318],[10.2856839,49.0423528],[10.2851454,49.0423726],[10.2851581,49.0421141],[10.2859472,49.0416393],[10.2865775,49.0413412],[10.2872508,49.040919],[10.2873047,49.0408791],[10.2872345,49.0407136],[10.2872058,49.0405428],[10.2877971,49.0403827],[10.2884344,49.0400914],[10.2876584,49.0394782],[10.2871052,49.0390207],[10.2870101,49.0389175],[10.2866485,49.0386185],[10.2864178,49.0384424],[10.2861968,49.0383234],[10.2856985,49.038155],[10.2852352,49.0379905],[10.2851956,49.0378839],[10.2852152,49.0377853],[10.2850479,49.0373932],[10.2848226,49.0365729],[10.2847172,49.0365497],[10.283402,49.0367813],[10.2830846,49.0369133],[10.2827716,49.0370702],[10.2824172,49.0371572],[10.2816137,49.037317],[10.2809702,49.0374781],[10.2810225,49.0375525],[10.2810081,49.0376385],[10.2805193,49.0377706],[10.2794964,49.0380171],[10.2792897,49.0380609],[10.2785801,49.0381113],[10.2778568,49.0381756],[10.2770983,49.0383339],[10.2770086,49.038575],[10.2769189,49.0386019],[10.27671,49.0391361],[10.2763531,49.0396322],[10.2761883,49.0397565],[10.2754199,49.0402332],[10.2747502,49.0406575],[10.2744223,49.0407943],[10.2745794,49.0408803],[10.2748273,49.0409783],[10.2750449,49.0410951],[10.2752363,49.041249],[10.2753881,49.0415294],[10.2755564,49.0417112],[10.275966,49.0419955],[10.276289,49.0421595],[10.2764256,49.0422287],[10.2772339,49.0425602],[10.2771839,49.0426047],[10.277023,49.0426672],[10.275542,49.0428492],[10.2746766,49.0429554],[10.2740653,49.0429866],[10.2735874,49.0430187],[10.2734836,49.0425527],[10.2734206,49.0423028],[10.2721375,49.0424355],[10.2721621,49.0427546],[10.2721104,49.0428447],[10.2715157,49.0428007],[10.2698175,49.0426753],[10.2697181,49.0431041],[10.2681356,49.0429777],[10.2680163,49.0429482],[10.2677668,49.0433618],[10.2677419,49.0434262],[10.2672267,49.0433221],[10.2670178,49.0443377],[10.2668456,49.0450055],[10.2659643,49.0447145],[10.2657925,49.0453093],[10.2655968,49.0452811],[10.2646874,49.0451414],[10.2636826,49.044958],[10.2633436,49.0448323],[10.2631296,49.0444666],[10.2630085,49.0443228],[10.2617047,49.0436612],[10.2622793,49.0432961],[10.2626401,49.0429694],[10.2631093,49.0421817],[10.26288,49.0421817],[10.262447,49.042206],[10.2622192,49.0422402],[10.2619674,49.042284],[10.2614036,49.0423362],[10.2608778,49.0423876],[10.2605911,49.0425827],[10.2603431,49.0427885],[10.2599455,49.0427505],[10.2596845,49.0427375],[10.2595664,49.0428197],[10.2592989,49.0428204],[10.2591279,49.0428008],[10.2589999,49.0427327],[10.2588329,49.0425692],[10.2587297,49.0421946],[10.2587248,49.041528],[10.2587077,49.0411334],[10.2577518,49.0410425],[10.2575293,49.0407182],[10.2573361,49.0407494],[10.257274,49.0407574],[10.2569692,49.0402222],[10.2567749,49.0399887],[10.2564071,49.0396809],[10.2560406,49.0393981],[10.2556216,49.0391095],[10.2549399,49.0386913],[10.2532538,49.0388157],[10.2527368,49.0389033],[10.252185,49.0389963],[10.2524763,49.0395408],[10.252489,49.0395806],[10.2525685,49.0398267],[10.2526311,49.0399875],[10.251771,49.0402532],[10.2510684,49.0404702],[10.250337,49.0404228],[10.2503653,49.0406733],[10.2503609,49.0409725],[10.2503224,49.0412062],[10.2502259,49.0414615],[10.2500756,49.041759],[10.2499234,49.0420108],[10.2498013,49.0422392],[10.2497864,49.0423591],[10.2497832,49.0423834],[10.2498101,49.0425221],[10.2498771,49.0426258],[10.249996,49.0427239],[10.2502403,49.042984],[10.2504043,49.0431611],[10.2505878,49.0433082],[10.2510147,49.0435419],[10.2514422,49.0437847],[10.2519079,49.044029],[10.2521736,49.0441471],[10.252439,49.0442583],[10.2526806,49.0443039],[10.2529955,49.0441973],[10.2534394,49.0440218],[10.253894,49.0438531],[10.2543663,49.0436909],[10.2547986,49.0440455],[10.2552301,49.0443794],[10.2556967,49.0445644],[10.2555878,49.0450117],[10.2551255,49.0454864],[10.2547591,49.0458453],[10.2545854,49.0460017],[10.2541553,49.0464918],[10.2538646,49.0468078],[10.2538092,49.0469986],[10.2532022,49.047579],[10.2526517,49.0480988],[10.2525833,49.0481886],[10.2523857,49.0484487],[10.2521439,49.0488004],[10.2519724,49.0491715],[10.251891,49.0494561],[10.2518922,49.0496434],[10.2525073,49.0502396],[10.2532181,49.0507187],[10.2540052,49.0512278],[10.2542328,49.0514118],[10.2547236,49.0516727],[10.2548789,49.0520643],[10.2552271,49.0521067],[10.2553042,49.0521187],[10.2553534,49.0523939],[10.2553597,49.0527866],[10.2553543,49.0528231],[10.2553108,49.0531167],[10.2552593,49.0534627],[10.2551742,49.0537685],[10.2550961,49.0540032],[10.2550205,49.0541534],[10.2549749,49.0542139],[10.2553695,49.0543784],[10.2555251,49.0540276],[10.2556419,49.053463],[10.2556539,49.0528279],[10.2561263,49.0528147],[10.2561928,49.0528223],[10.2562234,49.0529427],[10.2568853,49.052964],[10.2569933,49.0538362],[10.2571681,49.0538552],[10.2574529,49.0550522],[10.2575257,49.0554456],[10.2574599,49.0563219],[10.257379,49.0576416],[10.2573175,49.0586686],[10.2572604,49.0591722],[10.2570635,49.0596701],[10.2563392,49.0615278],[10.2567472,49.0615713],[10.2567602,49.0614632],[10.2574281,49.0597235],[10.2574486,49.0597264],[10.2582516,49.0598415],[10.2586152,49.0597441],[10.2588576,49.0597225],[10.2592162,49.0597942],[10.259144,49.0600083],[10.2600369,49.060191],[10.2621816,49.0606966],[10.2619384,49.0611042],[10.2653068,49.0616615],[10.2654864,49.0617715],[10.2635692,49.0630971],[10.2629534,49.0629605],[10.2619842,49.0627202],[10.2617844,49.06349],[10.2614964,49.0640445],[10.2614398,49.0641534],[10.2612135,49.0645099],[10.2610572,49.064756],[10.2595267,49.0648232],[10.2593965,49.0649953],[10.2585701,49.0662293],[10.2582751,49.0666751],[10.2580605,49.0669993],[10.2580149,49.0671283],[10.2583389,49.067203],[10.2587835,49.067323],[10.2594145,49.0674798],[10.2590567,49.0677469],[10.2586443,49.0680548],[10.2582149,49.0684278],[10.2579223,49.0687565],[10.2581528,49.0688381],[10.2579964,49.0695771],[10.2580067,49.070109],[10.2577837,49.0701736],[10.2575801,49.0702034],[10.25719,49.0701965],[10.2570863,49.0702723],[10.2570125,49.0703261],[10.2569641,49.070334],[10.2567505,49.0703733],[10.2562165,49.0704745],[10.2558488,49.070563],[10.2556604,49.0706222],[10.2551855,49.0707838],[10.2542599,49.0711179],[10.2539759,49.0712112],[10.253729,49.0713448],[10.2534391,49.0715216],[10.2533006,49.071606],[10.2531577,49.0717404],[10.2530719,49.0718213],[10.2528585,49.0720043],[10.2525867,49.0721956],[10.2523329,49.0723315],[10.2520911,49.0724354],[10.2518391,49.0725394],[10.2515474,49.0726168],[10.2511606,49.0727399],[10.2507086,49.0728804],[10.2501938,49.0730178],[10.2495002,49.0731936],[10.2490877,49.0732899],[10.2487334,49.0733688],[10.248239,49.0734304],[10.2481073,49.0734209],[10.2479477,49.0734361],[10.2477404,49.0734884],[10.2470266,49.0737376],[10.2466123,49.0738557],[10.2462939,49.0739066],[10.2460028,49.073946],[10.2459668,49.0741366],[10.2459434,49.0742597],[10.2441777,49.0742032],[10.2435373,49.0741497],[10.2439096,49.0730263],[10.2439869,49.0727376],[10.2431685,49.0724664],[10.2425248,49.0722576],[10.2422681,49.0726051],[10.2420852,49.0728308],[10.2418719,49.0730843],[10.2417269,49.0732935],[10.2416112,49.0735803],[10.2415039,49.0735951],[10.2411478,49.0736716],[10.2409395,49.0739174],[10.2406421,49.0741754],[10.2401418,49.0742054],[10.2399672,49.0742924],[10.2395469,49.0746275],[10.2386537,49.0744528],[10.2380908,49.0743717],[10.2374839,49.0742272],[10.2370256,49.074044],[10.2366623,49.073896],[10.2364816,49.0739008],[10.2354262,49.0738747],[10.2351638,49.0742231],[10.2342521,49.0743262],[10.2345682,49.0750843],[10.234535,49.0753789],[10.2345285,49.0754343],[10.2343714,49.0757086],[10.2340536,49.0762616],[10.2343959,49.0763946],[10.2344384,49.0764111],[10.2348531,49.0765235],[10.2354208,49.076629],[10.2357411,49.0766987],[10.2358524,49.0767228],[10.2364423,49.0768645],[10.2370254,49.0770155],[10.2372789,49.0770916],[10.2375682,49.0772013],[10.2378247,49.0773687],[10.239621,49.0791114],[10.2397756,49.079246],[10.2403336,49.0803361],[10.2405268,49.0808653],[10.2406388,49.0812748],[10.2407932,49.0813044],[10.2408878,49.0813258],[10.2408845,49.0821002],[10.2413382,49.0820315],[10.241915,49.0820021],[10.2424337,49.0820055],[10.2427864,49.0820366],[10.2433032,49.0811195],[10.2433181,49.0810461],[10.2430991,49.081054],[10.2427635,49.0810204],[10.2425182,49.0809693],[10.2422154,49.0808758],[10.2419642,49.0807633],[10.24173,49.0806412],[10.2415384,49.0805414],[10.2413756,49.080368],[10.2412988,49.0801727],[10.2412482,49.0799245],[10.2412305,49.079726],[10.2412331,49.079605],[10.241316,49.0794894],[10.2415578,49.0793418],[10.2418176,49.0792077],[10.2421622,49.079015],[10.2425232,49.0787971],[10.2428391,49.0786779],[10.2431462,49.0786024],[10.2434727,49.078579],[10.2435979,49.0785771],[10.2439791,49.078626],[10.244091,49.078638],[10.2441729,49.0789772],[10.2443368,49.0795586],[10.2444083,49.0798117],[10.2444566,49.0798956],[10.2445247,49.079947],[10.2446716,49.0799677],[10.2450505,49.0799572],[10.2460185,49.0798668],[10.2469889,49.079749],[10.2471029,49.0798204],[10.2470579,49.080022],[10.2468702,49.0806988],[10.2461278,49.0805801],[10.2459608,49.0805827],[10.2463268,49.0807895],[10.2464837,49.0808899],[10.2466434,49.0809788],[10.246723,49.0810552],[10.2469417,49.08123],[10.2471151,49.0814078],[10.2471933,49.0815482],[10.247255,49.0817185],[10.2472842,49.0819442],[10.2473092,49.0823458],[10.2473261,49.0826266],[10.2472808,49.0828145],[10.2472235,49.0835396],[10.2475614,49.0835457],[10.2478795,49.0835796],[10.2483409,49.0836342],[10.2481806,49.0842009],[10.2480779,49.0847325],[10.2480605,49.0853106],[10.2481183,49.0858488],[10.2482036,49.0865739],[10.2482615,49.0866324],[10.2485542,49.0865387],[10.249257,49.0863382],[10.2498232,49.0875493],[10.2499998,49.0879074],[10.2501416,49.0881703],[10.2502978,49.0883482],[10.2504615,49.0884462],[10.2502684,49.0888855],[10.2501508,49.0892893],[10.2501248,49.0895319],[10.2501599,49.0897324],[10.2502494,49.0898954],[10.2504605,49.0901457],[10.2505356,49.0902998],[10.2505184,49.0904029],[10.2502254,49.0906748],[10.2502134,49.0907206],[10.2501663,49.0909008],[10.2507401,49.0911332],[10.2508112,49.0912729],[10.2507764,49.0913292],[10.2507316,49.0914012],[10.2504105,49.0916149],[10.2500526,49.0917722],[10.2494903,49.091978],[10.2490787,49.0922089],[10.2489667,49.0918902],[10.2489499,49.0914953],[10.2482236,49.0916082],[10.2479137,49.0916399],[10.2480968,49.0922779],[10.2481435,49.0924405],[10.2486627,49.0923877],[10.2494211,49.0923106],[10.2499658,49.0922005],[10.2505652,49.0920578],[10.2506232,49.0923225],[10.2499358,49.0924462],[10.2498679,49.0926107],[10.2498691,49.0927492],[10.2498522,49.0928675],[10.2496685,49.0928987],[10.2495632,49.0927945],[10.2494073,49.0927263],[10.2489329,49.0928492],[10.2484953,49.0929281],[10.2477153,49.0930053],[10.2476701,49.092719],[10.2476444,49.0925568],[10.2475547,49.0923723],[10.2473964,49.0920471],[10.2466581,49.0922146],[10.2451638,49.0919374],[10.2454325,49.0909006],[10.2454545,49.0908159],[10.2454584,49.0906331],[10.2451971,49.0906188],[10.2449078,49.0906167],[10.2447135,49.0906151],[10.2442575,49.0906039],[10.2438078,49.0905744],[10.2433595,49.0905568],[10.2433427,49.0907503],[10.2434343,49.0908338],[10.2436182,49.0910506],[10.2437605,49.0912301],[10.2438869,49.0913533],[10.2441113,49.0915862],[10.2442137,49.091721],[10.2443751,49.0920525],[10.24452,49.0923092],[10.2445811,49.0924628],[10.2446096,49.0925849],[10.2445669,49.0926629],[10.2442151,49.0927974],[10.2437749,49.0929015],[10.2428155,49.0929977],[10.2426876,49.0924287],[10.2426014,49.0920644],[10.2424638,49.0921031],[10.2422912,49.0921378],[10.2420624,49.0921619],[10.2418015,49.0921592],[10.2415913,49.0921168],[10.2415268,49.092063],[10.241151,49.0919614],[10.2406906,49.0919253],[10.2397857,49.0919097],[10.2389165,49.0919209],[10.2385165,49.0919134],[10.2379665,49.0918079],[10.2377838,49.0912647],[10.2376934,49.091065],[10.2375722,49.0909824],[10.2374275,49.0909276],[10.2369817,49.0908088],[10.2366047,49.0907691],[10.2364448,49.090748],[10.2363251,49.0907323],[10.2356029,49.0905677],[10.2350941,49.0904454],[10.2346995,49.0908924],[10.2345265,49.0911144],[10.2343352,49.0914098],[10.2342354,49.0916353],[10.2341798,49.0919286],[10.2340968,49.0919482],[10.2330468,49.0919553],[10.2323813,49.0919246],[10.2324572,49.0916081],[10.2325436,49.0913988],[10.2327217,49.0911174],[10.2328766,49.0908774],[10.2331362,49.0903479],[10.2330764,49.0903366],[10.2318536,49.0902718],[10.2314062,49.090208],[10.2309092,49.0901244],[10.2305367,49.0900114],[10.2302751,49.0898921],[10.2295963,49.0895782],[10.2291288,49.0893388],[10.2287422,49.0892236],[10.2282598,49.0891535],[10.2280042,49.0891095],[10.2277804,49.0891678],[10.2274706,49.089264],[10.2271031,49.0893975],[10.2267429,49.0895356],[10.2265685,49.0896206],[10.2264152,49.0897121],[10.2262774,49.0898513],[10.2261371,49.0900111],[10.2260318,49.0901841],[10.2259521,49.0903932],[10.2258855,49.0906729],[10.2258386,49.0909226],[10.2258055,49.0910671],[10.2257222,49.0912717],[10.225628,49.0914582],[10.2255935,49.0915815],[10.2255692,49.0916693],[10.2258742,49.092133],[10.2260243,49.0926446],[10.2260506,49.0929959],[10.2259946,49.0932847],[10.2256999,49.093609],[10.2254867,49.0937818],[10.2253955,49.093856],[10.2252586,49.0941132],[10.2252028,49.0942176],[10.2250803,49.0946165],[10.2250711,49.094866],[10.2250241,49.0951664],[10.2250066,49.0951903],[10.2252831,49.0952382],[10.2251238,49.0956216],[10.224251,49.0956906],[10.2242424,49.0958812],[10.2241514,49.0965046],[10.2233833,49.0967494],[10.2231595,49.0968801],[10.2229357,49.0970107],[10.2230605,49.0971244],[10.2229699,49.0975528],[10.222722,49.0979574],[10.2225847,49.0980117],[10.2223381,49.0977917],[10.2221117,49.0976717],[10.2218513,49.097568],[10.2213611,49.0973445],[10.2208501,49.0972308],[10.2199068,49.096961],[10.2196017,49.0968785],[10.2187625,49.0966835],[10.2176697,49.0965014],[10.2166615,49.0962541],[10.2157584,49.0960233],[10.2151704,49.0958426],[10.2146025,49.0956366],[10.2140717,49.0954961],[10.2138353,49.0954084],[10.2136778,49.095292],[10.2135592,49.0951842],[10.2134315,49.095017],[10.2131612,49.0947631],[10.2128908,49.0945981],[10.2124534,49.0944403],[10.2120488,49.0943359],[10.2116582,49.0943032],[10.2110288,49.0943106],[10.210602,49.0944383],[10.2105249,49.0944613],[10.2104333,49.0944888],[10.2103455,49.0945095],[10.2102711,49.0945301],[10.2096279,49.0947365],[10.2093237,49.0948896],[10.2086411,49.0952656],[10.2075801,49.0957616],[10.2068166,49.0961136],[10.2062187,49.0964891],[10.2056389,49.0967631],[10.2045802,49.0971868],[10.20405,49.0973601],[10.2049511,49.0979484],[10.2059286,49.098443],[10.2058194,49.0985664],[10.2066658,49.0989848],[10.2074022,49.099349],[10.2077315,49.0994178],[10.2078106,49.0994368],[10.2079541,49.0992981],[10.2080873,49.0991216],[10.2082053,49.0989855],[10.208226,49.0989619],[10.2085485,49.0984586],[10.2087682,49.098238],[10.2088223,49.0981303],[10.2089305,49.0978897],[10.2090726,49.0975941],[10.2091552,49.0975206],[10.2095037,49.0973129],[10.2100495,49.0970286],[10.2106237,49.0967831],[10.2106519,49.096816],[10.2107473,49.0969264],[10.210959,49.0974186],[10.2111478,49.0977488],[10.2113495,49.0980104],[10.2113959,49.098104],[10.2110183,49.0984878],[10.2109041,49.0986307],[10.2106397,49.0989624],[10.2106243,49.0989863],[10.2105409,49.0991164],[10.2103653,49.0993967],[10.2101073,49.0997046],[10.2099012,49.0999809],[10.2104344,49.1002917],[10.2102253,49.100612],[10.2100064,49.1005809],[10.2099337,49.1005554],[10.2098631,49.1005308],[10.2096635,49.1004611],[10.2095396,49.1002833],[10.2089508,49.0999024],[10.2085784,49.0998672],[10.2083032,49.0997927],[10.207997,49.0996663],[10.2077251,49.0995432],[10.2076664,49.0995263],[10.2074487,49.0994635],[10.2074455,49.0994026],[10.2073461,49.0993918],[10.2073094,49.0994359],[10.2072688,49.0994851],[10.2071654,49.099488],[10.2073786,49.0996644],[10.2075205,49.0998158],[10.20766,49.0999648],[10.2076755,49.1000721],[10.2079741,49.1002465],[10.2080461,49.1003761],[10.2080052,49.1005368],[10.2078654,49.100681],[10.2077012,49.1007814],[10.2074926,49.1008629],[10.2074065,49.1008944],[10.2074231,49.1009465],[10.207464,49.1010912],[10.207774,49.1011829],[10.2081707,49.101257],[10.2085954,49.1013856],[10.2093413,49.1015171],[10.2094756,49.1015286],[10.2096313,49.1015435],[10.2097755,49.1015564],[10.2101728,49.1013924],[10.2103335,49.101182],[10.2104915,49.1011852],[10.2106812,49.1013253],[10.2109879,49.1014668],[10.2114339,49.1016066],[10.2116255,49.1016746],[10.2119035,49.1014766],[10.2119531,49.1014365],[10.212096,49.1013209],[10.2123048,49.101114],[10.21244,49.1009984],[10.212726,49.1007705],[10.2128568,49.1005457],[10.2132565,49.1006192],[10.2135542,49.1010049],[10.2128215,49.1012451],[10.2126214,49.1013245],[10.2122357,49.1016659],[10.2123289,49.101667],[10.21233,49.1017603],[10.2123499,49.1017834],[10.2124271,49.1017671],[10.212457,49.1018193],[10.2125576,49.1018713],[10.2125521,49.1018954],[10.2126629,49.1019823],[10.2126847,49.1020174],[10.2126679,49.1020462],[10.2127473,49.1021248],[10.2127884,49.1021294],[10.2128125,49.1021915],[10.2129048,49.1021824],[10.2129184,49.1022451],[10.2129575,49.1022428],[10.2129957,49.1023088],[10.2130631,49.1023222],[10.2131363,49.1024009],[10.2131999,49.1024367],[10.2132105,49.1024755],[10.2132352,49.1025301],[10.213274,49.1025537],[10.2133154,49.1025721],[10.2133482,49.1026191],[10.2133731,49.102655],[10.2134296,49.1026795],[10.2134231,49.1027058],[10.2134692,49.102775],[10.2134743,49.1028036],[10.2135094,49.102822],[10.21358,49.1028548],[10.2135684,49.1028768],[10.2136079,49.1028968],[10.2136073,49.1029375],[10.213623,49.1029826],[10.2136739,49.1030294],[10.2136836,49.1030722],[10.213748,49.103151],[10.213742,49.103186],[10.213753,49.1032109],[10.2138004,49.1032606],[10.2138479,49.1032888],[10.2138924,49.1033644],[10.2139142,49.1033995],[10.2139243,49.1034268],[10.2140243,49.1034943],[10.2140467,49.1035135],[10.2139959,49.1035416],[10.2140045,49.1035729],[10.2140139,49.10361],[10.2140451,49.1036319],[10.2140856,49.1036544],[10.2140925,49.1036817],[10.2141303,49.1037036],[10.2141611,49.1037129],[10.214188,49.1037492],[10.2145214,49.1037082],[10.2147158,49.1036843],[10.2147405,49.1037766],[10.2149482,49.1040522],[10.2149271,49.1041583],[10.2144925,49.1041025],[10.2144511,49.1041236],[10.21445,49.1041506],[10.2144748,49.1041686],[10.2145045,49.1041727],[10.2145486,49.1042609],[10.2145918,49.1042919],[10.21461,49.1043225],[10.2146631,49.1043539],[10.2146818,49.104373],[10.2147317,49.1044241],[10.2147411,49.1044862],[10.2147927,49.1044931],[10.2147934,49.1045302],[10.2148484,49.1045302],[10.2148935,49.1045622],[10.2149307,49.1045789],[10.2148952,49.1046285],[10.2149735,49.1046288],[10.2149643,49.1046768],[10.2149966,49.1046799],[10.2150285,49.1047034],[10.2150613,49.1047272],[10.2150576,49.1047547],[10.2151086,49.1047787],[10.2150977,49.104832],[10.2151715,49.104858],[10.2151759,49.1048991],[10.2152235,49.1049558],[10.2152611,49.1049622],[10.215314,49.1050251],[10.215321,49.1050645],[10.215253,49.1050659],[10.2152518,49.1050865],[10.2153112,49.1050961],[10.2153061,49.1051419],[10.2153711,49.1052176],[10.2156875,49.1055862],[10.2157532,49.1056629],[10.2159491,49.1058419],[10.2161341,49.1060109],[10.2158861,49.1064549],[10.2156301,49.1063721],[10.2156053,49.1063893],[10.2155822,49.106416],[10.2153316,49.1063424],[10.2148273,49.1069675],[10.2148682,49.107038],[10.2143644,49.1080125],[10.2135189,49.1113809],[10.2139358,49.1113562],[10.2152839,49.1112824],[10.2151931,49.1117634],[10.2153951,49.1130874],[10.2153997,49.11313],[10.215423,49.1133409],[10.2161926,49.1133513],[10.2166199,49.1132981],[10.2173068,49.1131319],[10.2181777,49.1129581],[10.2187309,49.1128941],[10.2195996,49.1128136],[10.2202454,49.1127286],[10.2214502,49.1125712],[10.2219287,49.1124882],[10.2224341,49.112366],[10.2231812,49.1121542],[10.2232065,49.1121802],[10.2232278,49.1122018],[10.2240425,49.111923],[10.2245504,49.111755],[10.2250055,49.1115763],[10.2254154,49.1114027],[10.225677,49.1112831],[10.2263619,49.1109601],[10.2264436,49.1109211],[10.2275849,49.1103601],[10.2277727,49.1102963],[10.2279689,49.1102787],[10.2290657,49.1109804],[10.2293705,49.1111753],[10.2292667,49.1111943],[10.2288728,49.1112431],[10.2284606,49.1112875],[10.2280897,49.1113866],[10.2277368,49.1114646],[10.2273802,49.1116117],[10.2269659,49.1120025],[10.2266814,49.1122901],[10.22651,49.112593],[10.2265021,49.1128625],[10.2268039,49.1129759],[10.226894,49.1130566],[10.2269648,49.1131276],[10.2270008,49.1131637],[10.2272209,49.1132774],[10.2278745,49.1132822],[10.2289642,49.1132773],[10.2298546,49.1132648],[10.2298731,49.1133079],[10.229393,49.1142386],[10.2291812,49.1149195],[10.229201,49.1156417],[10.2293669,49.1159151],[10.2293304,49.1159569],[10.2293545,49.1159954],[10.2293665,49.1161067],[10.2294678,49.1170369],[10.2295424,49.1170612],[10.2295888,49.1170711],[10.2291567,49.1174483],[10.228941,49.1175741],[10.2286862,49.1176867],[10.2282097,49.1178315],[10.2274736,49.1180226],[10.2264229,49.1183042],[10.2259916,49.1184461],[10.2252797,49.1187718],[10.2247676,49.1190266],[10.2249251,49.1195889],[10.2249941,49.1198325],[10.2251402,49.1202329],[10.225286,49.1202061],[10.2254528,49.120074],[10.2255385,49.1200205],[10.2261062,49.1199045],[10.2268793,49.1197928],[10.227582,49.1196455],[10.2286193,49.1193892],[10.2289758,49.1193052],[10.229516,49.1192031],[10.2301195,49.11913],[10.2303842,49.1191361],[10.2305976,49.1191794],[10.2307074,49.1192443],[10.2307452,49.1193355],[10.2307631,49.1193784],[10.2307647,49.1195749],[10.2311901,49.1196088],[10.2317519,49.1196664],[10.2328355,49.1197043],[10.2336098,49.1197752],[10.2347732,49.1199401],[10.2350458,49.1199828],[10.2350223,49.120152],[10.2371033,49.1204919],[10.2372114,49.1203206],[10.2377172,49.1206263],[10.2387663,49.1212607],[10.2386299,49.1214],[10.2387365,49.1214482],[10.2387809,49.1214684],[10.2390614,49.1215884],[10.2391878,49.1216373],[10.2392858,49.1215724],[10.239431,49.1216193],[10.2405219,49.1219706],[10.2406711,49.1220298],[10.2408065,49.1221131],[10.2407396,49.1221628],[10.2408232,49.1222228],[10.2410715,49.1224009],[10.2412757,49.1225857],[10.2410095,49.1227271],[10.2407231,49.1228676],[10.240568,49.1229368],[10.2403751,49.1230661],[10.2402278,49.1231975],[10.2400973,49.1233404],[10.2400629,49.1234454],[10.240103,49.1236534],[10.2399694,49.1239601],[10.2399895,49.1240811],[10.2400342,49.1241107],[10.2402126,49.1242446],[10.2403691,49.1243452],[10.2405246,49.1244555],[10.2406952,49.1245416],[10.2408517,49.1246052],[10.241064,49.1246866],[10.2412728,49.124706],[10.2413607,49.1247005],[10.241481,49.1247316],[10.2416412,49.1248189],[10.241775,49.1249235],[10.2419717,49.1249891],[10.2421637,49.1250435],[10.242436,49.1252676],[10.2426335,49.1253271],[10.2428069,49.1254195],[10.2428646,49.1254295],[10.2428575,49.1256085],[10.2432165,49.1257725],[10.2434512,49.1258712],[10.2436589,49.1259065],[10.24382,49.1259471],[10.2443914,49.1260871],[10.244842,49.1261507],[10.2449567,49.1259943],[10.245221,49.126133],[10.2456296,49.1263342],[10.2458435,49.126398],[10.2460059,49.1264854],[10.2462809,49.1264916],[10.2466128,49.1265337],[10.2470179,49.1265888],[10.2473395,49.1266402],[10.2478145,49.1267081],[10.248236,49.1267105],[10.2486543,49.126714],[10.2486079,49.1265483],[10.2487627,49.1265402],[10.2487884,49.1265389],[10.2487398,49.1265995],[10.2487993,49.1267167],[10.2487903,49.1267946],[10.2491377,49.1275642],[10.2492265,49.1275915],[10.2493817,49.1275713],[10.2493967,49.1276056],[10.2494237,49.1276822],[10.2502798,49.127511],[10.2514523,49.127329],[10.2515528,49.1273789],[10.2519058,49.1282142],[10.2519834,49.1283982],[10.2522923,49.1291291],[10.2524956,49.1296009],[10.2525668,49.1295817],[10.2526228,49.1295726],[10.2527954,49.1299949],[10.2570445,49.1290688],[10.2570315,49.129028],[10.2570729,49.1290223],[10.2571251,49.1290209],[10.257123,49.1291557],[10.2570576,49.1292785],[10.2570278,49.1293198],[10.2567596,49.1296929],[10.2566947,49.1298797],[10.256665,49.13007],[10.2566558,49.130205],[10.256649,49.130429],[10.256693,49.1304096],[10.2567308,49.1304018],[10.256764,49.1304825],[10.2567761,49.1305124],[10.2567607,49.1308781],[10.2558803,49.1317238],[10.2557484,49.1318415],[10.2552755,49.1321876],[10.2547831,49.1324975],[10.2545772,49.1326249],[10.2545283,49.1326551],[10.2543541,49.132767],[10.2534646,49.1331858],[10.2525339,49.1336172],[10.2521441,49.1337873],[10.2520314,49.1338201],[10.2514569,49.1339907],[10.2528668,49.1356568],[10.2529645,49.1357744],[10.2530173,49.1358378],[10.2531987,49.1360111],[10.2533611,49.1361575],[10.2533178,49.1361884],[10.2532536,49.136222],[10.2535893,49.1365238],[10.2539123,49.1367891],[10.2543656,49.137176],[10.2545928,49.1372373],[10.2547334,49.1372778],[10.2549476,49.1373401],[10.2552973,49.1374997],[10.2555234,49.1377489],[10.2555776,49.1381008],[10.2552068,49.1384352],[10.254976,49.1385412],[10.2543468,49.1386858],[10.2541439,49.1387674],[10.253955,49.1388505],[10.2538008,49.1390156],[10.2537703,49.1391522],[10.2538637,49.1394427],[10.2539989,49.1397115],[10.2540039,49.1399026],[10.2540071,49.1400026],[10.2539878,49.140111],[10.2539752,49.1401833],[10.2539664,49.1402966],[10.2539475,49.140357],[10.2539096,49.1404588],[10.2538263,49.1406618],[10.2537419,49.1409736],[10.2535742,49.1410673],[10.2530669,49.1413],[10.2529707,49.1413839],[10.2528529,49.1415641],[10.2527315,49.1417398],[10.252687,49.1418389],[10.2524835,49.1420571],[10.2520586,49.1419939],[10.2515124,49.1418688],[10.2515495,49.1424071],[10.2516343,49.1426101],[10.2517132,49.1428313],[10.251798,49.1431367],[10.2518206,49.1433175],[10.2518703,49.1436839],[10.2512967,49.1437589],[10.250488,49.1441155],[10.2501849,49.1443196],[10.249664,49.1446176],[10.2492692,49.1448309],[10.2491485,49.1450033],[10.2490285,49.1451779],[10.2488904,49.1453581],[10.2486611,49.1455621],[10.2484767,49.145838],[10.2483899,49.1460245],[10.2483111,49.146332],[10.24822,49.1466786],[10.2481742,49.1469352],[10.2481928,49.1470561],[10.2482221,49.1472727],[10.2479873,49.1475074],[10.2478534,49.1476513],[10.2477547,49.1476767],[10.2476757,49.1476817],[10.2477729,49.1477785],[10.2483635,49.1479296],[10.2484526,49.14799],[10.2484735,49.1483987],[10.2482633,49.1489912],[10.2482455,49.1490368],[10.248177,49.1492136],[10.2481538,49.1492601],[10.2477093,49.1491982],[10.2472674,49.1491157],[10.24667,49.1489714],[10.2461333,49.1488583],[10.2455479,49.1487527],[10.24473,49.1487808],[10.2439911,49.1487792],[10.243918,49.148779],[10.2435921,49.1488295],[10.2433194,49.1489044],[10.2424152,49.1490662],[10.2420117,49.149191],[10.241921,49.149224],[10.2418155,49.1492624],[10.2411398,49.1493752],[10.240887,49.1494246],[10.2403932,49.1495576],[10.2403661,49.1494758],[10.2385804,49.1494221],[10.2384555,49.1494399],[10.2383575,49.1494322],[10.2380529,49.1499096],[10.237789,49.1503544],[10.2376734,49.150749],[10.2374717,49.1512867],[10.2373198,49.1515425],[10.2371991,49.1516768],[10.2369883,49.1518596],[10.2369043,49.1519324],[10.2365346,49.1520247],[10.236182,49.1521121],[10.2357303,49.152153],[10.2352137,49.1521241],[10.2351054,49.1521145],[10.2342434,49.1521794],[10.2337741,49.1522183],[10.2334007,49.1523059],[10.2322264,49.1526836],[10.231956,49.1529378],[10.2318318,49.1530826],[10.2316018,49.1533349],[10.2310226,49.1534685],[10.2310375,49.1536812],[10.2310542,49.1537407],[10.2310979,49.1538951],[10.2312494,49.1543226],[10.2312758,49.1545246],[10.2312966,49.1546841],[10.2313004,49.1549964],[10.2312483,49.1552818],[10.2311862,49.1555184],[10.2318185,49.155565],[10.2324059,49.1555692],[10.2320648,49.1560359],[10.2320388,49.1564141],[10.2317624,49.1563932],[10.2315448,49.1563596],[10.2313324,49.156652],[10.2311995,49.1572499],[10.2308735,49.1573804],[10.2305696,49.1574955],[10.2298993,49.1576577],[10.2295836,49.1578813],[10.2292666,49.1581111],[10.2289961,49.1584593],[10.2287571,49.1587797],[10.2285181,49.1590702],[10.2283135,49.1593368],[10.2280829,49.1595587],[10.2279526,49.1599035],[10.2274351,49.1601679],[10.2271275,49.1603335],[10.2267169,49.1605463],[10.2264741,49.1607001],[10.2260923,49.160892],[10.2256373,49.1610548],[10.2251813,49.1612481],[10.2250246,49.1613998],[10.2246299,49.1615813],[10.2241132,49.1618324],[10.2236998,49.1614144],[10.2236162,49.161213],[10.2233824,49.1608691],[10.2231752,49.1605695],[10.2229415,49.1603123],[10.2226458,49.1600178],[10.2222664,49.1600886],[10.2218995,49.160166],[10.2212301,49.1602596],[10.2209984,49.1602928],[10.2209086,49.1603057],[10.2202531,49.1602597],[10.2195035,49.1601484],[10.2190161,49.1601744],[10.218608,49.1600606],[10.2185685,49.1603583],[10.2185788,49.1606093],[10.2186724,49.1607519],[10.2187437,49.1610345],[10.2193698,49.160851],[10.219604,49.1609991],[10.2198162,49.1613664],[10.2197107,49.1616815],[10.2195104,49.1621021],[10.2193054,49.1624682],[10.2190978,49.1629004],[10.2186812,49.1629464],[10.2186054,49.163231],[10.2186005,49.1634077],[10.2181815,49.1634712],[10.2181176,49.1634809],[10.2175196,49.1635249],[10.2168702,49.1635456],[10.2166296,49.1635632],[10.2165099,49.163572],[10.216099,49.1635732],[10.2158066,49.1636115],[10.2154606,49.1636582],[10.2150988,49.163332],[10.2148865,49.1630835],[10.214725,49.1627743],[10.2145187,49.1623821],[10.2141651,49.1624527],[10.2138441,49.1625443],[10.2134377,49.1626871],[10.2129327,49.1627948],[10.2129078,49.1627493],[10.2127285,49.162361],[10.2126441,49.1621789],[10.2126048,49.1620938],[10.2124891,49.1618575],[10.2123747,49.1616239],[10.2123776,49.1612098],[10.212181,49.160841],[10.2118564,49.1604121],[10.2116918,49.160299],[10.2112885,49.1600743],[10.2112805,49.1600719],[10.2110642,49.1600046],[10.211002,49.1600196],[10.2102415,49.1599117],[10.2099445,49.1597318],[10.2096912,49.1596148],[10.2095043,49.1595677],[10.2082987,49.159404],[10.2077153,49.1593035],[10.2074218,49.1592406],[10.2067005,49.1589998],[10.206963,49.1580013],[10.206851,49.157895],[10.2055923,49.1567008],[10.2054376,49.1566083],[10.2054883,49.1565783],[10.2055807,49.1565225],[10.2055245,49.1564867],[10.205496,49.1564683],[10.2055156,49.1562823],[10.2051184,49.1556141],[10.204431,49.1558664],[10.2042142,49.1559135],[10.2040101,49.1559577],[10.2037776,49.1560617],[10.2032915,49.1562695],[10.2030932,49.1563117],[10.2025673,49.1563809],[10.2024451,49.1563793],[10.2022176,49.1563144],[10.2018546,49.1563052],[10.2016662,49.1562812],[10.2010224,49.156139],[10.2008683,49.1560715],[10.2005802,49.155916],[10.2003728,49.1557848],[10.2000033,49.1555163],[10.1995563,49.1555411],[10.1992128,49.1555751],[10.1989722,49.1555989],[10.198105,49.1556644],[10.1979775,49.155674],[10.1968289,49.1557628],[10.1969027,49.1563127],[10.196933,49.1567917],[10.1969489,49.1568234],[10.1971496,49.1568099],[10.1972486,49.1568033],[10.1975658,49.1567832],[10.1983366,49.1567607],[10.1986698,49.1569115],[10.1987342,49.1569536],[10.1987331,49.1581307],[10.1987486,49.1588646],[10.1988359,49.158871],[10.198921,49.1589821],[10.198908,49.1589996],[10.1988537,49.1590963],[10.1988246,49.1591481],[10.1990762,49.1594725],[10.1991511,49.1595969],[10.1993385,49.1599089],[10.1995639,49.1602248],[10.1991547,49.1605392],[10.1989949,49.1606724],[10.1990298,49.1607913],[10.1991193,49.1609133],[10.198183,49.1614077],[10.1980918,49.1614525],[10.1975136,49.1617619],[10.1971017,49.1619804],[10.1965832,49.1622543],[10.1959223,49.1626065],[10.1959562,49.162635],[10.196059,49.1627216],[10.1964216,49.1630607],[10.1967554,49.1632398],[10.1968607,49.1632962],[10.1972447,49.1636098],[10.1968905,49.1639397],[10.1961346,49.164579],[10.195374,49.1649627],[10.1948926,49.1652471],[10.1942652,49.1655963],[10.1937822,49.1663185],[10.193701,49.1664371],[10.1936475,49.1665155],[10.1932904,49.1668645],[10.1931547,49.1669925],[10.1928872,49.1671667],[10.1927456,49.1673719],[10.1925959,49.1675704],[10.1926725,49.1679409],[10.1926956,49.1680225],[10.193297,49.1684389],[10.1937375,49.1688967],[10.1940041,49.1691607],[10.1941259,49.1692812],[10.194437,49.169442],[10.1945341,49.1694457],[10.1946142,49.1694696],[10.1947231,49.1695576],[10.1947513,49.1696196],[10.1948186,49.1696414],[10.1948803,49.1696398],[10.1949092,49.1696667],[10.1950074,49.1696766],[10.1950634,49.1697043],[10.1951511,49.1698589],[10.1951867,49.1698813],[10.195246,49.169925],[10.1951342,49.1699737],[10.1943909,49.1701079],[10.1942588,49.1701288],[10.1939833,49.1701722],[10.1937353,49.1702123],[10.1935867,49.1702284],[10.1929956,49.1703071],[10.1924124,49.1703627],[10.1920652,49.1704328],[10.1918494,49.1704729],[10.1913439,49.1706027],[10.1908547,49.1706999],[10.1904534,49.1707909],[10.1902486,49.170896],[10.1896682,49.1706948],[10.1891775,49.170631],[10.1885609,49.1705882],[10.1880991,49.1699128],[10.1879727,49.1697284],[10.1877026,49.1699443],[10.1876863,49.1699863],[10.1876142,49.170175],[10.1877073,49.1704079],[10.1877956,49.1707181],[10.1878086,49.1707633],[10.1879303,49.170949],[10.1879921,49.1711797],[10.1881788,49.1713465],[10.1881862,49.1713805],[10.1882289,49.1715756],[10.1882436,49.1718808],[10.1883849,49.1718641],[10.1887647,49.1718193],[10.1890278,49.1719032],[10.1894228,49.1719695],[10.1895939,49.1720485],[10.1894572,49.1723132],[10.1892153,49.1724978],[10.1887403,49.1726507],[10.1886752,49.1727005],[10.1884569,49.1728679],[10.1889099,49.173448],[10.1893248,49.1736519],[10.1900061,49.1738681],[10.1896633,49.1741538],[10.1894023,49.1743158],[10.1889854,49.1743207],[10.1886443,49.1740769],[10.1882705,49.1738301],[10.1882523,49.173566],[10.1881257,49.1733274],[10.1878763,49.1732078],[10.187991,49.1729863],[10.1878486,49.1727404],[10.1875478,49.1726239],[10.1872659,49.1726913],[10.1871583,49.1727091],[10.1869304,49.1726584],[10.1867354,49.1725471],[10.1866989,49.1724821],[10.1866188,49.1723391],[10.1866652,49.1719631],[10.1866803,49.1717311],[10.1868277,49.1713269],[10.1870321,49.1710502],[10.1870649,49.1707769],[10.1867398,49.170428],[10.1862914,49.170474],[10.1854908,49.1705704],[10.1852357,49.1706801],[10.1848351,49.1709137],[10.1847204,49.1710653],[10.1848392,49.1712648],[10.1849608,49.1714154],[10.1851502,49.1715742],[10.1855594,49.1716231],[10.1857452,49.1718852],[10.1855927,49.1723497],[10.1855834,49.1723776],[10.1855438,49.1726135],[10.1855652,49.1729872],[10.1853659,49.1729996],[10.1852577,49.1727559],[10.185107,49.172597],[10.1849824,49.1724635],[10.1848525,49.1722423],[10.1842977,49.1724771],[10.1842073,49.1725364],[10.1839205,49.1727247],[10.183848,49.1726537],[10.1837222,49.1724206],[10.1836074,49.1721405],[10.1833413,49.1718279],[10.183077,49.1718264],[10.1825537,49.1719262],[10.1821238,49.1720743],[10.1813719,49.1723767],[10.1807333,49.1726163],[10.179931,49.1728451],[10.179219,49.1730234],[10.1788854,49.1730953],[10.1781899,49.1731983],[10.1776855,49.1732481],[10.1772678,49.1732429],[10.1772931,49.1734232],[10.1773954,49.1736119],[10.1774737,49.1739587],[10.1775269,49.1744177],[10.1775013,49.1748059],[10.1774965,49.1748777],[10.1774582,49.1751579],[10.1775622,49.1753114],[10.1781164,49.1756296],[10.1783538,49.1760936],[10.1789173,49.1763921],[10.1797448,49.1765988],[10.18058,49.1767113],[10.1809882,49.1765505],[10.1812058,49.176688],[10.1812528,49.1768386],[10.1810603,49.1769764],[10.1810593,49.1770066],[10.1810483,49.1773812],[10.1810604,49.1774555],[10.1811028,49.1777148],[10.1809504,49.1781429],[10.1807745,49.1784896],[10.1806949,49.1788141],[10.1806637,49.1790059],[10.1810121,49.1794109],[10.1810767,49.1797143],[10.1810533,49.1799647],[10.1810486,49.1800018],[10.1810229,49.1802044],[10.1810289,49.1804568],[10.1811156,49.1807276],[10.1813008,49.1810517],[10.1814189,49.1813661],[10.1815446,49.1816343],[10.1814326,49.1819498],[10.1813356,49.1825656],[10.181055,49.1826018],[10.1808134,49.1826269],[10.1804365,49.1826428],[10.1799843,49.1824892],[10.1796719,49.1823986],[10.1790761,49.182395],[10.1784701,49.1822495],[10.1780472,49.1820798],[10.1774995,49.1818352],[10.1763791,49.1815702],[10.1764446,49.1812313],[10.1763059,49.1807784],[10.1761116,49.1803733],[10.1761207,49.1803106],[10.1761797,49.1799008],[10.1754105,49.1796937],[10.1749836,49.1795736],[10.1747532,49.1795086],[10.1740992,49.179396],[10.1735947,49.1793335],[10.1731929,49.1793113],[10.1728326,49.1792646],[10.1719005,49.1792192],[10.1713689,49.1792406],[10.1712934,49.1789629],[10.1712312,49.178448],[10.1710319,49.1780145],[10.1709504,49.1780141],[10.1706844,49.1780131],[10.1701825,49.1780349],[10.1695178,49.1780733],[10.1687444,49.1781712],[10.1681018,49.1782203],[10.1675929,49.1783983],[10.1676376,49.178711],[10.1676643,49.1789292],[10.1677662,49.1791744],[10.1674087,49.1794333],[10.1668841,49.1793151],[10.1666469,49.1793007],[10.1662133,49.179443],[10.1664188,49.179669],[10.1667978,49.1799351],[10.1666656,49.1800965],[10.1663259,49.1803019],[10.1659547,49.1805115],[10.1659557,49.1807323],[10.1664216,49.1808374],[10.1669085,49.1809394],[10.1672711,49.1812018],[10.1668303,49.1812871],[10.1665024,49.1814786],[10.1663604,49.1816477],[10.1661379,49.1817988],[10.1658026,49.1819229],[10.1654681,49.1820594],[10.1653018,49.1821271],[10.1648151,49.1822451],[10.164242,49.1823898],[10.1638042,49.1825092],[10.1635243,49.1825689],[10.1632736,49.1826623],[10.1629923,49.1827814],[10.16253,49.1829858],[10.1620955,49.1824997],[10.1617336,49.1826042],[10.1615091,49.1826538],[10.1612774,49.182701],[10.1609758,49.1827474],[10.1607501,49.1827994],[10.1605147,49.1828993],[10.1604017,49.1829469],[10.1602606,49.1829928],[10.1600866,49.1830026],[10.1599748,49.1829977],[10.1597545,49.182983],[10.1597433,49.1830474],[10.1600029,49.1831754],[10.1602507,49.1832693],[10.1604737,49.1833501],[10.1607453,49.18343],[10.1604423,49.1837002],[10.1603537,49.1838366],[10.160172,49.183826],[10.1599834,49.18382],[10.1598166,49.1838321],[10.1596285,49.1838375],[10.1593811,49.1838395],[10.1592245,49.1838491],[10.1589594,49.1838444],[10.1591062,49.1839424],[10.1592661,49.1840174],[10.1594294,49.1840923],[10.1595868,49.1841901],[10.1597063,49.1843],[10.1598042,49.1843966],[10.1599288,49.184543],[10.1601434,49.1847678],[10.1605087,49.1850928],[10.1599855,49.1852618],[10.1594157,49.1854479],[10.1593775,49.1854812],[10.1590815,49.1856836],[10.1588194,49.1858112],[10.1584155,49.1860016],[10.1582199,49.1861062],[10.1578469,49.186465],[10.1578338,49.1864778],[10.1576001,49.18676],[10.1573528,49.1870446],[10.1571754,49.1873421],[10.1570582,49.18757],[10.156974,49.187714],[10.156964,49.1877377],[10.1569499,49.1879048],[10.1569543,49.1880167],[10.156972,49.18811],[10.1570527,49.1882091],[10.1571497,49.1882806],[10.1573912,49.1884775],[10.1573446,49.1885631],[10.1572905,49.188662],[10.1571594,49.1888722],[10.157098,49.1890813],[10.1570696,49.1893308],[10.1571692,49.1900739],[10.1568558,49.1900862],[10.1565877,49.190093],[10.1563882,49.1900782],[10.1562028,49.1900608],[10.1560238,49.1900296],[10.1558759,49.1899956],[10.1556933,49.1899643],[10.1554765,49.1899498],[10.1550863,49.1899564],[10.1549298,49.1899531],[10.1547304,49.1899488],[10.1542675,49.1899727],[10.153913,49.1900016],[10.1536868,49.1900123],[10.1533912,49.190031],[10.1531678,49.1900236],[10.1529291,49.1899842],[10.1528201,49.189961],[10.1528038,49.1901119],[10.1528073,49.1902421],[10.1530069,49.1903499],[10.1531022,49.1904176],[10.1531802,49.1904899],[10.1532163,49.190556],[10.1532491,49.1906263],[10.1532676,49.1906855],[10.1532757,49.1907493],[10.1532633,49.1908316],[10.1532408,49.1909275],[10.1545358,49.1908852],[10.1545375,49.1909344],[10.1545499,49.1911037],[10.1545843,49.1916676],[10.1558868,49.191591],[10.1559418,49.1916421],[10.1568682,49.1925217],[10.1565256,49.1925502],[10.1556851,49.1926945],[10.1551062,49.1927801],[10.1542848,49.19287],[10.1538179,49.1930247],[10.1534383,49.1930503],[10.1518702,49.1931636],[10.1514155,49.1932233],[10.1510085,49.1933392],[10.1504458,49.1934965],[10.1497935,49.1936777],[10.1492203,49.1938305],[10.1485836,49.1939614],[10.1477727,49.1941018],[10.146982,49.1942168],[10.1460361,49.1943798],[10.1455984,49.1944747],[10.1433563,49.1951558],[10.1433703,49.1952146],[10.1433826,49.1952583],[10.1419976,49.1953694],[10.1421209,49.1958026],[10.1421232,49.1960401],[10.1421022,49.196301],[10.1420528,49.1965462],[10.1419816,49.1967761],[10.1418669,49.196963],[10.1417105,49.1971508],[10.141509,49.1973461],[10.1413003,49.1975301],[10.1410835,49.1976938],[10.1409139,49.1978153],[10.1406558,49.1977239],[10.1404346,49.1976865],[10.1401207,49.1976873],[10.1398694,49.1976824],[10.1395505,49.1974684],[10.139251,49.1973021],[10.1389506,49.1972021],[10.1387151,49.1971581],[10.1383926,49.1970877],[10.1377036,49.1976219],[10.1381522,49.1982644],[10.1373938,49.1987479],[10.137032,49.1989482],[10.1369961,49.1989676],[10.1369527,49.1989909],[10.1368208,49.199024],[10.1359963,49.1991331],[10.1358227,49.1991779],[10.1356983,49.1992314],[10.1356223,49.1992754],[10.1355674,49.1993259],[10.1355371,49.1993856],[10.1355241,49.1994359],[10.1355916,49.1998877],[10.1356533,49.2002024],[10.1353374,49.2002869],[10.1351563,49.2003044],[10.1350372,49.2002824],[10.134838,49.200252],[10.1346628,49.2002122],[10.1344423,49.2001615],[10.1342252,49.2001105],[10.134001,49.200062],[10.1336859,49.199996],[10.1334935,49.1999562],[10.1333356,49.1999118],[10.1331847,49.199849],[10.1330228,49.1997748],[10.132896,49.1997028],[10.1327658,49.1996284],[10.1325825,49.1995247],[10.1323885,49.1994166],[10.1322093,49.1993358],[10.1319885,49.1992712],[10.1317888,49.1992248],[10.1315999,49.1991897],[10.1314144,49.1991568],[10.1311387,49.1991407],[10.1318557,49.1989699],[10.1319198,49.1989546],[10.132404,49.1988574],[10.1326624,49.1987731],[10.1328469,49.1986785],[10.1329829,49.1985894],[10.1330334,49.198456],[10.1330658,49.1983047],[10.133043,49.1981703],[10.1329807,49.1980046],[10.1328757,49.1978189],[10.1327255,49.1976363],[10.1318255,49.1976332],[10.1315991,49.1976371],[10.1313576,49.1976161],[10.1309578,49.1975611],[10.1305052,49.1974911],[10.1299475,49.1974068],[10.1295668,49.1973035],[10.1290398,49.197169],[10.1289799,49.1971547],[10.1290546,49.1970537],[10.129109,49.1969849],[10.1292049,49.1968974],[10.1292737,49.1968443],[10.1293703,49.1967981],[10.1295809,49.1966984],[10.130043,49.1964483],[10.1301386,49.1963449],[10.1303436,49.1961169],[10.1290847,49.1956072],[10.1270465,49.1973655],[10.1270942,49.1974705],[10.1272538,49.1976198],[10.1280782,49.1981222],[10.1280983,49.198081],[10.1281511,49.198107],[10.1283265,49.1981311],[10.1288419,49.198376],[10.1290903,49.1984905],[10.1294047,49.198588],[10.1297427,49.1986693],[10.1301555,49.1987879],[10.1300521,49.1989108],[10.1296729,49.1988464],[10.1292348,49.1987897],[10.128937,49.1987559],[10.128621,49.1986973],[10.1283153,49.1985493],[10.1276491,49.1987649],[10.1274956,49.1988145],[10.1272913,49.1988681],[10.127054,49.1988493],[10.1268757,49.1988252],[10.1266755,49.1988798],[10.1264142,49.1988989],[10.1259567,49.1988812],[10.1248147,49.1988368],[10.1247848,49.1989651],[10.1247833,49.1989728],[10.1244594,49.2006051],[10.1260264,49.2014571],[10.1263328,49.2015846],[10.1264556,49.2016224],[10.1265955,49.2016348],[10.1272896,49.2016307],[10.1288851,49.2015223],[10.1288494,49.2018129],[10.1287311,49.2018323],[10.1287232,49.201949],[10.1287221,49.2022257],[10.128804,49.2026364],[10.1288816,49.2026699],[10.1289625,49.202699],[10.1290679,49.2027345],[10.1292541,49.2027969],[10.1295562,49.2028946],[10.1297423,49.2029546],[10.1299916,49.2030255],[10.1302991,49.2030547],[10.1306766,49.2030832],[10.1310194,49.2031325],[10.1311457,49.2031612],[10.1312163,49.2031993],[10.1312594,49.2032539],[10.1312123,49.2033366],[10.131175,49.2033826],[10.1311379,49.2034516],[10.1310944,49.2035298],[10.1310297,49.2036057],[10.1309678,49.2036566],[10.1309093,49.2036938],[10.1308159,49.2037312],[10.1307431,49.2037478],[10.1306281,49.2037604],[10.1304991,49.203766],[10.1303839,49.2037557],[10.130137,49.20379],[10.1300667,49.2037984],[10.1291834,49.2039062],[10.1287449,49.2039583],[10.1285989,49.2039801],[10.1284669,49.2039997],[10.1278826,49.2040966],[10.1274483,49.2041783],[10.1274136,49.2041925],[10.127383,49.2042269],[10.1273019,49.2043488],[10.1271085,49.2046136],[10.1269137,49.2049605],[10.1268874,49.2050362],[10.1268903,49.2051756],[10.1269129,49.2054155],[10.1269311,49.2056187],[10.1269467,49.205701],[10.1269348,49.2057947],[10.1268919,49.206074],[10.1268901,49.2061519],[10.126895,49.2062318],[10.1269142,49.2063002],[10.126944,49.2063936],[10.1270639,49.2066097],[10.1272997,49.2070418],[10.1273774,49.207194],[10.127409,49.2072558],[10.1274235,49.2072785],[10.127461,49.2073373],[10.1275424,49.207465],[10.1276367,49.2076308],[10.1276835,49.2076968],[10.1276916,49.2077584],[10.1276728,49.207857],[10.1276461,49.2079143],[10.1276125,49.2079672],[10.1274838,49.2081467],[10.1273614,49.2083101],[10.1273114,49.2084135],[10.1273385,49.2085367],[10.1273251,49.2087334],[10.1273356,49.209227],[10.1273275,49.2095038],[10.1272627,49.2097375],[10.1269975,49.2097355],[10.1266863,49.2097041],[10.1263264,49.2096845],[10.1247841,49.209518],[10.1248289,49.2098194],[10.1248828,49.2098944],[10.1249718,49.2099758],[10.1250612,49.2100779],[10.1258047,49.2107569],[10.125816,49.2107934],[10.1260142,49.210755],[10.1262577,49.2107184],[10.1264908,49.210689],[10.1266959,49.2106527],[10.1269426,49.2106069],[10.1272102,49.2105565],[10.127471,49.2105084],[10.1278114,49.2104435],[10.1279157,49.2104151],[10.127936,49.2103829],[10.1280008,49.2101537],[10.1285221,49.2102266],[10.1297797,49.2104505],[10.1301955,49.2098226],[10.1303442,49.2095972],[10.130834,49.2096589],[10.1308867,49.2096767],[10.1310362,49.2096503],[10.1312311,49.2096148],[10.1313282,49.2095972],[10.1316167,49.2095511],[10.131777,49.2095405],[10.1318327,49.2095399],[10.1320109,49.2095383],[10.1321224,49.2095396],[10.1322067,49.2095639],[10.1322771,49.2095929],[10.132401,49.2096766],[10.1325032,49.2097235],[10.1325981,49.2097547],[10.1327868,49.2097689],[10.133238,49.2098173],[10.1335564,49.2098602],[10.1337347,49.2098813],[10.1339443,49.2098909],[10.1344504,49.2098975],[10.1346946,49.2098976],[10.1349601,49.209911],[10.1352151,49.2099247],[10.1355615,49.2099604],[10.1358301,49.2099671],[10.1359593,49.2099681],[10.1360603,49.2099627],[10.1361787,49.209941],[10.1363629,49.2099095],[10.1365499,49.2098414],[10.1368673,49.2096739],[10.1371535,49.2095158],[10.1373229,49.2094433],[10.1374299,49.2093943],[10.1374993,49.2093732],[10.1376596,49.2093648],[10.1379317,49.20936],[10.1383854,49.2093604],[10.1386155,49.2093536],[10.13879,49.2093542],[10.1390377,49.2088765],[10.1393421,49.208908],[10.1400097,49.2084742],[10.1402677,49.2086295],[10.1404525,49.2087833],[10.1405244,49.2088786],[10.1405643,49.2089491],[10.1397058,49.2095949],[10.1397635,49.2096859],[10.1398036,49.2097632],[10.139826,49.2098316],[10.1398555,49.2099113],[10.1398536,49.2099799],[10.1398419,49.2100875],[10.13981,49.2102204],[10.1397441,49.2104062],[10.1396876,49.2105393],[10.1398698,49.2105719],[10.1399994,49.2106004],[10.1400838,49.210627],[10.1399708,49.2107309],[10.1398924,49.2108186],[10.1397774,49.2109843],[10.139749,49.2111216],[10.1397271,49.2112384],[10.1397027,49.2114056],[10.1396646,49.211582],[10.1396408,49.211772],[10.1396058,49.2119255],[10.1395742,49.2120881],[10.1395455,49.2122073],[10.1394955,49.2123129],[10.1394485,49.2124002],[10.1393859,49.2125745],[10.1392994,49.2127673],[10.1392483,49.2129942],[10.1392214,49.2132024],[10.1391942,49.2132301],[10.1390915,49.2133293],[10.1388276,49.213549],[10.1387597,49.2136365],[10.1387439,49.2137212],[10.1387248,49.2138036],[10.138712,49.2138564],[10.1386961,49.2139206],[10.138676,49.2139665],[10.1386225,49.2140699],[10.1385071,49.2142241],[10.1386192,49.2142528],[10.1388683,49.2143099],[10.1391212,49.214383],[10.1390948,49.2144587],[10.1390679,49.214507],[10.1390441,49.2145415],[10.1390106,49.2145943],[10.1389939,49.2146311],[10.1389948,49.2146791],[10.1390101,49.2147383],[10.1390325,49.2148045],[10.1391388,49.2150435],[10.1392006,49.2153195],[10.139233,49.2155078],[10.1392403,49.2155501],[10.1392599,49.2158083],[10.1392403,49.2158724],[10.1391964,49.2159391],[10.1391524,49.2160013],[10.1391011,49.2160474],[10.1390392,49.2160891],[10.1389497,49.2161517],[10.1388741,49.216205],[10.1387775,49.2162585],[10.1386844,49.216312],[10.1385945,49.2163495],[10.1385012,49.2163891],[10.1383841,49.2164701],[10.1382689,49.2166291],[10.1380942,49.2166146],[10.138017,49.2167593],[10.1377627,49.2167823],[10.13762,49.2167951],[10.1373971,49.2168245],[10.1371467,49.2168543],[10.1369136,49.2168908],[10.1366634,49.2169365],[10.1365418,49.2169651],[10.1365008,49.217002],[10.1364699,49.2170343],[10.1364499,49.2170757],[10.1364019,49.2172843],[10.1363888,49.2173232],[10.1363472,49.2173327],[10.1362742,49.2173448],[10.1360934,49.2173671],[10.1358425,49.2173946],[10.1354492,49.2174416],[10.1349067,49.2175026],[10.1348504,49.2175089],[10.1345858,49.2175319],[10.1344846,49.217542],[10.1343553,49.2175319],[10.1342328,49.2175192],[10.1338867,49.2174789],[10.1334176,49.2174216],[10.1332391,49.2173981],[10.1330502,49.2173679],[10.132833,49.2173264],[10.1325528,49.2172765],[10.1323949,49.2172366],[10.1323812,49.2172575],[10.132047,49.2176263],[10.1314918,49.2182624],[10.1313827,49.21838],[10.1312869,49.2184678],[10.1311772,49.2185626],[10.1310811,49.2186412],[10.1309851,49.218722],[10.1309336,49.2187637],[10.1308515,49.2188375],[10.1307998,49.2188769],[10.1306524,49.2189857],[10.1305871,49.2190331],[10.130432,49.2191317],[10.1303045,49.2192084],[10.1301736,49.2192919],[10.1301015,49.2193429],[10.1299921,49.2194537],[10.1298935,49.2195689],[10.1296232,49.2199897],[10.1295244,49.2201072],[10.1294559,49.2201673],[10.1293737,49.2202366],[10.1293396,49.2204358],[10.1293194,49.2204726],[10.1292401,49.2205281],[10.1288598,49.2208517],[10.1287158,49.2209811],[10.1286443,49.2210549],[10.128384,49.2216266],[10.127975,49.2225791],[10.1278208,49.2230378],[10.1277538,49.223171],[10.1277173,49.2232626],[10.1276868,49.2233041],[10.1276356,49.2233572],[10.1275845,49.2234149],[10.1275123,49.2234703],[10.1274231,49.2235466],[10.1272582,49.2236716],[10.1272039,49.2237384],[10.127132,49.223803],[10.1269493,49.2240814],[10.1266989,49.2245427],[10.1266538,49.2246259],[10.1264164,49.2254677],[10.1260379,49.2268096],[10.1259138,49.227237],[10.126876,49.2273622],[10.1268237,49.2275551],[10.1268144,49.227585],[10.1273558,49.2276679],[10.1278306,49.2277419],[10.1278691,49.2277568],[10.1276735,49.2286176],[10.127443,49.2296665],[10.1274176,49.22974],[10.127384,49.2297771],[10.1273564,49.2297867],[10.1273217,49.2297941],[10.1272519,49.2297974],[10.1271154,49.2297949],[10.1269407,49.2297883],[10.1268802,49.230146],[10.1268669,49.2301669],[10.1263074,49.2301482],[10.1263051,49.2301969],[10.1263064,49.2302232],[10.1263286,49.2304036],[10.1263961,49.2312376],[10.1264946,49.2321168],[10.1265143,49.2328439],[10.1262422,49.2329532],[10.1262607,49.2329804],[10.1263737,49.2331069],[10.1264432,49.2331905],[10.1264882,49.2361361],[10.1247466,49.2376421],[10.1248537,49.2376999],[10.1247534,49.2377425],[10.1231052,49.2392471],[10.1230702,49.2392791],[10.1234034,49.2393652],[10.1237926,49.2394659],[10.1238382,49.2394817],[10.1238876,49.2395087],[10.123909,49.2395291],[10.1239407,49.2395541],[10.123973,49.2396018],[10.123991,49.2396336],[10.1240095,49.2396952],[10.1239516,49.239787],[10.1239098,49.2397896],[10.1238747,49.2397807],[10.1237378,49.2399485],[10.1235901,49.2400979],[10.1235007,49.2401832],[10.1228437,49.2407726],[10.1228857,49.2407883],[10.122914,49.240811],[10.1228834,49.2408637],[10.1228736,49.240896],[10.1228743,49.2409391],[10.1228997,49.2409985],[10.1229531,49.2410621],[10.1236451,49.2417222],[10.1242264,49.2422391],[10.1247898,49.2427197],[10.1247412,49.2427383],[10.124552,49.2429086],[10.1231648,49.2441202],[10.1235259,49.2444215],[10.1236784,49.2445577],[10.1236474,49.2445807],[10.1236093,49.244597],[10.1237652,49.2447329],[10.123949,49.244862],[10.1240968,49.244934],[10.1242834,49.2450333],[10.1242801,49.245239],[10.1242605,49.2453327],[10.1242146,49.2455068],[10.1241741,49.2455847],[10.1241092,49.2456743],[10.12402,49.2457686],[10.1239238,49.2458719],[10.1238319,49.2460143],[10.1237774,49.2460947],[10.1236704,49.2461754],[10.1235664,49.2462151],[10.1234933,49.2462339],[10.1234096,49.2462413],[10.1232774,49.2462673],[10.1231941,49.2463021],[10.1230974,49.2463714],[10.122949,49.2464684],[10.1228103,49.2465378],[10.1226541,49.2465983],[10.1224874,49.2466521],[10.1222579,49.2467084],[10.1220313,49.2467284],[10.1215875,49.2467245],[10.1212104,49.2467295],[10.1209103,49.2467383],[10.1207288,49.2467533],[10.1204427,49.2467759],[10.1202755,49.2467999],[10.1200456,49.2468358],[10.1197915,49.2468832],[10.1197971,49.2470203],[10.1198322,49.247228],[10.1198614,49.2473309],[10.1198728,49.2473716],[10.1198826,49.2473847],[10.119905,49.2474147],[10.1199357,49.2474359],[10.1199861,49.2474531],[10.120035,49.2474619],[10.1203712,49.2475121],[10.1205953,49.2475449],[10.1206898,49.2475602],[10.1210579,49.2476445],[10.1211805,49.2476641],[10.1212715,49.2476636],[10.1214004,49.2476558],[10.1214631,49.2476439],[10.1219864,49.2476106],[10.122043,49.2477539],[10.1221141,49.2479342],[10.1222398,49.2479379],[10.1224779,49.247966],[10.1225481,49.247993],[10.1226466,49.248031],[10.1228083,49.2480985],[10.1229985,49.2481862],[10.1232626,49.248317],[10.1233718,49.2483779],[10.1234104,49.248389],[10.1235369,49.2484362],[10.123842,49.2485096],[10.1241229,49.2485965],[10.1242706,49.2486482],[10.1243692,49.2486932],[10.1244466,49.2487269],[10.1245032,49.2487676],[10.1246829,49.2488783],[10.1247289,49.24891],[10.1247923,49.2489438],[10.1250317,49.2490564],[10.1250983,49.249088],[10.1253399,49.249203],[10.125751,49.2488874],[10.1258167,49.2488615],[10.1259879,49.2488597],[10.1260825,49.2488746],[10.1262694,49.2489343],[10.1264317,49.248992],[10.1265239,49.249039],[10.1266262,49.2490768],[10.1267604,49.2491324],[10.1269158,49.249197],[10.1271839,49.2492947],[10.1275195,49.2494236],[10.1279712,49.2495946],[10.1285221,49.2498103],[10.1287943,49.2499261],[10.1290599,49.2500558],[10.1292482,49.2501559],[10.1293046,49.2501859],[10.1293971,49.2502533],[10.129472,49.2503074],[10.1295502,49.2503569],[10.1296458,49.2504061],[10.1297126,49.2504214],[10.1296815,49.2504309],[10.1295406,49.250652],[10.1300608,49.250772],[10.1302437,49.2508156],[10.1304092,49.2508595],[10.1306023,49.2508895],[10.1307738,49.2509012],[10.130984,49.2509195],[10.131261,49.2509575],[10.1315247,49.2510185],[10.1322587,49.2512826],[10.1321343,49.2514693],[10.1319519,49.2519674],[10.1318038,49.2525752],[10.1332091,49.2532501],[10.1329076,49.2534752],[10.1327338,49.2536419],[10.1325926,49.2538515],[10.1325478,49.2541403],[10.1309533,49.2539773],[10.1309001,49.2540611],[10.1303261,49.2549653],[10.1297585,49.2557081],[10.1294672,49.2563196],[10.1288488,49.2561939],[10.1303576,49.254176],[10.1296237,49.2539167],[10.1294543,49.2538591],[10.1291828,49.2537684],[10.1287892,49.2536836],[10.1284729,49.2536116],[10.1282724,49.2535727],[10.1278019,49.2534888],[10.127187,49.253363],[10.1266841,49.2542969],[10.1262754,49.2550996],[10.1261722,49.255302],[10.1258934,49.2558494],[10.1258476,49.2558361],[10.1256329,49.2557814],[10.1254742,49.2557283],[10.1252728,49.2556459],[10.1250642,49.2555567],[10.12488,49.2554627],[10.1246605,49.2553599],[10.1244526,49.2552937],[10.1242768,49.255259],[10.124112,49.2552334],[10.1238079,49.2552033],[10.1235425,49.2551937],[10.1232246,49.2552002],[10.1228926,49.2552295],[10.1224869,49.2553662],[10.1221196,49.2554937],[10.1218469,49.2556008],[10.1216439,49.2556736],[10.1214109,49.2558574],[10.1210327,49.255682],[10.1208752,49.2557664],[10.1206409,49.2558461],[10.120246,49.2559507],[10.1198332,49.2560348],[10.1193651,49.2560913],[10.1190364,49.2561503],[10.1189736,49.2561616],[10.1187218,49.256191],[10.1183864,49.2561952],[10.1180757,49.2561744],[10.1176776,49.2561602],[10.1174017,49.2561552],[10.1171466,49.256155],[10.1168426,49.2561957],[10.1166959,49.2561772],[10.1165598,49.2561269],[10.1164064,49.2561038],[10.1161689,49.2560875],[10.1156973,49.256087],[10.1152396,49.2560727],[10.114817,49.2560447],[10.1144364,49.2560214],[10.1140975,49.2560211],[10.1137306,49.2560479],[10.1133776,49.2560955],[10.1130212,49.2561774],[10.112696,49.256257],[10.1124722,49.2563069],[10.1121785,49.2564025],[10.1118915,49.2565598],[10.1115586,49.2567809],[10.1112296,49.2570067],[10.1110021,49.2571526],[10.110785,49.2572712],[10.1104736,49.257417],[10.1101167,49.2575605],[10.1097845,49.2576697],[10.1095863,49.2577508],[10.1092948,49.25787],[10.1093714,49.2579205],[10.1096156,49.2580372],[10.1098389,49.258097],[10.1100553,49.2581383],[10.1102997,49.2581912],[10.1105439,49.2582555],[10.1107603,49.2583129],[10.111015,49.2583817],[10.1112316,49.2584414],[10.1114166,49.2584851],[10.1116191,49.2585104],[10.1117936,49.258522],[10.11193,49.2585017],[10.1120456,49.2584516],[10.1122136,49.2583376],[10.1123501,49.2582508],[10.1124378,49.258187],[10.1125568,49.2580936],[10.1126792,49.2580274],[10.1127457,49.2579955],[10.1129556,49.2579249],[10.1131338,49.2578978],[10.1133051,49.2578821],[10.1134694,49.2578662],[10.1135426,49.2578685],[10.1135598,49.2579439],[10.1137026,49.2580607],[10.1138037,49.2581568],[10.113922,49.2582528],[10.1140824,49.2583695],[10.1141799,49.2584496],[10.1142985,49.2585388],[10.1143958,49.258603],[10.1144732,49.2584933],[10.1150037,49.2586562],[10.1151754,49.2584416],[10.1155599,49.2584033],[10.1156019,49.2584057],[10.1156349,49.2579305],[10.1156504,49.2574965],[10.115336,49.2575325],[10.1153472,49.257295],[10.1154382,49.2572564],[10.1155641,49.2571902],[10.1157425,49.2571082],[10.1165567,49.2570589],[10.1170668,49.2570321],[10.1172729,49.2570255],[10.117629,49.2571036],[10.1178174,49.257161],[10.1180442,49.2572343],[10.1183339,49.257317],[10.1190593,49.2576856],[10.1189858,49.2577335],[10.1188526,49.2578133],[10.1186847,49.2579296],[10.1185202,49.2580505],[10.1183554,49.2581783],[10.1182154,49.2582832],[10.1180192,49.25842],[10.1177708,49.2585455],[10.1173075,49.2589243],[10.1171398,49.2590317],[10.1170289,49.2590629],[10.1169103,49.259069],[10.1167527,49.2590528],[10.1164683,49.2590065],[10.1158664,49.2588706],[10.1158856,49.258923],[10.1160356,49.2591423],[10.1163337,49.2595129],[10.1164109,49.2596329],[10.1164603,49.2599839],[10.116517,49.260456],[10.1165167,49.2605749],[10.1165158,49.2608443],[10.1165156,49.2609335],[10.1164938,49.2611619],[10.1164614,49.2613971],[10.1164612,49.2614771],[10.1164783,49.261548],[10.1164921,49.2616576],[10.1164967,49.2617125],[10.1165055,49.2618152],[10.1165018,49.261886],[10.116491,49.2619638],[10.1164307,49.2622217],[10.1163952,49.2623886],[10.1163522,49.2626901],[10.1164986,49.2628],[10.116589,49.262889],[10.1166586,49.2630034],[10.1167,49.2631725],[10.1166962,49.2632547],[10.1166925,49.2633325],[10.1166536,49.2634443],[10.1165904,49.2635676],[10.1165304,49.2637046],[10.1164952,49.2637662],[10.1164812,49.2638006],[10.1164742,49.2638371],[10.1164879,49.2638964],[10.1165296,49.2639605],[10.1166131,49.264036],[10.116683,49.2640932],[10.1167351,49.2641663],[10.1167523,49.2642075],[10.1167556,49.2642531],[10.1167346,49.2642965],[10.116689,49.2643628],[10.1165696,49.2645112],[10.1164715,49.264655],[10.1163694,49.2647942],[10.1162571,49.2649265],[10.1162151,49.2649789],[10.1161974,49.265036],[10.1161623,49.2651115],[10.1161585,49.2651867],[10.1161337,49.2652942],[10.1161016,49.2654495],[10.1160736,49.2655225],[10.116035,49.2655499],[10.1153573,49.2654852],[10.1153432,49.2655194],[10.1153012,49.2656016],[10.1152591,49.2656358],[10.1152136,49.2656586],[10.1151785,49.2656837],[10.1151086,49.2657041],[10.1150491,49.2657223],[10.1144269,49.2657947],[10.114349,49.2661098],[10.1143347,49.2662219],[10.1142913,49.266585],[10.1142982,49.2666764],[10.1143329,49.2667564],[10.1143676,49.2668113],[10.1144268,49.2668663],[10.1146115,49.2669898],[10.1147057,49.2670379],[10.1147265,49.2670607],[10.1148937,49.2672254],[10.1150573,49.2673901],[10.1152976,49.2676303],[10.1153605,49.2676166],[10.1155738,49.2675781],[10.1157416,49.2675691],[10.116126,49.2675467],[10.1163147,49.2675332],[10.1167445,49.2675406],[10.1171776,49.2675434],[10.1175585,49.2675599],[10.1175653,49.2676078],[10.1177897,49.2684054],[10.1177965,49.2684351],[10.1179014,49.268433],[10.1180098,49.2684308],[10.1180865,49.268424],[10.118174,49.268415],[10.1182579,49.2683991],[10.1183803,49.2683604],[10.1185166,49.2683331],[10.118625,49.2683286],[10.1185776,49.268296],[10.1184263,49.2681892],[10.1185596,49.2680408],[10.1186367,49.2679495],[10.1187316,49.2678331],[10.1188054,49.2677304],[10.1188826,49.2676185],[10.1189669,49.2674907],[10.119086,49.2673629],[10.1192542,49.267242],[10.1194,49.2671689],[10.1195132,49.2671121],[10.1197374,49.2669525],[10.1198844,49.2668476],[10.1199648,49.2668111],[10.1199469,49.2669549],[10.11995,49.267083],[10.1199356,49.2671948],[10.1199215,49.2672816],[10.1197701,49.2676082],[10.1197769,49.2676652],[10.1198046,49.267743],[10.1198357,49.2678367],[10.1198458,49.2679486],[10.1198348,49.2680675],[10.1197364,49.2682524],[10.1195262,49.2684639],[10.1195051,49.2684852],[10.1196446,49.2685311],[10.1199722,49.2687713],[10.1202651,49.2690046],[10.1202997,49.2690457],[10.1203449,49.2691258],[10.1204319,49.2692675],[10.1205292,49.2694368],[10.1206022,49.2695304],[10.1212178,49.2704015],[10.1214892,49.2707857],[10.1215864,49.2709319],[10.1216314,49.2710142],[10.1216697,49.2711217],[10.1216831,49.2712337],[10.121697,49.2713342],[10.1216949,49.2714861],[10.1216922,49.2716883],[10.1216444,49.2724125],[10.12163,49.2725587],[10.1216333,49.2725998],[10.1216919,49.2728328],[10.1217605,49.2730397],[10.1218208,49.2731764],[10.1218667,49.2732722],[10.1219163,49.2733612],[10.1220082,49.2735343],[10.1220857,49.2736346],[10.1221737,49.27376],[10.1223005,49.2739194],[10.1224816,49.2741601],[10.1227546,49.2744546],[10.1228671,49.2745684],[10.1229127,49.2746093],[10.1229897,49.2746526],[10.123137,49.2747342],[10.1233368,49.2748228],[10.1235505,49.2749158],[10.1236589,49.2749269],[10.1237428,49.2749335],[10.1238683,49.2749354],[10.124043,49.2749189],[10.1242247,49.2748978],[10.1243886,49.2748768],[10.1247169,49.2748576],[10.1249754,49.2748454],[10.1252095,49.2748379],[10.1254016,49.274835],[10.1256146,49.2748298],[10.1258626,49.27482],[10.1260511,49.2748012],[10.1263026,49.2747798],[10.1264422,49.2747635],[10.126449,49.2752772],[10.126768,49.2754542],[10.1267336,49.2755252],[10.127682,49.2757896],[10.1279235,49.2758573],[10.1279864,49.2758616],[10.1280458,49.2758477],[10.1281677,49.2758178],[10.1283457,49.2757807],[10.1284921,49.2757369],[10.128656,49.2756725],[10.1288583,49.2756171],[10.1290643,49.2755777],[10.1292493,49.2755543],[10.1295773,49.2755008],[10.1298564,49.2754475],[10.1300832,49.2753807],[10.1302922,49.2752909],[10.1304628,49.2751991],[10.1306783,49.2750433],[10.1308593,49.2749103],[10.1310122,49.2747911],[10.1311338,49.2746857],[10.131231,49.2745895],[10.1311225,49.2745464],[10.1309474,49.2745037],[10.1307586,49.2744813],[10.1304966,49.2744524],[10.1302517,49.2744235],[10.1300035,49.2744059],[10.1297204,49.2743702],[10.1294616,49.274339],[10.1292238,49.2743033],[10.1289966,49.2742696],[10.1287902,49.274236],[10.1285558,49.2741888],[10.1283214,49.2741529],[10.1281259,49.274133],[10.127853,49.2740996],[10.1274543,49.2740254],[10.1272407,49.2739735],[10.1270451,49.2739307],[10.1268665,49.2738878],[10.1254327,49.2736659],[10.1253853,49.2733443],[10.1253779,49.273294],[10.1253636,49.273237],[10.1253037,49.2731571],[10.1252336,49.2731003],[10.1251566,49.2730709],[10.1249611,49.2731102],[10.1247972,49.2731473],[10.1246227,49.2731865],[10.1243993,49.2732261],[10.1241411,49.2732885],[10.1238901,49.2733417],[10.1236317,49.2733858],[10.1233979,49.2734231],[10.1231603,49.2734351],[10.1228983,49.2734246],[10.1225908,49.2733981],[10.122256,49.272737],[10.1231198,49.2724047],[10.1234003,49.271454],[10.1236358,49.2708828],[10.1237396,49.2706077],[10.1235877,49.2705388],[10.1234636,49.2704763],[10.1233643,49.2704182],[10.1232643,49.2703418],[10.1231778,49.2702423],[10.12335,49.2700348],[10.1238072,49.2695295],[10.1239059,49.269437],[10.1240207,49.2692964],[10.1241117,49.2691788],[10.1241762,49.2691118],[10.1242924,49.2690237],[10.1243915,49.2689426],[10.1245075,49.2688454],[10.124623,49.2687344],[10.1246976,49.2686559],[10.1247726,49.2685818],[10.1248912,49.2684526],[10.1249825,49.2683511],[10.1250877,49.268238],[10.1252239,49.2681131],[10.1253122,49.2680275],[10.1254317,49.2679302],[10.1255853,49.2678119],[10.1256941,49.2677056],[10.125772,49.2676134],[10.1258527,49.2675052],[10.1259468,49.2673761],[10.1260675,49.2671943],[10.1261605,49.2670288],[10.1262645,49.2668725],[10.126352,49.2667572],[10.1265456,49.2665653],[10.1267048,49.2663923],[10.1268066,49.2662791],[10.1269079,49.2661592],[10.1269615,49.266081],[10.1270212,49.2659707],[10.1270712,49.2658834],[10.1271278,49.2657845],[10.1271813,49.2656971],[10.1265178,49.2653263],[10.1263866,49.2652503],[10.1262658,49.2651788],[10.1261799,49.265109],[10.1260967,49.2650028],[10.1260193,49.2648645],[10.1259507,49.2646576],[10.1259139,49.2644618],[10.1259173,49.2642129],[10.1259646,49.2639043],[10.1261036,49.2640076],[10.1263028,49.2641376],[10.12652,49.2642901],[10.1265545,49.2642759],[10.126544,49.2636507],[10.1265112,49.263352],[10.1264711,49.2631745],[10.1264177,49.2630062],[10.1263742,49.262831],[10.1263279,49.2626649],[10.1262523,49.2624673],[10.1261375,49.2622382],[10.1262755,49.2621771],[10.1264515,49.2620996],[10.1265274,49.2620644],[10.1266066,49.2620315],[10.1266861,49.2619964],[10.126827,49.2619194],[10.1269334,49.2618496],[10.1270323,49.2617686],[10.1271585,49.2616596],[10.1272499,49.2615581],[10.1273307,49.2614522],[10.1273848,49.2613921],[10.1274326,49.261355],[10.1282782,49.2618697],[10.1285197,49.2620128],[10.1286759,49.2621068],[10.1288497,49.2622005],[10.128737,49.2624164],[10.1286204,49.2626187],[10.1284464,49.2628856],[10.1288365,49.2630977],[10.129201,49.2631457],[10.1294887,49.2631924],[10.1297412,49.2632281],[10.1300007,49.2632729],[10.130162,49.2632983],[10.1303344,49.2633418],[10.130405,49.2633662],[10.1306384,49.2634728],[10.1306771,49.2634906],[10.1307667,49.2635672],[10.1308246,49.2636417],[10.1308537,49.2636825],[10.130893,49.2637117],[10.1309463,49.2637452],[10.1310809,49.2638121],[10.1312548,49.2639081],[10.1312938,49.2639328],[10.1316893,49.2635923],[10.1320411,49.2633119],[10.1322402,49.2631954],[10.1324667,49.2630488],[10.1326342,49.2629303],[10.1327957,49.262837],[10.1330121,49.2627089],[10.1331907,49.2626015],[10.1333421,49.2625222],[10.1334654,49.2624407],[10.133575,49.2623641],[10.1338182,49.262199],[10.1339012,49.262166],[10.1340971,49.2621796],[10.134364,49.2622403],[10.134439,49.2622987],[10.1346389,49.2624491],[10.1347532,49.2625391],[10.1351062,49.2627972],[10.1352133,49.2628826],[10.1353858,49.263054],[10.1355265,49.2632075],[10.1356212,49.2633456],[10.1356841,49.2634749],[10.1357975,49.2636561],[10.1358632,49.2637557],[10.1360065,49.2638886],[10.1361251,49.2640058],[10.136279,49.264141],[10.1363685,49.2642198],[10.1364329,49.2642692],[10.1365143,49.2643092],[10.1365776,49.264329],[10.1369036,49.2643683],[10.1372895,49.2644322],[10.137585,49.2645084],[10.1376799,49.26453],[10.138206,49.2647359],[10.1387924,49.2649751],[10.1388631,49.2650063],[10.1389132,49.2650444],[10.1389593,49.2650736],[10.1390208,49.2651457],[10.1391077,49.2652611],[10.1393322,49.2655437],[10.1398019,49.2660971],[10.1399973,49.2663343],[10.1401407,49.2664604],[10.1402862,49.2665476],[10.1404254,49.2666533],[10.1405292,49.2667433],[10.1407119,49.2669054],[10.1408914,49.2670789],[10.141141,49.2672561],[10.1413932,49.2674059],[10.1416311,49.2675423],[10.1418677,49.2676375],[10.1422192,49.2677153],[10.1425205,49.2677595],[10.1428181,49.2677832],[10.1432025,49.2677968],[10.1435798,49.2677989],[10.1438936,49.2677836],[10.1440956,49.2677606],[10.1442137,49.2677431],[10.1442904,49.26774],[10.1444059,49.2677454],[10.1447396,49.2678121],[10.1449366,49.2678644],[10.1452851,49.2679605],[10.145436,49.267986],[10.1456114,49.2680181],[10.1458116,49.2680545],[10.1460151,49.2680907],[10.146247,49.2681357],[10.146556,49.2682004],[10.1467846,49.2682523],[10.1469608,49.2683119],[10.1472289,49.2684021],[10.1475254,49.2685126],[10.148043,49.2687823],[10.1486992,49.2684067],[10.1495688,49.2690145],[10.149392,49.2690646],[10.1490595,49.26916],[10.1483701,49.2693534],[10.1481865,49.2694082],[10.1480625,49.2694668],[10.1478865,49.2695443],[10.1478229,49.2695177],[10.1476879,49.2695627],[10.1473719,49.2697426],[10.1469905,49.2699998],[10.1467381,49.2701702],[10.1467736,49.2701926],[10.1468276,49.270249],[10.1456249,49.2711815],[10.1449139,49.2717243],[10.1464297,49.2720089],[10.1465115,49.2720242],[10.1457052,49.2726504],[10.1458314,49.2726716],[10.1459298,49.2726888],[10.1461482,49.2727498],[10.1462782,49.2727871],[10.1462491,49.2728178],[10.1461343,49.273041],[10.1450109,49.27521],[10.1453176,49.2751153],[10.1454746,49.2750806],[10.1455757,49.2750665],[10.1457609,49.2750592],[10.1466829,49.2750129],[10.1469416,49.275019],[10.1470816,49.2750665],[10.1471273,49.2751005],[10.148067,49.2755727],[10.1479974,49.2756324],[10.1464528,49.2770191],[10.1467315,49.2771165],[10.1480248,49.2775681],[10.1500954,49.2782915],[10.1501286,49.2783066],[10.1501082,49.2783261],[10.1500584,49.2784152],[10.1500346,49.2785309],[10.1500461,49.2788009],[10.1500635,49.2789007],[10.1501187,49.2789934],[10.1501996,49.279132],[10.150368,49.2794189],[10.1504145,49.2795045],[10.1504436,49.2795826],[10.1504881,49.2796834],[10.1505138,49.2797531],[10.150566,49.2798508],[10.1506321,49.2799356],[10.150745,49.2800874],[10.1510935,49.2805489],[10.1511743,49.2806543],[10.1512058,49.2806976],[10.151258,49.2807474],[10.1513363,49.2808174],[10.15149,49.2809268],[10.1516696,49.2810414],[10.1519121,49.2812035],[10.1520146,49.2812641],[10.1520764,49.281302],[10.1521281,49.2813323],[10.1521613,49.2813549],[10.1522358,49.2813835],[10.1523467,49.2814307],[10.1524745,49.2814694],[10.152703,49.2815293],[10.1528252,49.2815694],[10.1529039,49.2816005],[10.152971,49.2816335],[10.1530116,49.2816716],[10.1530502,49.281712],[10.1530837,49.2817618],[10.1531284,49.2818751],[10.1532626,49.2818631],[10.153301,49.281847],[10.1536996,49.2818264],[10.1537942,49.2817882],[10.1539348,49.2816385],[10.1542696,49.2812657],[10.1544308,49.2811374],[10.1546485,49.2810399],[10.155068,49.2808907],[10.1560645,49.2806132],[10.1561577,49.2807049],[10.1562555,49.2807833],[10.1565831,49.2810462],[10.1566147,49.2810689],[10.1564862,49.2811835],[10.1563476,49.2813165],[10.1561114,49.2815159],[10.155955,49.2816443],[10.1558371,49.2817589],[10.1557469,49.2818437],[10.1556706,49.2819262],[10.1556115,49.2819836],[10.1555663,49.2820179],[10.1554587,49.282105],[10.1553754,49.2821853],[10.1552783,49.2822655],[10.1551011,49.2824215],[10.1549486,49.282575],[10.1549347,49.2825956],[10.1549072,49.2826688],[10.1548317,49.2828357],[10.1547695,49.282941],[10.1547248,49.283028],[10.154694,49.2831126],[10.1546526,49.2832064],[10.154619,49.283258],[10.1545455,49.2833712],[10.154414,49.2835452],[10.1543414,49.2836528],[10.1542585,49.2837695],[10.154172,49.2838931],[10.1541167,49.2839801],[10.1540859,49.2840579],[10.1540415,49.284218],[10.1540108,49.2843024],[10.1539626,49.2844008],[10.1538969,49.2845016],[10.1538063,49.2845521],[10.1537367,49.2845843],[10.1536113,49.2846373],[10.1536365,49.2847422],[10.1534971,49.284793],[10.1534944,49.2848866],[10.1533125,49.2848621],[10.1531689,49.2848236],[10.1529484,49.2847696],[10.1527383,49.2847222],[10.152476,49.2846684],[10.1524411,49.2846661],[10.1524273,49.2847302],[10.1523791,49.2848215],[10.1523448,49.2848947],[10.1515551,49.2849132],[10.1505559,49.2849301],[10.1504888,49.2843433],[10.1502512,49.2843715],[10.1499512,49.284425],[10.1497522,49.2844529],[10.1496405,49.2844762],[10.1495464,49.2845016],[10.149369,49.2846072],[10.1492296,49.2846877],[10.1492171,49.2848567],[10.1491872,49.2850943],[10.1491537,49.2852954],[10.1491512,49.2854324],[10.1491445,49.2854736],[10.1491496,49.2856997],[10.1491689,49.2859373],[10.1492051,49.2861107],[10.1492198,49.2862226],[10.1492376,49.286266],[10.1492835,49.2863481],[10.1493084,49.2864005],[10.1494252,49.2866058],[10.149514,49.2867996],[10.1496631,49.2871258],[10.1497062,49.2872696],[10.1497461,49.287459],[10.1497995,49.2876302],[10.1498185,49.2878288],[10.1498512,49.2880046],[10.1498025,49.2879993],[10.1497325,49.2880095],[10.1495681,49.2879895],[10.1493791,49.2879627],[10.1491552,49.2879337],[10.14897,49.2879114],[10.1487985,49.2878936],[10.1485747,49.287867],[10.1483718,49.2878471],[10.1481132,49.2878136],[10.1478016,49.2877666],[10.1476371,49.2877374],[10.1473992,49.2876947],[10.1471228,49.2876477],[10.1469679,49.2876217],[10.1467485,49.2875848],[10.1464895,49.28754],[10.1460627,49.2874795],[10.1457202,49.2874623],[10.1456226,49.2874809],[10.1455353,49.2875064],[10.1454481,49.2875363],[10.1453296,49.2875687],[10.1451865,49.2875851],[10.1449487,49.2875858],[10.1445854,49.2876053],[10.1441908,49.2876362],[10.1438934,49.2880733],[10.1436664,49.2881037],[10.1433904,49.2881046],[10.1430967,49.2880803],[10.1429741,49.2880602],[10.1425857,49.2879631],[10.1423228,49.2878772],[10.1421232,49.2878162],[10.1412809,49.2887986],[10.1424265,49.2891926],[10.1432287,49.289455],[10.1432009,49.2894826],[10.1429344,49.2898305],[10.1441595,49.2902654],[10.1441886,49.290288],[10.1441573,49.2903019],[10.1440667,49.2903365],[10.1439622,49.2903915],[10.1438578,49.2904581],[10.143757,49.2905339],[10.1436005,49.2906257],[10.143479,49.2907046],[10.1434337,49.2907358],[10.1433466,49.290791],[10.1432142,49.2908553],[10.143162,49.2908897],[10.1431204,49.2909412],[10.1428951,49.2912195],[10.1426083,49.2911746],[10.1425085,49.2911735],[10.1424545,49.2911728],[10.1423078,49.2911848],[10.1412912,49.2912692],[10.1411099,49.2912842],[10.1396252,49.2914076],[10.1383085,49.2915121],[10.1382222,49.2916654],[10.1381048,49.2918691],[10.1378808,49.2923083],[10.1377565,49.2925417],[10.1376328,49.2928367],[10.1375468,49.2930289],[10.1374847,49.2931638],[10.1374574,49.2932483],[10.1374325,49.2933504],[10.1374199,49.2934016],[10.1373863,49.293589],[10.1373693,49.2936255],[10.1372963,49.2937262],[10.1372478,49.2937881],[10.1371002,49.2939047],[10.1370314,49.2939533],[10.1369145,49.2940299],[10.1368285,49.2940833],[10.1367664,49.2941182],[10.136725,49.2941393],[10.1366594,49.2941719],[10.1365798,49.2942071],[10.1365245,49.2942306],[10.1355811,49.2945444],[10.1354842,49.2945775],[10.1354287,49.2945964],[10.1353819,49.2946814],[10.1351672,49.2949847],[10.1345783,49.2958181],[10.1345477,49.2958504],[10.1345097,49.2958806],[10.1344926,49.2958968],[10.1344442,49.2959156],[10.1344028,49.295932],[10.1343714,49.2959369],[10.1343401,49.2959441],[10.1343054,49.2959513],[10.134267,49.2959562],[10.1342269,49.2959623],[10.1342182,49.2959636],[10.1341866,49.2959639],[10.1341377,49.2959622],[10.1341078,49.2961436],[10.1340345,49.2965868],[10.134004,49.2967473],[10.1339537,49.2970126],[10.1339481,49.297042],[10.1339296,49.2971405],[10.1344795,49.2971779],[10.1344222,49.2973422],[10.1340033,49.2985441],[10.1339071,49.2988333],[10.1338785,49.29892],[10.1337554,49.2988753],[10.1336883,49.2988463],[10.1335753,49.2987923],[10.1334872,49.2987475],[10.1334237,49.2987182],[10.1333962,49.2987372],[10.1333006,49.2987677],[10.1333996,49.2988083],[10.1334498,49.2988771],[10.1334461,49.2989578],[10.1333834,49.3003372],[10.1322837,49.3003943],[10.1322885,49.3004501],[10.1322918,49.3005583],[10.1325538,49.3005628],[10.132567,49.3008754],[10.132524,49.3011373],[10.1324345,49.3015361],[10.1322759,49.302008],[10.1321464,49.3024085],[10.132114,49.3028385],[10.1323527,49.3028516],[10.1324607,49.3028523],[10.132464,49.3029116],[10.1324603,49.3028714],[10.1323904,49.3036481],[10.1323401,49.3040001],[10.1319488,49.3044725],[10.1319202,49.3045072],[10.1315326,49.3049745],[10.1314629,49.3050589],[10.1326512,49.3055333],[10.1330412,49.3057015],[10.1335898,49.3060185],[10.1339111,49.3061553],[10.1339491,49.3061714],[10.1340177,49.3062112],[10.1342407,49.3063405],[10.1344703,49.3064366],[10.135571,49.3074426],[10.1363479,49.3079688],[10.1364261,49.308025],[10.1354438,49.3097063],[10.1367417,49.310346],[10.1374042,49.3108246],[10.1379261,49.3111496],[10.1383244,49.3113995],[10.13842,49.3114463],[10.13836,49.31149],[10.1390284,49.3118997],[10.1398437,49.3122823],[10.1412714,49.3129422],[10.1414402,49.3130309],[10.1415781,49.3130263],[10.1416935,49.313171],[10.1425854,49.3140549],[10.1426471,49.3141175],[10.1426951,49.3141661],[10.1437667,49.3157606],[10.1439577,49.3158656],[10.1451396,49.3163444],[10.1452391,49.3163343],[10.1452894,49.3163596],[10.145384,49.3164071],[10.144617,49.3172489],[10.1444127,49.3174844],[10.1440814,49.3178664],[10.1440014,49.3178907],[10.1438705,49.3182015],[10.1437931,49.3183781],[10.1436317,49.3186758],[10.143474,49.3189714],[10.1433821,49.319211],[10.1433508,49.3192927],[10.1433301,49.319479],[10.1432762,49.3199906],[10.1432682,49.3200668],[10.1432347,49.3203313],[10.1430153,49.3214843],[10.1430035,49.3215681],[10.1427833,49.3225065],[10.1427695,49.3225659],[10.1402697,49.3225809],[10.1403586,49.3237315],[10.1404214,49.3245476],[10.1405323,49.3245736],[10.1400785,49.3247764],[10.1400448,49.3249617],[10.1398252,49.3256522],[10.1397285,49.3258383],[10.1393396,49.3257842],[10.1389115,49.3257001],[10.1388146,49.3256834],[10.1390044,49.326021],[10.1389294,49.3260024],[10.1388158,49.3259822],[10.1398497,49.3270814],[10.1370925,49.3267561],[10.1370398,49.3272971],[10.1371134,49.3273567],[10.1369105,49.3273303],[10.1364432,49.3272332],[10.1358629,49.3271409],[10.1355264,49.327097],[10.1352546,49.3270473],[10.1348596,49.3269896],[10.1346699,49.3269707],[10.1344304,49.326945],[10.1343677,49.3267812],[10.1333755,49.326778],[10.1329467,49.3267871],[10.1329641,49.3270181],[10.1329365,49.327444],[10.1329163,49.3277215],[10.1323578,49.3277343],[10.1321783,49.3277343],[10.1318117,49.3277417],[10.1314879,49.3277539],[10.1312535,49.3277468],[10.1308956,49.3277214],[10.1302898,49.3276785],[10.1303289,49.327459],[10.1304511,49.326941],[10.1304881,49.326773],[10.1305344,49.3263822],[10.130748,49.3254459],[10.1306755,49.3254352],[10.1300283,49.3253345],[10.1292983,49.3251696],[10.1288624,49.3250731],[10.1287165,49.3250362],[10.1276219,49.3246981],[10.1273335,49.3250909],[10.1271446,49.3253479],[10.1266843,49.3260217],[10.1262468,49.3257775],[10.1259875,49.3256329],[10.1252453,49.3250878],[10.125178,49.3251277],[10.1249387,49.3252699],[10.1243584,49.3255019],[10.1239895,49.3255674],[10.1234681,49.3256897],[10.123447,49.3256223],[10.1233716,49.3253814],[10.1235221,49.3252689],[10.1233254,49.3250419],[10.1232788,49.3249306],[10.1231924,49.3247872],[10.1230652,49.3246117],[10.1225896,49.3247814],[10.1222273,49.3249133],[10.1223695,49.3250504],[10.1209015,49.3252086],[10.1203441,49.3252687],[10.1200934,49.3259871],[10.1200651,49.3260723],[10.1199898,49.3263868],[10.1199592,49.3264987],[10.1197673,49.3268116],[10.1196858,49.326935],[10.1196398,49.3270045],[10.1195453,49.3271331],[10.1194749,49.3272969],[10.1192543,49.3276542],[10.1186379,49.3286527],[10.1186533,49.3289185],[10.1186605,49.3290423],[10.1182242,49.3290718],[10.1180985,49.3290813],[10.1178623,49.3290757],[10.1176237,49.3290535],[10.1174069,49.3290209],[10.1167224,49.3288791],[10.1164623,49.3288093],[10.1159786,49.3286684],[10.1157138,49.3285914],[10.1149885,49.32838],[10.1149507,49.3284346],[10.1147738,49.3286899],[10.1145027,49.3290995],[10.1144171,49.3291897],[10.1143222,49.3292909],[10.1141988,49.3294696],[10.1141104,49.329597],[10.1140781,49.3296437],[10.1134453,49.3295417],[10.1127415,49.3294034],[10.1114729,49.3290971],[10.1105003,49.3288175],[10.1091768,49.3318382],[10.1089605,49.3323316],[10.1076767,49.3323836],[10.1071084,49.3324182],[10.1071044,49.3324505],[10.1071001,49.3324836],[10.1071119,49.3325263],[10.1071172,49.3326838],[10.1078863,49.3326557],[10.1079977,49.3326516],[10.108485,49.332628],[10.1089202,49.3325938],[10.1092883,49.332563],[10.1103856,49.3325339],[10.1114131,49.332557],[10.1119312,49.3325163],[10.1122605,49.3324465],[10.1128506,49.33241],[10.1128072,49.3326042],[10.1127951,49.3326969],[10.1127803,49.3327845],[10.1127682,49.333115],[10.1127606,49.3333351],[10.1128204,49.3338171],[10.1129131,49.3344154],[10.1129764,49.3347221],[10.113037,49.3349711],[10.1130532,49.335076],[10.1130713,49.3351844],[10.1130964,49.3356794],[10.1083188,49.3359998],[10.1088076,49.337905],[10.108875,49.3379328],[10.1087665,49.3379476],[10.1045194,49.338482],[10.1044562,49.3384917],[10.1044484,49.3385422],[10.1044478,49.3386014],[10.1044167,49.3390883],[10.1042896,49.3407181],[10.1043596,49.3407855],[10.1046358,49.3408702],[10.1045922,49.3409281],[10.1045544,49.3409786],[10.1042242,49.3412457],[10.1041616,49.3412962],[10.1039564,49.3413429],[10.103647,49.3414132],[10.10344,49.3414292],[10.1032198,49.3414498],[10.1028342,49.3444621],[10.1039415,49.3446441],[10.1039046,49.3447296],[10.1038502,49.3448651],[10.1038847,49.346889],[10.1038968,49.3469711],[10.1073266,49.3473367],[10.107787,49.3474453],[10.1092959,49.3483333],[10.108915,49.3486861],[10.108407,49.3491597],[10.1084612,49.34919],[10.1085301,49.3492275],[10.1074118,49.3515645],[10.106759,49.3529282],[10.1069683,49.3529962],[10.1078634,49.3532872],[10.107954,49.3533246],[10.1079243,49.3532461],[10.1084632,49.3520836],[10.1086567,49.3516374],[10.1106038,49.3518531],[10.111187,49.3518728],[10.1116431,49.3519301],[10.1119335,49.3519257],[10.1125137,49.3519267],[10.1130389,49.3519281],[10.1132589,49.351909],[10.1135169,49.3518656],[10.1137724,49.3518251],[10.1139787,49.3517733],[10.1140711,49.3518402],[10.1141922,49.3519409],[10.1152431,49.3514839],[10.1154417,49.3514005],[10.115487,49.3513974],[10.1155657,49.351392],[10.11568,49.3514143],[10.1188589,49.3510055],[10.1188924,49.3506576],[10.1189728,49.3501132],[10.1190531,49.3501103],[10.1191129,49.3501667],[10.1220998,49.3503178],[10.1221899,49.3502702],[10.1221784,49.3503254],[10.122166,49.3503873],[10.1226973,49.3503858],[10.1233707,49.3504934],[10.1237313,49.3505389],[10.1237873,49.350546],[10.1236259,49.3511707],[10.1233755,49.3518079],[10.1233215,49.3522731],[10.1230457,49.3546561],[10.1231234,49.3547266],[10.1231226,49.3548104],[10.1231078,49.3548555],[10.1243785,49.354903],[10.1245914,49.3556035],[10.1246346,49.3558628],[10.1246149,49.3565325],[10.1245936,49.3567993],[10.1245928,49.3568409],[10.1245916,49.3569031],[10.1245281,49.3568843],[10.1183025,49.3578656],[10.1179235,49.3595698],[10.1179327,49.3596519],[10.1178383,49.359661],[10.1177047,49.3596706],[10.1142719,49.3597964],[10.1133704,49.3597344],[10.1133215,49.3596775],[10.1132491,49.3598192],[10.1131051,49.3601512],[10.1130648,49.3602621],[10.1129181,49.3607227],[10.1128906,49.3608092],[10.1128274,49.3610591],[10.1127869,49.3612479],[10.1127156,49.3620251],[10.1128293,49.3628678],[10.1127882,49.363337],[10.1127792,49.3636779],[10.1128053,49.363875],[10.1128179,49.3639761],[10.1135271,49.3666235],[10.1173377,49.3669883],[10.1172706,49.3675409],[10.1172717,49.3676421],[10.1172511,49.368759],[10.1172392,49.3690834],[10.1165588,49.3702028],[10.1154863,49.3709857],[10.1148172,49.3715032],[10.1143632,49.3719315],[10.114303,49.3719885],[10.1142105,49.3720765],[10.1140417,49.3722371],[10.1134705,49.3729776],[10.1130688,49.3734178],[10.1122448,49.3738649],[10.1116808,49.3746837],[10.1111838,49.375405],[10.1107066,49.3758721],[10.10875,49.3772802],[10.1086912,49.3773207],[10.1086387,49.3773571],[10.1079835,49.3780351],[10.1072868,49.3787583],[10.107219,49.3788305],[10.1071726,49.3788747],[10.108076,49.380356],[10.1083623,49.3807517],[10.1084495,49.3807766],[10.1084906,49.3808468],[10.1085336,49.3808266],[10.1087126,49.3807426],[10.1087532,49.3808458],[10.1091274,49.3812747],[10.109802,49.3821954],[10.1099349,49.3823769],[10.1118494,49.3850505],[10.1120094,49.3851214],[10.1143305,49.3852494],[10.1144199,49.3852526],[10.1145492,49.3852572],[10.1146372,49.3853045],[10.1168198,49.385926],[10.117995,49.3862267],[10.1187248,49.3863855],[10.1217286,49.3863213],[10.1218357,49.3863416],[10.1219216,49.3863577],[10.1216989,49.3878944],[10.1239734,49.3879299],[10.1264312,49.3879046],[10.1276256,49.3877218],[10.1294035,49.3874286],[10.1294805,49.3873571],[10.1300774,49.3872765],[10.130788,49.3871621],[10.1314567,49.3870455],[10.1315884,49.3870209],[10.1321896,49.386909],[10.1320465,49.3860555],[10.1329728,49.3860162],[10.1329343,49.386796],[10.1332949,49.3867596],[10.1337825,49.3867158],[10.134049,49.3866993],[10.1347841,49.3866662],[10.1364112,49.3866821],[10.1364561,49.38646],[10.1365051,49.386175],[10.1365474,49.3860295],[10.1366188,49.3860335],[10.1368615,49.3860466],[10.1374909,49.3860778],[10.1376481,49.3860958],[10.1383511,49.3860944],[10.1392248,49.3859607],[10.1399583,49.3858334],[10.1399027,49.3856079],[10.1398818,49.3853247],[10.1398435,49.3850088],[10.1398165,49.384789],[10.1397382,49.3845778],[10.1396669,49.384362],[10.1396566,49.3841415],[10.1396922,49.3840245],[10.1397667,49.3837953],[10.1399399,49.3835353],[10.14065,49.3837414],[10.1413967,49.3839053],[10.1422265,49.3841507],[10.1423206,49.3841634],[10.1425114,49.3841893],[10.1425489,49.3840859],[10.1426884,49.3839904],[10.1427715,49.3839565],[10.1429903,49.3838674],[10.1434489,49.3837813],[10.1438828,49.3836963],[10.1445788,49.3835506],[10.144746,49.383948],[10.1449773,49.3845081],[10.1450468,49.3847017],[10.1451421,49.3849877],[10.1453181,49.3857625],[10.1460694,49.3856807],[10.146155,49.3860062],[10.146226,49.3863367],[10.1462429,49.3864916],[10.1462698,49.3867246],[10.1462969,49.3870746],[10.1463309,49.3876382],[10.1463275,49.3883048],[10.1469127,49.3882754],[10.1480191,49.3882198],[10.1494058,49.3881752],[10.1505635,49.3881443],[10.1505864,49.3882166],[10.1505967,49.3883665],[10.1513232,49.3883192],[10.1515882,49.3883199],[10.1527165,49.3883564],[10.1539298,49.3884729],[10.1562548,49.3886694],[10.1562351,49.388748],[10.1560295,49.3895684],[10.1563423,49.389558],[10.1565197,49.3898776],[10.1566517,49.3901826],[10.1569018,49.390205],[10.1567658,49.3907785],[10.1568308,49.3907944],[10.1570313,49.3908432],[10.1573133,49.390915],[10.157464,49.3909466],[10.1576057,49.3909955],[10.1583655,49.390997],[10.1587879,49.3906734],[10.159187,49.3904055],[10.159383,49.3903002],[10.1596159,49.3901847],[10.1597272,49.3901766],[10.159957,49.39016],[10.1601411,49.3901672],[10.1606722,49.390283],[10.1610007,49.3903839],[10.1609995,49.3904086],[10.1609461,49.3916055],[10.1605769,49.3926083],[10.1606233,49.3930524],[10.1606706,49.3935024],[10.1606402,49.393727],[10.1606499,49.3938219],[10.1606911,49.3942271],[10.1607415,49.394311],[10.1607898,49.3943978],[10.1609147,49.3945752],[10.1611424,49.3947285],[10.1614913,49.3948704],[10.16165,49.3950035],[10.1617421,49.3951908],[10.1617523,49.3952798],[10.1616726,49.3955345],[10.1616632,49.395565],[10.1609379,49.395756],[10.1607952,49.3957667],[10.1600567,49.395822],[10.1589793,49.3961316],[10.158404,49.3961588],[10.1579738,49.3963312],[10.1577675,49.3964037],[10.1575358,49.3964707],[10.1573818,49.3964317],[10.1572305,49.3963924],[10.1567896,49.3962776],[10.1561089,49.3964276],[10.1557435,49.3964641],[10.1553993,49.3964875],[10.1552433,49.3965375],[10.1550402,49.3965843],[10.1550177,49.3966154],[10.1549122,49.3966982],[10.1547121,49.3967764],[10.1543067,49.3969958],[10.1541547,49.3970847],[10.1542341,49.3971916],[10.154381,49.3972721],[10.1543876,49.3973081],[10.1543668,49.3973922],[10.1543834,49.3975293],[10.1544303,49.3976348],[10.1544666,49.3976689],[10.1545079,49.3976825],[10.1545335,49.3977092],[10.1545339,49.397732],[10.1544988,49.3978124],[10.1544864,49.397841],[10.1544383,49.3979121],[10.1544327,49.3979498],[10.1544332,49.3979956],[10.1544049,49.3980345],[10.1543677,49.398077],[10.1542516,49.3981458],[10.1542247,49.3981745],[10.1542174,49.3982128],[10.1542497,49.398288],[10.1542561,49.3984056],[10.1542591,49.3984584],[10.1542432,49.3986632],[10.1541805,49.3987447],[10.1541269,49.3987214],[10.1540979,49.3987119],[10.1540278,49.3986986],[10.1539166,49.3986946],[10.1538094,49.3987111],[10.1536753,49.3987467],[10.1535358,49.3987955],[10.1534243,49.3988252],[10.1532023,49.3988446],[10.1530983,49.3988355],[10.1530422,49.398834],[10.1527396,49.3988968],[10.1526036,49.3989279],[10.1525181,49.3989366],[10.1523696,49.3989519],[10.1521799,49.3989621],[10.1520806,49.3989866],[10.1518688,49.3990358],[10.1516878,49.3990418],[10.1516495,49.3990586],[10.1515052,49.3991246],[10.151416,49.399129],[10.151357,49.3990866],[10.1513005,49.399052],[10.1512353,49.3990826],[10.1511642,49.3992013],[10.151138,49.399258],[10.151084,49.3992839],[10.1509548,49.3993069],[10.150841,49.3993919],[10.1507562,49.3994546],[10.1506488,49.3994417],[10.1504038,49.3992834],[10.1503396,49.3992949],[10.1500015,49.3995343],[10.1497499,49.3995636],[10.1495426,49.3996692],[10.1493988,49.3996854],[10.1493231,49.3998767],[10.1492785,49.399917],[10.1490664,49.3999912],[10.1490072,49.4000797],[10.1484248,49.4003152],[10.1482426,49.4003534],[10.148141,49.4004495],[10.147921,49.400529],[10.1477108,49.4007473],[10.147692,49.400855],[10.1475869,49.4009182],[10.1475826,49.4009994],[10.1474643,49.4011398],[10.1472836,49.4012101],[10.1472552,49.4012798],[10.147275,49.4013742],[10.147033,49.4014651],[10.1469502,49.4015551],[10.1468176,49.4016262],[10.1464978,49.4018001],[10.1461573,49.4019408],[10.1460038,49.4019563],[10.1457919,49.4020333],[10.1455889,49.4020383],[10.1452857,49.4022136],[10.1447656,49.4024284],[10.1442733,49.4024843],[10.1440355,49.4025899],[10.1438618,49.4026257],[10.1436711,49.4027487],[10.1436235,49.4027531],[10.1430783,49.4028042],[10.1428963,49.4028882],[10.1426613,49.4028617],[10.1423364,49.402894],[10.1418691,49.4028403],[10.1417484,49.4028431],[10.1414949,49.4029062],[10.1413119,49.4029518],[10.141264,49.4030355],[10.1409662,49.4031531],[10.1407992,49.4031196],[10.1406098,49.4030288],[10.1404866,49.4029768],[10.1402047,49.4029551],[10.140085,49.4030643],[10.1398646,49.4031072],[10.1395999,49.4030796],[10.1394945,49.4030506],[10.1393229,49.4029914],[10.1390906,49.4030049],[10.1390427,49.4030309],[10.1388905,49.403072],[10.1389731,49.4032448],[10.1389824,49.4033983],[10.138953,49.4036698],[10.1396042,49.4036223],[10.1397087,49.4037558],[10.1401777,49.403813],[10.1403399,49.4038327],[10.1408649,49.4038076],[10.1418415,49.4038199],[10.1417088,49.403508],[10.1421744,49.4034833],[10.1426076,49.4034387],[10.1430551,49.4033589],[10.1431171,49.4034775],[10.1432048,49.4036455],[10.1441648,49.4035534],[10.1440702,49.403391],[10.1446284,49.4032648],[10.1452494,49.4030509],[10.145724,49.4029112],[10.1465572,49.402701],[10.1474663,49.4024715],[10.1480641,49.4024323],[10.1485769,49.4022268],[10.1487427,49.4020529],[10.1490157,49.4017444],[10.1493551,49.4013585],[10.1494948,49.4015801],[10.1497434,49.4019744],[10.1504535,49.4017063],[10.1510113,49.4014806],[10.1512591,49.4013315],[10.1513377,49.4012574],[10.1515101,49.4011369],[10.1515564,49.4011593],[10.1516202,49.4011884],[10.1519462,49.4012338],[10.1522092,49.4012431],[10.1518634,49.4017446],[10.1518525,49.4018174],[10.1516279,49.4024108],[10.1517695,49.4024459],[10.151701,49.4030843],[10.1515467,49.4030987],[10.1514019,49.4033287],[10.1511936,49.4035132],[10.1513885,49.4036285],[10.1515985,49.4037874],[10.152247,49.4041206],[10.1522675,49.4041311],[10.1524178,49.4042261],[10.1521707,49.4043638],[10.1520651,49.404448],[10.1509119,49.4051883],[10.1507905,49.4052381],[10.1504164,49.4055119],[10.150271,49.405706],[10.1501421,49.4059073],[10.1499617,49.4063285],[10.1498893,49.4062978],[10.14978,49.4066816],[10.1498163,49.4069596],[10.149847,49.4071935],[10.149825,49.4077318],[10.1499771,49.4084731],[10.1498862,49.4084812],[10.1498092,49.4084801],[10.149828,49.4087695],[10.1498787,49.4090275],[10.1498835,49.4092423],[10.149705,49.4094662],[10.1494097,49.4096591],[10.1491295,49.4098398],[10.1492625,49.4099981],[10.1493647,49.4100938],[10.1493944,49.4101555],[10.1494011,49.4101881],[10.1493506,49.4102762],[10.1488143,49.410648],[10.1486006,49.4107862],[10.1485542,49.4108259],[10.1486039,49.4109839],[10.1478125,49.411164],[10.1479813,49.4114202],[10.1480098,49.4114633],[10.148369,49.4119687],[10.1487941,49.4118911],[10.1492055,49.4118374],[10.1495548,49.411783],[10.1497279,49.411776],[10.1501015,49.4117979],[10.1503379,49.4117353],[10.1506283,49.4116564],[10.1509503,49.4115729],[10.1510747,49.4114988],[10.151146,49.4114563],[10.1521273,49.4115942],[10.1524765,49.4116431],[10.1523899,49.4118204],[10.1522681,49.4119757],[10.1520946,49.412204],[10.1520161,49.4122943],[10.1518948,49.4123569],[10.1516236,49.4124595],[10.1513098,49.4125351],[10.1505632,49.4126757],[10.1497621,49.412908],[10.1493516,49.4130406],[10.1498562,49.4133125],[10.1500411,49.4134309],[10.1502881,49.4135332],[10.1501682,49.4138083],[10.1501271,49.4138723],[10.149949,49.4140666],[10.1496673,49.4139473],[10.1494507,49.4138558],[10.1490877,49.4136899],[10.1490599,49.413863],[10.148924,49.4140817],[10.1488637,49.4141565],[10.1488073,49.4142265],[10.1486614,49.4141591],[10.1479903,49.4138033],[10.1475262,49.4135571],[10.1472701,49.413751],[10.1470833,49.4139635],[10.1469547,49.4141392],[10.1471415,49.4141892],[10.1469792,49.4145661],[10.1469601,49.4147608],[10.1468298,49.4150089],[10.1469218,49.4150308],[10.1467409,49.4153243],[10.1467714,49.4156547],[10.1466912,49.4161065],[10.146435,49.4160236],[10.1461135,49.4159952],[10.1461376,49.416277],[10.1461391,49.4163524],[10.1461375,49.416458],[10.1461152,49.4166653],[10.1461681,49.4168831],[10.1463494,49.416912],[10.1463606,49.4170593],[10.1464109,49.4173677],[10.1464012,49.4175293],[10.1463792,49.4176914],[10.1461207,49.4178186],[10.146099,49.4178512],[10.145968,49.418048],[10.1458341,49.4182005],[10.1456535,49.4183386],[10.1455537,49.4184151],[10.145413,49.4185144],[10.1456075,49.4187134],[10.1457515,49.418856],[10.1454164,49.4192044],[10.1450623,49.4195665],[10.1448804,49.4197539],[10.1447634,49.4198588],[10.1447069,49.4198869],[10.144599,49.4199375],[10.1445697,49.4198299],[10.1444076,49.4197889],[10.1442176,49.4200168],[10.1437787,49.4205248],[10.1435774,49.4208095],[10.1434841,49.4208891],[10.1431904,49.4211401],[10.1429289,49.4213464],[10.1426764,49.421526],[10.1425227,49.4216182],[10.142406,49.4216845],[10.1423507,49.4217162],[10.1420996,49.4218303],[10.1418525,49.4219858],[10.1416467,49.4222024],[10.1415402,49.4223253],[10.1414678,49.4224165],[10.1414055,49.4224669],[10.1412067,49.4226115],[10.1410674,49.4227128],[10.1408819,49.4228492],[10.1404743,49.4231353],[10.140341,49.4232397],[10.1400748,49.4234559],[10.1397473,49.4237295],[10.1394832,49.4239007],[10.1394197,49.4238571],[10.1391204,49.4240247],[10.1388055,49.4241971],[10.1385186,49.42429],[10.1381391,49.4244057],[10.1378604,49.4245064],[10.1373505,49.4246652],[10.1378717,49.425296],[10.1381381,49.4259729],[10.1381527,49.4260078],[10.1381796,49.4260725],[10.138265,49.4261483],[10.1384543,49.4261936],[10.138464,49.4262563],[10.1385052,49.4266483],[10.1385192,49.4267807],[10.1385001,49.4270534],[10.1386251,49.4273127],[10.1386476,49.4274731],[10.1384991,49.4277546],[10.1384135,49.4279427],[10.1383578,49.4282156],[10.1382373,49.4284479],[10.1381219,49.4286356],[10.1380653,49.4285447],[10.1380315,49.4284907],[10.137795,49.4286931],[10.1374652,49.4289271],[10.1374031,49.4290211],[10.1373871,49.4290454],[10.1371325,49.4292359],[10.1368759,49.429491],[10.1366632,49.4297068],[10.1365565,49.4297992],[10.1362955,49.4300104],[10.1360725,49.430164],[10.1359821,49.4302288],[10.1357605,49.4304533],[10.1359834,49.4305674],[10.1362378,49.4307276],[10.1364185,49.4308282],[10.1361425,49.4309887],[10.1359192,49.4310765],[10.1357459,49.4311222],[10.1354301,49.4310887],[10.13527,49.431186],[10.1347035,49.4314991],[10.1343132,49.4317667],[10.1336525,49.4321226],[10.1341447,49.432612],[10.1342329,49.4327254],[10.1342999,49.4326989],[10.1343962,49.4328122],[10.1344553,49.4328817],[10.1347343,49.4332098],[10.1348369,49.4333543],[10.1351497,49.4333295],[10.1353682,49.4332935],[10.1354882,49.4332952],[10.1357268,49.4333365],[10.1359539,49.4332918],[10.1360811,49.4332997],[10.1362669,49.4333542],[10.1365073,49.4333458],[10.1366302,49.4333254],[10.1368366,49.4333208],[10.1369977,49.4333494],[10.1372009,49.4332137],[10.1375488,49.4331456],[10.1377447,49.4330819],[10.1378005,49.4330782],[10.1379027,49.4331209],[10.1380923,49.4331924],[10.1377734,49.4334283],[10.1374136,49.4336687],[10.1371299,49.4338541],[10.136727,49.4337957],[10.1364545,49.4337674],[10.1360855,49.4338342],[10.1357143,49.4339693],[10.1356104,49.4339815],[10.1354669,49.4341153],[10.1354218,49.4341469],[10.1352302,49.4342816],[10.1351451,49.4343415],[10.1350129,49.4344348],[10.1348557,49.4345457],[10.1347234,49.4346215],[10.1344453,49.4347552],[10.1343286,49.4348112],[10.1342766,49.4349579],[10.1346559,49.4350201],[10.1345351,49.4355283],[10.1343512,49.4355028],[10.1341017,49.4365092],[10.1340348,49.436778],[10.1338329,49.4371081],[10.133793,49.437148],[10.1330917,49.4373913],[10.1331458,49.4377369],[10.1331394,49.4379412],[10.1325286,49.4378155],[10.1319429,49.4377436],[10.1320148,49.4377966],[10.1320694,49.437885],[10.1317323,49.4379358],[10.131404,49.4379957],[10.1309838,49.4379746],[10.1305706,49.4380566],[10.1301007,49.4381737],[10.1300874,49.4381169],[10.1294155,49.4382423],[10.1289978,49.4383324],[10.1287313,49.4383925],[10.1285162,49.4385642],[10.128209,49.4387259],[10.1278984,49.4386845],[10.1278404,49.4386767],[10.1271685,49.4388786],[10.1271507,49.4388853],[10.126703,49.4390544],[10.1262278,49.4392794],[10.125807,49.4394823],[10.1253578,49.4397229],[10.1249854,49.4398829],[10.1247697,49.4400061],[10.1245817,49.440114],[10.1243795,49.4402486],[10.1240989,49.4406106],[10.1240109,49.44076],[10.1238854,49.4410235],[10.1236981,49.441374],[10.1234905,49.4412266],[10.1232353,49.4410794],[10.1229734,49.4409056],[10.1228478,49.4408103],[10.1226904,49.4407017],[10.1224137,49.4408589],[10.1220485,49.4410976],[10.1219821,49.4410503],[10.1218318,49.4409437],[10.1216581,49.4410384],[10.1215455,49.4410975],[10.1215166,49.4413436],[10.1212651,49.4416317],[10.1210622,49.4418847],[10.1207648,49.4420861],[10.1205638,49.44219],[10.1203833,49.4423361],[10.1201286,49.4427045],[10.1199432,49.442895],[10.1194777,49.4434168],[10.1188853,49.4439206],[10.1188311,49.4438894],[10.1184501,49.4435407],[10.1183042,49.4433906],[10.1180933,49.4432055],[10.1178742,49.442986],[10.1176547,49.4430812],[10.1173102,49.4432138],[10.1168906,49.4433839],[10.1164604,49.4435261],[10.1160421,49.4436516],[10.1157098,49.4436922],[10.1153467,49.443696],[10.1148345,49.4436847],[10.1144079,49.4436425],[10.1140811,49.443566],[10.1136227,49.4434819],[10.1135174,49.443468],[10.1132521,49.4434333],[10.1125502,49.443282],[10.1119715,49.4430831],[10.1113824,49.4428647],[10.1110161,49.4427282],[10.1106807,49.442597],[10.1103543,49.4424686],[10.1101779,49.4423588],[10.1101619,49.4422871],[10.1101634,49.442242],[10.1102787,49.4420593],[10.1104925,49.4417421],[10.110756,49.4414974],[10.1110503,49.4412265],[10.1113179,49.4412247],[10.1114716,49.4409934],[10.1116235,49.440713],[10.111832,49.4404176],[10.1120616,49.4400176],[10.1122008,49.4397996],[10.1123383,49.4395274],[10.1125145,49.4392621],[10.1127969,49.4388739],[10.1125303,49.4387909],[10.1124107,49.4387535],[10.1121031,49.4386617],[10.1118237,49.4385686],[10.1116429,49.4387655],[10.1114973,49.4389255],[10.1114535,49.4389739],[10.1113187,49.4391336],[10.1111137,49.4393497],[10.110823,49.4396712],[10.1106736,49.4398141],[10.1103159,49.4401508],[10.1101049,49.4403133],[10.1098789,49.4404389],[10.1098099,49.4404958],[10.1097323,49.4405087],[10.1096661,49.4405672],[10.1096005,49.4405693],[10.1093277,49.4407217],[10.1092329,49.4407817],[10.1090996,49.4408775],[10.1090382,49.4409475],[10.1088876,49.441004],[10.1087728,49.4410833],[10.1087395,49.4411522],[10.1085565,49.4412532],[10.1083899,49.4413889],[10.1081867,49.4414472],[10.1080622,49.4415229],[10.1079886,49.4415937],[10.1078764,49.4416701],[10.10769,49.4417539],[10.1075321,49.4418656],[10.1074637,49.4419774],[10.1074329,49.4420254],[10.1074111,49.4420595],[10.10739,49.4420784],[10.1072979,49.4421365],[10.1072105,49.4421634],[10.1072,49.4421931],[10.1071806,49.4422148],[10.1071525,49.4422894],[10.10717,49.4423738],[10.1071103,49.442428],[10.107048,49.4424417],[10.1069726,49.4425044],[10.106956,49.442562],[10.1068867,49.442598],[10.1067892,49.4426852],[10.1067535,49.4427171],[10.1066678,49.4427359],[10.1066021,49.4428066],[10.1063382,49.4429799],[10.105843,49.4433067],[10.1061498,49.4436441],[10.1062023,49.443702],[10.1062057,49.4438402],[10.1061083,49.4440951],[10.1060527,49.4441592],[10.1058505,49.444392],[10.1052877,49.4444518],[10.1046767,49.4445592],[10.1044013,49.4446398],[10.1038709,49.4448016],[10.1033539,49.4449945],[10.1030647,49.4451689],[10.1030313,49.4451891],[10.1029065,49.4452693],[10.1026604,49.4454314],[10.1023619,49.4455926],[10.1021282,49.4457163],[10.1020503,49.4457535],[10.101958,49.4457973],[10.1017468,49.4458822],[10.1016694,49.4459227],[10.101237,49.4460968],[10.1006447,49.4463377],[10.100361,49.4463915],[10.0998574,49.4465415],[10.099626,49.4466339],[10.0993821,49.4467079],[10.099119,49.446788],[10.0990411,49.4468139],[10.0988718,49.4468706],[10.0986969,49.4469461],[10.098471,49.4470917],[10.0984204,49.4471242],[10.0982215,49.4472221],[10.097791,49.4473443],[10.0973549,49.4474426],[10.0970934,49.4474653],[10.096653,49.4474523],[10.0963398,49.4475268],[10.0955436,49.4478331],[10.0948706,49.4480675],[10.0949851,49.4482252],[10.0950298,49.4482869],[10.0951638,49.4484664],[10.0952349,49.4486051],[10.0954151,49.4489225],[10.0957762,49.4495156],[10.0963108,49.4503517],[10.0963483,49.4504103],[10.0966846,49.4507645],[10.0968746,49.4509569],[10.0971278,49.4513195],[10.0971788,49.4514379],[10.0972295,49.4516642],[10.0972659,49.451922],[10.0973242,49.4521204],[10.0973308,49.4521602],[10.0970024,49.4523223],[10.0969986,49.4523731],[10.0970197,49.4525847],[10.0971152,49.4529113],[10.0971191,49.4529368],[10.0971457,49.4531086],[10.0971624,49.4533555],[10.0972495,49.4539808],[10.0973565,49.4544791],[10.0973633,49.4545112],[10.0980062,49.4548947],[10.0978737,49.455168],[10.0977306,49.4553474],[10.0975068,49.455524],[10.0971683,49.4557719],[10.0971433,49.4560739],[10.0973672,49.456363],[10.0975831,49.4567041],[10.0978926,49.4570203],[10.0982941,49.4568364],[10.0986395,49.4567049],[10.0989965,49.4566617],[10.0994647,49.4566529],[10.099583,49.4566737],[10.1002325,49.4567871],[10.1007491,49.4568651],[10.1008949,49.456887],[10.1011817,49.4569866],[10.1013232,49.4570345],[10.1017407,49.4571957],[10.1023311,49.4574176],[10.10238,49.4574357],[10.1028852,49.4576231],[10.1032487,49.4577157],[10.103825,49.4578526],[10.1040304,49.4578898],[10.1043751,49.4579521],[10.1047988,49.4580053],[10.1048499,49.4580117],[10.1054097,49.4580723],[10.1057202,49.4581819],[10.1062023,49.4583339],[10.1067649,49.458554],[10.1067937,49.4585655],[10.107179,49.4588542],[10.1073911,49.4591608],[10.1074275,49.4592137],[10.1075647,49.4594008],[10.1076422,49.4594994],[10.1077672,49.4598504],[10.1079672,49.4601145],[10.108116,49.4603168],[10.1076664,49.4604899],[10.107226,49.4606462],[10.1065152,49.4608497],[10.106497,49.4608743],[10.1062414,49.4612196],[10.1056292,49.4617257],[10.1053732,49.4619466],[10.1051991,49.462205],[10.1049475,49.4625788],[10.1048441,49.4629774],[10.1050286,49.4630928],[10.1052778,49.4631967],[10.1056824,49.463286],[10.1061732,49.4633923],[10.1067524,49.4632997],[10.1071284,49.4630835],[10.1075199,49.4628466],[10.1080689,49.4625311],[10.1082406,49.4624222],[10.1083287,49.4623697],[10.1085041,49.4622652],[10.1088153,49.4620792],[10.108952,49.4619974],[10.109074,49.4620186],[10.1093676,49.4620696],[10.1097019,49.4621517],[10.1100991,49.4622513],[10.1105011,49.4623405],[10.1108592,49.4622564],[10.1110976,49.4622897],[10.1118708,49.4623586],[10.1124919,49.462382],[10.1131199,49.462416],[10.1136414,49.4624489],[10.1140865,49.4624864],[10.114349,49.462542],[10.1144629,49.4624742],[10.1146645,49.4623211],[10.1149655,49.462038],[10.1153852,49.4616221],[10.115814,49.4612565],[10.1159046,49.4611991],[10.1164439,49.46146],[10.1168553,49.4616324],[10.1172956,49.4617797],[10.1175121,49.4618022],[10.1178123,49.4619636],[10.1183421,49.4622229],[10.1185496,49.4623082],[10.1189591,49.4624642],[10.1196215,49.4627508],[10.1204146,49.4629913],[10.1209473,49.4631827],[10.1210984,49.4632375],[10.1213512,49.4633819],[10.1217669,49.4635327],[10.1221488,49.4638061],[10.1221117,49.4639405],[10.1220754,49.4640718],[10.1219811,49.4646147],[10.1215841,49.4651025],[10.1211907,49.4654201],[10.1210901,49.46559],[10.1209147,49.4654931],[10.1207902,49.4653749],[10.1206799,49.4654654],[10.1205291,49.4656983],[10.1203944,49.4658928],[10.1203682,49.4659894],[10.1202844,49.4660981],[10.1201142,49.4662413],[10.1200157,49.4663092],[10.1198715,49.4664085],[10.1196488,49.4665313],[10.1193701,49.4666951],[10.1192154,49.4668024],[10.1187896,49.4670443],[10.1184729,49.4672618],[10.1182499,49.4673727],[10.1179196,49.4676005],[10.1178433,49.467861],[10.1178057,49.4680346],[10.1178035,49.4680844],[10.1179077,49.4682687],[10.1179057,49.4684753],[10.1178447,49.4690359],[10.1178605,49.4693056],[10.1177959,49.4695696],[10.1177361,49.4698123],[10.1176186,49.4702276],[10.11778,49.4702253],[10.1184715,49.4702363],[10.1192722,49.4702592],[10.1193142,49.4705279],[10.1194478,49.4708994],[10.1194751,49.470975],[10.1189036,49.471165],[10.1184264,49.4713468],[10.1178685,49.4715251],[10.1181737,49.472137],[10.1182594,49.4723528],[10.1179256,49.472439],[10.1172909,49.4724479],[10.1169587,49.4724463],[10.1167178,49.4725225],[10.1160923,49.472845],[10.1158027,49.4730409],[10.1152964,49.473497],[10.1148917,49.4739657],[10.1149131,49.4739904],[10.1152455,49.4740765],[10.1153073,49.4741356],[10.1154054,49.4743707],[10.1154946,49.4745488],[10.1156007,49.4747322],[10.1157404,49.4749389],[10.1158823,49.4751039],[10.1163463,49.4755259],[10.1165304,49.475811],[10.1166617,49.476155],[10.1166236,49.4761999],[10.1159307,49.4762737],[10.1159354,49.476304],[10.1159461,49.4763762],[10.1163006,49.478768],[10.1162424,49.4787458],[10.1158221,49.4787302],[10.1156874,49.4787252],[10.115339,49.4787025],[10.1150607,49.4786948],[10.1147285,49.4786424],[10.1143594,49.4785721],[10.1136532,49.4784297],[10.1135577,49.4784108],[10.1132741,49.4783549],[10.1128825,49.4782885],[10.1123014,49.478177],[10.1114133,49.4779223],[10.1113695,49.4779068],[10.1110714,49.4782355],[10.1107371,49.4785781],[10.1104587,49.4788721],[10.1101591,49.4792688],[10.1094952,49.4801479],[10.1091152,49.4806509],[10.1089836,49.4809629],[10.1087497,49.4813784],[10.1084186,49.4820353],[10.1081728,49.4827186],[10.1081018,49.4827111],[10.1080176,49.4828475],[10.1047827,49.482581],[10.1048107,49.4826343],[10.1053097,49.4835774],[10.1052405,49.4835923],[10.1051922,49.4836027],[10.1032814,49.4842391],[10.1032429,49.4849014],[10.102485,49.4851786],[10.1009711,49.4857461],[10.1010604,49.4857975],[10.1011018,49.4858213],[10.1012305,49.4859833],[10.1013312,49.4861801],[10.1013983,49.4863781],[10.1014414,49.486582],[10.1013764,49.4867944],[10.1012543,49.4869829],[10.101108,49.4872423],[10.1010754,49.487441],[10.1012373,49.4878045],[10.1013959,49.4880692],[10.1016251,49.4884264],[10.1018074,49.4886773],[10.1019219,49.4888109],[10.102018,49.4889826],[10.1021212,49.4891423],[10.1021868,49.489297],[10.1022401,49.4895008],[10.1022529,49.4896754],[10.102236,49.489829],[10.10219,49.4899524],[10.102115,49.4900752],[10.102,49.4901975],[10.1018785,49.490289],[10.1017296,49.4903559],[10.1013936,49.4904756],[10.1011071,49.4905212],[10.1007481,49.490606],[10.100533,49.4907272],[10.1003295,49.4909553],[10.1002864,49.4913737],[10.1002808,49.491537],[10.1003104,49.4917192],[10.1003369,49.491754],[10.1003867,49.4919537],[10.1004372,49.4921153],[10.1005439,49.4922984],[10.1006004,49.4924002],[10.100664,49.4925152],[10.1007034,49.492506],[10.100863,49.4927582],[10.100924,49.4929488],[10.1009679,49.493148],[10.1010013,49.4932171],[10.1010046,49.4933317],[10.1010064,49.493402],[10.1009721,49.4935637],[10.10098,49.4940081],[10.1010667,49.4941627],[10.1012194,49.4942937],[10.1012764,49.4943251],[10.101796,49.494631],[10.1020765,49.4947801],[10.1021439,49.4948103],[10.1025115,49.4949525],[10.1025609,49.4949716],[10.103096,49.4951978],[10.1038711,49.4954764],[10.1040308,49.4955322],[10.104198,49.4955906],[10.1043248,49.4956115],[10.1046363,49.4956761],[10.1049924,49.4957036],[10.1049575,49.4959099],[10.1048839,49.4960394],[10.1047811,49.4960827],[10.1046905,49.496164],[10.1046292,49.496219],[10.1046975,49.4963301],[10.1048683,49.4966832],[10.1049367,49.4967745],[10.1049903,49.4967728],[10.1052268,49.4967655],[10.1052836,49.4967806],[10.1053364,49.4967946],[10.1053257,49.4968605],[10.105234,49.4969564],[10.1052066,49.4970541],[10.1050898,49.4971783],[10.1050305,49.4972859],[10.1050519,49.4975184],[10.1048347,49.4976293],[10.1047974,49.4976483],[10.1047653,49.4976876],[10.1047527,49.4977183],[10.104724,49.4977887],[10.1046608,49.4978798],[10.1046592,49.4978821],[10.1045806,49.497879],[10.1045018,49.4978758],[10.1042971,49.4978964],[10.10427,49.4978941],[10.1040985,49.4978792],[10.104107,49.4979117],[10.1041192,49.4979578],[10.1039542,49.4979895],[10.1031848,49.49799],[10.1032223,49.4980437],[10.1032396,49.4980683],[10.1033631,49.4982825],[10.1034063,49.4984851],[10.1034117,49.4986625],[10.1034083,49.4987709],[10.1048751,49.4988878],[10.1053395,49.4989439],[10.1060683,49.4990319],[10.1067845,49.499208],[10.1068341,49.4992614],[10.106922,49.4993561],[10.1066829,49.4994661],[10.1067959,49.4995119],[10.1083972,49.500161],[10.1084254,49.5003226],[10.1084538,49.5004487],[10.1086718,49.5005154],[10.1090803,49.5005876],[10.1090497,49.5006941],[10.1092577,49.500725],[10.1093405,49.5008212],[10.109386,49.5008972],[10.1093997,49.5009506],[10.109358,49.5010208],[10.1092098,49.5012655],[10.109146,49.501387],[10.1092338,49.5016002],[10.109298,49.5016638],[10.1093707,49.5017101],[10.109938,49.5019129],[10.1110277,49.5020609],[10.1132605,49.5023703],[10.1143545,49.5025451],[10.1165474,49.5034481],[10.1185684,49.5043287],[10.1180736,49.5051548],[10.1179377,49.5054128],[10.1177433,49.5057721],[10.117318,49.5067974],[10.1172513,49.507167],[10.1173353,49.5071639],[10.1174948,49.507138],[10.1206679,49.5072364],[10.1207443,49.5073023],[10.1205628,49.5082071],[10.120389,49.5092813],[10.1203161,49.5093366],[10.1204123,49.5093383],[10.1205022,49.5093399],[10.1214221,49.5093527],[10.1214168,49.509412],[10.1212713,49.5110265],[10.1195448,49.5108416],[10.1195103,49.5108371],[10.1186697,49.5107262],[10.1184309,49.5106975],[10.1178319,49.5106291],[10.1171899,49.5105432],[10.1167666,49.5104814],[10.1164162,49.5104394],[10.1163575,49.5104284],[10.1161133,49.5108433],[10.1160182,49.511023],[10.1159496,49.511161],[10.1159151,49.5112713],[10.1158123,49.5117114],[10.1157653,49.5118651],[10.1157113,49.5120145],[10.1156566,49.5121501],[10.1155982,49.5122766],[10.1155238,49.5122678],[10.1134881,49.5121543],[10.1129563,49.5121031],[10.1125011,49.5120325],[10.1120602,49.511957],[10.1119394,49.5119363],[10.1113173,49.5118112],[10.1103912,49.5116292],[10.1095437,49.5114917],[10.108403,49.5113499],[10.1081582,49.5117837],[10.1074739,49.5129008],[10.1070942,49.513546],[10.1070441,49.5136313],[10.1065702,49.514113],[10.1059213,49.5147671],[10.1056613,49.5150756],[10.1047521,49.5148648],[10.1037415,49.514649],[10.1002937,49.5136889],[10.0993975,49.5148403],[10.0993359,49.5148286],[10.0967257,49.514335],[10.0955464,49.5140757],[10.094268,49.5136675],[10.0940004,49.5135617],[10.093967,49.5136017],[10.0939291,49.513643],[10.0935278,49.5135187],[10.093238,49.5134419],[10.0929206,49.513374],[10.0926852,49.5133233],[10.0922785,49.513257],[10.0913375,49.5131034],[10.0907842,49.513006],[10.0901338,49.5129253],[10.0900155,49.5129866],[10.0898701,49.5130298],[10.089553,49.5130655],[10.0891952,49.5130851],[10.0889647,49.5130737],[10.0888992,49.5130705],[10.0885156,49.5130344],[10.0881666,49.5129887],[10.0877558,49.5129128],[10.0875761,49.512865],[10.0873999,49.5128314],[10.0870561,49.5127347],[10.0865978,49.5125962],[10.0862274,49.5124672],[10.0859495,49.5123585],[10.0857525,49.5122658],[10.0854323,49.5121212],[10.0850071,49.5119241],[10.0846371,49.511751],[10.0844417,49.5116885],[10.0841057,49.5115771],[10.0837591,49.5114667],[10.0833922,49.5113552],[10.0832185,49.5116156],[10.0830006,49.5123624],[10.0827657,49.5131666],[10.0824493,49.5140906],[10.0828249,49.5142521],[10.083379,49.5145157],[10.0832141,49.5148448],[10.0830608,49.5151315],[10.0828821,49.515066],[10.0824159,49.5148953],[10.0817576,49.5156273],[10.0816893,49.5156018],[10.0804954,49.5151566],[10.0793613,49.5163612],[10.0788505,49.5168426],[10.0784834,49.5170506],[10.0782661,49.5171352],[10.0783296,49.5171704],[10.0784018,49.5172103],[10.0786487,49.5174104],[10.0788264,49.5175748],[10.0789313,49.5176645],[10.0793415,49.5179686],[10.0795915,49.5181129],[10.0786876,49.5187334],[10.0783146,49.5190303],[10.0779223,49.5193178],[10.0776301,49.5191665],[10.0772949,49.5194457],[10.0788317,49.520102],[10.0788013,49.5201416],[10.0805987,49.5207979],[10.0809025,49.5209101],[10.0808441,49.5209497],[10.0806459,49.5211235],[10.0804794,49.5210709],[10.079512,49.5222595],[10.0784732,49.5236969],[10.0784434,49.523736],[10.078786,49.5238767],[10.0784884,49.5242926],[10.0782772,49.5245769],[10.0781558,49.5247205],[10.0779633,49.5249337],[10.0777825,49.5251378],[10.0786055,49.5253987],[10.0793187,49.5255637],[10.0791606,49.5257499],[10.0797043,49.5258527],[10.0803937,49.5260913],[10.08047,49.5261044],[10.0803895,49.526309],[10.0803185,49.5264815],[10.0802433,49.5266426],[10.0801453,49.5268429],[10.080053,49.5270088],[10.079942,49.5272103],[10.0805955,49.5275169],[10.0808184,49.5275753],[10.0810535,49.5276273],[10.0809477,49.5279305],[10.0809357,49.5279862],[10.0814247,49.5280363],[10.0817924,49.5280571],[10.0822438,49.5280932],[10.0826814,49.5281387],[10.0833189,49.5281719],[10.0840652,49.5282072],[10.0841499,49.5282113],[10.0854662,49.5282518],[10.0868142,49.5282987],[10.0866507,49.5292481],[10.0875091,49.5293118],[10.0883379,49.5293501],[10.0885281,49.5285267],[10.0890753,49.5286417],[10.0886979,49.5301905],[10.0886468,49.5305404],[10.0886198,49.5307253],[10.0888207,49.5305959],[10.0889808,49.530515],[10.0896283,49.5301871],[10.0897606,49.5301798],[10.089835,49.5301756],[10.0897877,49.5303796],[10.0895034,49.5314658],[10.0893255,49.5318493],[10.09005,49.5319628],[10.0911547,49.532107],[10.0922799,49.532268],[10.0933827,49.5324583],[10.0932042,49.5327937],[10.093168,49.5328637],[10.0931396,49.5329295],[10.0930786,49.533064],[10.0929521,49.533339],[10.0928848,49.5334331],[10.0928475,49.533479],[10.0926954,49.5336659],[10.0923889,49.5339733],[10.0922032,49.5341359],[10.0919422,49.5343487],[10.0917204,49.5345475],[10.0915949,49.5347078],[10.091442,49.5348958],[10.0907846,49.5357785],[10.0902773,49.5365718],[10.0901876,49.5367406],[10.0899997,49.5370221],[10.0899264,49.5371422],[10.0898887,49.5371822],[10.0897295,49.5373513],[10.0893407,49.53767],[10.0891723,49.5379839],[10.0886297,49.5389943],[10.088505,49.5392028],[10.0882091,49.5395546],[10.0881096,49.5396847],[10.0880225,49.5398237],[10.0879401,49.5399523],[10.0878522,49.5401398],[10.0877532,49.5404376],[10.0877139,49.540591],[10.0876862,49.5407507],[10.0876749,49.5408178],[10.0876269,49.5411623],[10.086876,49.5411335],[10.0868753,49.5412829],[10.0862201,49.5412714],[10.0854843,49.5412423],[10.0854173,49.5412316],[10.0852352,49.5422025],[10.0839289,49.542204],[10.0839043,49.5422897],[10.0837713,49.5427516],[10.0837166,49.5435644],[10.0788253,49.5434287],[10.078923,49.5430284],[10.0761702,49.5428912],[10.0762247,49.5429372],[10.075873,49.5439386],[10.0759017,49.5444566],[10.0724127,49.54451],[10.0703895,49.5448522],[10.0698424,49.5448713],[10.0685597,49.5449346],[10.068012,49.5450483],[10.0678159,49.5451078],[10.0676091,49.5451828],[10.0670641,49.5454026],[10.0668208,49.5454949],[10.0666942,49.5455258],[10.0665996,49.5455325],[10.0665105,49.5455394],[10.0651117,49.5455462],[10.064832,49.5455479],[10.0644774,49.5455187],[10.0639807,49.5454388],[10.0623681,49.5452637],[10.0620747,49.5452303],[10.0616477,49.5451738],[10.061667,49.5451358],[10.061685,49.5450459],[10.0618346,49.5435571],[10.0618617,49.5427061],[10.0618142,49.5417011],[10.0592581,49.5412691],[10.0575613,49.5407891],[10.057129,49.5406339],[10.0573146,49.5404184],[10.0580232,49.539742],[10.0585806,49.5394402],[10.0588429,49.5391325],[10.0597677,49.5385856],[10.0604916,49.5381823],[10.060987,49.5378378],[10.0613786,49.5374622],[10.0589955,49.5370613],[10.0589067,49.5370425],[10.0588273,49.5370345],[10.0589533,49.5367725],[10.0586029,49.5360805],[10.0585283,49.53604],[10.0584681,49.5359605],[10.0576739,49.5358928],[10.0568739,49.5357807],[10.0560068,49.5354945],[10.0560242,49.5354647],[10.0549366,49.5351364],[10.0538337,49.5348149],[10.0529169,49.5345343],[10.0523037,49.534251],[10.0520623,49.5340789],[10.0516104,49.5337027],[10.0515558,49.5336574],[10.0509246,49.5332744],[10.050381,49.5330863],[10.049652,49.5333009],[10.0491346,49.5330577],[10.0486056,49.5327955],[10.0475754,49.5322913],[10.0471719,49.5320986],[10.0469143,49.5318694],[10.0460058,49.5312309],[10.0456115,49.5309577],[10.0454695,49.5308756],[10.0451026,49.5306584],[10.0442725,49.5304095],[10.0437517,49.5302471],[10.0429953,49.5301805],[10.0428203,49.5299951],[10.0422899,49.529712],[10.0411333,49.5294008],[10.0400396,49.5289985],[10.0398811,49.52894],[10.0397639,49.5288968],[10.0395509,49.5292486],[10.0394284,49.5296801],[10.0394955,49.5301873],[10.0393608,49.5302104],[10.0389501,49.5301715],[10.0388607,49.5301635],[10.0385342,49.5301339],[10.038269,49.5298754],[10.0379361,49.5296326],[10.0377914,49.5294953],[10.0376688,49.5293882],[10.0377068,49.5292451],[10.0378514,49.5288688],[10.0380067,49.5286249],[10.038036,49.5285803],[10.0381697,49.5283768],[10.0383159,49.5282773],[10.0383592,49.5282603],[10.0384746,49.5282152],[10.0387903,49.5281842],[10.0393573,49.5281128],[10.0395708,49.5280162],[10.0394925,49.527949],[10.0397504,49.5277674],[10.04003,49.5275558],[10.0403095,49.5272599],[10.0404634,49.5270809],[10.040604,49.5269228],[10.0407869,49.5267166],[10.0411709,49.5263314],[10.0412753,49.5262159],[10.0417745,49.5261314],[10.0419673,49.5261666],[10.0422176,49.5262199],[10.042438,49.5261207],[10.0426275,49.5260302],[10.0428987,49.5259082],[10.0431388,49.5257935],[10.0431841,49.5257595],[10.0434535,49.5255574],[10.0435353,49.5254918],[10.0437629,49.5253214],[10.0439756,49.5251478],[10.0440966,49.5250546],[10.0441665,49.5249978],[10.044182,49.5249858],[10.0442788,49.5249099],[10.0443736,49.5248257],[10.0444045,49.5247955],[10.0446788,49.5245262],[10.0452743,49.5241303],[10.0456269,49.5238982],[10.0457708,49.5238032],[10.0469396,49.5230383],[10.0475796,49.5226165],[10.0483496,49.5221034],[10.0489801,49.5217643],[10.0496893,49.5213735],[10.0498291,49.5212965],[10.0501884,49.5211068],[10.0505232,49.5209199],[10.0508057,49.5207472],[10.0511204,49.5205924],[10.0514467,49.5204877],[10.0520271,49.5203545],[10.053588,49.5200903],[10.0549768,49.5198216],[10.0563966,49.5195295],[10.0571254,49.5193763],[10.0578419,49.5192736],[10.0594182,49.5190586],[10.0595249,49.5190441],[10.0594869,49.5189936],[10.0595196,49.5177477],[10.0573271,49.5176011],[10.0572928,49.5175346],[10.0573217,49.5168946],[10.0571835,49.5165986],[10.0561188,49.5149253],[10.0560549,49.514919],[10.0554765,49.5148632],[10.0538858,49.5147092],[10.0533574,49.514623],[10.0528288,49.5145346],[10.0525496,49.5145136],[10.0515411,49.5144166],[10.0524493,49.5106706],[10.0526267,49.509833],[10.0516398,49.5093031],[10.0504951,49.5081858],[10.0491765,49.5074734],[10.0485625,49.507283],[10.0484354,49.507243],[10.0481091,49.5071083],[10.0477347,49.5069706],[10.0477684,49.506855],[10.047469,49.5068059],[10.0473055,49.5067301],[10.0472153,49.5066738],[10.0471294,49.506616],[10.0470455,49.5066059],[10.0468836,49.5066303],[10.0467292,49.5066586],[10.0465465,49.5066584],[10.0464495,49.5066507],[10.0462508,49.5066743],[10.0459701,49.5067261],[10.0457286,49.5067427],[10.0454067,49.5067528],[10.0453068,49.5066995],[10.0452503,49.5066547],[10.0447202,49.5063003],[10.044749,49.506192],[10.0448189,49.5059268],[10.0429907,49.5058255],[10.0423283,49.5059797],[10.0417248,49.5061804],[10.0411832,49.5062457],[10.0410904,49.5062256],[10.0410046,49.5062131],[10.0409327,49.5062256],[10.040784,49.5062505],[10.0406413,49.5062707],[10.0405115,49.5062849],[10.0403868,49.5062796],[10.0402855,49.5062715],[10.0402303,49.5062533],[10.0399918,49.5061759],[10.0398381,49.5061326],[10.0397242,49.5061167],[10.0396414,49.5061043],[10.0395417,49.5060763],[10.0394346,49.5060325],[10.0393578,49.5059857],[10.0392786,49.5059328],[10.0392354,49.5059041],[10.039135,49.5058258],[10.0390629,49.5057607],[10.0389978,49.505688],[10.0389578,49.5056239],[10.0389473,49.5055506],[10.038947,49.5054742],[10.038961,49.5053873],[10.0389896,49.5053228],[10.0390299,49.5052399],[10.0390869,49.5051338],[10.0391259,49.505056],[10.0390116,49.5050636],[10.038533,49.5051117],[10.0380355,49.5048648],[10.0374216,49.5045734],[10.0370079,49.5044687],[10.0366921,49.5044115],[10.0364776,49.5043701],[10.0360893,49.5042883],[10.0358751,49.5042424],[10.0356232,49.5041883],[10.0348997,49.5040455],[10.0346257,49.5039727],[10.0342222,49.5038286],[10.0338839,49.5037023],[10.0334722,49.5036407],[10.0330199,49.5036224],[10.0326669,49.5035391],[10.0323754,49.5038181],[10.0313563,49.5036069],[10.0310368,49.5036248],[10.0309047,49.5036397],[10.0305306,49.5036803],[10.0298768,49.5037606],[10.0292516,49.5038505],[10.0284364,49.5039667],[10.0281555,49.5040017],[10.0281489,49.5039491],[10.0280355,49.5030474],[10.0279521,49.5024629],[10.0278917,49.5018276],[10.0278823,49.5017476],[10.0278573,49.5015419],[10.0282109,49.5015205],[10.0282701,49.5011355],[10.0283171,49.5007868],[10.0283709,49.5004203],[10.0283739,49.500367],[10.0281826,49.5003339],[10.0280567,49.5003401],[10.0279763,49.5003549],[10.0276974,49.5005156],[10.0276554,49.5004675],[10.0275972,49.5004098],[10.0275243,49.5002964],[10.0275145,49.5002056],[10.0275113,49.5000801],[10.0276693,49.5000779],[10.0276596,49.4999957],[10.0276323,49.4997149],[10.0276217,49.4996072],[10.0275721,49.4990983],[10.0275561,49.4989327],[10.0275301,49.4986654],[10.0275183,49.4985342],[10.0275119,49.4984625],[10.0274668,49.4983634],[10.0273674,49.4981451],[10.0273384,49.4980818],[10.0272704,49.4979326],[10.0272496,49.4978868],[10.0272314,49.4978496],[10.0270546,49.4974888],[10.0267594,49.4968756],[10.0266641,49.4966829],[10.026551,49.49646],[10.0264719,49.4963101],[10.0261319,49.4956338],[10.0261153,49.4956008],[10.0256711,49.4949484],[10.0253589,49.494529],[10.0252553,49.4943899],[10.0250504,49.4940451],[10.0249638,49.4938995],[10.0248101,49.493641],[10.0243302,49.493513],[10.0244983,49.4930474],[10.0243649,49.4930329],[10.0243778,49.4929096],[10.0242645,49.492682],[10.0240503,49.4922957],[10.0237637,49.4917937],[10.023379,49.4911344],[10.0232813,49.4909931],[10.0229622,49.4905321],[10.0225763,49.4899739],[10.0223365,49.4896797],[10.0221247,49.4893076],[10.0217633,49.4887749],[10.0215664,49.4881605],[10.021046,49.4877138],[10.0207846,49.4874904],[10.0205503,49.4872901],[10.0205551,49.4872378],[10.0205653,49.4871274],[10.0206197,49.4869765],[10.0204158,49.4870094],[10.0201999,49.487007],[10.0202073,49.4868369],[10.020241,49.4867598],[10.0201659,49.4867403],[10.0200438,49.4867084],[10.0200897,49.486626],[10.0201229,49.4865233],[10.0201531,49.4864155],[10.0201736,49.4862778],[10.0202147,49.4861294],[10.0202731,49.4861321],[10.0202969,49.4858352],[10.0202855,49.4856125],[10.0202462,49.4854062],[10.0201779,49.485082],[10.0201082,49.4850852],[10.0201008,49.4850233],[10.0195159,49.4849474],[10.0194208,49.4851248],[10.0194645,49.4854748],[10.0195393,49.4856956],[10.0193501,49.4855807],[10.0192744,49.4855347],[10.0193758,49.4857868],[10.0194435,49.4861753],[10.0193721,49.4862308],[10.0189557,49.4860338],[10.0183282,49.4857897],[10.0182572,49.4857628],[10.0174388,49.4854523],[10.0173939,49.4854491],[10.0173704,49.4854475],[10.0167696,49.4852955],[10.0167335,49.4852556],[10.0167738,49.4846073],[10.0165116,49.48423],[10.0164039,49.4842194],[10.0161474,49.4839029],[10.0160863,49.4838514],[10.0152742,49.4835519],[10.0146047,49.4833051],[10.0144411,49.4832907],[10.0143743,49.4833303],[10.0141583,49.4834433],[10.0139286,49.4836924],[10.0139022,49.4836501],[10.0137177,49.4834013],[10.0134894,49.4832964],[10.0131015,49.4831231],[10.0125154,49.4830546],[10.012168,49.4830124],[10.0116662,49.4829779],[10.0110563,49.4829801],[10.0104329,49.4830462],[10.0099448,49.4831423],[10.0086484,49.48339],[10.0073826,49.4834769],[10.0060193,49.4837848],[10.0051656,49.4839634],[10.0041174,49.4843137],[10.0034194,49.4843001],[10.003366,49.4845579],[10.0028473,49.4845735],[10.0027773,49.4845828],[10.0021736,49.4848836],[10.0018664,49.4850011],[10.0011914,49.4852104],[10.0011217,49.4852338],[10.0009151,49.4856222],[10.0007932,49.4860626],[9.9988199,49.4856866],[9.9978105,49.4854941],[9.9972694,49.4863859],[9.9972074,49.4863779],[9.9926305,49.4857894],[9.9922258,49.4863129],[9.99215,49.4862996],[9.9920064,49.4862779],[9.9894746,49.4858961],[9.9894687,49.485865],[9.9893984,49.4858494],[9.9890756,49.4858079],[9.9885238,49.4856832],[9.9863671,49.484992],[9.9863012,49.4850381],[9.9861826,49.4850661],[9.9851345,49.4847684],[9.9831072,49.4842335],[9.9826775,49.4841201],[9.9814839,49.483935],[9.9803193,49.4838801],[9.9798017,49.4838556],[9.9789412,49.4839519],[9.9786966,49.4839875],[9.9784128,49.4839846],[9.9771144,49.4832816],[9.9770866,49.4832488],[9.976189,49.4821926],[9.9749924,49.4809886],[9.9734608,49.4819499],[9.9742144,49.4827726],[9.9746887,49.483389],[9.9747862,49.4836215],[9.9748708,49.4839226],[9.9757698,49.4852688],[9.9756911,49.4852631],[9.9749809,49.4852393],[9.9747233,49.4852927],[9.9743879,49.4854023],[9.9738908,49.4856591],[9.9735286,49.4857818],[9.9732389,49.4857997],[9.9728498,49.4858191],[9.9724531,49.4858881],[9.9722544,49.485701],[9.9720732,49.4855572],[9.9714622,49.4854472],[9.969668,49.4851368],[9.969312,49.485037],[9.9683415,49.4847685],[9.9678821,49.4846439],[9.9677967,49.4846207],[9.9674418,49.4845428],[9.9672314,49.4845211],[9.9665814,49.4843763],[9.9659804,49.4842358],[9.9649132,49.4840591],[9.964779,49.4840482],[9.9641136,49.4839949],[9.9636934,49.4839973],[9.9633043,49.4839834],[9.9629953,49.4839303],[9.9624266,49.4838421],[9.961918,49.4837765],[9.9615218,49.4837603],[9.9614551,49.4837605],[9.9612627,49.4837606],[9.9609998,49.4837609],[9.9589225,49.4840075],[9.9583807,49.4835744],[9.957067,49.4824924],[9.9563771,49.4819641],[9.9562733,49.481884],[9.9551989,49.4810558],[9.9548396,49.4807062],[9.9548003,49.4806585],[9.9542772,49.480828],[9.9540464,49.4808591],[9.9535647,49.48075],[9.9528259,49.4805602],[9.9522393,49.4804744],[9.9517272,49.4804614],[9.9513176,49.4804819],[9.9510484,49.4805223],[9.9508188,49.4806286],[9.9503569,49.4809187],[9.9498464,49.4812251],[9.9487688,49.4815873],[9.9486081,49.4816315],[9.9483874,49.4816329],[9.9449058,49.4815359],[9.9435541,49.4818402],[9.9427677,49.4819928],[9.9418337,49.4821099],[9.9410248,49.4821623],[9.9400721,49.4824392],[9.9381952,49.4827942],[9.9357206,49.4832438],[9.9346202,49.4834941],[9.9340155,49.4836046],[9.9333931,49.4836971],[9.9325116,49.4838274],[9.9313047,49.483987],[9.9307173,49.4840723],[9.9300172,49.4841446],[9.929264,49.4841739],[9.9289682,49.4838561],[9.9264821,49.4847053],[9.9261819,49.4849585],[9.9236251,49.4868105],[9.9223556,49.4876825],[9.9216438,49.4881456],[9.9215468,49.4882087],[9.9214726,49.488257],[9.9208783,49.4886468],[9.9203207,49.4890372],[9.9192483,49.4896478],[9.9190518,49.4897598],[9.9188695,49.4898742],[9.9183634,49.4902017],[9.9183041,49.4902402],[9.917852,49.4905189],[9.9168169,49.4911638],[9.9156418,49.4919227],[9.9150761,49.4923327],[9.9151865,49.4923814],[9.9146451,49.4926745],[9.9147957,49.4927798],[9.9143587,49.4929869],[9.9139666,49.4931728],[9.9142843,49.4937895],[9.9138597,49.4938915],[9.9136735,49.4939214],[9.9137188,49.4940015],[9.914452,49.4955834],[9.9154961,49.4956086],[9.9154947,49.4956742],[9.9154932,49.4957411],[9.9157567,49.4957511],[9.915719,49.4964482],[9.9163698,49.4965029],[9.9162487,49.4968906],[9.9168988,49.4969225],[9.9167915,49.4978468],[9.9167853,49.4978998],[9.9167747,49.497991],[9.9167583,49.4981326],[9.9163758,49.4981243],[9.91637,49.4981981],[9.916365,49.49823],[9.9158737,49.4982175],[9.9158946,49.4988387],[9.9158974,49.4988581],[9.9159106,49.4989448],[9.9159974,49.4995114],[9.9160818,49.4995126],[9.9176759,49.4994388],[9.9176873,49.4994673],[9.917999,49.5008284],[9.9186639,49.5007747],[9.9188826,49.5013135],[9.9189245,49.5013085],[9.9189665,49.5013057],[9.9191192,49.5015812],[9.9194025,49.5020931],[9.9193679,49.5021095],[9.9209787,49.5031025],[9.9213681,49.5033666],[9.9218029,49.503661],[9.9225002,49.5045749],[9.9229944,49.5054821],[9.9245449,49.5074952],[9.9251099,49.5086801],[9.9248798,49.5088358],[9.9244881,49.5091031],[9.924337,49.5092061],[9.9240929,49.5093726],[9.9236769,49.5096494],[9.9233542,49.5098662],[9.9231786,49.5099842],[9.9230666,49.5101088],[9.9229641,49.5101968],[9.9228929,49.5102823],[9.9226555,49.510559],[9.9225915,49.5106487],[9.9225475,49.5107064],[9.9223844,49.5110075],[9.9222372,49.5112849],[9.9219382,49.5118485],[9.9217583,49.5121748],[9.9215826,49.5125286],[9.921272,49.5131989],[9.9211694,49.5134124],[9.9211225,49.5134906],[9.9210484,49.5135988],[9.9202934,49.5147791],[9.9202496,49.5148413],[9.9202188,49.5148713],[9.9201742,49.5149016],[9.9200535,49.5149669],[9.9200188,49.5149833],[9.9198212,49.5150542],[9.9197729,49.5150776],[9.9196972,49.5151243],[9.9196321,49.5151707],[9.9194342,49.5153963],[9.9193503,49.5154914],[9.9190158,49.5158083],[9.9185998,49.5162127],[9.9180883,49.5167052],[9.9176927,49.5170912],[9.9170143,49.5177524],[9.9170413,49.5177717],[9.9171046,49.5177824],[9.9170295,49.5179843],[9.9169449,49.518216],[9.9169452,49.5184902],[9.9169442,49.5190866],[9.9169393,49.5191688],[9.9169732,49.5192506],[9.9170124,49.5193987],[9.917042,49.5195765],[9.9170555,49.5198117],[9.9170976,49.520316],[9.9174292,49.5207554],[9.9177325,49.5211835],[9.9179933,49.5213496],[9.9176072,49.5216056],[9.9175783,49.5216161],[9.917702,49.5217601],[9.9177481,49.5218011],[9.9177762,49.5218262],[9.9178255,49.5218604],[9.9179631,49.5219561],[9.9189005,49.5226217],[9.9189427,49.5226124],[9.9189772,49.5225875],[9.919344,49.5228632],[9.9203762,49.5234694],[9.9204297,49.5235007],[9.9207519,49.5236293],[9.920911,49.5236866],[9.9210485,49.5237238],[9.9213232,49.5237775],[9.9213628,49.5237866],[9.922155,49.5239707],[9.9222184,49.5239813],[9.9225844,49.5240431],[9.9226372,49.5240539],[9.9229145,49.524078],[9.9229883,49.5240861],[9.9230549,49.5240876],[9.9231425,49.5240888],[9.9234016,49.5240857],[9.9237062,49.5240843],[9.9237105,49.5241162],[9.9237181,49.5241448],[9.9243426,49.5254818],[9.9244596,49.5276608],[9.9245053,49.5276584],[9.9245509,49.5276604],[9.924508,49.52814],[9.9245014,49.5281743],[9.924481,49.52822],[9.9244399,49.5282956],[9.924395,49.5283483],[9.9243256,49.5284036],[9.9242491,49.5284542],[9.9241759,49.5284979],[9.9239878,49.5285971],[9.9236394,49.5287817],[9.9232076,49.5290168],[9.9257627,49.5301442],[9.9253868,49.5306326],[9.9252935,49.5307472],[9.9252142,49.5308458],[9.9251727,49.5308894],[9.9251383,49.5309398],[9.9251109,49.5309856],[9.9249703,49.5312261],[9.9249336,49.5313189],[9.9249158,49.5313702],[9.924743,49.5318322],[9.9247228,49.531878],[9.9247058,49.5319307],[9.9246994,49.5319787],[9.9247105,49.5320174],[9.9247219,49.5320744],[9.9248899,49.532578],[9.9249856,49.5329084],[9.9250242,49.5329059],[9.9253688,49.5331405],[9.9253988,49.5332017],[9.9255922,49.5337836],[9.9255865,49.5338292],[9.9251367,49.5344401],[9.9248113,49.5348987],[9.9262682,49.5353543],[9.926325,49.5353787],[9.926357,49.5353942],[9.9267308,49.5355924],[9.926827,49.5356483],[9.9268808,49.5356818],[9.9270204,49.5357759],[9.9270528,49.5358096],[9.9270895,49.5358617],[9.9272213,49.5360449],[9.9271873,49.5360565],[9.9270308,49.5361113],[9.9269756,49.5361325],[9.9269272,49.5361583],[9.9268826,49.5361863],[9.9267831,49.5362538],[9.9265791,49.536439],[9.9264837,49.536527],[9.9264327,49.536578],[9.9263473,49.5366431],[9.9262174,49.5367429],[9.9260399,49.5368845],[9.9259201,49.5369751],[9.9257423,49.537112],[9.9257753,49.5371297],[9.9258065,49.5371501],[9.9256727,49.5372339],[9.925463,49.53736],[9.9253254,49.5374395],[9.9252224,49.5375047],[9.925137,49.5375719],[9.925072,49.5376208],[9.9250244,49.5376693],[9.9248515,49.537946],[9.924806,49.5380188],[9.9241057,49.5389824],[9.9236059,49.5397057],[9.9235167,49.5398136],[9.9234095,49.5399099],[9.9232709,49.5400043],[9.9226813,49.5403708],[9.9222891,49.5406174],[9.922015,49.5407812],[9.921824,49.540885],[9.9216118,49.5409868],[9.9215036,49.5410542],[9.9214732,49.5410765],[9.9222483,49.5415664],[9.9226308,49.5418215],[9.9229805,49.5420484],[9.9230132,49.5420768],[9.9228966,49.5421597],[9.9223862,49.5425233],[9.9219913,49.5428132],[9.9217159,49.5429717],[9.9211611,49.5440628],[9.9210448,49.5442894],[9.9208996,49.5444523],[9.9207257,49.5445811],[9.9205484,49.54471],[9.9201489,49.5449856],[9.9200487,49.5450349],[9.9203006,49.5451389],[9.9208928,49.5453731],[9.9213456,49.5455177],[9.9217238,49.5456246],[9.9220763,49.5456978],[9.9223867,49.5457382],[9.9224736,49.5457495],[9.9226745,49.5457902],[9.9229744,49.5458638],[9.9226937,49.5459635],[9.9225492,49.5460362],[9.9223843,49.5461478],[9.9222171,49.5462801],[9.9220308,49.5464812],[9.9214526,49.5472515],[9.9214289,49.5472789],[9.921847,49.5474355],[9.9214252,49.5478313],[9.9218548,49.5481247],[9.9215812,49.5484525],[9.9214882,49.5486068],[9.921401,49.5487334],[9.9214357,49.5488334],[9.9215564,49.5490007],[9.9216201,49.54913],[9.9210554,49.5495483],[9.9213894,49.549706],[9.9209269,49.5502508],[9.9212855,49.5504216],[9.9209073,49.5509446],[9.921076,49.55121],[9.921334,49.5512802],[9.9216244,49.5513864],[9.9228743,49.5504377],[9.9232322,49.5501717],[9.9234836,49.5497845],[9.9240823,49.549142],[9.9243201,49.548828],[9.9251613,49.549531],[9.9262055,49.5493905],[9.9271252,49.5493785],[9.9276779,49.5494965],[9.9270229,49.5501371],[9.9269548,49.550295],[9.9267916,49.5506436],[9.9274604,49.5510703],[9.9271536,49.5513844],[9.9266644,49.5519453],[9.9262335,49.5527456],[9.9260204,49.5531418],[9.9257475,49.5536488],[9.9255321,49.5537176],[9.9238518,49.553056],[9.92382,49.5530495],[9.9237892,49.5530773],[9.923571,49.5532992],[9.9230698,49.5538189],[9.9228482,49.5540385],[9.9222635,49.5543194],[9.9222321,49.5543312],[9.9215615,49.5539185],[9.9214604,49.5539946],[9.9207372,49.5545403],[9.9213179,49.5547461],[9.9212944,49.5547688],[9.921263,49.5547879],[9.9214649,49.5548632],[9.9215466,49.5549011],[9.9216853,49.5549657],[9.9219125,49.5550705],[9.9220476,49.5551375],[9.9222357,49.5552154],[9.9224557,49.5553133],[9.9230484,49.5555646],[9.9232152,49.5556359],[9.9232828,49.5556716],[9.9234926,49.5557766],[9.9236669,49.5558682],[9.9238376,49.5559531],[9.9240189,49.5560447],[9.9245453,49.5563083],[9.9244353,49.5563895],[9.9247676,49.557119],[9.9246523,49.5571651],[9.9226989,49.5580978],[9.923368,49.5585165],[9.9243865,49.5587798],[9.9246474,49.5589365],[9.9247278,49.5591823],[9.9250233,49.5600858],[9.9245241,49.5613348],[9.9244989,49.5613977],[9.922257,49.5618542],[9.9219266,49.5620619],[9.9218908,49.5620418],[9.9217622,49.5621647],[9.9214615,49.5624519],[9.9210022,49.5625813],[9.9213208,49.5631234],[9.9213207,49.5632331],[9.9211826,49.5633126],[9.9209977,49.5633424],[9.9208255,49.5633287],[9.9199269,49.5630957],[9.9190912,49.5625031],[9.9187963,49.5625],[9.9184349,49.5624979],[9.9177809,49.5622652],[9.9167,49.5618777],[9.9160136,49.5616149],[9.9156809,49.5616397],[9.9152253,49.5616644],[9.9149184,49.5615542],[9.9141747,49.5614249],[9.9138107,49.561375],[9.9134382,49.5613777],[9.9126113,49.5614259],[9.9121842,49.5614496],[9.911428,49.5614373],[9.9111129,49.5614643],[9.9103458,49.5617309],[9.9101592,49.5617986],[9.9092493,49.5619493],[9.9092507,49.5619813],[9.9089004,49.562002],[9.9088653,49.562005],[9.9088338,49.5620055],[9.9082533,49.5619691],[9.9081993,49.5619657],[9.9081499,49.5619622],[9.9081114,49.5619652],[9.9080731,49.5619728],[9.9080316,49.5619897],[9.9079772,49.5620227],[9.9077245,49.5621786],[9.9074585,49.5623438],[9.9074223,49.5623216],[9.9065355,49.5624468],[9.9058789,49.5622405],[9.9052242,49.5620731],[9.9044661,49.5618758],[9.9042334,49.5617891],[9.9038157,49.5615849],[9.903622,49.5614997],[9.9031507,49.5615662],[9.9024994,49.5616136],[9.9022961,49.5616267],[9.9013044,49.5614659],[9.9005316,49.5612575],[9.9003206,49.561184],[9.9000399,49.5611187],[9.8989895,49.5609843],[9.8989467,49.561164],[9.8989083,49.5613253],[9.8988522,49.5615604],[9.8985824,49.5620137],[9.8981668,49.5622161],[9.8980363,49.5626414],[9.8981536,49.5631782],[9.8983028,49.5635019],[9.8983214,49.5635952],[9.8982038,49.5639997],[9.8980697,49.5644226],[9.8983435,49.564698],[9.8986755,49.5650321],[9.898822,49.5652277],[9.8989604,49.5654763],[9.8991259,49.5658409],[9.8991853,49.5661763],[9.8993821,49.5676004],[9.899425,49.5677231],[9.899486,49.5678595],[9.8995977,49.5679446],[9.8997549,49.5680202],[9.8999589,49.5681338],[9.9000985,49.5682095],[9.9003504,49.5683842],[9.9006779,49.5686102],[9.9009694,49.5688165],[9.9011257,49.5689696],[9.9011884,49.5690555],[9.9012009,49.569108],[9.9012224,49.5692242],[9.9012165,49.5693593],[9.9012024,49.5694556],[9.9011573,49.5695728],[9.9011216,49.569658],[9.9010376,49.569769],[9.9009402,49.5698917],[9.900615,49.5711067],[9.9007587,49.5712005],[9.9006098,49.571568],[9.9010892,49.5721092],[9.9011469,49.5725628],[9.9023093,49.5726959],[9.903554,49.5729089],[9.9036745,49.5729346],[9.9037137,49.5729454],[9.9037706,49.5729629],[9.9038276,49.5729826],[9.9038672,49.5730094],[9.9038924,49.573032],[9.9039181,49.5730635],[9.9039407,49.573102],[9.903953,49.5731521],[9.9040549,49.5736598],[9.9040141,49.5736614],[9.9042457,49.5737918],[9.9047953,49.5748321],[9.9047732,49.5751188],[9.9048044,49.5752741],[9.9049903,49.5760882],[9.905077,49.5764394],[9.9050367,49.576547],[9.9049424,49.5767898],[9.9049128,49.5769089],[9.904964,49.5772329],[9.9049914,49.5773972],[9.9052581,49.5773907],[9.9055635,49.5773885],[9.9056407,49.5773833],[9.9057251,49.5773897],[9.9060765,49.5774077],[9.9063647,49.5774171],[9.90636,49.5777643],[9.9063462,49.5781892],[9.9063388,49.5785914],[9.9063339,49.5787148],[9.9063208,49.5787675],[9.9062651,49.5790032],[9.9062188,49.5791702],[9.9063782,49.5792513],[9.9067929,49.5794859],[9.9069631,49.5795761],[9.9072783,49.579736],[9.9074376,49.5798056],[9.9077988,49.5799789],[9.9079684,49.5800531],[9.9082551,49.5801766],[9.9085839,49.5803114],[9.9087254,49.5803742],[9.9093198,49.5806281],[9.9096841,49.5807852],[9.9098928,49.5808753],[9.9104661,49.5811178],[9.9108033,49.58127],[9.9108609,49.5812959],[9.9109792,49.5813494],[9.9111761,49.5814504],[9.9134344,49.5826086],[9.9138841,49.5828292],[9.9140972,49.5829579],[9.9140587,49.5829759],[9.9138547,49.5830133],[9.9109112,49.583553],[9.9109439,49.5836181],[9.9115208,49.584551],[9.9116301,49.5847279],[9.9119745,49.58528],[9.9122721,49.5857577],[9.912228,49.5857714],[9.9089622,49.5862572],[9.9084343,49.5863358],[9.9083982,49.5863413],[9.9083119,49.5862118],[9.90764,49.5851178],[9.9075244,49.5849267],[9.9060893,49.5852341],[9.9045323,49.5855765],[9.9041928,49.5856452],[9.9041807,49.5856251],[9.903911,49.5851812],[9.9038594,49.5850869],[9.9038177,49.5850103],[9.9012512,49.5858445],[9.9011972,49.5858605],[9.9006139,49.5848097],[9.9005559,49.5847005],[9.9004002,49.5844321],[9.9002935,49.5845799],[9.9001084,49.5848247],[9.8999297,49.5850613],[9.8997408,49.5853207],[9.8996169,49.5854793],[9.8995656,49.5855436],[9.8994863,49.5856402],[9.8994105,49.585732],[9.899331,49.5858035],[9.8992795,49.5858678],[9.8991963,49.5859482],[9.8989717,49.5861578],[9.8986879,49.586418],[9.8983422,49.5867471],[9.8977867,49.5871443],[9.8976519,49.5871437],[9.8976,49.5871427],[9.89726,49.5865035],[9.8970419,49.5860666],[9.8969292,49.5858434],[9.8968962,49.5857638],[9.8968848,49.5856976],[9.8968716,49.5855446],[9.8968477,49.5853825],[9.8957405,49.5851095],[9.8954722,49.5850406],[9.8953169,49.5849914],[9.8952358,49.5849646],[9.8951614,49.5849286],[9.8950623,49.5848813],[9.8949238,49.584791],[9.8946252,49.5845783],[9.8945114,49.5844946],[9.8944723,49.5844606],[9.8944117,49.5844108],[9.8943938,49.5843903],[9.8943652,49.5843631],[9.8942968,49.5842677],[9.8942683,49.5842359],[9.894113,49.5839857],[9.8940339,49.5838628],[9.8939907,49.5838038],[9.893951,49.5837492],[9.8938939,49.5836995],[9.8937804,49.583618],[9.8936631,49.5835457],[9.893465,49.5834535],[9.8932884,49.5833954],[9.8931404,49.5833621],[9.8930102,49.5833379],[9.8927147,49.5833217],[9.892539,49.5833138],[9.8924826,49.5833119],[9.892079,49.5833239],[9.8920802,49.5833902],[9.8916737,49.5834456],[9.8912236,49.5836156],[9.8908183,49.5833237],[9.8907869,49.58334],[9.889907,49.582807],[9.8899296,49.5824643],[9.8888722,49.582458],[9.8872179,49.5824426],[9.8870599,49.5824411],[9.8870559,49.5824115],[9.8869049,49.5824147],[9.8868601,49.5822643],[9.8867705,49.5821529],[9.8859362,49.5816106],[9.8858982,49.5803658],[9.8842171,49.5804187],[9.8842166,49.5803913],[9.8840941,49.5804243],[9.8838179,49.5811389],[9.8829776,49.5808706],[9.8832489,49.580284],[9.8806695,49.5797538],[9.8796274,49.5791602],[9.8790199,49.5789474],[9.876734,49.5789542],[9.8767671,49.5786205],[9.8765208,49.5786017],[9.8758034,49.5785358],[9.8751731,49.5784697],[9.8750512,49.578089],[9.8750012,49.5778927],[9.8737539,49.5734627],[9.8742593,49.571721],[9.8693729,49.5711194],[9.8693268,49.5711107],[9.8696641,49.5699649],[9.8698135,49.5694539],[9.8699884,49.568858],[9.8646086,49.567725],[9.8645599,49.5677185],[9.8652575,49.5649353],[9.8655666,49.5639115],[9.8662623,49.5616074],[9.8664289,49.5610075],[9.8669432,49.5591568],[9.8663791,49.559084],[9.8663852,49.5590528],[9.8666793,49.5575047],[9.8666793,49.5573725],[9.866039,49.5573348],[9.8659195,49.5566184],[9.8654351,49.5565244],[9.8653057,49.5565186],[9.8653208,49.556494],[9.8658521,49.5553481],[9.8656579,49.5552981],[9.8656703,49.5552726],[9.8643084,49.5552418],[9.8643936,49.5544299],[9.8645906,49.5537242],[9.8632431,49.5535586],[9.8630557,49.5535378],[9.861821,49.5535148],[9.8606684,49.553525],[9.8603756,49.5535191],[9.8605951,49.5523061],[9.8606537,49.5519833],[9.8608941,49.551718],[9.8608954,49.5512199],[9.8607247,49.550749],[9.8600581,49.5496527],[9.860112,49.5490173],[9.859495,49.5485572],[9.8597553,49.5482467],[9.8599972,49.5478929],[9.860292,49.5474063],[9.8602982,49.5473583],[9.8596493,49.5461669],[9.859572,49.5460248],[9.8588583,49.545965],[9.858332,49.5459766],[9.8579174,49.545953],[9.8574147,49.5459187],[9.856782,49.5458672],[9.8562472,49.5458058],[9.8556002,49.5457363],[9.8546622,49.5462035],[9.8536735,49.5459157],[9.8532353,49.5457667],[9.8518395,49.5453043],[9.8512602,49.5454648],[9.8508503,49.5456739],[9.8503134,49.5455005],[9.8501619,49.5456435],[9.8500404,49.5457039],[9.8491507,49.5461273],[9.8489037,49.5462345],[9.8486387,49.5463168],[9.8484011,49.5463668],[9.8481489,49.5463918],[9.8479886,49.5463948],[9.8479069,49.5463963],[9.8481545,49.5466566],[9.8479383,49.546727],[9.8478202,49.5467852],[9.8476921,49.5468708],[9.8475548,49.5470226],[9.8474801,49.5471443],[9.8474406,49.5472589],[9.8473523,49.5474964],[9.8473505,49.5475254],[9.8466703,49.5475804],[9.8465966,49.5475856],[9.8465371,49.5475931],[9.846495,49.5475936],[9.8464563,49.5475962],[9.8463897,49.5475947],[9.8461086,49.5475931],[9.8457608,49.5475943],[9.8452514,49.547595],[9.8448614,49.5475944],[9.8448534,49.5475655],[9.8434758,49.5475269],[9.8427117,49.5480929],[9.8426338,49.5481715],[9.8420446,49.5487654],[9.841835,49.5489797],[9.8417629,49.5490647],[9.8416536,49.5492028],[9.8411062,49.5498948],[9.8408749,49.550253],[9.8406125,49.5506192],[9.840614,49.5506491],[9.8400355,49.5506962],[9.8384162,49.550852],[9.8378381,49.5509062],[9.8372784,49.5509591],[9.8370002,49.5509853],[9.8359486,49.5510827],[9.8359427,49.551059],[9.8357782,49.5510673],[9.8337436,49.5511693],[9.8326993,49.5512831],[9.8321765,49.5513972],[9.8319481,49.5514471],[9.8314322,49.5515597],[9.8308351,49.5516672],[9.8290733,49.5515328],[9.8277226,49.5516439],[9.8276922,49.5516944],[9.8276035,49.5519917],[9.8273991,49.55229],[9.8271252,49.5526138],[9.8264253,49.5532036],[9.8260655,49.5534391],[9.8258576,49.5535594],[9.8245012,49.5539124],[9.8234748,49.5541867],[9.8227013,49.5545148],[9.8202579,49.5549736],[9.8195349,49.5551093],[9.8194068,49.55517],[9.8193388,49.5551207],[9.818735,49.5553693],[9.8180191,49.5558275],[9.8181552,49.5562199],[9.8181006,49.5562752],[9.818536,49.5572877],[9.8184527,49.557697],[9.818175,49.5584278],[9.8181062,49.558732],[9.8181078,49.5587867],[9.8167846,49.5581628],[9.8149008,49.5574289],[9.8147022,49.557365],[9.8123954,49.5560678],[9.8117746,49.5556982],[9.8106081,49.5565326],[9.8100798,49.5572182],[9.8100603,49.5572778],[9.812178,49.5580867],[9.8159593,49.5593926],[9.8166998,49.5596398],[9.8163695,49.5602594],[9.81768,49.5605572],[9.8188972,49.5609109],[9.8195915,49.5611403],[9.8196553,49.5611601],[9.820819,49.5616009],[9.8224422,49.5622344],[9.8255617,49.5634808],[9.8273682,49.5643072],[9.8274397,49.5643399],[9.8308933,49.5661609],[9.8308848,49.566259],[9.8309387,49.5663271],[9.8321761,49.5669035],[9.8330438,49.5673076],[9.8333134,49.5674246],[9.8359715,49.5684989],[9.8384528,49.5695084],[9.8382534,49.5697316],[9.8380096,49.5699983],[9.8377757,49.5702467],[9.8375968,49.5704285],[9.8374763,49.5705573],[9.837359,49.5706632],[9.8371929,49.5707924],[9.8370836,49.5708714],[9.8370337,49.5708987],[9.8371086,49.5709238],[9.8395191,49.5718065],[9.8416497,49.5727935],[9.8416854,49.5728074],[9.8412175,49.5733643],[9.8411635,49.5734312],[9.8411096,49.5735096],[9.8409415,49.5737632],[9.8409249,49.5737931],[9.8409186,49.5738138],[9.8408626,49.5739356],[9.8408302,49.5740321],[9.8407512,49.5742022],[9.8407018,49.5743103],[9.8406343,49.5744465],[9.8406227,49.5744701],[9.8422345,49.5747921],[9.8423509,49.5748137],[9.8424217,49.5748359],[9.8426128,49.5748957],[9.8427191,49.5749311],[9.8428326,49.5749756],[9.8441984,49.5754911],[9.8442136,49.5754655],[9.8443483,49.5754636],[9.8450402,49.5757574],[9.8454514,49.5759262],[9.8458736,49.5760977],[9.8459695,49.5761402],[9.8460015,49.5761534],[9.8460727,49.5761917],[9.8465745,49.5764582],[9.8465476,49.5764776],[9.8472571,49.5767909],[9.8477062,49.5769956],[9.8479877,49.577127],[9.8480826,49.5771911],[9.8482031,49.5772727],[9.8484727,49.5774682],[9.8487845,49.5776702],[9.8484433,49.5777326],[9.8483954,49.5777775],[9.8483473,49.5778227],[9.8475859,49.5782811],[9.8474028,49.578402],[9.8472935,49.578522],[9.8472469,49.5786184],[9.8466766,49.5797941],[9.8488864,49.5802766],[9.84761,49.5810673],[9.847133,49.5823197],[9.8471777,49.5826823],[9.8473404,49.5833955],[9.8472823,49.5842481],[9.847281,49.5843417],[9.8472561,49.5844608],[9.8469837,49.5850691],[9.8455624,49.5867231],[9.8444836,49.5876256],[9.843058,49.5885762],[9.8425784,49.5891884],[9.8416829,49.590183],[9.8414076,49.5905611],[9.841099,49.5914202],[9.841036,49.5917063],[9.8416754,49.5923463],[9.8423755,49.593033],[9.842953,49.5931665],[9.8433412,49.5932663],[9.8433037,49.593324],[9.841745,49.5940068],[9.8414667,49.594765],[9.8440424,49.5955516],[9.8440066,49.5963154],[9.8440489,49.5968571],[9.8450612,49.5968677],[9.8452761,49.5969055],[9.8453996,49.5969413],[9.8454774,49.5969845],[9.8455519,49.5970389],[9.8456309,49.5971527],[9.8456884,49.597269],[9.8457075,49.5973788],[9.8457498,49.5979204],[9.8466419,49.5978859],[9.8475907,49.5978716],[9.8485855,49.5978777],[9.8487985,49.5975107],[9.8520255,49.5988949],[9.8520685,49.5989151],[9.8545687,49.6000927],[9.8556052,49.6007117],[9.8557436,49.6008395],[9.8562994,49.6012063],[9.8565858,49.6013839],[9.856705,49.6014532],[9.8576912,49.6020755],[9.8581056,49.6023392],[9.8583453,49.6024892],[9.8592761,49.6028813],[9.8594079,49.6029369],[9.859522,49.6029849],[9.8595391,49.6029921],[9.8595651,49.6034703],[9.8595763,49.6036771],[9.8594828,49.6039297],[9.8593544,49.6043653],[9.8593498,49.6046533],[9.8593042,49.6050833],[9.8592855,49.6053737],[9.8592728,49.6054686],[9.8592159,49.605625],[9.8591131,49.6058194],[9.8589134,49.6060238],[9.8586025,49.6063068],[9.8584968,49.6063719],[9.8583995,49.6064564],[9.8583022,49.6066151],[9.8582368,49.6067362],[9.8579765,49.6071017],[9.8577978,49.6073233],[9.8576954,49.6074273],[9.8575426,49.6075696],[9.8574962,49.6076882],[9.8573623,49.6080317],[9.8578236,49.60795],[9.8584735,49.6078539],[9.8589418,49.6077963],[9.8592007,49.6077704],[9.859426,49.6077526],[9.8596464,49.6077488],[9.8597992,49.6077462],[9.8602514,49.6077481],[9.8602483,49.6077671],[9.8602495,49.6077961],[9.8610186,49.6078006],[9.8613093,49.6077691],[9.8614941,49.6077385],[9.8618306,49.6076647],[9.8624682,49.6075239],[9.862882,49.6074662],[9.8636228,49.6075325],[9.8641732,49.6075849],[9.8642808,49.6075919],[9.8642589,49.6077725],[9.8641765,49.6079083],[9.864108,49.6079944],[9.8640283,49.6081321],[9.8641548,49.6081379],[9.8655239,49.6084093],[9.8668589,49.6085288],[9.8686697,49.6086908],[9.8704363,49.608849],[9.8704349,49.6088605],[9.870349,49.6096148],[9.8702867,49.6098333],[9.8728173,49.609942],[9.8728281,49.6100355],[9.8725548,49.6105807],[9.8722243,49.6111278],[9.8721882,49.6111938],[9.8720116,49.6115173],[9.8714343,49.6114319],[9.8713334,49.6116229],[9.8697753,49.6113987],[9.8679929,49.61118],[9.8678723,49.6114877],[9.8676011,49.6122492],[9.8675889,49.6122836],[9.8682823,49.6123511],[9.8690925,49.6124504],[9.8691498,49.6125001],[9.868359,49.6143564],[9.8676291,49.6160365],[9.8675403,49.6164294],[9.8674585,49.6168293],[9.8674298,49.6171629],[9.8672942,49.6180061],[9.8677948,49.6182313],[9.8678419,49.6182983],[9.8678238,49.6188905],[9.8677963,49.61962],[9.8677643,49.619961],[9.8677118,49.6203411],[9.8677406,49.6204253],[9.8677383,49.6205846],[9.8677308,49.6210855],[9.8677297,49.6211495],[9.8677086,49.6212823],[9.8675333,49.621242],[9.8672083,49.621216],[9.8671687,49.6213284],[9.8671571,49.6218458],[9.8666721,49.6218383],[9.8655508,49.6217807],[9.865498,49.6217732],[9.8646607,49.6217623],[9.8644196,49.621765],[9.8644137,49.6217985],[9.8643893,49.6225093],[9.8643683,49.6229356],[9.8642988,49.6231714],[9.8641896,49.6235536],[9.8640984,49.6238941],[9.8655613,49.6240802],[9.8655984,49.624119],[9.8655401,49.624225],[9.8652625,49.6247289],[9.8650245,49.6251834],[9.8650026,49.6252072],[9.8646827,49.6255544],[9.8641334,49.6261959],[9.8638966,49.6265085],[9.8636122,49.6269241],[9.8635937,49.6269425],[9.8634063,49.6271289],[9.8629663,49.6275445],[9.8630466,49.6275836],[9.8632907,49.6276827],[9.863755,49.6278488],[9.8637327,49.6278713],[9.8630707,49.6287222],[9.8625451,49.6293968],[9.8621501,49.6298871],[9.8620097,49.6300924],[9.8609777,49.6314306],[9.8607671,49.6318652],[9.8605029,49.6324],[9.8596359,49.6321446],[9.8590953,49.6322892],[9.8586963,49.6323327],[9.8583289,49.6323588],[9.8582742,49.6323627],[9.8576747,49.6323833],[9.8578893,49.6329938],[9.8579025,49.6332464],[9.8581933,49.6336069],[9.8587749,49.6339423],[9.8587268,49.6339647],[9.8582717,49.6341782],[9.8581105,49.6342538],[9.8583478,49.6344652],[9.8585259,49.6346078],[9.8587919,49.6347873],[9.858498,49.6349672],[9.8584246,49.6350122],[9.8577592,49.6347852],[9.8575228,49.634464],[9.8574408,49.6344928],[9.8573478,49.6345135],[9.8573558,49.6345453],[9.8570177,49.6346457],[9.8568411,49.6346983],[9.8572626,49.6356462],[9.8572495,49.6359265],[9.8580375,49.6360671],[9.8578654,49.6363538],[9.8572883,49.6375283],[9.8571155,49.6377863],[9.856847,49.6382945],[9.8565972,49.6388414],[9.8559393,49.6386811],[9.8558338,49.6388835],[9.8556691,49.6393413],[9.8555649,49.6397336],[9.8554874,49.6397291],[9.8554625,49.6401189],[9.8554993,49.6404995],[9.8554992,49.640544],[9.8554996,49.6410952],[9.8554802,49.6415296],[9.8549104,49.6414976],[9.8543923,49.6420806],[9.854255,49.6421818],[9.8538346,49.6424922],[9.8537099,49.6425987],[9.8524926,49.6429852],[9.8520822,49.6431187],[9.8520393,49.6431322],[9.8519885,49.6431481],[9.851891,49.6431787],[9.8518798,49.6429974],[9.8517141,49.6429732],[9.8513697,49.642908],[9.8513422,49.6429437],[9.850381,49.6428514],[9.8501806,49.6428554],[9.8500913,49.6433622],[9.8500411,49.6440113],[9.8497204,49.6439721],[9.8482526,49.6437337],[9.8477494,49.6436646],[9.8477062,49.6436586],[9.8477008,49.643709],[9.8477168,49.6439344],[9.8477317,49.6441446],[9.8477255,49.6441721],[9.8464392,49.6439014],[9.8456441,49.6437316],[9.8453689,49.6436827],[9.8445417,49.6451002],[9.8434904,49.644936],[9.8432677,49.6448841],[9.8430896,49.6448467],[9.8423602,49.6451259],[9.8418846,49.6442705],[9.8416996,49.6443326],[9.84078,49.6446888],[9.8397356,49.6451137],[9.8390518,49.6454008],[9.8385004,49.645632],[9.8376628,49.6460689],[9.8370105,49.6456391],[9.8366509,49.6457677],[9.8357993,49.6461193],[9.8350673,49.6464738],[9.8352042,49.6466206],[9.8355656,49.6470083],[9.8359554,49.6473594],[9.8360895,49.6474544],[9.8356656,49.6478506],[9.8352745,49.648172],[9.8342267,49.6484313],[9.8337613,49.6485729],[9.8329868,49.648907],[9.8328399,49.6489704],[9.8333647,49.6495914],[9.8323438,49.6497887],[9.832175,49.6498094],[9.8320416,49.6498259],[9.8318376,49.6498373],[9.8313289,49.6500214],[9.8306503,49.6503442],[9.8304006,49.6506108],[9.8302196,49.6511767],[9.8301371,49.6514395],[9.8300333,49.6517174],[9.8300401,49.6521352],[9.8300951,49.6526125],[9.8303471,49.652664],[9.8302323,49.653055],[9.8297814,49.6534346],[9.8297075,49.6538893],[9.8296361,49.6542116],[9.830454,49.6545773],[9.8310041,49.6546884],[9.8316505,49.6547534],[9.8321367,49.6545974],[9.832175,49.6545859],[9.832588,49.6544622],[9.8329159,49.6547534],[9.8331136,49.6549955],[9.8332412,49.6551518],[9.8334715,49.6555564],[9.8335382,49.6556764],[9.833859,49.6562537],[9.8333969,49.6565683],[9.8328686,49.6569585],[9.832383,49.6571955],[9.8321748,49.6573041],[9.8318939,49.6574508],[9.8317928,49.6577754],[9.8316838,49.6582326],[9.8316477,49.6585696],[9.8316328,49.6586873],[9.8313327,49.659015],[9.8307606,49.6592352],[9.8300881,49.6594283],[9.8293677,49.6595874],[9.8293713,49.6598431],[9.8293803,49.6600692],[9.830184,49.6602022],[9.8308044,49.6603003],[9.8313047,49.6603454],[9.8317874,49.6603916],[9.8317808,49.6604394],[9.8317496,49.6606788],[9.8309703,49.6608351],[9.8309231,49.6608446],[9.8297896,49.6610634],[9.8288738,49.6612164],[9.8283339,49.6612846],[9.8274935,49.661194],[9.8267285,49.6617106],[9.8261261,49.6621171],[9.8259253,49.6623222],[9.8254267,49.6629326],[9.8250499,49.6633756],[9.8249454,49.6634985],[9.8239028,49.6632258],[9.8224901,49.6647321],[9.8224173,49.6647118],[9.8217575,49.6661728],[9.8255395,49.6675017],[9.825642,49.6675355],[9.8254723,49.6677965],[9.8250607,49.6683915],[9.8241209,49.6697504],[9.8240005,49.6699975],[9.8237443,49.6707064],[9.8232556,49.6720396],[9.8232883,49.6721467],[9.8232995,49.6721968],[9.8235562,49.6721819],[9.823963,49.6721239],[9.8241582,49.6721117],[9.8243629,49.6721202],[9.8245993,49.6721408],[9.8252653,49.6722328],[9.8256155,49.6754835],[9.8274101,49.6754313],[9.827473,49.6754295],[9.8289854,49.6778048],[9.8290186,49.6778719],[9.8290467,49.6779528],[9.8289671,49.678571],[9.8309764,49.6789257],[9.8310812,49.6789443],[9.8311516,49.6789567],[9.8304184,49.6801636],[9.8302787,49.6804907],[9.8300957,49.6810144],[9.8306318,49.6810909],[9.8307125,49.6808166],[9.8307655,49.6808254],[9.831516,49.6809063],[9.832174,49.6809795],[9.8328607,49.6810557],[9.8366966,49.6814479],[9.8386153,49.6816142],[9.8392353,49.6816326],[9.8411597,49.6817485],[9.8411565,49.6817622],[9.8409119,49.6827724],[9.8406623,49.6835884],[9.8383156,49.6828169],[9.8381719,49.6828321],[9.837115,49.6829329],[9.836983,49.6829937],[9.8365657,49.6840011],[9.8365363,49.6842276],[9.8365199,49.6843142],[9.8365147,49.684342],[9.8364724,49.6843379],[9.8363703,49.6843343],[9.8365358,49.684853],[9.8366841,49.685311],[9.8367035,49.6853725],[9.8362038,49.685515],[9.8352318,49.6859004],[9.8351031,49.6859634],[9.8349833,49.6860475],[9.8347332,49.6862233],[9.8335781,49.6868733],[9.8334322,49.6869525],[9.8329048,49.6872392],[9.8326555,49.6873996],[9.832617,49.6874114],[9.832174,49.6871155],[9.8320219,49.687014],[9.8316822,49.6868043],[9.8315104,49.6867057],[9.8312603,49.686585],[9.8295311,49.6884249],[9.8310683,49.6892215],[9.8314222,49.6894049],[9.8316193,49.6895285],[9.8317743,49.6896546],[9.8318868,49.6897699],[9.8319559,49.6898515],[9.8320616,49.6900359],[9.8321346,49.6901215],[9.8321738,49.6901588],[9.832225,49.6902073],[9.8322936,49.6902842],[9.8323513,49.6903339],[9.832423,49.6903811],[9.8325165,49.6904555],[9.8326668,49.6905634],[9.8327674,49.69064],[9.8328679,49.6907098],[9.8329752,49.6907794],[9.8330828,49.6908491],[9.8331758,49.6909052],[9.8332686,49.6909544],[9.8335113,49.6910888],[9.8337113,49.6911963],[9.8340112,49.6913621],[9.834333,49.691546],[9.8343047,49.6915619],[9.8342704,49.6915809],[9.8354165,49.692208],[9.8329854,49.6934772],[9.8330234,49.6934973],[9.8346664,49.6943682],[9.8323431,49.695723],[9.8327797,49.6960016],[9.8338861,49.6966543],[9.8339246,49.6967065],[9.8339568,49.6967312],[9.8337102,49.696907],[9.8329544,49.6974458],[9.8329198,49.697424],[9.8328911,49.6974033],[9.8322239,49.6978827],[9.8321735,49.6979182],[9.8320951,49.6979737],[9.8319929,49.6981117],[9.8319388,49.6981924],[9.8318951,49.6982751],[9.831856,49.6983943],[9.8321733,49.6986087],[9.8325912,49.698891],[9.8329236,49.6991155],[9.8327275,49.7002686],[9.832615,49.7011826],[9.8325837,49.701514],[9.8326224,49.7018003],[9.8326685,49.7019759],[9.8327297,49.7022474],[9.8324847,49.7023888],[9.8322671,49.702513],[9.8321735,49.7025648],[9.8318945,49.7027196],[9.8316639,49.7028118],[9.8314521,49.7028753],[9.8310909,49.7029584],[9.8307259,49.7030428],[9.829768,49.7033225],[9.8288367,49.7035603],[9.8286167,49.7039768],[9.8281711,49.7045866],[9.8283102,49.7047159],[9.8280876,49.7049067],[9.8277956,49.7051777],[9.8274714,49.7054215],[9.8271994,49.7056126],[9.8268821,49.7058382],[9.8262386,49.7054804],[9.8254508,49.7051379],[9.8251082,49.7049884],[9.8234325,49.7046771],[9.8231225,49.7057064],[9.8226653,49.7074382],[9.8236293,49.7077356],[9.8226346,49.7085498],[9.8219898,49.7091573],[9.8218828,49.70937],[9.8218027,49.7096385],[9.8214582,49.7099088],[9.8207006,49.7104542],[9.8205078,49.7105394],[9.8196977,49.7108325],[9.8189405,49.7111163],[9.8176737,49.7115161],[9.8169371,49.7117587],[9.8163518,49.7119261],[9.8159016,49.7120777],[9.8150192,49.7123419],[9.814363,49.7125272],[9.8135302,49.7127447],[9.8135112,49.7127501],[9.813068,49.712874],[9.8129665,49.7129057],[9.8128688,49.7129278],[9.8120445,49.7131148],[9.8114782,49.7132432],[9.8099749,49.7135732],[9.8091073,49.7137568],[9.8080517,49.714149],[9.8076032,49.7143402],[9.8072925,49.7146175],[9.8068143,49.7150164],[9.8065814,49.7153232],[9.806499,49.7155199],[9.8061313,49.7164227],[9.8057252,49.7170063],[9.8053742,49.7174481],[9.8051747,49.7175722],[9.8041913,49.7181716],[9.8032622,49.7186967],[9.8026488,49.7190619],[9.802527,49.7191025],[9.8022054,49.7191712],[9.8015618,49.719295],[9.800293,49.7195559],[9.7992922,49.7197768],[9.7990283,49.719835],[9.7978814,49.7202584],[9.7977983,49.7203083],[9.7963051,49.7211336],[9.7963603,49.7211775],[9.7964497,49.7212541],[9.7963952,49.7213164],[9.7963561,49.7214243],[9.7958386,49.7223081],[9.7958161,49.7226598],[9.7957689,49.7235069],[9.7957682,49.7238766],[9.7957637,49.7243116],[9.7957615,49.724532],[9.7957794,49.7251004],[9.79587,49.7260178],[9.795918,49.7263305],[9.796258,49.7271446],[9.7963975,49.7274501],[9.7972741,49.7279821],[9.7981929,49.7284799],[9.7990623,49.7289228],[9.7997799,49.729341],[9.8000873,49.729516],[9.8002428,49.7295956],[9.80001,49.7305413],[9.7999073,49.730973],[9.7988125,49.7310258],[9.7977705,49.7310605],[9.7975937,49.7310723],[9.7963906,49.731153],[9.7956481,49.7311959],[9.7938534,49.731367],[9.7933854,49.7312843],[9.7933176,49.7312724],[9.791622,49.7310071],[9.7910798,49.7304857],[9.7906369,49.73006],[9.7904194,49.7296426],[9.7902518,49.7293303],[9.7901202,49.7291092],[9.790093,49.729051],[9.7899522,49.7287467],[9.7898341,49.7279502],[9.7897864,49.7276536],[9.789698,49.7270625],[9.7896332,49.7266826],[9.7895772,49.7263551],[9.7894965,49.7258691],[9.7894664,49.7255842],[9.7894596,49.7255201],[9.7893727,49.7247394],[9.7893263,49.7246436],[9.7891767,49.7243883],[9.7889753,49.7240324],[9.7889165,49.7239338],[9.7886351,49.723639],[9.7882178,49.7232002],[9.7880277,49.7230185],[9.7879488,49.7229431],[9.787835,49.7228342],[9.7875725,49.722499],[9.7873811,49.7222546],[9.7873074,49.7221626],[9.7871055,49.7219105],[9.7869461,49.7217113],[9.7866687,49.721736],[9.7855595,49.7218348],[9.7848156,49.7218995],[9.7842009,49.7219531],[9.7823235,49.7221408],[9.7805867,49.7223286],[9.7793941,49.7224558],[9.7783522,49.7220767],[9.7770136,49.7215695],[9.7767416,49.7214604],[9.7763777,49.7213144],[9.7760199,49.7211576],[9.7758562,49.7211076],[9.7755563,49.7210566],[9.775075,49.7209767],[9.7742109,49.7208217],[9.7738074,49.7207149],[9.7732959,49.7205093],[9.7725524,49.7202772],[9.7717633,49.7200315],[9.7716373,49.719985],[9.7709363,49.7197263],[9.7699372,49.7193926],[9.7695519,49.7192674],[9.7691026,49.7191214],[9.768468,49.7189152],[9.768279,49.7188115],[9.7676365,49.7184066],[9.7666928,49.7178429],[9.7647105,49.7167262],[9.7645644,49.716593],[9.7635067,49.7161541],[9.7630133,49.7159144],[9.7631054,49.7158623],[9.7628395,49.7157309],[9.7626508,49.7156272],[9.7616264,49.7150653],[9.7611585,49.7147457],[9.760855,49.7145321],[9.7603723,49.7142808],[9.760237,49.7141226],[9.7591977,49.713038],[9.7589051,49.7130912],[9.7587224,49.7127799],[9.7583391,49.7121756],[9.7580202,49.7120713],[9.7569728,49.7116643],[9.7559676,49.7112643],[9.7544719,49.7106976],[9.7536767,49.7103991],[9.753556,49.7104807],[9.7534234,49.7103841],[9.753291,49.7102762],[9.7530528,49.710186],[9.7528671,49.7101144],[9.752836,49.7100754],[9.7527534,49.7099221],[9.7525099,49.7094096],[9.7521362,49.7086089],[9.75192,49.7081605],[9.7517927,49.7076373],[9.7516423,49.7069861],[9.7514658,49.7061865],[9.7512528,49.7052004],[9.7509194,49.7037054],[9.7506094,49.7024843],[9.7505953,49.7024293],[9.7505638,49.7023199],[9.7505229,49.7021781],[9.7505023,49.7020572],[9.7505134,49.701975],[9.750529,49.7019226],[9.7506493,49.7015178],[9.750664,49.7014691],[9.7508686,49.7006826],[9.7510479,49.7000534],[9.7511304,49.6997616],[9.7511414,49.6996818],[9.7510528,49.6991272],[9.7510163,49.6989201],[9.7510119,49.6988944],[9.7510714,49.6988512],[9.7512473,49.6988273],[9.7515074,49.6987982],[9.7514924,49.6987206],[9.751462,49.6985701],[9.7514215,49.698207],[9.7513827,49.6979606],[9.7513406,49.6977255],[9.7512849,49.6975317],[9.751247,49.6973447],[9.7512128,49.6971621],[9.751147,49.6970095],[9.7510275,49.6967864],[9.7509091,49.6966409],[9.7507981,49.6965305],[9.7506625,49.6963956],[9.7503451,49.6960999],[9.7503412,49.6960961],[9.7501765,49.6959189],[9.7500364,49.6957256],[9.7499744,49.6955821],[9.7499544,49.6954154],[9.7499099,49.6952627],[9.7498556,49.6951579],[9.7497913,49.6951011],[9.7497204,49.6950719],[9.7497079,49.6949688],[9.7486225,49.6948837],[9.7484876,49.6948797],[9.7479495,49.6948729],[9.7477639,49.6945835],[9.7474237,49.6945538],[9.7474014,49.6945735],[9.7468768,49.6943517],[9.7468807,49.6942981],[9.7463713,49.6942521],[9.7463313,49.6942067],[9.7464134,49.6938809],[9.7464298,49.6938164],[9.7457712,49.6937114],[9.7454419,49.693595],[9.7453872,49.6935704],[9.7454158,49.6925857],[9.7454263,49.6918464],[9.7421227,49.6917073],[9.7420686,49.6917049],[9.7417206,49.6909232],[9.7417426,49.6906003],[9.7417456,49.6905576],[9.7387661,49.6900595],[9.7394169,49.6882036],[9.7393839,49.6881966],[9.7360928,49.6877516],[9.7357649,49.6877262],[9.735501,49.6877368],[9.7351774,49.6877663],[9.7349315,49.6877955],[9.7337094,49.6880698],[9.7333225,49.6881247],[9.7329148,49.688182],[9.7325601,49.6882504],[9.7322726,49.6883436],[9.7320113,49.6884591],[9.7319162,49.6885512],[9.7317589,49.6886368],[9.7315728,49.6886904],[9.7314042,49.6887166],[9.7306653,49.6887576],[9.7302389,49.6887648],[9.7298798,49.6887646],[9.7295626,49.6887574],[9.7293439,49.6887336],[9.7291483,49.6886994],[9.7289689,49.6886261],[9.7288093,49.6885403],[9.7286776,49.6884383],[9.728535,49.688318],[9.7284205,49.6881907],[9.7283094,49.6880568],[9.7282147,49.6880733],[9.7281479,49.6880942],[9.7280847,49.6881106],[9.7280411,49.6880104],[9.7279991,49.6880288],[9.7279189,49.688091],[9.7278811,49.6881507],[9.7278539,49.6882285],[9.7278412,49.6883176],[9.7278323,49.6884388],[9.7278199,49.6886211],[9.7274873,49.690966],[9.7276959,49.6921554],[9.7279221,49.6935381],[9.7279526,49.6936258],[9.7281998,49.694334],[9.7283191,49.6946763],[9.7285222,49.6952579],[9.7286291,49.695564],[9.7287458,49.695898],[9.7288046,49.6960667],[9.7289665,49.6965306],[9.729165,49.6970988],[9.728482,49.6982306],[9.7280841,49.698845],[9.727993,49.6989182],[9.7279037,49.6989899],[9.7274066,49.6993676],[9.7267955,49.6998692],[9.7265828,49.7000379],[9.726087,49.7004308],[9.7259167,49.7005666],[9.7250783,49.700958],[9.724341,49.7012917],[9.7242461,49.7013039],[9.7235671,49.7013518],[9.7227124,49.7014148],[9.7220018,49.7014676],[9.721921,49.7014818],[9.7218488,49.701494],[9.7213661,49.7015746],[9.7208337,49.7016768],[9.7206008,49.7017214],[9.7198072,49.7018666],[9.7193607,49.7019611],[9.7197123,49.7032545],[9.7193665,49.7037847],[9.7189892,49.7043286],[9.7187093,49.7046755],[9.7186812,49.7047103],[9.7180166,49.7055287],[9.717968,49.7056079],[9.7176038,49.7062012],[9.7174746,49.7064119],[9.7173453,49.7066244],[9.7172091,49.7068597],[9.716862,49.7071936],[9.7161635,49.7079126],[9.7160313,49.7080487],[9.7156874,49.7087326],[9.7156472,49.708813],[9.7156008,49.708905],[9.7154867,49.7091316],[9.7153855,49.709336],[9.7153424,49.709423],[9.7148976,49.7102619],[9.7146963,49.7102814],[9.7146589,49.7102842],[9.7147082,49.7106437],[9.7147157,49.7107576],[9.714696,49.7108918],[9.713905,49.7123966],[9.713577,49.7130373],[9.7135141,49.7132317],[9.7133031,49.7139337],[9.713291,49.7139748],[9.7137736,49.7140146],[9.7141778,49.7142065],[9.7140794,49.7144105],[9.7140952,49.7148345],[9.7139539,49.7152694],[9.7139743,49.7154551],[9.7142796,49.7161437],[9.7145619,49.7166167],[9.714058,49.7167205],[9.7135476,49.7168255],[9.7141262,49.7178722],[9.7141471,49.7179654],[9.7142778,49.7189795],[9.714298,49.7192201],[9.7143221,49.7195091],[9.714186,49.7206141],[9.7141656,49.720806],[9.7141589,49.7208767],[9.7133974,49.7214943],[9.7132552,49.7216154],[9.712008,49.7226767],[9.7119772,49.7228618],[9.7118548,49.723557],[9.7117994,49.7239118],[9.7117998,49.7241385],[9.7118112,49.7244326],[9.7118462,49.726247],[9.7111153,49.7266953],[9.71049,49.72705],[9.7102385,49.7270117],[9.7098493,49.7269508],[9.7095658,49.726473],[9.7094223,49.7262353],[9.7088741,49.7259397],[9.7081638,49.7255729],[9.7073585,49.7252128],[9.7069771,49.7246161],[9.7061407,49.724925],[9.7052269,49.7250933],[9.705043,49.7251273],[9.7046953,49.7251913],[9.7039918,49.7244698],[9.7034545,49.7239295],[9.7031638,49.7234438],[9.7028526,49.7229622],[9.7028204,49.7229124],[9.7026182,49.7225283],[9.7025011,49.7223056],[9.7010786,49.7222347],[9.7009871,49.7220026],[9.7008358,49.7216088],[9.7009344,49.7212322],[9.7010576,49.7208854],[9.7012471,49.7202941],[9.7009775,49.7197808],[9.700843,49.7188628],[9.7008078,49.7186214],[9.7006084,49.7180669],[9.7005682,49.7179839],[9.7005304,49.7178923],[9.7004332,49.7177434],[9.7002519,49.7174723],[9.7001939,49.7173849],[9.7008292,49.7169206],[9.6992747,49.7172517],[9.6973033,49.7181288],[9.6971979,49.7182432],[9.6962529,49.7192904],[9.6962304,49.7193152],[9.6946588,49.7188768],[9.6932422,49.7184702],[9.6931216,49.718431],[9.6929002,49.7183588],[9.6923326,49.7181293],[9.6920683,49.7180522],[9.6917935,49.7180344],[9.6913992,49.71801],[9.6911949,49.7180149],[9.6906496,49.7180683],[9.6894465,49.7182506],[9.6879111,49.7181141],[9.6873882,49.7180724],[9.686872,49.7180314],[9.6862096,49.7178818],[9.6844523,49.7177617],[9.683255,49.7176674],[9.6825788,49.7176142],[9.681042,49.7171831],[9.6804518,49.7170111],[9.679592,49.7167604],[9.6793299,49.7166999],[9.6791525,49.7166599],[9.677039,49.7163248],[9.6772339,49.7158361],[9.6777413,49.7144501],[9.6778733,49.71411],[9.6778813,49.7135577],[9.6778947,49.7129402],[9.6779103,49.7122318],[9.6779274,49.7113989],[9.6779017,49.7111661],[9.6777234,49.7099114],[9.6774977,49.708353],[9.6770958,49.7066605],[9.6768288,49.7057861],[9.6768156,49.7057428],[9.6763252,49.7037374],[9.6760918,49.702334],[9.6758954,49.7011278],[9.6758883,49.7010838],[9.6756724,49.7005075],[9.6751302,49.6991129],[9.6750398,49.6988963],[9.6741354,49.6967287],[9.6747535,49.6953959],[9.6749962,49.6948289],[9.6751419,49.6946034],[9.6759401,49.6933299],[9.6757918,49.6932866],[9.6748202,49.692971],[9.6744365,49.6928494],[9.6738877,49.6926754],[9.6736837,49.6926119],[9.6732204,49.6924674],[9.6730455,49.6924128],[9.6729905,49.6923957],[9.6724135,49.6922009],[9.6717822,49.6919877],[9.671224,49.6917903],[9.6699601,49.6914534],[9.6683116,49.6910003],[9.6674688,49.6907597],[9.6670578,49.690643],[9.6667614,49.6905487],[9.6657057,49.6902378],[9.6655307,49.6901787],[9.66508,49.69003],[9.6626817,49.6892017],[9.6594122,49.688904],[9.6582852,49.6888014],[9.6567739,49.6886625],[9.6546378,49.688433],[9.6544733,49.6882733],[9.654265,49.6880708],[9.6532653,49.6870997],[9.6516766,49.6878881],[9.651019,49.6882146],[9.6507048,49.6883705],[9.6501144,49.6886001],[9.6500476,49.6886262],[9.6490897,49.6889989],[9.649556,49.6896071],[9.6498472,49.6901564],[9.6500328,49.6905289],[9.6499196,49.6905656],[9.6491067,49.6907989],[9.6494272,49.6914743],[9.6494553,49.6915176],[9.6489464,49.6916264],[9.6474307,49.6913065],[9.6455399,49.6911033],[9.6451004,49.6909794],[9.6447495,49.6913378],[9.6444958,49.6917492],[9.6441697,49.6921184],[9.6439357,49.6923835],[9.6430391,49.6933345],[9.6427386,49.6932889],[9.6425108,49.6932544],[9.641358,49.6930797],[9.6412845,49.6930851],[9.639761,49.6931953],[9.6388862,49.6931302],[9.6378316,49.6929484],[9.6377492,49.6929323],[9.637467,49.6928834],[9.6366468,49.6929054],[9.6348635,49.6929575],[9.6322601,49.69319],[9.6323105,49.693519],[9.6323309,49.6937531],[9.6322777,49.694536],[9.632803,49.695374],[9.6328843,49.6959966],[9.6328512,49.6962118],[9.6328268,49.6963707],[9.6327694,49.696744],[9.6325648,49.6976363],[9.6324199,49.6982685],[9.6321037,49.6989086],[9.6320906,49.6989351],[9.6318326,49.6996982],[9.6313953,49.7003891],[9.6308764,49.7011184],[9.6305289,49.7016814],[9.630527,49.7017089],[9.6300982,49.7017927],[9.6297049,49.7018992],[9.6290162,49.7020366],[9.6284856,49.7021438],[9.6282571,49.7021901],[9.6275646,49.7023115],[9.6272764,49.7023628],[9.626858,49.7024191],[9.6267699,49.7024195],[9.6266434,49.7024337],[9.6265379,49.7024501],[9.6264748,49.7024845],[9.6263381,49.702565],[9.6262088,49.7026453],[9.6261736,49.7026757],[9.6259783,49.7028447],[9.6259187,49.7028952],[9.6257027,49.7031447],[9.6255217,49.7033758],[9.6254973,49.7034193],[9.6255013,49.7034558],[9.625565,49.7037928],[9.6257895,49.7049787],[9.6260536,49.7053747],[9.6262216,49.7056569],[9.6262807,49.7057476],[9.6264,49.70593],[9.6270042,49.7069337],[9.6272121,49.7073574],[9.6276744,49.7082499],[9.628417,49.7086189],[9.6291673,49.7090403],[9.6301865,49.7096067],[9.6312125,49.7101503],[9.6309986,49.7102379],[9.6304173,49.7105253],[9.6298171,49.7108219],[9.6298725,49.7112348],[9.6299203,49.7115293],[9.6299792,49.711892],[9.6300255,49.7119672],[9.6302984,49.7122198],[9.6305893,49.712518],[9.6306746,49.7126273],[9.6307355,49.7127733],[9.6308,49.712958],[9.6308398,49.7131198],[9.6308948,49.7134142],[9.6309535,49.7137701],[9.6309971,49.7139411],[9.63102,49.7140056],[9.6310581,49.7141144],[9.6311443,49.7143722],[9.6312248,49.7146182],[9.6312489,49.7147823],[9.6312582,49.7149056],[9.6312689,49.715104],[9.6312574,49.7154282],[9.6312466,49.7154911],[9.6310068,49.716676],[9.6311049,49.7167233],[9.6317025,49.7171507],[9.6317717,49.7171948],[9.63235,49.7175621],[9.632711,49.7176997],[9.6327261,49.7177052],[9.6327506,49.7177142],[9.6338264,49.7181469],[9.6344963,49.7187204],[9.6358715,49.7187419],[9.636353,49.7187495],[9.6368498,49.7187595],[9.6370366,49.7187705],[9.6381811,49.7192215],[9.638499,49.7193462],[9.6395126,49.7197177],[9.6403255,49.7200852],[9.6409226,49.720356],[9.64095,49.72037],[9.6398428,49.721084],[9.6385499,49.7223776],[9.6395974,49.7227025],[9.6404003,49.7229723],[9.6412957,49.7232756],[9.641487,49.7233197],[9.6420332,49.7234499],[9.6420124,49.7234746],[9.6412826,49.7239034],[9.6409702,49.7240686],[9.6406541,49.7242314],[9.6400296,49.7245688],[9.6399521,49.7245964],[9.6395839,49.7248736],[9.63918,49.7252432],[9.6387063,49.7256497],[9.6386604,49.7257061],[9.6375275,49.7254496],[9.6366595,49.726848],[9.6361455,49.7267532],[9.6360954,49.7268023],[9.6353533,49.7279697],[9.6353101,49.7280377],[9.6339685,49.7279105],[9.6339211,49.7275817],[9.6329026,49.7276427],[9.631883,49.7278633],[9.6311789,49.728352],[9.630305,49.72897],[9.6297352,49.7293563],[9.629307,49.7296654],[9.6283701,49.7302331],[9.6275568,49.730687],[9.6272883,49.7308255],[9.6263167,49.7312377],[9.6255476,49.7316324],[9.6263035,49.731731],[9.6268336,49.7318173],[9.6271232,49.7318545],[9.6273565,49.7318875],[9.627498,49.731914],[9.6276214,49.7319293],[9.6278014,49.731933],[9.6283585,49.7319412],[9.6287957,49.7319434],[9.6288366,49.7319512],[9.6289327,49.7319698],[9.6297426,49.7321251],[9.6300225,49.7321787],[9.6303471,49.7321999],[9.6306329,49.7322165],[9.6308691,49.7322198],[9.6310877,49.732214],[9.6313062,49.7322013],[9.6315,49.7321912],[9.6317184,49.7321787],[9.6319543,49.7321636],[9.6320565,49.7321515],[9.6325246,49.7320827],[9.6329575,49.7320347],[9.6333586,49.7319778],[9.6338165,49.731925],[9.6344577,49.7318964],[9.6346409,49.7318929],[9.6348137,49.731892],[9.6349512,49.7318912],[9.6350497,49.7318793],[9.6352151,49.7318487],[9.6355209,49.7317785],[9.6357388,49.7317179],[9.6359424,49.731662],[9.6360865,49.7316202],[9.6361986,49.7315783],[9.6363775,49.731502],[9.6368697,49.7321819],[9.6371668,49.7325313],[9.6373393,49.7327342],[9.637889,49.7334778],[9.6380101,49.7338265],[9.6380283,49.7338698],[9.6381656,49.7343645],[9.6382144,49.7345812],[9.6382306,49.734725],[9.6382428,49.734855],[9.6382358,49.735113],[9.6382148,49.7353803],[9.6381761,49.7356362],[9.6380833,49.7363286],[9.6380429,49.7367216],[9.637936,49.7374164],[9.6378814,49.7379501],[9.6378739,49.738024],[9.6379513,49.7380075],[9.6381307,49.7379792],[9.6383205,49.7379279],[9.6389112,49.737815],[9.6390821,49.7377755],[9.6391539,49.7377588],[9.6393896,49.7377188],[9.6395688,49.7376858],[9.6397163,49.7376393],[9.6398496,49.7375906],[9.640004,49.7375327],[9.6400258,49.7375758],[9.6400333,49.7376055],[9.6401,49.7375824],[9.6401946,49.7375453],[9.6403,49.7375081],[9.6404331,49.7374458],[9.6405769,49.7373833],[9.6408083,49.7373089],[9.6409877,49.7372599],[9.6411633,49.7372134],[9.6413214,49.73716],[9.6415747,49.7371175],[9.6417503,49.7370708],[9.6418979,49.7370426],[9.6420527,49.7370166],[9.6421655,49.7370068],[9.6422431,49.7370041],[9.642331,49.7370014],[9.642398,49.7369986],[9.6424897,49.7369959],[9.6425848,49.7369885],[9.6427185,49.7369718],[9.6428275,49.7369438],[9.642947,49.7369157],[9.6430244,49.7368992],[9.6430702,49.7368967],[9.6431371,49.7368896],[9.6433974,49.7368447],[9.6434465,49.7368238],[9.6435059,49.7367938],[9.643555,49.7367706],[9.6437555,49.7367353],[9.6438076,49.7371917],[9.6442273,49.7371894],[9.6446648,49.7372052],[9.6455078,49.7372187],[9.6455627,49.7376248],[9.6455632,49.7376637],[9.6461345,49.7376536],[9.6462616,49.7379268],[9.6465905,49.7384866],[9.6469452,49.739156],[9.646409,49.7393895],[9.6457779,49.7396489],[9.6454131,49.7397902],[9.645119,49.7399585],[9.644382,49.739691],[9.6441282,49.7396924],[9.6435146,49.739705],[9.6430816,49.7397463],[9.6423106,49.7398533],[9.6411555,49.7399648],[9.6401905,49.7400501],[9.6393562,49.7401688],[9.6391566,49.7405262],[9.6388519,49.7409298],[9.6387614,49.741017],[9.6390777,49.7414491],[9.639114,49.7415288],[9.6391556,49.7417272],[9.6392557,49.7425944],[9.6402913,49.742753],[9.640656,49.7428674],[9.6428767,49.7435445],[9.6434924,49.7436895],[9.6440076,49.7437743],[9.6445244,49.7438595],[9.6445793,49.7445829],[9.6445849,49.7446583],[9.644804,49.7454448],[9.6448762,49.7455654],[9.645194,49.7461025],[9.645494,49.7468794],[9.6450653,49.7472402],[9.6445522,49.7476382],[9.6441235,49.7479368],[9.6437028,49.7482303],[9.6431732,49.749079],[9.6428702,49.7499101],[9.64253,49.7500494],[9.6422121,49.7501981],[9.6413201,49.7506324],[9.6405017,49.751039],[9.6393677,49.751643],[9.6392097,49.751737],[9.6391713,49.7517599],[9.6390695,49.7518208],[9.6388797,49.7519344],[9.6384114,49.7515204],[9.6381059,49.7512758],[9.6375221,49.7515871],[9.6378768,49.7518442],[9.6380027,49.7520912],[9.6385,49.7530471],[9.6383471,49.753372],[9.6383122,49.7534107],[9.638038,49.7540098],[9.6375794,49.7549266],[9.6376077,49.7549494],[9.6381402,49.7554842],[9.6382645,49.7555888],[9.6384312,49.7557252],[9.6384529,49.7557382],[9.6387538,49.7559844],[9.6389628,49.7561367],[9.6391898,49.7563392],[9.6394134,49.7565371],[9.6395136,49.756617],[9.6398096,49.7568697],[9.6400601,49.7570834],[9.6402215,49.757191],[9.6404715,49.7573203],[9.6409141,49.7575037],[9.6416225,49.7578338],[9.642037,49.7580208],[9.6423474,49.7581841],[9.6429662,49.7585096],[9.6434525,49.7587777],[9.6436579,49.7589038],[9.6438321,49.7590106],[9.6440645,49.7591434],[9.6446533,49.7597247],[9.6451659,49.7602996],[9.6452619,49.7604339],[9.645376,49.7606093],[9.645522,49.7607983],[9.6457463,49.7610898],[9.6459811,49.7613881],[9.6462091,49.7617001],[9.6464869,49.7620782],[9.6468355,49.762504],[9.6470023,49.7626792],[9.6472826,49.7629066],[9.6477761,49.7633845],[9.6480924,49.763687],[9.6482396,49.7638028],[9.6483596,49.7639104],[9.6487379,49.764226],[9.6490538,49.7645036],[9.6494902,49.7648445],[9.6496211,49.764947],[9.6500822,49.7653061],[9.65073,49.76582],[9.6503762,49.7661939],[9.650172,49.7664746],[9.6498461,49.766761],[9.6495523,49.767077],[9.6492375,49.7674204],[9.6488002,49.7678875],[9.6484925,49.7682423],[9.6482547,49.7685079],[9.6479405,49.7689198],[9.6476477,49.769359],[9.6472221,49.7699904],[9.6468393,49.7706855],[9.6466909,49.7711175],[9.6464244,49.7718192],[9.6463999,49.7718489],[9.6465625,49.7718872],[9.6467251,49.7719232],[9.6468557,49.7719707],[9.6469477,49.7720048],[9.6470468,49.7720454],[9.6471247,49.7720931],[9.6471991,49.7721455],[9.6473197,49.7722386],[9.6473836,49.7722864],[9.6474506,49.7725263],[9.6473361,49.7725468],[9.646136,49.7728655],[9.6460924,49.7731739],[9.6460381,49.7734663],[9.6459212,49.7738867],[9.6457954,49.7740309],[9.6457198,49.7741125],[9.645703,49.7741742],[9.6456891,49.774204],[9.6456513,49.774268],[9.6454496,49.7744745],[9.6450467,49.7749328],[9.6449356,49.775059],[9.6448904,49.7751095],[9.6448802,49.7751324],[9.6448804,49.7751529],[9.6452472,49.7756596],[9.6452655,49.7757052],[9.6452591,49.7757531],[9.645267,49.7758169],[9.6449086,49.7772037],[9.6455254,49.7774081],[9.6455911,49.7774268],[9.6454316,49.7775202],[9.6453798,49.777605],[9.6453488,49.7776531],[9.6453017,49.7778221],[9.6452231,49.7782742],[9.6451514,49.7786921],[9.6451484,49.7787218],[9.6457825,49.7789283],[9.6458034,49.7788985],[9.6459604,49.7787745],[9.6461001,49.7786664],[9.6462919,49.7785126],[9.6464387,49.7784137],[9.6465054,49.778386],[9.6466324,49.7783944],[9.6468094,49.7784322],[9.6483344,49.7787752],[9.649566,49.7790515],[9.6496129,49.7790682],[9.6496866,49.7790942],[9.6498497,49.7791503],[9.6500046,49.7792214],[9.650361,49.7793848],[9.6505275,49.7794608],[9.6512414,49.7797861],[9.651395,49.7799107],[9.6515844,49.7800876],[9.6517633,49.7802784],[9.6518205,49.7803282],[9.6519902,49.7806102],[9.6512985,49.78136],[9.6512382,49.7814254],[9.6509546,49.7817338],[9.6508007,49.7820928],[9.6504615,49.7828111],[9.6504422,49.7829412],[9.6503957,49.7830689],[9.6503052,49.7833175],[9.6502246,49.7835401],[9.6502116,49.7836178],[9.6501779,49.7837251],[9.6501243,49.7839444],[9.6501797,49.7846241],[9.6501802,49.784656],[9.650153,49.7847383],[9.6500455,49.7853731],[9.6499661,49.7857522],[9.6500224,49.7857542],[9.651018,49.7858058],[9.651015,49.7858287],[9.6509436,49.7862762],[9.6508817,49.7868993],[9.6508575,49.7871893],[9.6508192,49.7872374],[9.6499261,49.7887252],[9.6497262,49.7890663],[9.6491889,49.790016],[9.6489652,49.790414],[9.648948,49.7904438],[9.6489415,49.7904964],[9.6489147,49.790606],[9.648875,49.7907956],[9.648822,49.7912772],[9.6487676,49.7912941],[9.6473555,49.7907733],[9.6461049,49.7904798],[9.646066,49.7904326],[9.645956,49.790643],[9.6459027,49.790633],[9.6455641,49.7905408],[9.6455333,49.7905473],[9.6434955,49.7899032],[9.6416166,49.7893062],[9.6415656,49.7892872],[9.6390839,49.7886638],[9.6363313,49.7879607],[9.635707,49.7878018],[9.6334064,49.7869671],[9.6313344,49.7862013],[9.6303118,49.7858259],[9.6295614,49.7856437],[9.6286273,49.7854172],[9.6280507,49.7852774],[9.6271877,49.7850193],[9.6260625,49.7846838],[9.6258345,49.784615],[9.6254704,49.7845314],[9.6249346,49.7844072],[9.6243485,49.7842725],[9.6242842,49.7842565],[9.6238201,49.78415],[9.6230892,49.7839811],[9.6228478,49.783927],[9.6198927,49.7832624],[9.6196258,49.7832035],[9.6195655,49.7831875],[9.6194978,49.7831763],[9.6192701,49.7831763],[9.6180049,49.783175],[9.6177143,49.783175],[9.6156932,49.7831771],[9.6152748,49.783178],[9.6149287,49.783178],[9.6142032,49.7831789],[9.6132671,49.7831771],[9.6126529,49.7831763],[9.6117731,49.7831771],[9.6109443,49.7831771],[9.6108263,49.7831771],[9.6100739,49.7831771],[9.6093712,49.7831771],[9.6092974,49.7831737],[9.6091093,49.783174],[9.6083989,49.7831737],[9.6069224,49.7829286],[9.6059474,49.7827675],[9.6046063,49.7825493],[9.6033148,49.7823441],[9.6031337,49.7823164],[9.603013,49.7822965],[9.602828,49.782267],[9.6026442,49.7822376],[9.6013541,49.7820315],[9.5996375,49.7816842],[9.5984171,49.7814323],[9.5975708,49.7812582],[9.5969539,49.7811292],[9.5965288,49.78104],[9.5948819,49.7806884],[9.5939485,49.7804875],[9.592704,49.780297],[9.5920736,49.7801974],[9.5914406,49.7800978],[9.591273,49.7802848],[9.5907151,49.7806711],[9.5905464,49.780815],[9.5901129,49.7811647],[9.5899815,49.7812746],[9.5898997,49.78124],[9.5893069,49.7809646],[9.5889207,49.7807213],[9.588825,49.7806611],[9.5887546,49.7806172],[9.5884348,49.7805139],[9.5874519,49.7801965],[9.5873808,49.7801775],[9.5855743,49.7796085],[9.585349,49.7795401],[9.5840294,49.7791236],[9.5831429,49.778843],[9.5828827,49.7787616],[9.5821196,49.7785208],[9.5816958,49.7783874],[9.5814611,49.7784074],[9.5813887,49.7783286],[9.5813472,49.7782801],[9.5811755,49.7782991],[9.5807209,49.778345],[9.5799819,49.7784169],[9.5789533,49.7785225],[9.5781607,49.7786005],[9.5776296,49.7786161],[9.5775304,49.7786429],[9.5773185,49.7787009],[9.5772233,49.7787261],[9.5768638,49.7788196],[9.5767928,49.7788386],[9.5767123,49.7789521],[9.5766345,49.7790664],[9.57655,49.779192],[9.5766157,49.7792621],[9.5766815,49.7793323],[9.57677,49.7794292],[9.5767485,49.7794656],[9.576719,49.7795107],[9.5766385,49.7796319],[9.5767431,49.7796942],[9.5768705,49.7797687],[9.5770824,49.7798995],[9.577344,49.7800155],[9.5778241,49.7802511],[9.5777892,49.7803662],[9.5777503,49.7805074],[9.5777007,49.7806832],[9.5774445,49.7810876],[9.5771978,49.7814972],[9.5770771,49.7817561],[9.5764937,49.7829615],[9.5764714,49.783009],[9.5777341,49.7831027],[9.5796457,49.7832455],[9.580155,49.783284],[9.5801086,49.7835558],[9.5800925,49.7836268],[9.5800339,49.7839546],[9.579997,49.784159],[9.5792318,49.7841514],[9.578796,49.7841126],[9.5785629,49.7840911],[9.5782202,49.7840543],[9.5775993,49.783976],[9.5771795,49.7839297],[9.5763353,49.783837],[9.5756252,49.7837783],[9.5750994,49.7837383],[9.5744437,49.7836887],[9.5738195,49.783638],[9.5732518,49.7835869],[9.5729571,49.7835603],[9.5724498,49.7835029],[9.5720293,49.7834513],[9.5719241,49.7834401],[9.5717773,49.7834226],[9.5716335,49.7834055],[9.5715114,49.783391],[9.5711138,49.7833415],[9.5704684,49.783261],[9.5695833,49.7831484],[9.568829,49.7830551],[9.5682408,49.7829692],[9.5678237,49.7829007],[9.5671827,49.7827683],[9.5665972,49.7826312],[9.5658682,49.782424],[9.5656027,49.782334],[9.5651487,49.7821821],[9.5650716,49.7821539],[9.5648677,49.7820777],[9.5645271,49.7819443],[9.564173,49.7818092],[9.5637707,49.7816412],[9.5634304,49.7814981],[9.5627196,49.7811838],[9.5619926,49.7808359],[9.5615931,49.7806381],[9.5611946,49.7804323],[9.5606629,49.7801531],[9.5602163,49.7798976],[9.5595699,49.7795166],[9.5594116,49.7794049],[9.5591147,49.7791899],[9.5590541,49.7791467],[9.5588572,49.7789841],[9.5586856,49.7788303],[9.5586232,49.7787753],[9.5583939,49.7785489],[9.5582631,49.7784095],[9.5582195,49.7783618],[9.558074,49.7781865],[9.5579071,49.7779682],[9.5578414,49.7778808],[9.5577119,49.7776941],[9.5576375,49.7775854],[9.5575376,49.7774213],[9.557443,49.7772637],[9.5572915,49.7769892],[9.5571084,49.7765869],[9.5570347,49.7764137],[9.5569723,49.7762301],[9.55691,49.7760525],[9.5568483,49.7758577],[9.5567665,49.7755039],[9.5567269,49.7752761],[9.5566793,49.7748959],[9.5566632,49.7745967],[9.5566659,49.7742667],[9.5566779,49.7740658],[9.556686,49.7739233],[9.5567309,49.7735873],[9.5567832,49.7733136],[9.5568429,49.7730078],[9.5569059,49.7726969],[9.5569408,49.7725159],[9.5569877,49.7721859],[9.5570186,49.7719733],[9.5570323,49.7718737],[9.5570769,49.7714781],[9.5571098,49.7711875],[9.5571319,49.7709891],[9.5571359,49.7708748],[9.5571473,49.7706725],[9.5571628,49.7704612],[9.5571715,49.7702065],[9.5571829,49.7695682],[9.557199,49.7688679],[9.5572171,49.7685088],[9.5572419,49.7681788],[9.5572686,49.7679417],[9.5572867,49.7677784],[9.5573203,49.7675335],[9.557376,49.7671195],[9.5574732,49.7666205],[9.5575148,49.7664191],[9.5575584,49.7662208],[9.5576067,49.7660042],[9.5576368,49.7658686],[9.557777,49.7653502],[9.5578313,49.7651774],[9.5579842,49.7646944],[9.5581505,49.7642383],[9.5582135,49.7640647],[9.5582745,49.7639118],[9.5584442,49.7634929],[9.5586044,49.7631442],[9.5586983,49.7629394],[9.5587761,49.7627865],[9.5589149,49.7625274],[9.5590296,49.7623052],[9.5590631,49.7622368],[9.5591905,49.7620285],[9.5592871,49.7618699],[9.559393,49.7616993],[9.5594473,49.7616135],[9.5595781,49.7614203],[9.5596968,49.7612457],[9.5598718,49.7610001],[9.5600595,49.760748],[9.5601836,49.760583],[9.5603224,49.7604145],[9.5605148,49.760178],[9.5606892,49.7599679],[9.5608917,49.7597457],[9.5610821,49.7595365],[9.5612887,49.7593238],[9.5614348,49.7591774],[9.5616856,49.758927],[9.5619545,49.7586666],[9.5621805,49.7584492],[9.5624011,49.7582374],[9.5626847,49.7579675],[9.5630006,49.7576612],[9.5632111,49.7574576],[9.5633989,49.75728],[9.5636061,49.7570812],[9.5637536,49.7569369],[9.5639005,49.7567957],[9.5640956,49.7566077],[9.5642639,49.7564483],[9.5644738,49.7562486],[9.5646468,49.7560796],[9.5648345,49.7558964],[9.564913,49.7558214],[9.565143,49.7555966],[9.5652791,49.755464],[9.5654059,49.755341],[9.5655272,49.7552201],[9.5656345,49.7551127],[9.5658343,49.7549021],[9.5659865,49.7547414],[9.5660985,49.7546227],[9.566291,49.7544091],[9.5664123,49.7542727],[9.5665237,49.754147],[9.5666383,49.7540119],[9.5667778,49.7538477],[9.5670118,49.7535717],[9.5671757,49.7533746],[9.567255,49.7532614],[9.5672717,49.7532406],[9.5672899,49.7532168],[9.5673033,49.7532001],[9.5673237,49.7531739],[9.5673543,49.7531345],[9.5673693,49.753115],[9.5673857,49.753094],[9.567426,49.7530422],[9.5674702,49.7529861],[9.5675359,49.7528984],[9.567656,49.7527305],[9.5676768,49.7527004],[9.5676983,49.7526713],[9.5678669,49.7524411],[9.5679682,49.7522951],[9.5682062,49.7519455],[9.5683692,49.7517007],[9.5686038,49.7513164],[9.5686313,49.7512713],[9.5686535,49.7512397],[9.5686997,49.7511535],[9.5687728,49.7510135],[9.5688399,49.750861],[9.5689103,49.7506817],[9.5689733,49.7504585],[9.5690122,49.7502389],[9.5690357,49.7499594],[9.5690243,49.749696],[9.5689861,49.7494217],[9.5689512,49.749284],[9.5688841,49.7490127],[9.568809,49.7487736],[9.5687424,49.7485574],[9.5686259,49.7482558],[9.5684562,49.7478737],[9.5682624,49.7474846],[9.5680485,49.7471128],[9.5678722,49.7468403],[9.5675657,49.7464009],[9.5673337,49.7461158],[9.5670125,49.7457367],[9.5668187,49.7455391],[9.5667289,49.7454407],[9.566637,49.7453463],[9.5664647,49.745189],[9.5662937,49.7450464],[9.5660496,49.744877],[9.5658417,49.7447548],[9.565595,49.7446339],[9.5653971,49.7445481],[9.5651631,49.7444671],[9.5648889,49.7443887],[9.5646052,49.7443237],[9.5643578,49.7442829],[9.5640815,49.7442513],[9.5638783,49.74424],[9.5634599,49.7442283],[9.5632983,49.7442236],[9.5628531,49.744221],[9.5625185,49.7442335],[9.562324,49.7442366],[9.562037,49.7442522],[9.5616099,49.7442782],[9.5614302,49.7442951],[9.5609956,49.7443349],[9.5607449,49.7443679],[9.560431,49.7444099],[9.560138,49.7444532],[9.5596391,49.7445403],[9.559452,49.744578],[9.5592321,49.7446205],[9.5588908,49.7446994],[9.5585595,49.7447769],[9.5582363,49.7448718],[9.5581129,49.7449104],[9.5578729,49.7449884],[9.5577448,49.7450352],[9.5574866,49.7451305],[9.557317,49.7452029],[9.5570468,49.7453185],[9.556857,49.7454143],[9.5566163,49.7455369],[9.5563641,49.7456825],[9.5562367,49.7457544],[9.5560423,49.7458836],[9.5559558,49.7459408],[9.5556849,49.746144],[9.5555749,49.7462259],[9.5553053,49.746465],[9.555198,49.7465682],[9.5551101,49.7466617],[9.5547333,49.7470755],[9.5544001,49.7475201],[9.5543431,49.7476141],[9.554272,49.7477142],[9.5540192,49.7481488],[9.553924,49.7483368],[9.5538837,49.7484183],[9.5537208,49.7488065],[9.5536571,49.7489958],[9.5536021,49.7491574],[9.5535304,49.7494144],[9.5534405,49.7498693],[9.5534009,49.7502311],[9.5533741,49.7507362],[9.5533453,49.7512752],[9.5532601,49.7521499],[9.5532306,49.7524138],[9.5531354,49.7530822],[9.5530838,49.7533729],[9.5529745,49.7539808],[9.5529423,49.7542407],[9.5529523,49.7544582],[9.5529886,49.7546436],[9.5530663,49.7548944],[9.5530878,49.7550075],[9.5530972,49.7551474],[9.5530972,49.7552328],[9.5530844,49.7553263],[9.5530744,49.7554121],[9.5530523,49.7555793],[9.5530368,49.755656],[9.5530107,49.7557855],[9.5529872,49.7559099],[9.5529175,49.7561672],[9.5528732,49.7563032],[9.5527948,49.7565484],[9.5526499,49.7569959],[9.552499,49.7574902],[9.552314,49.7581339],[9.5521725,49.758636],[9.5520323,49.7591281],[9.551866,49.7596825],[9.5517367,49.760117],[9.5516864,49.7602955],[9.5516053,49.7605515],[9.5515389,49.7607226],[9.5514926,49.7608434],[9.5513417,49.7611769],[9.5511969,49.7614607],[9.5510822,49.761653],[9.5509521,49.7618553],[9.5508335,49.7620303],[9.5507262,49.7621819],[9.5505793,49.7623815],[9.5505002,49.7624825],[9.5503379,49.7626865],[9.5502507,49.7627961],[9.5501106,49.7629719],[9.5500335,49.7630577],[9.5499074,49.7631993],[9.549778,49.7633436],[9.5496399,49.7634895],[9.5495098,49.7636212],[9.5494032,49.7637312],[9.5493126,49.7638235],[9.5491685,49.763953],[9.5490102,49.7640959],[9.5488982,49.7641971],[9.5487637,49.7643131],[9.5486454,49.7644147],[9.5485066,49.7645325],[9.5483692,49.7646469],[9.5481647,49.7648045],[9.5480346,49.764905],[9.5479119,49.7649986],[9.5476872,49.7651558],[9.5473888,49.7653654],[9.5472413,49.7654698],[9.5471052,49.7655564],[9.5469302,49.7656669],[9.5466633,49.7658367],[9.5463166,49.7660437],[9.5461738,49.7661247],[9.5459699,49.766239],[9.5457768,49.7663417],[9.5456159,49.766427],[9.5454033,49.7665387],[9.5452115,49.7666293],[9.5450225,49.7667172],[9.5448427,49.7668016],[9.544712,49.7668549],[9.5445229,49.7669311],[9.5442446,49.7670329],[9.5440904,49.7670879],[9.5438765,49.767162],[9.5434232,49.7672997],[9.5431724,49.7673642],[9.5428874,49.7674374],[9.542528,49.7675089],[9.5421632,49.7675825],[9.5418843,49.7676237],[9.5415751,49.7676704],[9.541321,49.7676969],[9.5409844,49.7677332],[9.5407383,49.7677471],[9.5403299,49.7677701],[9.5400999,49.767774],[9.5399651,49.7677757],[9.5397546,49.7677787],[9.5394589,49.7677835],[9.5392456,49.7677861],[9.5389459,49.7677869],[9.5386455,49.7677874],[9.538392,49.7677878],[9.5379944,49.767764],[9.5376846,49.7677337],[9.5375679,49.7677229],[9.5373969,49.7676956],[9.537116,49.767651],[9.5369222,49.7676111],[9.53666,49.7675552],[9.5364763,49.7675041],[9.5363663,49.7674734],[9.5362,49.7674266],[9.53597,49.7673448],[9.5357715,49.7672724],[9.5354436,49.7671373],[9.5352612,49.7670476],[9.5351211,49.7669792],[9.5347757,49.7667826],[9.5345893,49.7666535],[9.534419,49.7665353],[9.5341541,49.7663495],[9.5338417,49.7661281],[9.5334829,49.7658739],[9.533151,49.7656426],[9.5328157,49.7654087],[9.5324979,49.765187],[9.5323323,49.7650705],[9.5318957,49.7647837],[9.5315725,49.7645724],[9.5312775,49.7643827],[9.5309724,49.7641895],[9.5307571,49.7640543],[9.5304923,49.7638876],[9.5301261,49.7636589],[9.5297654,49.7634341],[9.5294717,49.7632504],[9.5291746,49.7630629],[9.5289426,49.7629165],[9.5286583,49.7627385],[9.5282814,49.7625024],[9.5278838,49.762252],[9.5274889,49.7620047],[9.5273809,49.7619376],[9.5271133,49.7617873],[9.5268062,49.7616253],[9.526477,49.7614802],[9.5262235,49.7613823],[9.5260887,49.7613311],[9.5258956,49.7612692],[9.5255711,49.7611648],[9.5252847,49.7610907],[9.5250286,49.7610327],[9.5247382,49.7609768],[9.5246263,49.7609556],[9.5240677,49.7608802],[9.5236419,49.7608434],[9.5232416,49.7608265],[9.5229217,49.7608257],[9.5226609,49.7608317],[9.5223853,49.7608473],[9.5222545,49.7608542],[9.5218421,49.7608971],[9.5215672,49.7609305],[9.521301,49.7609625],[9.5209208,49.7610097],[9.5204655,49.7610635],[9.5201919,49.7610959],[9.5196105,49.7611908],[9.5192189,49.7612675],[9.5190198,49.7613186],[9.5188381,49.761358],[9.5183157,49.7614992],[9.5178939,49.7616331],[9.5173756,49.7618198],[9.5171637,49.7619094],[9.5170195,49.7619714],[9.5169035,49.7620212],[9.5167406,49.7621009],[9.5164368,49.7622512],[9.5163711,49.7622828],[9.5159413,49.7625236],[9.5155664,49.7627575],[9.5152855,49.7629611],[9.5151024,49.7630945],[9.514682,49.7634337],[9.5145593,49.7635406],[9.5144818,49.7636091],[9.5142696,49.7637858],[9.513991,49.7640184],[9.5137376,49.7642471],[9.5135109,49.7644524],[9.513289,49.7646547],[9.5130261,49.7649063],[9.5128189,49.7651042],[9.5126244,49.7652983],[9.5124065,49.765517],[9.5122872,49.7656379],[9.5122241,49.7657007],[9.5120203,49.7659259],[9.5116535,49.7663226],[9.5116133,49.7663664],[9.511561,49.7664279],[9.5112357,49.7668047],[9.5111056,49.7669528],[9.5108207,49.7673032],[9.5106296,49.7675435],[9.5104445,49.7677796],[9.510301,49.7679693],[9.510252,49.7680336],[9.5101079,49.7682517],[9.5100743,49.7683028],[9.5099342,49.7685358],[9.509845,49.7686986],[9.5097659,49.7688571],[9.5096854,49.7690239],[9.5095915,49.7692703],[9.5095272,49.769431],[9.5094534,49.7696904],[9.5094266,49.7697844],[9.5093917,49.7699463],[9.5093689,49.7700503],[9.5093522,49.7701637],[9.5093287,49.7703214],[9.5092925,49.7707436],[9.5093025,49.7711226],[9.509332,49.7714604],[9.5093696,49.7716652],[9.5093971,49.771799],[9.5094165,49.7718934],[9.5095453,49.7723321],[9.5096747,49.7727115],[9.5098088,49.7731008],[9.5100911,49.7739223],[9.5103868,49.7747802],[9.5104378,49.774927],[9.5105726,49.7753219],[9.5106839,49.7756367],[9.510771,49.7758844],[9.5108582,49.7761312],[9.5110741,49.7766158],[9.511284,49.7770289],[9.5115522,49.7775546],[9.5117809,49.7780019],[9.5120075,49.7784444],[9.5122691,49.7789588],[9.5124387,49.7792991],[9.5125312,49.7794866],[9.5126244,49.7797473],[9.5127076,49.7800218],[9.5127599,49.7802989],[9.5127874,49.7805821],[9.5127934,49.780877],[9.5127753,49.7810705],[9.5127371,49.7813563],[9.5126915,49.7815446],[9.5126493,49.7817143],[9.5125654,49.7819369],[9.5125011,49.7820997],[9.5123931,49.7823136],[9.5122798,49.7825192],[9.5122436,49.7825859],[9.5121222,49.7827673],[9.5119049,49.7830509],[9.5116454,49.7833401],[9.5115033,49.783477],[9.511394,49.7835817],[9.511227,49.7837229],[9.5110922,49.7838367],[9.5109628,49.7839329],[9.5107509,49.7840905],[9.5105819,49.7842],[9.5104814,49.7842641],[9.5103231,49.784358],[9.5100227,49.7845347],[9.5096459,49.7847559],[9.5090497,49.7851057],[9.5085488,49.7854001],[9.5080482,49.7856946],[9.5077884,49.7858495],[9.5076048,49.785959],[9.5074197,49.7860676],[9.5070498,49.7862847],[9.5066118,49.7865409],[9.5062047,49.7867781],[9.5055174,49.7871833],[9.5050735,49.7874448],[9.5047168,49.7876522],[9.5043285,49.7878786],[9.5042507,49.7879184],[9.5040844,49.7880033],[9.5039738,49.7880544],[9.5037807,49.7881427],[9.503432,49.7882864],[9.5031001,49.7883985],[9.5027789,49.788492],[9.5025039,49.7885643],[9.5021801,49.7886353],[9.5018408,49.7886977],[9.5014753,49.7887501],[9.5012413,49.7887713],[9.5009007,49.7888029],[9.5005386,49.788815],[9.5001597,49.7888172],[9.4998606,49.7888189],[9.4994985,49.7888193],[9.4988789,49.7888202],[9.4985517,49.7888211],[9.4978403,49.7888202],[9.4974406,49.7888094],[9.4972234,49.7887981],[9.4966943,49.7887479],[9.4963174,49.7886973],[9.4961659,49.7886687],[9.4954967,49.7885713],[9.4950829,49.7885245],[9.494682,49.7884908],[9.4943769,49.7884682],[9.493947,49.7884479],[9.4925523,49.7884115],[9.4914465,49.7883817],[9.4912554,49.788376],[9.4910026,49.7883691],[9.490153,49.7883449],[9.4896307,49.7883314],[9.4885464,49.7882998],[9.4875708,49.7882717],[9.4870611,49.7882587],[9.4862136,49.7882366],[9.485676,49.7882213],[9.4847733,49.7881906],[9.4846968,49.7881864],[9.4844073,49.7881708],[9.4838634,49.7881366],[9.4833143,49.7880929],[9.4824372,49.7880124],[9.4820885,49.7879674],[9.4817123,49.787902],[9.4812422,49.7878033],[9.48086,49.7877024],[9.4805046,49.7875946],[9.4803149,49.7875292],[9.480042,49.7874227],[9.4797603,49.7873063],[9.4794928,49.7871812],[9.4792816,49.7870738],[9.4789738,49.7869028],[9.4785513,49.786624],[9.4783213,49.7864447],[9.4781,49.7862642],[9.4778895,49.7860755],[9.4772404,49.7855126],[9.4760777,49.7845013],[9.475281,49.7838124],[9.474414,49.7830578],[9.4741659,49.7828417],[9.4732553,49.7820494],[9.4727215,49.7815874],[9.4720315,49.7809908],[9.4718451,49.780818],[9.4716794,49.7806452],[9.4715447,49.7804785],[9.4714092,49.7802867],[9.4712959,49.7800897],[9.4712194,49.7799139],[9.471151,49.7797264],[9.47109,49.7794701],[9.4709096,49.7785547],[9.4707232,49.7776104],[9.4705921,49.7769078],[9.4705046,49.7764854],[9.4703947,49.7759328],[9.4703169,49.7756999],[9.4702297,49.7754764],[9.4701177,49.7752456],[9.4699896,49.7750243],[9.4698435,49.7748048],[9.4697087,49.7746298],[9.4695109,49.7744008],[9.4693325,49.7742128],[9.4691568,49.7740569],[9.4691126,49.7740201],[9.4689074,49.7738491],[9.4686405,49.7736498],[9.4684018,49.7734888],[9.4681751,49.7733549],[9.4679344,49.7732211],[9.4675757,49.7730436],[9.4672055,49.7728686],[9.4665095,49.7725395],[9.4659905,49.772294],[9.4647902,49.7717271],[9.4642739,49.7714828],[9.4636891,49.7712065],[9.4629307,49.7708479],[9.4621663,49.7704863],[9.4616225,49.7702482],[9.461112,49.7700646],[9.4605804,49.7698923],[9.460207,49.7697979],[9.4595375,49.7696572],[9.4590228,49.7695716],[9.4585434,49.769509],[9.4581028,49.7694692],[9.4575135,49.7694474],[9.4571643,49.7694421],[9.4566278,49.7694615],[9.456169,49.7694969],[9.455705,49.7695572],[9.4552525,49.7696342],[9.4545798,49.7697619],[9.4538751,49.7699578],[9.4531234,49.7702086],[9.4524879,49.7704527],[9.451789,49.7707287],[9.45109,49.7710229],[9.45037,49.7712647],[9.4497029,49.7714904],[9.4492264,49.7716227],[9.4484854,49.7718187],[9.4477336,49.7720832],[9.4472322,49.7722794],[9.4466673,49.772528],[9.4461589,49.7727881],[9.4456927,49.7730345],[9.4450954,49.7734361],[9.4445935,49.7738423],[9.4441527,49.7742583],[9.4434696,49.7748877],[9.4430157,49.7754952],[9.4427811,49.7759029],[9.4422537,49.776835],[9.4418538,49.777529],[9.4413502,49.7783949],[9.44089,49.7790778],[9.440002,49.7803923],[9.4399488,49.7804711],[9.4393522,49.7817759],[9.4389751,49.7826113],[9.4386029,49.78328],[9.4382789,49.7838548],[9.4378742,49.7844735],[9.4375313,49.7849618],[9.4371394,49.7854799],[9.4367812,49.7858767],[9.43644,49.7862257],[9.4361014,49.786506],[9.4356682,49.7868416],[9.4351856,49.7871752],[9.4348216,49.7873964],[9.4343835,49.7876339],[9.4339699,49.7878438],[9.433503,49.7880426],[9.4329834,49.788244],[9.4323196,49.7884918],[9.4322319,49.788518],[9.4317994,49.7886475],[9.4314935,49.7887291],[9.4309166,49.7888828],[9.4303395,49.7890115],[9.4297234,49.7891174],[9.4290047,49.7892079],[9.4283173,49.7892823],[9.427584,49.7893386],[9.4269177,49.7893854],[9.4262724,49.7894299],[9.4258385,49.7894596],[9.4253665,49.7895214],[9.4248802,49.7895765],[9.4244747,49.7896013],[9.4240935,49.7896056],[9.4236769,49.789594],[9.4234227,49.7895747],[9.4230338,49.7895243],[9.4224965,49.789454],[9.4219441,49.7893313],[9.4215971,49.7892348],[9.4210973,49.7890685],[9.4206819,49.7888742],[9.4202593,49.7886686],[9.419822,49.7884242],[9.4192816,49.7881119],[9.4187371,49.7877699],[9.4183745,49.7875548],[9.417894,49.787233],[9.4171499,49.78673],[9.4164835,49.7862243],[9.4155672,49.7854982],[9.4149612,49.7849717],[9.4149333,49.7849476],[9.4143405,49.7844663],[9.4136494,49.7839252],[9.4133441,49.7837164],[9.4129572,49.7835235],[9.4125884,49.7833282],[9.4123284,49.7831654],[9.4120688,49.782975],[9.4117111,49.7826724],[9.4112729,49.7823035],[9.4108484,49.7819345],[9.4101504,49.7813683],[9.40947,49.7808227],[9.4088669,49.7803183],[9.4085197,49.7800296],[9.4080043,49.7795987],[9.4077133,49.7793649],[9.4069697,49.7787368],[9.40642,49.7782299],[9.4062754,49.7780784],[9.4062561,49.7780614],[9.4061008,49.7779256],[9.4057712,49.7776573],[9.4053186,49.7773271],[9.4047499,49.776944],[9.4042233,49.7766112],[9.4037455,49.7763608],[9.4031798,49.7760736],[9.4025859,49.7757772],[9.4018658,49.7753913],[9.4012507,49.7750993],[9.4005648,49.7748414],[9.4000473,49.7746549],[9.3997259,49.7745592],[9.3992423,49.774462],[9.3986388,49.7743834],[9.3981588,49.774309],[9.3976645,49.7742027],[9.3972161,49.7740689],[9.3967216,49.7738896],[9.3963787,49.7737212],[9.3959403,49.7734527],[9.3956077,49.7732021],[9.3953636,49.7729948],[9.3950237,49.7726735],[9.3946837,49.7723178],[9.3941032,49.771764],[9.3937456,49.7714313],[9.3934273,49.7711921],[9.3930807,49.7709714],[9.3926886,49.7707893],[9.3922928,49.7706166],[9.391869,49.7704896],[9.3909973,49.7703155],[9.3903763,49.7702118],[9.3896882,49.7701538],[9.3891062,49.770171],[9.3887008,49.7702152],[9.3882603,49.7702938],[9.3877107,49.7704365],[9.3872599,49.7706064],[9.3865027,49.7709164],[9.3856785,49.7712744],[9.3848792,49.7716322],[9.3842984,49.7719327],[9.3836085,49.7723019],[9.3829046,49.7727212],[9.3822783,49.7731451],[9.3813285,49.7738759],[9.3812655,49.7739237],[9.3807292,49.7743951],[9.3803668,49.774723],[9.3800075,49.7751057],[9.3795771,49.7755546],[9.3792033,49.7759922],[9.3789076,49.7763341],[9.3786375,49.776589],[9.3783283,49.7768738],[9.378002,49.777099],[9.3776971,49.7772901],[9.3774667,49.7774196],[9.37709,49.77758],[9.3765462,49.7778077],[9.3758527,49.778073],[9.3751769,49.7783064],[9.3747064,49.7784741],[9.3739743,49.7786959],[9.3734192,49.7788473],[9.3728534,49.7789851],[9.3723728,49.7790751],[9.3718713,49.7791514],[9.3714406,49.7791776],[9.3710493,49.7791814],[9.3705053,49.7791868],[9.3700531,49.7791715],[9.369615,49.779138],[9.3691166,49.7790725],[9.3687419,49.779016],[9.3684309,49.7789365],[9.3681548,49.7788183],[9.3679497,49.7786838],[9.3677019,49.7785061],[9.3672487,49.7781438],[9.3667212,49.7777039],[9.3661512,49.7771956],[9.3656483,49.7767556],[9.3651666,49.7762496],[9.3646389,49.7757434],[9.3642316,49.775349],[9.3637784,49.7749478],[9.3632295,49.7744485],[9.3628437,49.7741386],[9.3625676,49.7739358],[9.3622244,49.7737262],[9.3618316,49.7734825],[9.3613861,49.7732571],[9.3609015,49.7730158],[9.3598999,49.77255],[9.3591304,49.7721972],[9.3582971,49.771752],[9.3576933,49.7714577],[9.356987,49.7711062],[9.356175,49.7707068],[9.3552887,49.7703323],[9.3544661,49.7699945],[9.353799,49.7697892],[9.3533647,49.7696569],[9.3525989,49.7694492],[9.3517378,49.7692646],[9.3508942,49.7690981],[9.3500225,49.7689385],[9.3492318,49.7688154],[9.3485084,49.7687287],[9.3476369,49.7686651],[9.3468852,49.7685991],[9.3459925,49.7685606],[9.3450576,49.7685106],[9.3439637,49.7684744],[9.3429685,49.7684427],[9.3419101,49.768427],[9.3408799,49.7684342],[9.3395673,49.7684916],[9.3383183,49.7685765],[9.3376552,49.7686383],[9.3370167,49.7687206],[9.3354679,49.7689334],[9.334413,49.7690937],[9.3336298,49.7691943],[9.3331995,49.7692309],[9.3327337,49.769247],[9.3322448,49.7692607],[9.3321552,49.7692632],[9.3312533,49.7692996],[9.3297732,49.7693039],[9.3294927,49.769308],[9.3289081,49.7693081],[9.3279628,49.7693066],[9.3264861,49.7693562],[9.325419,49.7694198],[9.3248199,49.7694443],[9.3244212,49.7694325],[9.3237036,49.7693623],[9.3227342,49.769249],[9.3222044,49.7692135],[9.3209186,49.769131],[9.3202753,49.7690668],[9.3192495,49.7689473],[9.3184706,49.7688251],[9.3176344,49.7686648],[9.3170565,49.7685337],[9.3163428,49.7683356],[9.3158122,49.7681218],[9.315391,49.7679116],[9.3148328,49.7675724],[9.3144228,49.7672431],[9.3141088,49.7669358],[9.31384,49.7666097],[9.3135858,49.7661579],[9.3133946,49.7656757],[9.3132776,49.765211],[9.3132032,49.7645949],[9.3132032,49.7638573],[9.3132497,49.7628451],[9.3132617,49.7621598],[9.3133052,49.7616158],[9.3133329,49.7609965],[9.3134004,49.760281],[9.3135132,49.7598277],[9.3136513,49.7594106],[9.3138352,49.7589862],[9.3141956,49.7584206],[9.3145679,49.7579167],[9.3150773,49.7573884],[9.3162617,49.7563323],[9.317022,49.7556873],[9.3179125,49.7548811],[9.3190773,49.7538826],[9.3191009,49.7538523],[9.3191383,49.7538146],[9.3195588,49.753393],[9.3201859,49.7527768],[9.3206157,49.7523133],[9.3211481,49.7517323],[9.3215971,49.7511931],[9.3220658,49.7505991],[9.3223621,49.7501575],[9.3228211,49.7494424],[9.3230729,49.7489236],[9.3233207,49.7482267],[9.3234722,49.7476313],[9.323645,49.746901],[9.3237335,49.7464775],[9.3237628,49.7460775],[9.3237453,49.7456392],[9.3236638,49.7451833],[9.3235605,49.7448395],[9.3234294,49.7445212],[9.3232405,49.744144],[9.3230642,49.743842],[9.322903,49.7435879],[9.3226127,49.7432393],[9.3225033,49.7431373],[9.3222378,49.7428801],[9.3219651,49.742655],[9.3213069,49.7421299],[9.320847,49.7417934],[9.3204088,49.7415231],[9.3199068,49.741246],[9.3193841,49.7410147],[9.3189003,49.740822],[9.3182968,49.7406226],[9.3175485,49.7404441],[9.3168501,49.7403158],[9.3163,49.7402304],[9.3158099,49.7401928],[9.3151858,49.7401509],[9.3145973,49.7401453],[9.3127721,49.740211],[9.31193,49.7402336],[9.3108269,49.7402428],[9.3100587,49.7402513],[9.3090931,49.7402694],[9.3083389,49.7402961],[9.3076378,49.7403228],[9.306778,49.7403612],[9.3058514,49.7404065],[9.3041672,49.7404969],[9.3021589,49.7406175],[9.3010631,49.7406587],[9.2996287,49.7406549],[9.2986629,49.7406159],[9.2968898,49.7405102],[9.2956877,49.7404603],[9.295705,49.7403812],[9.295774,49.7400656],[9.2958359,49.7397235],[9.2960637,49.7386511],[9.2961446,49.7386031],[9.2965796,49.7384833],[9.2972462,49.7382999],[9.2989253,49.7378994],[9.2996645,49.7377063],[9.3006817,49.7374648],[9.3016923,49.7372596],[9.3023434,49.7371054],[9.3033395,49.7368502],[9.3041523,49.7365953],[9.3049794,49.7363517],[9.3058454,49.7361492],[9.3065757,49.7363344],[9.3069241,49.7362266],[9.307659,49.7359034],[9.3085353,49.7356598],[9.3098835,49.7352612],[9.3111357,49.7348947],[9.3116288,49.7347977],[9.3122483,49.7346961],[9.3123894,49.7347072],[9.3129856,49.7348677],[9.314495,49.7350923],[9.3159334,49.7352031],[9.3165291,49.7352632],[9.3167818,49.7350392],[9.3173429,49.7344929],[9.3180023,49.7338917],[9.318718,49.7332356],[9.3194509,49.7325658],[9.3200337,49.7320925],[9.321447,49.7314689],[9.3219445,49.7313349],[9.3225488,49.7311723],[9.3229425,49.7310662],[9.3240882,49.7311662],[9.3248637,49.7312282],[9.3255192,49.7312882],[9.3267109,49.7314109],[9.3279202,49.7315448],[9.3297242,49.7318745],[9.3299764,49.7319208],[9.3310172,49.7321736],[9.3313918,49.732371],[9.3322125,49.7329573],[9.3322453,49.7329778],[9.3326625,49.7332391],[9.332933,49.7334156],[9.3332671,49.7335875],[9.3333403,49.7336106],[9.33575,49.7340125],[9.3381905,49.7342937],[9.3415327,49.7341672],[9.3422773,49.7340143],[9.3427505,49.7339129],[9.3429728,49.7338425],[9.3434138,49.7337242],[9.3437386,49.7336059],[9.3441623,49.7334511],[9.3444165,49.7333646],[9.3447376,49.7332645],[9.3452351,49.7331212],[9.3457115,49.732978],[9.3462548,49.7328349],[9.346696,49.7327029],[9.346897,49.7326711],[9.3472285,49.7326146],[9.34756,49.7325739],[9.348491,49.7324747],[9.3488753,49.7324433],[9.3493828,49.7324165],[9.3500528,49.7323581],[9.3506698,49.7322835],[9.3511073,49.7322065],[9.3510897,49.7321562],[9.3511041,49.7321059],[9.3515732,49.7320106],[9.3519857,49.7319586],[9.3520261,49.7319573],[9.3521751,49.7319521],[9.3523666,49.7319454],[9.3526452,49.7319138],[9.3528919,49.7318776],[9.3533151,49.7317913],[9.3537386,49.7316754],[9.3541161,49.7315845],[9.3545465,49.7314548],[9.3550336,49.7313023],[9.3555417,49.7311591],[9.3559789,49.7310637],[9.3566103,49.7309777],[9.3573297,49.730885],[9.3575854,49.7308568],[9.3583945,49.7307677],[9.3586975,49.7307406],[9.3590221,49.7307205],[9.3593533,49.7307255],[9.3595048,49.7307395],[9.359769,49.7307741],[9.3610791,49.7309953],[9.3614031,49.7310643],[9.3622872,49.7312506],[9.3630936,49.7314459],[9.36328,49.7315123],[9.3633784,49.7315514],[9.3635831,49.7315472],[9.3642602,49.7314017],[9.3648281,49.7312791],[9.3653609,49.7311564],[9.3661443,49.7308945],[9.3662199,49.7308674],[9.3670723,49.730562],[9.3677111,49.730332],[9.3681522,49.7301498],[9.3687524,49.7299105],[9.3689359,49.7298331],[9.3694653,49.7296189],[9.3698572,49.7294411],[9.3702808,49.7292496],[9.3707221,49.7290605],[9.3710996,49.7289079],[9.3715056,49.7287507],[9.3718373,49.72863],[9.3722572,49.7285025],[9.3728569,49.7283228],[9.3736507,49.7280746],[9.3737848,49.7280291],[9.3739683,49.7279721],[9.3739156,49.7277623],[9.3738258,49.7274051],[9.3737306,49.7273844],[9.3724521,49.727168],[9.3709062,49.7268849],[9.366835,49.7261575],[9.3660756,49.7258497],[9.3658154,49.7256693],[9.3643503,49.7243331],[9.3635803,49.7237711],[9.3631369,49.7236589],[9.3625172,49.7235717],[9.3614784,49.7234203],[9.3613653,49.7233966],[9.3606899,49.7232553],[9.3600315,49.7231499],[9.3591689,49.7230304],[9.3585952,49.722989],[9.35751,49.7229561],[9.3569467,49.7229191],[9.35632,49.7228342],[9.355915,49.7227449],[9.355007,49.7225431],[9.3542925,49.7223464],[9.3536693,49.7222499],[9.3530779,49.7221422],[9.3521977,49.7219573],[9.3507826,49.7217522],[9.3502157,49.721697],[9.3497015,49.7216281],[9.3493392,49.7214794],[9.3488822,49.7212234],[9.3485308,49.7209401],[9.3479547,49.7204444],[9.346872,49.7197587],[9.3464432,49.7194615],[9.3456821,49.7189414],[9.3455154,49.7188401],[9.3454171,49.7187727],[9.345315,49.7187029],[9.3445648,49.718757],[9.3442726,49.7186997],[9.3442915,49.7182866],[9.3443352,49.7178394],[9.344329,49.7175358],[9.3442242,49.7172871],[9.3441895,49.7171409],[9.3446092,49.7169199],[9.3459207,49.7165355],[9.3466959,49.7164038],[9.3473019,49.7163131],[9.3480698,49.7162522],[9.349352,49.7162145],[9.3505953,49.7161494],[9.351345,49.716367],[9.3525511,49.7166757],[9.3524532,49.7162229],[9.3523817,49.7158931],[9.3522467,49.7151034],[9.3522379,49.7149949],[9.3521726,49.7142122],[9.3521283,49.7135537],[9.3521017,49.7130745],[9.3520643,49.7126042],[9.3520279,49.7118488],[9.3528235,49.711854],[9.3529119,49.7118017],[9.3532491,49.7117813],[9.3531075,49.7099602],[9.3534245,49.7099581],[9.3534941,49.7078996],[9.3532776,49.7073176],[9.3546172,49.706787],[9.3547464,49.7067197],[9.3559115,49.7061126],[9.3569247,49.7052645],[9.3570406,49.7050315],[9.357346,49.7044181],[9.3575153,49.7042618],[9.357625,49.7041604],[9.3594139,49.7040911],[9.360428,49.7040371],[9.3610479,49.7039921],[9.3614142,49.7039581],[9.3634497,49.7037977],[9.3635942,49.7037339],[9.364658,49.7036388],[9.3654116,49.7035802],[9.3659997,49.7035371],[9.3664856,49.7035009],[9.3669998,49.7034786],[9.367454,49.7034697],[9.3677957,49.7034677],[9.3682112,49.7034704],[9.3686089,49.7034842],[9.3690419,49.7035052],[9.3696194,49.7035421],[9.3704634,49.7036027],[9.3707422,49.7036228],[9.3719322,49.7037194],[9.3729494,49.7037909],[9.3737064,49.7038485],[9.3745706,49.7039141],[9.375739,49.7040323],[9.3771561,49.7041689],[9.3772857,49.704213],[9.3781878,49.7045314],[9.3785128,49.7046448],[9.3796546,49.704998],[9.3807642,49.7053829],[9.3807235,49.7054312],[9.3801335,49.7062606],[9.3803288,49.7062936],[9.381087,49.7064219],[9.3816519,49.7066616],[9.3816973,49.7066869],[9.382105,49.7070904],[9.3822987,49.7073655],[9.3824932,49.7076423],[9.3826506,49.7080448],[9.3828962,49.7094177],[9.3821861,49.7124781],[9.382174,49.7135172],[9.3822294,49.7135927],[9.3821244,49.7141404],[9.3820534,49.7144759],[9.3820301,49.7146607],[9.3820175,49.7148252],[9.3820297,49.7149896],[9.3820483,49.7152089],[9.382084,49.7154762],[9.3820893,49.7155008],[9.3821337,49.7157022],[9.3821504,49.7157781],[9.3821911,49.7159631],[9.3823153,49.7165543],[9.3823213,49.7165825],[9.3826222,49.7176639],[9.3827247,49.7179589],[9.382738,49.7180037],[9.3827597,49.7180763],[9.3827782,49.7181379],[9.3828197,49.7182767],[9.3828744,49.7187086],[9.3828886,49.7190009],[9.3828605,49.7193069],[9.3828323,49.7196014],[9.3828052,49.7198971],[9.3827839,49.7201309],[9.3827213,49.7206446],[9.3826495,49.7210668],[9.3825927,49.7213864],[9.3825441,49.7216281],[9.3824813,49.7218632],[9.3823977,49.7220891],[9.3822548,49.7222323],[9.382006,49.7229942],[9.3817025,49.723918],[9.3813404,49.7247066],[9.3812293,49.7248867],[9.3807629,49.7255494],[9.3803123,49.7261571],[9.3804051,49.7261736],[9.3832028,49.7269269],[9.3834337,49.7270054],[9.3845455,49.727383],[9.3864165,49.7282723],[9.3860414,49.7296671],[9.3860497,49.7299367],[9.3860375,49.7301172],[9.3857321,49.7307605],[9.38568,49.7318935],[9.3866555,49.7316015],[9.386991,49.7315066],[9.3886948,49.7310245],[9.3889037,49.7309677],[9.3900343,49.7306604],[9.3904371,49.730529],[9.3908326,49.730457],[9.3911996,49.7304192],[9.3916511,49.7303885],[9.3922464,49.7303387],[9.3925401,49.7303155],[9.3931787,49.7302578],[9.3937431,49.7302319],[9.3945505,49.7302181],[9.3949487,49.7302231],[9.3950088,49.7302238],[9.3952627,49.7302109],[9.3956827,49.7301503],[9.3964062,49.7300494],[9.3966307,49.7300176],[9.3969286,49.7299755],[9.3976134,49.7298814],[9.398164,49.7298098],[9.3987674,49.7297405],[9.3993565,49.7296827],[9.3997236,49.7296562],[9.3998398,49.7296497],[9.3999154,49.7294809],[9.4000847,49.7290678],[9.4005161,49.7280614],[9.4007154,49.727524],[9.4008154,49.7272536],[9.401166,49.7262287],[9.4013284,49.7257654],[9.4014187,49.7255236],[9.4014551,49.7253888],[9.4015082,49.724932],[9.4015464,49.7241623],[9.4015288,49.7238621],[9.4014626,49.7234644],[9.4014076,49.7230304],[9.4013719,49.7227584],[9.4013246,49.7225869],[9.4013178,49.7225251],[9.4013022,49.7223836],[9.401274,49.7220753],[9.4012655,49.721888],[9.4013724,49.7217879],[9.4013858,49.7212283],[9.4014461,49.7208468],[9.401477,49.7206486],[9.4020963,49.7204728],[9.4022615,49.7204894],[9.4024246,49.7204283],[9.4027919,49.7203726],[9.4030462,49.7203437],[9.4032191,49.720317],[9.4037881,49.7202186],[9.4038834,49.7202075],[9.4043434,49.7203805],[9.4046806,49.7204959],[9.4049617,49.7205837],[9.4052813,49.7206945],[9.4057356,49.7208684],[9.4057448,49.720872],[9.4059832,49.7209984],[9.4061831,49.7210791],[9.4063592,49.7211163],[9.4065669,49.7211421],[9.4067639,49.721184],[9.4069216,49.7212668],[9.4070478,49.7213311],[9.4071946,49.7214551],[9.4073204,49.7215559],[9.4075306,49.7216734],[9.4077984,49.7217792],[9.4078261,49.7217382],[9.4079719,49.7213026],[9.4081348,49.7209332],[9.4083167,49.7204405],[9.4085194,49.7199731],[9.4088679,49.7193943],[9.409084,49.7189817],[9.4093701,49.7183205],[9.4096378,49.7177072],[9.4098828,49.7175503],[9.4107027,49.7170784],[9.4109266,49.7169262],[9.411555,49.7165287],[9.4122091,49.7160583],[9.4126287,49.7157355],[9.4129815,49.7154034],[9.4135379,49.7146888],[9.4136109,49.7145948],[9.4143168,49.7137164],[9.414346,49.7136422],[9.4143357,49.7135508],[9.4149252,49.7129164],[9.4151688,49.712638],[9.4153594,49.7124829],[9.4155285,49.7123895],[9.4157684,49.7122914],[9.416195,49.7121775],[9.4164721,49.7121261],[9.4167098,49.712082],[9.4185855,49.7117546],[9.4187899,49.7113282],[9.4188249,49.7112548],[9.4195157,49.7100073],[9.4195289,49.7099838],[9.4200172,49.7090566],[9.4203357,49.7084456],[9.4203357,49.7084269],[9.4203326,49.7066583],[9.4203341,49.70662],[9.4202254,49.7065986],[9.4199615,49.7065353],[9.4195986,49.706465],[9.4192012,49.7063722],[9.4188465,49.7062927],[9.4185264,49.7062186],[9.4183782,49.7061605],[9.4180197,49.706035],[9.4176339,49.7058621],[9.4175903,49.7053883],[9.4175812,49.705292],[9.4175786,49.7049199],[9.4176043,49.7044566],[9.4175659,49.704363],[9.4173725,49.7040534],[9.4172394,49.70384],[9.4171553,49.7036413],[9.4171241,49.703404],[9.417033,49.7032372],[9.4169067,49.7029702],[9.4168441,49.7026688],[9.4167957,49.7023287],[9.4168207,49.7021416],[9.4169096,49.7018039],[9.4169946,49.701539],[9.4170763,49.7012513],[9.4171934,49.700916],[9.417374,49.7004823],[9.4174847,49.7001995],[9.4175903,49.6999301],[9.4176801,49.6996661],[9.4177108,49.6995763],[9.4177437,49.6994596],[9.4178953,49.6989181],[9.4181921,49.6978595],[9.4184672,49.6974064],[9.4193004,49.6976993],[9.4223348,49.6961426],[9.4213721,49.69544],[9.4211916,49.6953083],[9.4210208,49.6951835],[9.4196584,49.6941893],[9.4195112,49.6940818],[9.4192955,49.6939244],[9.4193757,49.6937774],[9.4195746,49.693599],[9.4197707,49.6935623],[9.4198536,49.6935064],[9.4198805,49.6933508],[9.42002,49.6931939],[9.4202975,49.6930489],[9.4204443,49.6928871],[9.4205259,49.692797],[9.4205099,49.6925052],[9.4203705,49.6922012],[9.420358,49.6921374],[9.420381,49.6921013],[9.4204554,49.6919832],[9.4204834,49.6918574],[9.420423,49.691719],[9.4204503,49.6911092],[9.4206521,49.6909569],[9.4207119,49.6909118],[9.4204668,49.6906023],[9.4203701,49.6905511],[9.4202633,49.6905114],[9.4200697,49.6902834],[9.4199171,49.6898926],[9.4198074,49.6897695],[9.4195775,49.6896195],[9.4194358,49.6894737],[9.4193289,49.6892686],[9.419173,49.6891365],[9.4189931,49.6890753],[9.4186843,49.6886606],[9.418082,49.6880639],[9.4177555,49.6876379],[9.4176283,49.6875468],[9.4174167,49.6875107],[9.4171071,49.6875938],[9.4169036,49.6877222],[9.4167241,49.6877431],[9.4165655,49.6877093],[9.4164556,49.6876251],[9.4163068,49.6874383],[9.41631,49.6873857],[9.4164782,49.6872438],[9.416481,49.6871388],[9.4163463,49.686986],[9.4160702,49.6867448],[9.4157129,49.6865014],[9.4155323,49.6863941],[9.4154624,49.6863526],[9.4153912,49.6863105],[9.415183,49.6861808],[9.4148574,49.68591],[9.4147857,49.6857184],[9.4148443,49.6854831],[9.4148334,49.6854283],[9.4148858,49.6853757],[9.4146685,49.684947],[9.41457,49.6848831],[9.4140777,49.68431],[9.413944,49.6842849],[9.4136204,49.6841181],[9.4131247,49.68365],[9.4128468,49.6835016],[9.4126499,49.6834467],[9.4125162,49.6833851],[9.4130334,49.6831362],[9.411676,49.6824169],[9.4099703,49.681709],[9.4095024,49.6819487],[9.4091543,49.6817501],[9.4087498,49.6815376],[9.4084194,49.681266],[9.4080996,49.6808618],[9.4075757,49.6804255],[9.40708,49.6797838],[9.406862,49.679567],[9.4062818,49.6794253],[9.4065878,49.6792061],[9.4066549,49.6791147],[9.4068097,49.6790325],[9.4069221,49.6790667],[9.4070206,49.6790691],[9.4074217,49.6789046],[9.4077453,49.6787652],[9.4078684,49.6787517],[9.4079492,49.6787014],[9.4083047,49.6786557],[9.4084067,49.6785917],[9.4085123,49.6785667],[9.4086422,49.6785734],[9.4086635,49.6784205],[9.4089802,49.6783039],[9.4090822,49.6782629],[9.4092616,49.6782013],[9.4093776,49.6781784],[9.4095815,49.678199],[9.409726,49.6781077],[9.4098631,49.6780573],[9.4100672,49.6779981],[9.4102007,49.6780163],[9.4103343,49.6779729],[9.4104364,49.6779592],[9.4105278,49.6779022],[9.4106896,49.6778907],[9.4108373,49.6778177],[9.410929,49.6777149],[9.4112597,49.6776577],[9.4113616,49.6775984],[9.4114776,49.6776624],[9.411683,49.6775994],[9.4118434,49.6775504],[9.4122374,49.6775093],[9.4124098,49.6775413],[9.4125363,49.6775504],[9.4126701,49.6775367],[9.4130076,49.6773882],[9.4128285,49.6770457],[9.4125861,49.6764565],[9.4124656,49.6761805],[9.4121645,49.6754906],[9.4114611,49.6753832],[9.4106592,49.6754061],[9.4099382,49.6753558],[9.4094879,49.6754564],[9.409122,49.675575],[9.408584,49.6756093],[9.4079932,49.6755774],[9.4074797,49.6756892],[9.4068465,49.6757326],[9.4062698,49.6758034],[9.406195,49.6757923],[9.4052516,49.6756525],[9.4046977,49.6755704],[9.4029781,49.6752345],[9.4020499,49.6748897],[9.4015014,49.674764],[9.4010583,49.6745517],[9.4007701,49.6744352],[9.4004503,49.6742686],[9.4001476,49.6741108],[9.3996626,49.6738367],[9.3992794,49.6736015],[9.3984375,49.6732038],[9.3981333,49.6730601],[9.3980889,49.6730219],[9.3979062,49.6728642],[9.3976939,49.6726811],[9.3970414,49.6719866],[9.3969649,49.6718961],[9.3970503,49.6718192],[9.3975964,49.6713269],[9.3982206,49.6707599],[9.3987609,49.6703287],[9.3986894,49.6702885],[9.3985968,49.6702464],[9.3990898,49.669754],[9.399755,49.6693626],[9.3998268,49.6693204],[9.3998716,49.6693025],[9.3999108,49.6693057],[9.3999539,49.6693416],[9.4003905,49.6691058],[9.4005024,49.6690793],[9.4007971,49.6689403],[9.4015267,49.6685964],[9.402126,49.6682672],[9.4034742,49.6672987],[9.4044465,49.6666019],[9.4054345,49.6659598],[9.4060718,49.6656096],[9.4065487,49.6653047],[9.4072437,49.6650052],[9.4075762,49.664862],[9.4078032,49.6647641],[9.4095038,49.6643299],[9.4096743,49.6642593],[9.4101671,49.6641529],[9.4106311,49.6640169],[9.4107347,49.6639472],[9.4114152,49.663763],[9.4107906,49.6631864],[9.4107489,49.6630773],[9.4109743,49.6630905],[9.4113388,49.6631728],[9.411473,49.6631894],[9.4116869,49.6631661],[9.4118337,49.6631301],[9.4123876,49.6629406],[9.4127685,49.6628537],[9.4125837,49.6626665],[9.4123445,49.6625348],[9.4122902,49.6624807],[9.412357,49.6623543],[9.4123081,49.6622408],[9.4121286,49.6619919],[9.4121538,49.6618889],[9.4121081,49.6613896],[9.4119182,49.6612617],[9.4119422,49.6608688],[9.4120304,49.6608361],[9.4133659,49.6603422],[9.4140499,49.6602812],[9.4144726,49.6601824],[9.4149447,49.660066],[9.4167248,49.6597765],[9.4195,49.6588747],[9.4193465,49.6584489],[9.4191378,49.6578956],[9.4190978,49.6577579],[9.4188512,49.6573338],[9.4186397,49.6569705],[9.4175432,49.6559576],[9.4174931,49.6559113],[9.417181,49.6553347],[9.4169126,49.6545363],[9.4165664,49.6539361],[9.4164537,49.6537682],[9.4157211,49.6532791],[9.4156349,49.6532216],[9.4145238,49.6524799],[9.4142686,49.6523245],[9.4141537,49.6522546],[9.4136904,49.6519726],[9.413577,49.6519036],[9.4134481,49.6518251],[9.4121507,49.6510354],[9.4107204,49.6501647],[9.4107051,49.6501554],[9.4106941,49.6501457],[9.4103929,49.649882],[9.4099352,49.6494305],[9.4097101,49.6492085],[9.4089796,49.648488],[9.4087295,49.6481857],[9.4084012,49.6478283],[9.4074328,49.6467341],[9.4067786,49.6460852],[9.4061438,49.6454555],[9.4050295,49.6456532],[9.4042527,49.6456194],[9.4038703,49.6455725],[9.4014699,49.6453593],[9.4007975,49.6453358],[9.3995618,49.6452923],[9.3980654,49.6455199],[9.3966448,49.6457394],[9.3959822,49.6459105],[9.3952787,49.6460077],[9.3945483,49.6460315],[9.3944983,49.6460331],[9.3941818,49.646027],[9.3937052,49.6459787],[9.3936344,49.6459787],[9.3935151,49.6459049],[9.3934391,49.6458578],[9.3929286,49.6458351],[9.3928653,49.6458448],[9.3926761,49.6458739],[9.3921248,49.6457601],[9.3918596,49.6456207],[9.3917593,49.6456105],[9.3915454,49.6456623],[9.3914857,49.6456767],[9.3914163,49.6456935],[9.3912715,49.6456651],[9.3908867,49.6454402],[9.3906523,49.645495],[9.3905149,49.6454939],[9.3904391,49.6454724],[9.3903056,49.645256],[9.3901976,49.6451284],[9.3900356,49.6450963],[9.389617,49.6451228],[9.3893681,49.6450064],[9.3892091,49.6449735],[9.3887908,49.6449933],[9.3886498,49.6449809],[9.3884865,49.6449116],[9.3883715,49.6448133],[9.3883472,49.6446501],[9.3882583,49.6446053],[9.3880912,49.6445943],[9.3878601,49.6445792],[9.3876316,49.6444259],[9.3871999,49.6443042],[9.387045,49.6441343],[9.3869238,49.6440601],[9.3866259,49.6440459],[9.386413,49.6439937],[9.386186,49.6439349],[9.3859999,49.6438277],[9.3856198,49.6434943],[9.385403,49.643424],[9.3851516,49.6433701],[9.3847788,49.6432697],[9.384384,49.6431308],[9.3841644,49.6429841],[9.3840785,49.6429267],[9.3837466,49.6427756],[9.3835263,49.6428195],[9.383378,49.6429196],[9.3833557,49.6429397],[9.382912,49.6429894],[9.3828941,49.6429836],[9.3828448,49.6429676],[9.3825885,49.6428838],[9.3823404,49.6429394],[9.3821446,49.6430972],[9.3822584,49.6432348],[9.3819262,49.6433171],[9.381779,49.643449],[9.3817308,49.6434699],[9.381508,49.6435667],[9.3811106,49.6436882],[9.380841,49.6437349],[9.3806672,49.6438315],[9.3806264,49.6438542],[9.3805875,49.643962],[9.3806315,49.6441305],[9.3805955,49.6442223],[9.3805495,49.6443303],[9.3803936,49.6444029],[9.3799966,49.6445472],[9.3799493,49.6446096],[9.3799653,49.6446732],[9.3800969,49.6448316],[9.3802442,49.6449279],[9.380233,49.6450239],[9.3801425,49.6451736],[9.3800656,49.6451882],[9.3799392,49.6451966],[9.37979,49.6452693],[9.3791592,49.6455879],[9.3791195,49.6456684],[9.3791261,49.6457664],[9.3790238,49.6458728],[9.3786211,49.6467458],[9.3781067,49.6470697],[9.3778669,49.6472829],[9.3773526,49.6476159],[9.3771689,49.6480522],[9.3770001,49.648173],[9.3767029,49.6482431],[9.3763489,49.6482817],[9.3762422,49.6483653],[9.3761543,49.648483],[9.375984,49.6485513],[9.3755823,49.6491113],[9.3754902,49.6492085],[9.3752591,49.649362],[9.374926,49.6497522],[9.3747812,49.64985],[9.3742727,49.6500253],[9.373492,49.6502819],[9.3731923,49.6504935],[9.3730054,49.6507127],[9.3726863,49.6508675],[9.3724409,49.6509002],[9.3717711,49.6510935],[9.3715572,49.6512402],[9.371445,49.6514837],[9.3712647,49.651575],[9.3712842,49.6516332],[9.3713108,49.6516977],[9.3713279,49.6519124],[9.3713543,49.6520856],[9.3712298,49.652272],[9.3708517,49.6524572],[9.3704437,49.6525833],[9.37031,49.6527016],[9.3702705,49.6527888],[9.3702695,49.6529875],[9.3702116,49.6530522],[9.3698935,49.6532412],[9.3697575,49.6533959],[9.3697532,49.653492],[9.3696367,49.6537057],[9.3695469,49.653764],[9.369279,49.6540985],[9.3690552,49.6543128],[9.3688504,49.6544179],[9.3687916,49.6545391],[9.3687803,49.6545626],[9.3688074,49.6546628],[9.3687708,49.6547432],[9.3686565,49.6548083],[9.3684419,49.6548638],[9.3683141,49.6548968],[9.3681512,49.65499],[9.3674844,49.6551803],[9.3674436,49.6552377],[9.3674651,49.6553906],[9.3674362,49.6554982],[9.3673471,49.6555861],[9.3670838,49.6560162],[9.3670681,49.6560871],[9.3671267,49.6561801],[9.3672407,49.6563615],[9.3672505,49.6565374],[9.3672534,49.6565875],[9.3673493,49.6567554],[9.3674765,49.6569116],[9.3674712,49.6570815],[9.3674687,49.657163],[9.3673612,49.6572188],[9.3673019,49.6572891],[9.367252,49.6573481],[9.3672204,49.6574323],[9.3671961,49.6574972],[9.3670863,49.6576057],[9.3669982,49.6577346],[9.3670442,49.6578803],[9.3670465,49.6579693],[9.3668274,49.6581933],[9.3667577,49.6583608],[9.3665544,49.6582466],[9.3663488,49.6581919],[9.3663392,49.6580558],[9.3663364,49.658016],[9.366332,49.6579546],[9.366299,49.6577608],[9.3661833,49.6575922],[9.3661549,49.6575543],[9.3661094,49.657489],[9.3660845,49.6574555],[9.3660575,49.6574147],[9.3660285,49.6573733],[9.3659464,49.6573263],[9.365793,49.6573364],[9.3657391,49.65734],[9.3656316,49.6573275],[9.3654665,49.6573082],[9.3651499,49.6572668],[9.3648912,49.6571897],[9.3647737,49.6571341],[9.3647241,49.6569861],[9.3647511,49.6568054],[9.3648574,49.6565575],[9.3649557,49.6564193],[9.3649642,49.6563371],[9.3648915,49.6562488],[9.3647094,49.6561504],[9.3640848,49.6560706],[9.3638827,49.6560068],[9.3638211,49.6559343],[9.36377,49.6558664],[9.3636594,49.6558082],[9.3635511,49.6556998],[9.3635317,49.6556224],[9.363568,49.6554005],[9.3635197,49.655296],[9.3634089,49.655231],[9.36287,49.6550635],[9.3626162,49.6550457],[9.3623408,49.6550056],[9.3620505,49.6549335],[9.3617485,49.6548158],[9.361483,49.6547457],[9.3612739,49.6547306],[9.361127,49.65472],[9.3608631,49.6545769],[9.3608115,49.6544839],[9.3604979,49.6543275],[9.3603275,49.6541002],[9.3598304,49.6537295],[9.3595699,49.6534952],[9.3592361,49.6533987],[9.3590314,49.6533817],[9.3589499,49.6533941],[9.3588349,49.6534115],[9.3587237,49.6534282],[9.3587111,49.6534152],[9.3585583,49.6532575],[9.3584384,49.6531961],[9.3583247,49.653138],[9.3580322,49.6530449],[9.357529,49.6527908],[9.3573032,49.6526923],[9.3572423,49.6526655],[9.3571182,49.6525603],[9.3570054,49.6523041],[9.3567645,49.6520982],[9.3564069,49.6520449],[9.355883,49.6520656],[9.3556869,49.6520733],[9.3553992,49.6520097],[9.3553695,49.6519974],[9.3552347,49.6519417],[9.354946,49.6517754],[9.3544765,49.6515833],[9.3540405,49.651405],[9.3540303,49.6513774],[9.3538223,49.6508147],[9.3537551,49.6507482],[9.35358,49.6505745],[9.3532013,49.6506039],[9.352955,49.6506035],[9.3523701,49.6506639],[9.3520373,49.6506193],[9.3511657,49.6507211],[9.3509736,49.6506717],[9.3505412,49.6503435],[9.3498821,49.6501446],[9.3497006,49.6500128],[9.3492237,49.649884],[9.3487536,49.6496591],[9.3485132,49.64938],[9.3483864,49.6489549],[9.3482285,49.64888],[9.3481629,49.648824],[9.3473532,49.6484746],[9.3469298,49.6481896],[9.3467297,49.6476995],[9.346416,49.6474331],[9.3462389,49.6472327],[9.3461692,49.6471005],[9.3461471,49.6470585],[9.3457396,49.6467366],[9.3456928,49.6465363],[9.3456429,49.6464365],[9.3454434,49.6462938],[9.3451885,49.6461703],[9.3450442,49.6460038],[9.3447304,49.6458148],[9.3445961,49.6455476],[9.3447119,49.6449471],[9.3446815,49.6448106],[9.3445897,49.6447185],[9.3444096,49.6446165],[9.3441012,49.6444755],[9.3436423,49.6443555],[9.343538,49.6442979],[9.3432433,49.6442321],[9.3431937,49.6442324],[9.3426278,49.6442359],[9.3422133,49.6443343],[9.3417426,49.6442716],[9.3416428,49.6442367],[9.3415081,49.644207],[9.3412085,49.6443454],[9.3410088,49.6443869],[9.3408437,49.6443912],[9.3407524,49.6443936],[9.3404774,49.64438],[9.3402286,49.6443157],[9.3401102,49.6443497],[9.3399236,49.6443414],[9.3393962,49.6444327],[9.3392573,49.6443917],[9.338929,49.6443897],[9.3386627,49.644388],[9.3384847,49.6444254],[9.3384106,49.6444175],[9.3381121,49.6443449],[9.3380278,49.6443509],[9.3376839,49.6443683],[9.337348,49.6443284],[9.3372258,49.6443463],[9.3370272,49.6443955],[9.3366946,49.6444332],[9.336608,49.6444666],[9.3362687,49.6445111],[9.3360422,49.6446476],[9.3354987,49.6446934],[9.3353924,49.6447569],[9.3352169,49.6448704],[9.3348341,49.6451182],[9.3346301,49.6452884],[9.3345204,49.6453588],[9.3343558,49.645412],[9.3337601,49.6456048],[9.3332102,49.6458335],[9.3331251,49.6458988],[9.3329344,49.6459615],[9.332894,49.6459699],[9.3328157,49.6459863],[9.3327713,49.6460214],[9.3326353,49.6460617],[9.3322464,49.6462762],[9.33212,49.64635],[9.3317767,49.6463832],[9.331283,49.6468697],[9.3309657,49.6469433],[9.330637,49.647083],[9.3304175,49.6472165],[9.330255,49.6472726],[9.3300363,49.6473194],[9.3298712,49.6473208],[9.3297554,49.6473018],[9.3291487,49.6474561],[9.3288562,49.6475093],[9.3284051,49.6475958],[9.3282322,49.6476428],[9.3280207,49.647685],[9.3277776,49.6477384],[9.3277068,49.6477632],[9.3274761,49.6479469],[9.3272253,49.6480482],[9.3269215,49.6481515],[9.3266969,49.6481115],[9.3265322,49.6480855],[9.3262263,49.6480769],[9.3260526,49.6480784],[9.3255792,49.6480825],[9.3254225,49.6480924],[9.3251286,49.6481581],[9.325012,49.6481844],[9.324726,49.6482763],[9.3245177,49.6483506],[9.3243094,49.6484042],[9.3242457,49.6484449],[9.3242004,49.6484998],[9.3241708,49.6485358],[9.3240212,49.6486834],[9.3238883,49.6487603],[9.3238337,49.6487919],[9.3235436,49.6489205],[9.3231375,49.6490712],[9.3229919,49.6491276],[9.3228227,49.6491845],[9.3223744,49.64935],[9.3217906,49.6496436],[9.3216164,49.6498071],[9.3214095,49.6497693],[9.3211638,49.6497291],[9.3210618,49.649724],[9.3209455,49.649746],[9.3209097,49.6497519],[9.320572,49.6498057],[9.3204419,49.6498141],[9.3201678,49.6498034],[9.3201008,49.6498145],[9.3200618,49.6498347],[9.3199627,49.6498959],[9.3197676,49.6500249],[9.3196475,49.6500632],[9.3192456,49.6501454],[9.3190838,49.6501627],[9.3186267,49.6501669],[9.3184752,49.6501867],[9.3183586,49.6502317],[9.3183155,49.6502523],[9.3181194,49.6503464],[9.3179023,49.6504505],[9.3174784,49.6506126],[9.3173125,49.6506551],[9.3172761,49.6506963],[9.3172485,49.6507276],[9.3168503,49.6510657],[9.3167288,49.6511763],[9.31626,49.6516035],[9.3158525,49.6518839],[9.315358,49.652297],[9.3151805,49.6524308],[9.3148331,49.6526502],[9.3145671,49.6528359],[9.3138944,49.6534783],[9.3136885,49.6536461],[9.3135297,49.6536863],[9.3127385,49.653691],[9.312017,49.6537234],[9.3118672,49.6537318],[9.3112042,49.6537689],[9.3104501,49.6538972],[9.3102659,49.653924],[9.3098869,49.6539794],[9.3097737,49.653996],[9.3082821,49.6542902],[9.3076339,49.6544061],[9.3072123,49.6544692],[9.3070863,49.6544881],[9.3069716,49.6545052],[9.3066828,49.6545478],[9.3063375,49.6545986],[9.306206,49.654618],[9.3056152,49.6547052],[9.3049008,49.6547972],[9.3040865,49.6549019],[9.3041585,49.6545861],[9.3041955,49.6544492],[9.3042785,49.6542555],[9.3044577,49.6539572],[9.3046263,49.6536634],[9.3048387,49.6532419],[9.305303,49.6526049],[9.305839,49.6517635],[9.3059874,49.6515239],[9.3064875,49.6507174],[9.3063411,49.6505681],[9.3061892,49.6504474],[9.3056499,49.6501558],[9.3051776,49.6499032],[9.3049131,49.649794],[9.3047561,49.6497598],[9.3041848,49.6496511],[9.3039463,49.6496133],[9.303481,49.649499],[9.302953,49.6493629],[9.3020941,49.6491312],[9.3013439,49.6489127],[9.3013056,49.6489015],[9.3006156,49.6487244],[9.3003993,49.6486788],[9.2999363,49.6485814],[9.2993076,49.6484398],[9.2992807,49.6484124],[9.2988704,49.6479955],[9.2985761,49.6477413],[9.2982933,49.6473658],[9.2980278,49.6470134],[9.2977337,49.6467566],[9.2974883,49.6465917],[9.2972392,49.6464654],[9.2971341,49.6464056],[9.2968325,49.6462449],[9.2962571,49.645983],[9.2953937,49.6456653],[9.2944668,49.6453384],[9.2940738,49.6452003],[9.2932873,49.644956],[9.2927397,49.6447695],[9.2923393,49.644645],[9.2917428,49.6444286],[9.291297,49.644256],[9.2909183,49.6440677],[9.2908341,49.6440217],[9.2904598,49.6436598],[9.2900578,49.6431882],[9.2899833,49.6430992],[9.2898749,49.6429802],[9.289855,49.6428361],[9.2898213,49.6425279],[9.2897174,49.6417136],[9.2895536,49.6414349],[9.2891891,49.6409299],[9.2888593,49.6404873],[9.2884655,49.6398284],[9.2882426,49.6394167],[9.2879565,49.6390047],[9.2877926,49.6387812],[9.2875526,49.6384543],[9.2875167,49.6384055],[9.2874644,49.638334],[9.2868391,49.6375716],[9.2863647,49.6368919],[9.2860349,49.6363479],[9.2857216,49.6360803],[9.2854054,49.6357902],[9.2840831,49.6363608],[9.2829721,49.6367497],[9.2819434,49.6371099],[9.2812467,49.6372016],[9.280374,49.6373018],[9.2796422,49.6374048],[9.2791739,49.6374949],[9.2789537,49.6375371],[9.2781778,49.6376861],[9.2779743,49.6375917],[9.2777115,49.6374334],[9.2772869,49.6372586],[9.2768099,49.6370585],[9.2763187,49.6368675],[9.2759435,49.6366951],[9.2757749,49.636633],[9.2753278,49.6363672],[9.2752434,49.6363192],[9.2747515,49.6360929],[9.273908,49.6357295],[9.273163,49.6354322],[9.2725515,49.6351692],[9.2724708,49.6351259],[9.2723629,49.6350674],[9.2717925,49.6347579],[9.2719577,49.6347078],[9.2720279,49.6346735],[9.2720946,49.6345915],[9.2720981,49.6344294],[9.2721086,49.6342559],[9.2721683,49.6341054],[9.2722105,49.633973],[9.2722057,49.6339491],[9.2721929,49.6338863],[9.2722489,49.6338589],[9.272358,49.6338224],[9.2724931,49.6337809],[9.2725652,49.6337358],[9.2726567,49.6336492],[9.2728042,49.6335489],[9.2731625,49.6333847],[9.2735209,49.633255],[9.2735982,49.6331955],[9.2736579,49.6330952],[9.2737142,49.6329378],[9.2737315,49.6328374],[9.2738019,49.6326913],[9.2738652,49.6325989],[9.2739002,49.6325476],[9.2740477,49.6323787],[9.2742725,49.6321552],[9.2744517,49.6320572],[9.2747924,49.631973],[9.2747573,49.6318635],[9.2750215,49.6317088],[9.2754669,49.6314484],[9.2753843,49.6313796],[9.2749293,49.6310007],[9.2747115,49.6308126],[9.2745496,49.6306535],[9.2742038,49.6303387],[9.2739243,49.6300459],[9.2737204,49.6298472],[9.2734849,49.6296325],[9.2732635,49.6294657],[9.2732248,49.6293676],[9.2730597,49.6292077],[9.2728631,49.6290637],[9.2726978,49.6289723],[9.272501,49.628922],[9.2724694,49.6288535],[9.272357,49.6287027],[9.2723007,49.6286069],[9.2721813,49.6285999],[9.272111,49.6284675],[9.2720724,49.6283943],[9.2719355,49.6283464],[9.2716331,49.6282046],[9.2715592,49.6281247],[9.2714785,49.6279443],[9.2713871,49.6277799],[9.2713819,49.6277485],[9.2713589,49.6276109],[9.27125,49.6274876],[9.2711307,49.6273803],[9.2711059,49.6272729],[9.2709373,49.6270446],[9.2704664,49.6264234],[9.2710636,49.6262594],[9.2713095,49.6261456],[9.2715238,49.6260111],[9.2718436,49.6259268],[9.2726023,49.6257059],[9.2729851,49.625624],[9.2738387,49.625499],[9.2740004,49.6254512],[9.2743131,49.6252826],[9.2751068,49.6247946],[9.2757757,49.624353],[9.2759304,49.6241932],[9.2762432,49.6238369],[9.2766337,49.6233529],[9.2768904,49.622983],[9.2772,49.6224736],[9.2773194,49.6222109],[9.2775024,49.6217268],[9.2775587,49.6215509],[9.2775762,49.6213178],[9.2776045,49.6209227],[9.2776503,49.6207056],[9.2777769,49.620283],[9.2778365,49.6202007],[9.2779562,49.6201095],[9.2784414,49.6198015],[9.2787683,49.6195936],[9.2796438,49.6192766],[9.2799673,49.6191511],[9.2801289,49.6190393],[9.2805824,49.6186877],[9.280825,49.6185599],[9.2812865,49.6183887],[9.2817973,49.6181774],[9.2825493,49.6178855],[9.2831011,49.6176666],[9.2834596,49.6175298],[9.2835579,49.6174865],[9.2838689,49.6172399],[9.284004,49.6171328],[9.2840917,49.6170302],[9.2842779,49.6167678],[9.284334,49.6166832],[9.284348,49.6165738],[9.2843408,49.6163727],[9.2843829,49.6162061],[9.2844567,49.6160218],[9.2846072,49.6156469],[9.284758,49.6152795],[9.285127,49.6147933],[9.2843459,49.6145854],[9.2836404,49.6143918],[9.2832333,49.61427],[9.2826786,49.6141426],[9.282261,49.6140183],[9.281531,49.6138016],[9.2809661,49.6135992],[9.280433,49.6133786],[9.2797454,49.6130638],[9.2792616,49.6128456],[9.2788482,49.6126677],[9.2784898,49.612558],[9.2781434,49.6124233],[9.2777042,49.6122522],[9.2767394,49.6118796],[9.2763431,49.6117187],[9.2756939,49.6115023],[9.2751524,49.6113279],[9.2746306,49.6111678],[9.2737497,49.6108548],[9.2723039,49.6103048],[9.2713846,49.6099872],[9.2700333,49.6095312],[9.2686267,49.6090502],[9.2679729,49.6088401],[9.2674395,49.6086444],[9.2672381,49.6085655],[9.2670182,49.6084184],[9.2659959,49.6077137],[9.2651251,49.6071155],[9.2648398,49.6069267],[9.2646891,49.6068258],[9.2645738,49.6066839],[9.2642388,49.6061302],[9.2641098,49.6059311],[9.2638824,49.6056721],[9.2640669,49.6055522],[9.2642374,49.6054303],[9.2643509,49.6052812],[9.2646093,49.6047065],[9.2648168,49.604253],[9.2649188,49.604008],[9.2650383,49.6035458],[9.2651145,49.6032302],[9.2651443,49.6031021],[9.2651089,49.6028533],[9.2650629,49.602591],[9.2649554,49.6022124],[9.2648447,49.6018635],[9.2647572,49.6017907],[9.2647219,49.6017656],[9.2645673,49.6016879],[9.2643562,49.6015874],[9.2640045,49.6014023],[9.263797,49.6012584],[9.2634345,49.6010185],[9.2631671,49.6007786],[9.2628217,49.6004427],[9.2627255,49.6003541],[9.2626185,49.600236],[9.2624302,49.6000863],[9.2621499,49.599896],[9.2619299,49.5997463],[9.2614931,49.5994291],[9.2613295,49.5992929],[9.2609708,49.5989276],[9.2604111,49.5983226],[9.2600838,49.5976723],[9.2600307,49.5972607],[9.2599841,49.5964167],[9.260095,49.595899],[9.2602145,49.5947203],[9.2600404,49.5942906],[9.2599795,49.5941404],[9.2597555,49.5939619],[9.2595208,49.5935217],[9.2592897,49.5932254],[9.2582042,49.5935002],[9.2572515,49.5938458],[9.2567277,49.5939961],[9.2561119,49.594104],[9.2559744,49.5941282],[9.2556674,49.5941973],[9.2551582,49.5942857],[9.2540099,49.5942433],[9.253214,49.5942139],[9.2524665,49.5941864],[9.2525132,49.5940456],[9.2525256,49.5940087],[9.2520967,49.593908],[9.2520478,49.5939098],[9.2517626,49.5939201],[9.2509655,49.5939253],[9.2509748,49.5938349],[9.2507123,49.5938541],[9.2503125,49.5939173],[9.2499246,49.5937762],[9.249835,49.5937436],[9.2497245,49.5937036],[9.249676,49.5936861],[9.2494483,49.5935818],[9.2493946,49.5935571],[9.2492966,49.5932224],[9.2489665,49.5924715],[9.2489218,49.5923994],[9.248693,49.5920302],[9.2484232,49.5919789],[9.2479722,49.5914173],[9.2478449,49.5910551],[9.2462257,49.5897974],[9.2465397,49.5894709],[9.2472955,49.5890764],[9.2478087,49.5887426],[9.2483,49.5882059],[9.2488895,49.5878344],[9.2490075,49.5875636],[9.2492529,49.5866803],[9.2492665,49.5861154],[9.2491439,49.5856864],[9.2491467,49.5854411],[9.249156,49.5846699],[9.2485196,49.5845354],[9.247792,49.5844421],[9.2472687,49.5844669],[9.2466293,49.5845937],[9.2465417,49.584611],[9.2459383,49.5847404],[9.2449833,49.5844922],[9.2445874,49.5842688],[9.2433265,49.583774],[9.2419347,49.5833181],[9.2412201,49.5829568],[9.2407716,49.5826493],[9.2402783,49.5818974],[9.2404247,49.5815047],[9.2404506,49.5814359],[9.2399211,49.5814172],[9.2394362,49.5812677],[9.2390419,49.5811463],[9.2379912,49.5810458],[9.2367188,49.5809499],[9.2360399,49.5809228],[9.2353761,49.5808497],[9.2346647,49.580887],[9.2341617,49.5810009],[9.2338059,49.581202],[9.2334611,49.5811902],[9.2330766,49.5810905],[9.2332934,49.5802386],[9.2330567,49.5801404],[9.2324759,49.5800932],[9.2315955,49.5798623],[9.2313888,49.5799069],[9.2312282,49.5802501],[9.2308181,49.5804815],[9.2305175,49.5804751],[9.2300316,49.5804297],[9.2293669,49.5801541],[9.2287441,49.5797191],[9.2285389,49.5795531],[9.2283939,49.5794359],[9.2279627,49.5791326],[9.2272591,49.5789591],[9.2263598,49.5787534],[9.2258333,49.5789032],[9.2246903,49.5789628],[9.2245171,49.5789718],[9.2240391,49.5787756],[9.223756,49.5784881],[9.2234194,49.5782838],[9.2228356,49.5779005],[9.2221293,49.5779361],[9.2219293,49.5779462],[9.2213674,49.578031],[9.2208807,49.5782428],[9.2204197,49.578145],[9.2199918,49.5781614],[9.2194466,49.5780269],[9.2184052,49.5777699],[9.2176543,49.5775473],[9.2165979,49.5772339],[9.21595,49.5770418],[9.2154371,49.5768897],[9.2148652,49.5767201],[9.2144688,49.5766025],[9.2139941,49.5765247],[9.2136875,49.5765402],[9.2135591,49.5765467],[9.2133529,49.5765571],[9.2131114,49.5767395],[9.2127638,49.5768363],[9.2125637,49.5769237],[9.2124831,49.577096],[9.2125114,49.5772567],[9.2123114,49.5773969],[9.211869,49.5774227],[9.2114476,49.5775448],[9.2112442,49.5777516],[9.2111453,49.577869],[9.2109034,49.5779055],[9.210663,49.5777995],[9.2104751,49.5777165],[9.209541,49.5772573],[9.2086536,49.5768212],[9.2081697,49.5767242],[9.2077749,49.5766124],[9.2071708,49.5764194],[9.2065768,49.5762429],[9.2062894,49.5761459],[9.2058143,49.5760497],[9.2054764,49.5760583],[9.2051422,49.5761059],[9.2048378,49.5761007],[9.2046517,49.5761648],[9.2044634,49.5762762],[9.2038764,49.5765917],[9.203435,49.5766266],[9.202997,49.576703],[9.2025743,49.5766775],[9.2023142,49.5766619],[9.2020203,49.5766395],[9.2015627,49.5766336],[9.2011599,49.5766195],[9.2006195,49.5765599],[9.2001068,49.5763072],[9.1996185,49.5759104],[9.1990954,49.5756428],[9.1987907,49.5755838],[9.1984545,49.5754735],[9.198083,49.5754011],[9.1978524,49.5753947],[9.197629,49.5753564],[9.1972155,49.5752884],[9.1968508,49.5751748],[9.1963419,49.5749838],[9.1953524,49.57458],[9.1950633,49.5744307],[9.1948198,49.5741944],[9.1945553,49.573884],[9.1940904,49.574202],[9.1935837,49.5744707],[9.1930943,49.5746725],[9.1929332,49.5747224],[9.1926186,49.5748465],[9.1919911,49.575077],[9.1917176,49.5751536],[9.1913426,49.5752585],[9.1897799,49.575763],[9.1889341,49.5761389],[9.1886753,49.5762157],[9.1876025,49.5767931],[9.1873157,49.576879],[9.1860081,49.5763382],[9.1856738,49.576279],[9.185135,49.5761468],[9.1850248,49.5761298],[9.1848778,49.5761482],[9.1846592,49.5761576],[9.1843548,49.5761109],[9.1842182,49.5760659],[9.1839506,49.5759775],[9.183553,49.5757194],[9.1831307,49.5752509],[9.1828291,49.5748864],[9.1826447,49.5744955],[9.1820966,49.5740408],[9.1814053,49.5738836],[9.180739,49.5737308],[9.1804824,49.5739322],[9.1800438,49.5742067],[9.1799216,49.5743439],[9.1798677,49.574489],[9.1797875,49.5746226],[9.17966,49.5747496],[9.1792153,49.575102],[9.1790067,49.5752733],[9.1788463,49.5754242],[9.1786559,49.5755843],[9.178371,49.5756417],[9.1771873,49.5756707],[9.1771578,49.5756714],[9.1755669,49.5759048],[9.1753933,49.5760083],[9.1753328,49.5760444],[9.1750043,49.5762629],[9.1746798,49.5766537],[9.174261,49.5773612],[9.1737757,49.5778607],[9.1721877,49.5776999],[9.171677,49.577672],[9.1711372,49.5776422],[9.1704898,49.5775668],[9.1698549,49.5774304],[9.1695921,49.5773338],[9.1693388,49.5772409],[9.1692496,49.5772082],[9.1692141,49.5771896],[9.1680389,49.5765777],[9.1674544,49.5763553],[9.1674039,49.5763361],[9.1667428,49.5761185],[9.1660465,49.575812],[9.1656043,49.5756886],[9.1654833,49.5756549],[9.1649073,49.5753961],[9.1641968,49.5761641],[9.163855,49.5766182],[9.1633861,49.577225],[9.1628983,49.5775348],[9.1623966,49.5778503],[9.1611904,49.5784017],[9.1602364,49.5787542],[9.1597021,49.5791861],[9.1592313,49.5795956],[9.1591782,49.5796417],[9.1580866,49.5796731],[9.156738,49.5796462],[9.1560777,49.5796582],[9.1554418,49.5796697],[9.1547434,49.5796771],[9.1541717,49.5796831],[9.1527373,49.5796857],[9.1525112,49.5786436],[9.1524418,49.5786318],[9.1513655,49.5784485],[9.1505458,49.5784487],[9.1503286,49.5784714],[9.1493942,49.5785687],[9.1486297,49.5786525],[9.1485338,49.5787222],[9.1482648,49.5789182],[9.1477692,49.578293],[9.1476305,49.578267],[9.146776,49.5781065],[9.1457003,49.578132],[9.1450422,49.5782777],[9.1447757,49.5783087],[9.144604,49.578308],[9.1441553,49.5781543],[9.1440768,49.5781061],[9.1438335,49.5778735],[9.1437648,49.5777395],[9.1436254,49.5774297],[9.1434336,49.5769529],[9.1434703,49.5768261],[9.1436031,49.5763702],[9.1433311,49.5766041],[9.1429925,49.5768953],[9.1429434,49.5769616],[9.1427303,49.5772492],[9.1425366,49.5772579],[9.142427,49.5772629],[9.1423576,49.5772675],[9.1422186,49.5772769],[9.1416095,49.5772334],[9.1409142,49.5770194],[9.1402525,49.5765693],[9.1398061,49.5763529],[9.1391865,49.5761039],[9.1384315,49.575917],[9.1371799,49.5756125],[9.1368216,49.5755899],[9.1361921,49.5755845],[9.1361395,49.5755836],[9.1359699,49.5755811],[9.1352106,49.5755998],[9.1343936,49.5756196],[9.1336169,49.5756246],[9.1328907,49.5756471],[9.1321713,49.5756981],[9.1312647,49.5757434],[9.130477,49.5756502],[9.1297181,49.5755071],[9.1289706,49.5754108],[9.1285481,49.5753483],[9.1281465,49.5752888],[9.127298,49.5751634],[9.1265257,49.5750873],[9.1257301,49.5749324],[9.1249818,49.5747676],[9.1242763,49.5745323],[9.1235884,49.5742902],[9.1228625,49.5740112],[9.1225042,49.5738381],[9.1221469,49.5737415],[9.1213586,49.5735615],[9.1205426,49.5734945],[9.1198021,49.5735567],[9.1197487,49.5735617],[9.1190124,49.5736311],[9.1181492,49.5736983],[9.1173769,49.5737877],[9.1166556,49.5739778],[9.1160475,49.574221],[9.1158698,49.5743044],[9.1154054,49.5745267],[9.1147983,49.5748075],[9.1141967,49.5750884],[9.1140929,49.5751449],[9.1140687,49.5751605],[9.1137543,49.5753632],[9.1129482,49.5759043],[9.112656,49.5761765],[9.1124513,49.5763478],[9.1121881,49.5765539],[9.1120627,49.5766474],[9.1118296,49.5768213],[9.1118125,49.5768346],[9.1115417,49.5770457],[9.1114016,49.5771602],[9.1111494,49.5773664],[9.1107355,49.5776909],[9.110616,49.5777845],[9.1104609,49.5778962],[9.1095244,49.5785691],[9.1094127,49.5786329],[9.1083388,49.5792168],[9.1077324,49.579174],[9.1060665,49.5785159],[9.1043065,49.5779804],[9.1026924,49.5775409],[9.1025379,49.5778832],[9.1026626,49.5783329],[9.1028259,49.579253],[9.1022636,49.5800175],[9.1017937,49.5806563],[9.101459,49.5808311],[9.1014363,49.5808429],[9.1004092,49.5812077],[9.1001847,49.5814165],[9.0998042,49.5817707],[9.0995555,49.582002],[9.0992998,49.5822401],[9.0989393,49.5827192],[9.0987681,49.5829826],[9.0984423,49.5833572],[9.0983829,49.5836324],[9.098285,49.5837963],[9.0980146,49.5840937],[9.0973155,49.584766],[9.0963621,49.5856765],[9.0948433,49.586596],[9.0933384,49.5873621],[9.0927249,49.5879274],[9.0918766,49.5887802],[9.0909732,49.5901347],[9.0905798,49.5908213],[9.0903332,49.5912521],[9.090002,49.5919175],[9.0891267,49.5929024],[9.0889878,49.5931465],[9.0888644,49.5936266],[9.0886544,49.5939916],[9.0887352,49.5941947],[9.0887209,49.5942672],[9.0886687,49.5945376],[9.0885519,49.5955679],[9.088648,49.5959457],[9.0880605,49.597252],[9.087863,49.597536],[9.0877368,49.5977174],[9.0872139,49.598469],[9.0864583,49.5989025],[9.0864153,49.5989271],[9.0859136,49.5992148],[9.0849433,49.6001902],[9.084578,49.6007128],[9.0844308,49.6008984],[9.0831487,49.6017841],[9.0825616,49.6017432],[9.0819632,49.6017052],[9.0817966,49.6017107],[9.0807688,49.6017446],[9.0795068,49.601559],[9.0781229,49.6013166],[9.0779674,49.601287],[9.0766703,49.6010402],[9.0751916,49.6008266],[9.0750601,49.6007658],[9.0749832,49.6007301],[9.0745546,49.6007197],[9.0742746,49.6007199],[9.0741509,49.6007201],[9.0736125,49.6007517],[9.07244,49.600942],[9.0714016,49.6011923],[9.0693977,49.6019653],[9.0692857,49.6020086],[9.0679734,49.602286],[9.0677748,49.6022868],[9.0667325,49.602291],[9.066486,49.6022919],[9.0664499,49.6026201],[9.0663897,49.6027146],[9.0663921,49.6028026],[9.0665486,49.6029116],[9.0664955,49.6029606],[9.0664943,49.6030505],[9.0664924,49.6031933],[9.0665215,49.6033432],[9.0666296,49.6035681],[9.0666215,49.6037109],[9.0663749,49.6037961],[9.0663779,49.6039218],[9.0663037,49.603982],[9.0663147,49.6040336],[9.0665453,49.6042588],[9.0664909,49.6044791],[9.0662455,49.6045153],[9.0662842,49.60461],[9.0665494,49.6049488],[9.0665332,49.6050498],[9.0664474,49.6050432],[9.0664883,49.6051156],[9.0663532,49.6051635],[9.0662307,49.6051556],[9.0662008,49.6052758],[9.0662647,49.6052942],[9.0663087,49.6052176],[9.0664487,49.6052928],[9.0664152,49.6053498],[9.0666691,49.60552],[9.0665696,49.6056546],[9.0669753,49.6057687],[9.0670223,49.6058432],[9.0669401,49.6060239],[9.0668629,49.6060494],[9.0668725,49.6060731],[9.0669548,49.6060514],[9.0670457,49.6061502],[9.066862,49.6061974],[9.0668775,49.6063038],[9.067141,49.6062976],[9.0669861,49.6063897],[9.0670417,49.6064256],[9.0670279,49.6064872],[9.0670974,49.6064962],[9.0671624,49.6066163],[9.0671457,49.6066871],[9.067197,49.6067444],[9.0673153,49.6067336],[9.067355,49.6068239],[9.0672913,49.6068859],[9.0674009,49.6069944],[9.067586,49.6069788],[9.0676373,49.607054],[9.0674764,49.6071132],[9.067564,49.6072876],[9.0676194,49.6073178],[9.0676561,49.6072478],[9.0678161,49.6072124],[9.0678031,49.6073472],[9.0678253,49.6075593],[9.0679069,49.6075198],[9.0679778,49.6075537],[9.067881,49.6078447],[9.0679989,49.607881],[9.068076,49.6080193],[9.0681411,49.6080826],[9.0683544,49.6080807],[9.0684631,49.6081975],[9.0684097,49.6083028],[9.068208,49.6083937],[9.0682267,49.6084743],[9.0683559,49.608527],[9.0682,49.6085998],[9.0681086,49.6086749],[9.0681093,49.6087399],[9.0682622,49.6087298],[9.0683704,49.6088088],[9.0683241,49.6088735],[9.0682525,49.6088586],[9.0682004,49.6088881],[9.0682438,49.6089266],[9.0683057,49.6088847],[9.0683462,49.6089436],[9.0683592,49.6090093],[9.0682837,49.6090466],[9.0681881,49.6091749],[9.0680649,49.6093053],[9.068113,49.6093627],[9.0681289,49.6095269],[9.0681027,49.6095821],[9.0682462,49.6095899],[9.0682866,49.6096537],[9.0682121,49.6097037],[9.0681989,49.6097977],[9.0681242,49.6098455],[9.0680398,49.6100807],[9.0679563,49.6101149],[9.0679323,49.6102061],[9.068295,49.6105071],[9.0683138,49.6105793],[9.068218,49.610656],[9.0682953,49.6108963],[9.0683963,49.610924],[9.0683706,49.6110005],[9.0682892,49.6110059],[9.0683156,49.6110815],[9.0682915,49.6112037],[9.0682645,49.611341],[9.0680933,49.6113583],[9.0679461,49.6113296],[9.0678339,49.61136],[9.0676847,49.6116715],[9.0677734,49.6119712],[9.0675829,49.6120619],[9.0672552,49.6121194],[9.0672813,49.6121833],[9.0672023,49.6122386],[9.0672584,49.6123268],[9.0672153,49.6124907],[9.0672203,49.6126533],[9.0671089,49.6128374],[9.0671597,49.6128781],[9.0671223,49.6129537],[9.0669573,49.6129565],[9.0668496,49.6130231],[9.0667605,49.6131843],[9.0666831,49.6132624],[9.0666311,49.6134668],[9.0665422,49.6134934],[9.0665323,49.6135409],[9.0664666,49.6135723],[9.0663986,49.6135986],[9.0663571,49.6136444],[9.0663694,49.6136698],[9.0664255,49.6136686],[9.066597,49.6138547],[9.0665681,49.6138988],[9.0665999,49.6139286],[9.0667161,49.6139127],[9.0667545,49.6140065],[9.0666701,49.6140326],[9.0666406,49.614181],[9.0665361,49.6141814],[9.0664675,49.6143391],[9.0664407,49.6143504],[9.0663813,49.614375],[9.0662898,49.6143229],[9.0661079,49.6144297],[9.0660191,49.6145191],[9.0658414,49.6145396],[9.0657166,49.6145106],[9.0656126,49.614624],[9.0654745,49.6147149],[9.0654356,49.6147878],[9.065428,49.6153046],[9.0654919,49.61542],[9.0654198,49.6155411],[9.0654299,49.6156234],[9.0652589,49.6157],[9.0652549,49.6158111],[9.0651893,49.6159112],[9.06507,49.6159454],[9.0650013,49.6160125],[9.0649853,49.616134],[9.0648758,49.6168244],[9.0649933,49.6172708],[9.0653489,49.6177684],[9.0658427,49.6181658],[9.0656895,49.6183032],[9.0660935,49.6186067],[9.0661512,49.6188378],[9.0662626,49.6189968],[9.0662492,49.6190454],[9.0662261,49.6191329],[9.0662964,49.6192037],[9.066779,49.6196779],[9.0669385,49.6197879],[9.067421,49.6200464],[9.0675665,49.6201429],[9.0682414,49.6205905],[9.0685066,49.6209281],[9.0685593,49.6212973],[9.06852,49.6220185],[9.0687335,49.6224356],[9.0687699,49.6225984],[9.0693251,49.6229179],[9.0699581,49.6232821],[9.0702752,49.6234645],[9.0707134,49.6236698],[9.071231,49.6239124],[9.0714067,49.6239683],[9.0719495,49.6241411],[9.072475,49.6243085],[9.0728329,49.6244224],[9.0731362,49.6245587],[9.0735456,49.6247427],[9.0736948,49.6248529],[9.0738616,49.6250153],[9.0744905,49.6253914],[9.0754237,49.6259496],[9.0757475,49.6264185],[9.0760762,49.6267687],[9.0770712,49.6273762],[9.0771935,49.6274788],[9.077658,49.6278686],[9.077856,49.6280348],[9.0778791,49.6280543],[9.0786279,49.6285938],[9.0794958,49.6291243],[9.0798384,49.6294047],[9.0800437,49.6297537],[9.0800574,49.629777],[9.0805934,49.6320101],[9.0809312,49.6324819],[9.0811539,49.6327048],[9.0816261,49.6330422],[9.0820411,49.6332386],[9.0829777,49.6336936],[9.0839133,49.6341602],[9.0845891,49.6347438],[9.0850002,49.6349417],[9.0854753,49.6351335],[9.0860867,49.6356752],[9.0866176,49.6355293],[9.0872905,49.6355907],[9.0881095,49.6356694],[9.0891563,49.6352905],[9.089399,49.6352028],[9.0893549,49.6354349],[9.0910581,49.6349818],[9.0919188,49.6351289],[9.0923931,49.6353283],[9.0926026,49.6356861],[9.093362,49.6363673],[9.0938363,49.63667],[9.0958261,49.6377414],[9.0959888,49.6378563],[9.0976911,49.6392518],[9.0990803,49.6400471],[9.1002538,49.6405023],[9.100752,49.6407601],[9.1013521,49.6411946],[9.1017949,49.6415612],[9.1019782,49.6418142],[9.1020712,49.6419786],[9.1021798,49.6424705],[9.102192,49.6425257],[9.1011043,49.643888],[9.1005347,49.6443476],[9.0995306,49.6451977],[9.0994362,49.6452776],[9.0993265,49.6454095],[9.0992245,49.6458002],[9.0991426,49.6461147],[9.099074,49.646377],[9.0990676,49.6464017],[9.0996775,49.6471508],[9.1000051,49.6475529],[9.1003655,49.6479953],[9.1004461,49.6481515],[9.1006372,49.6486905],[9.1009434,49.6491296],[9.1009236,49.649475],[9.1008917,49.6496694],[9.1007836,49.6499911],[9.1004956,49.6506668],[9.1001237,49.6514055],[9.0999154,49.6521426],[9.0997384,49.6526451],[9.0995819,49.6532632],[9.0997168,49.6535908],[9.0999668,49.6538346],[9.1001996,49.6541058],[9.1006241,49.6543592],[9.100842,49.654646],[9.1012259,49.6550958],[9.1014538,49.6554799],[9.1015271,49.6556838],[9.1017676,49.6558817],[9.1019861,49.6561641],[9.102384,49.6567596],[9.1028292,49.6575119],[9.1031073,49.6581376],[9.1031421,49.6584499],[9.1031321,49.6588786],[9.1031341,49.6591542],[9.1035251,49.6595747],[9.103772,49.6600047],[9.103581,49.6602313],[9.1033628,49.6603959],[9.1031564,49.6604224],[9.1028094,49.6606343],[9.1024807,49.6605867],[9.1023683,49.6605704],[9.1021367,49.6606652],[9.1019908,49.6608005],[9.1015818,49.6608716],[9.1012074,49.6611361],[9.100832,49.6611866],[9.1006673,49.6612842],[9.1002452,49.6614089],[9.1000971,49.6614254],[9.0999231,49.6615731],[9.0998119,49.6617428],[9.0996156,49.6618241],[9.0992269,49.6621297],[9.0987663,49.6622314],[9.0985586,49.6625494],[9.0985502,49.6626682],[9.098437,49.6628585],[9.0982193,49.6629545],[9.0980678,49.6629824],[9.0980835,49.6631425],[9.0980225,49.6632452],[9.0978863,49.6633166],[9.0976833,49.6633588],[9.097793,49.6636144],[9.0976857,49.6637602],[9.0973637,49.6639164],[9.0972477,49.6640552],[9.097214,49.6642356],[9.0968369,49.6647277],[9.0964961,49.6648266],[9.0963698,49.6649368],[9.0962194,49.665151],[9.0960584,49.6652313],[9.0959296,49.6654021],[9.0957303,49.665448],[9.0956198,49.6655629],[9.0953682,49.6655707],[9.095277,49.6655268],[9.0951394,49.6655695],[9.0950381,49.6656559],[9.0947529,49.6656567],[9.094573,49.6656968],[9.0943369,49.6658546],[9.0937052,49.6662077],[9.0934655,49.6663418],[9.0932186,49.6663815],[9.0930554,49.6664871],[9.0928911,49.6666977],[9.0928638,49.6667765],[9.0924631,49.6670396],[9.0923622,49.667094],[9.09226,49.6672364],[9.0919996,49.6673791],[9.091944,49.6673331],[9.091044,49.667677],[9.0903806,49.6679744],[9.0890891,49.6686936],[9.0888944,49.668791],[9.0887487,49.6689282],[9.0887147,49.6689604],[9.0888346,49.6693613],[9.0890204,49.6700389],[9.0890611,49.6710694],[9.0890768,49.6715315],[9.0891083,49.6716996],[9.0891236,49.6718929],[9.089094,49.6723101],[9.0890152,49.6726379],[9.0885949,49.6741963],[9.0887229,49.6752157],[9.0889387,49.675611],[9.0895581,49.6767463],[9.0893271,49.6786613],[9.0893028,49.6788635],[9.0892371,49.6800073],[9.0891638,49.6812795],[9.089095,49.6814585],[9.0882798,49.6835841],[9.0884044,49.6858075],[9.0883727,49.6859719],[9.0879642,49.6880895],[9.0879699,49.6881369],[9.0881057,49.689294],[9.0882223,49.6902871],[9.0883583,49.6905596],[9.0883799,49.6906203],[9.0889157,49.6916832],[9.0896365,49.6931968],[9.0923344,49.6949378],[9.0930695,49.6952376],[9.0950762,49.6960656],[9.0952292,49.6961162],[9.0968218,49.6961509],[9.0980263,49.6959036],[9.1003763,49.6959673],[9.1008798,49.6960462],[9.1023358,49.6963133],[9.1033571,49.6964127],[9.1035033,49.6964336],[9.1056402,49.6969455],[9.1057633,49.69698],[9.1057773,49.6969866],[9.10602,49.6971005],[9.1071191,49.6971589],[9.1084963,49.6973059],[9.1098476,49.6975133],[9.1108326,49.6976509],[9.1112776,49.6977628],[9.1119222,49.6977724],[9.1121082,49.697879],[9.1128309,49.697753],[9.1131438,49.6978611],[9.1135586,49.6976704],[9.114,49.6977697],[9.1141908,49.6976594],[9.1148073,49.6976278],[9.1150939,49.6976972],[9.1155913,49.6975683],[9.1159567,49.6977472],[9.1162798,49.6975757],[9.1166344,49.6978026],[9.1170992,49.6978162],[9.1178958,49.6980282],[9.1182455,49.6978386],[9.1185138,49.6980561],[9.1192888,49.6979987],[9.1203776,49.6982913],[9.1211124,49.6985431],[9.1220453,49.698623],[9.1223524,49.6988406],[9.122527,49.6989089],[9.1238535,49.6994287],[9.1240412,49.6994795],[9.1248137,49.6996662],[9.1255318,49.6997454],[9.1262105,49.6999823],[9.126722,49.7001649],[9.1269153,49.7002339],[9.1273383,49.7002937],[9.1277865,49.700357],[9.127853,49.7004736],[9.1278731,49.7005098],[9.1279629,49.7006725],[9.1279996,49.7007411],[9.1277676,49.7010099],[9.1278246,49.7015966],[9.1278664,49.7020511],[9.1280273,49.7022694],[9.1280676,49.7024542],[9.1280808,49.7025149],[9.1279989,49.7028541],[9.1277639,49.7038286],[9.127529,49.7048009],[9.1275006,49.7050662],[9.1274089,49.7059215],[9.1273638,49.7067115],[9.1273629,49.7067282],[9.1258507,49.7065903],[9.12488,49.7065016],[9.1246533,49.7064809],[9.1238418,49.7064115],[9.1238034,49.7065614],[9.1236388,49.7072066],[9.12351,49.7072463],[9.1235373,49.7077622],[9.1234617,49.7084594],[9.1234149,49.7085963],[9.1231863,49.7087982],[9.1222811,49.7091749],[9.1221963,49.7095905],[9.1220644,49.7099402],[9.1217707,49.7102203],[9.1218223,49.7104097],[9.1219289,49.710865],[9.1216858,49.7112198],[9.1216517,49.7112696],[9.1216271,49.7117819],[9.1217697,49.712526],[9.121778,49.7127546],[9.1215632,49.712929],[9.1218482,49.7134102],[9.1218468,49.7137634],[9.1212762,49.7142116],[9.1211826,49.7144512],[9.1212237,49.7146486],[9.1220302,49.7146113],[9.1245708,49.7146041],[9.1280687,49.7145994],[9.1294351,49.714595],[9.1298476,49.7146018],[9.1315221,49.7146555],[9.133632,49.7157114],[9.1346272,49.7164153],[9.1347872,49.7168917],[9.1350455,49.7173526],[9.1351052,49.7174972],[9.1353201,49.7181504],[9.1355327,49.7184505],[9.135457,49.7187837],[9.1356676,49.7193204],[9.1353804,49.7198269],[9.1357748,49.7203003],[9.1356149,49.7208983],[9.1358957,49.7214195],[9.1357097,49.7219606],[9.1359731,49.7224934],[9.1361765,49.7235959],[9.1360929,49.7241397],[9.1364451,49.7245345],[9.136552,49.7249989],[9.1369097,49.7253971],[9.1375346,49.7258457],[9.1379343,49.7260628],[9.1383041,49.7262637],[9.1387266,49.7264931],[9.1387738,49.7265344],[9.1390895,49.7268495],[9.1395449,49.7272298],[9.1397939,49.7277049],[9.1401237,49.7281788],[9.140591,49.7287503],[9.1409903,49.7293913],[9.1411536,49.7298367],[9.1410366,49.7303811],[9.1413993,49.7306771],[9.1416565,49.7312402],[9.1420133,49.7316735],[9.1420901,49.7321602],[9.1425943,49.7330335],[9.142441,49.7337043],[9.1424499,49.7340626],[9.1427527,49.7348712],[9.1431184,49.7356675],[9.1438131,49.737005],[9.1447519,49.738314],[9.1462253,49.739337],[9.1464059,49.7394216],[9.1470973,49.7397457],[9.147159,49.7397746],[9.147818,49.7404348],[9.14797,49.740696],[9.1485888,49.741366],[9.1497149,49.7420688],[9.1501197,49.7421992],[9.1503351,49.7424194],[9.1505552,49.7426635],[9.1505794,49.7427032],[9.1491805,49.7432856],[9.149225,49.7433468],[9.149285,49.7434514],[9.1482812,49.743688],[9.1472249,49.7441373],[9.1466535,49.7440299],[9.1456736,49.7442422],[9.1450529,49.7443886],[9.1446728,49.7444939],[9.1446179,49.744509],[9.144484,49.7445651],[9.1441904,49.744767],[9.1437394,49.745161],[9.1437899,49.7452405],[9.1440891,49.7457848],[9.1442292,49.7460471],[9.1442699,49.7461001],[9.1444115,49.7464277],[9.1447999,49.7471508],[9.1449709,49.7474688],[9.1449151,49.7474988],[9.141875,49.7490145],[9.1416442,49.7491185],[9.1408057,49.7494964],[9.1405604,49.7496212],[9.1381326,49.7507082],[9.1358855,49.7516982],[9.133916,49.7525975],[9.1320497,49.7534735],[9.1315235,49.7536997],[9.1279464,49.7552379],[9.1279086,49.7551838],[9.127803,49.7552152],[9.1277219,49.7552395],[9.125823,49.7558062],[9.1233024,49.7559514],[9.1213533,49.7559976],[9.1200172,49.7559729],[9.1185811,49.7560239],[9.1175951,49.7563064],[9.1162921,49.7563962],[9.1158488,49.7564378],[9.1133748,49.7564498],[9.1119509,49.7566827],[9.1106327,49.7571206],[9.1090708,49.7578192],[9.1088115,49.7579552],[9.1078266,49.7584984],[9.107313,49.7586423],[9.1069689,49.7587498],[9.1070135,49.758831],[9.1070411,49.7588814],[9.1074648,49.7596172],[9.1076587,49.7606985],[9.1080481,49.7617675],[9.1084032,49.7626052],[9.1084443,49.7627018],[9.1096192,49.7639274],[9.1099998,49.7646424],[9.1100684,49.7647628],[9.1101646,49.7653844],[9.1102078,49.7656786],[9.1104701,49.7663076],[9.1109723,49.7665658],[9.1119101,49.7666738],[9.1129388,49.7668896],[9.1127861,49.7671647],[9.1131953,49.767378],[9.1132349,49.7676778],[9.1131415,49.7680228],[9.1128876,49.7683912],[9.1122942,49.7690726],[9.1120953,49.7693007],[9.1120514,49.7696494],[9.1126365,49.770846],[9.112709,49.7712249],[9.1124006,49.7720975],[9.1124082,49.7724179],[9.1128801,49.7730866],[9.1133158,49.7734967],[9.1132666,49.7737732],[9.1148968,49.7737344],[9.1171264,49.7736907],[9.118301,49.7739689],[9.1191593,49.7744894],[9.119358,49.7747533],[9.1194841,49.7752365],[9.1198561,49.775476],[9.1205982,49.7756048],[9.1212556,49.7756932],[9.1231357,49.7766101],[9.1238636,49.7765445],[9.1244495,49.7765433],[9.1265375,49.7763904],[9.1272623,49.7764505],[9.1276526,49.7766385],[9.1287398,49.7778039],[9.1292498,49.7783948],[9.1301686,49.7792507],[9.1307106,49.7796579],[9.1313907,49.779975],[9.1311072,49.780285],[9.131655,49.7804129],[9.1318312,49.7804879],[9.1320486,49.7805702],[9.1328254,49.7810907],[9.1335674,49.7815927],[9.134301,49.782186],[9.1343678,49.7825488],[9.1341887,49.7831945],[9.1337131,49.783605],[9.1332073,49.7840443],[9.1322545,49.7848576],[9.1316789,49.785336],[9.1305459,49.7862946],[9.1303863,49.7864602],[9.1296999,49.787176],[9.129591,49.7871879],[9.1293973,49.7872333],[9.1291613,49.7877896],[9.1295584,49.7883487],[9.1295047,49.7883661],[9.1299385,49.7890862],[9.1299939,49.7900832],[9.1299059,49.7904904],[9.1299451,49.7904944],[9.12972,49.7911478],[9.1296902,49.7915922],[9.1297044,49.7919272],[9.1296559,49.7925566],[9.1295889,49.792739],[9.1295212,49.7930342],[9.1295104,49.7930723],[9.1312346,49.7937327],[9.1321799,49.7941033],[9.1321528,49.7941411],[9.131582,49.7947762],[9.1314987,49.7948008],[9.1314354,49.7949067],[9.1311881,49.7949187],[9.1309916,49.7949689],[9.1295998,49.7954078],[9.1294845,49.7954358],[9.1279315,49.7958119],[9.12727,49.7959062],[9.1262075,49.7960469],[9.124997,49.796214],[9.1249531,49.7961948],[9.1228714,49.7965768],[9.1225477,49.7966305],[9.1218697,49.7966545],[9.1211052,49.7966895],[9.118469,49.7970287],[9.1163361,49.7972352],[9.114991,49.797488],[9.1146329,49.797601],[9.1144398,49.7976253],[9.1130804,49.7977965],[9.1116991,49.7978486],[9.1111171,49.7978758],[9.1105895,49.7979006],[9.1100756,49.7979176],[9.1099023,49.7979112],[9.1084359,49.7980476],[9.1081077,49.798023],[9.107952,49.7980112],[9.1076308,49.7977651],[9.1060118,49.7964235],[9.105005,49.7957902],[9.1048171,49.795672],[9.1036119,49.7949398],[9.1023667,49.794289],[9.1010109,49.79373],[9.0994821,49.7931804],[9.0980157,49.7927337],[9.0965632,49.7922354],[9.095801,49.7917205],[9.0940935,49.7902508],[9.092217,49.7905334],[9.090861,49.7908246],[9.0907306,49.7908526],[9.0905255,49.791952],[9.0904699,49.7925304],[9.0903993,49.7932637],[9.0903116,49.7933481],[9.0900973,49.7935549],[9.0901119,49.7939288],[9.0902691,49.794539],[9.0903299,49.7952489],[9.0902789,49.7958345],[9.0902706,49.7959478],[9.0895306,49.7964722],[9.0888779,49.7968925],[9.0887284,49.7969818],[9.0880876,49.7975494],[9.087779,49.7982385],[9.0876044,49.7985115],[9.0875479,49.7986179],[9.0874148,49.798803],[9.0873418,49.7989046],[9.0871935,49.7991106],[9.0869858,49.7993991],[9.0872921,49.799635],[9.0876897,49.8005712],[9.087783,49.800791],[9.087317,49.8021756],[9.0872879,49.8029368],[9.0871955,49.8036978],[9.0869771,49.804481],[9.0868245,49.8052439],[9.0867951,49.805325],[9.0866683,49.8056753],[9.0864497,49.8062689],[9.0863214,49.806618],[9.0857342,49.8075606],[9.0855677,49.8078022],[9.085072,49.8084492],[9.0847697,49.8088284],[9.0845191,49.8090077],[9.0826303,49.810359],[9.0820719,49.8109222],[9.0820384,49.811003],[9.0819624,49.8111859],[9.0817985,49.8115816],[9.0816415,49.8122337],[9.0816099,49.8125501],[9.0814515,49.8133382],[9.0810958,49.8137743],[9.0810021,49.8138493],[9.0800987,49.8145723],[9.0786708,49.8154453],[9.0781951,49.816198],[9.0774393,49.8174257],[9.0770541,49.8182684],[9.0773662,49.8191423],[9.0778335,49.8200103],[9.0782556,49.8203347],[9.0785759,49.8206113],[9.0802388,49.8220474],[9.0813033,49.8230295],[9.0812498,49.8230589],[9.0816306,49.8240441],[9.0826093,49.8242661],[9.082968,49.8244103],[9.083206,49.824506],[9.0839002,49.8248276],[9.0838261,49.8249164],[9.0843491,49.8251294],[9.0851458,49.8255627],[9.0857671,49.8259149],[9.0862067,49.8261468],[9.0868659,49.826554],[9.0855799,49.8290535],[9.0855483,49.8291077],[9.0830101,49.8296108],[9.0837288,49.8308914],[9.0831889,49.8322098],[9.0828141,49.8328398],[9.0820495,49.8332302],[9.0814803,49.8334504],[9.0809006,49.833667],[9.0800269,49.8339126],[9.0782544,49.8341615],[9.0781192,49.8341804],[9.0778266,49.8346622],[9.0780105,49.8349564],[9.0784261,49.8350406],[9.0785543,49.8355104],[9.0786948,49.8356458],[9.0787959,49.8360709],[9.0795054,49.8367723],[9.0802805,49.8372567],[9.0802731,49.8373983],[9.0804424,49.8374751],[9.0804415,49.837787],[9.0806639,49.8378411],[9.0808852,49.838199],[9.08143,49.8384568],[9.0815707,49.8386056],[9.0821067,49.8388062],[9.0823815,49.8390408],[9.0832514,49.8391802],[9.0843593,49.8394858],[9.0856014,49.8396588],[9.0866696,49.8396352],[9.0870115,49.8398231],[9.0878828,49.8400711],[9.0887928,49.8404208],[9.0891837,49.8406273],[9.0894414,49.8407632],[9.0899532,49.8410828],[9.0899808,49.8410999],[9.0897697,49.8414812],[9.089366,49.8418987],[9.089028,49.8422354],[9.0885166,49.8427076],[9.0882423,49.8429722],[9.0878076,49.8433837],[9.0875575,49.8436203],[9.0873814,49.843832],[9.0868916,49.8444213],[9.0868521,49.8445147],[9.0866179,49.845071],[9.0864049,49.8457279],[9.0862458,49.8462074],[9.0860009,49.8465879],[9.0858026,49.8468957],[9.0852496,49.8476968],[9.084274,49.8467586],[9.0832987,49.8458239],[9.0830872,49.845627],[9.0829781,49.8455286],[9.082779,49.8453478],[9.082069,49.8448465],[9.0815335,49.8444161],[9.0803479,49.8434924],[9.0792456,49.8431183],[9.0785949,49.8429015],[9.0773526,49.8420348],[9.0768355,49.8413783],[9.0753227,49.8395526],[9.0746267,49.8385297],[9.0743788,49.8381654],[9.0713092,49.8363409],[9.0709526,49.8355558],[9.0705996,49.8348155],[9.0707844,49.8344474],[9.0703754,49.8333635],[9.0698287,49.8331949],[9.0681603,49.8326911],[9.0658057,49.8320245],[9.0648006,49.831793],[9.0635373,49.8320002],[9.0618046,49.8322587],[9.0604271,49.8325051],[9.0593346,49.8326413],[9.0582481,49.8328256],[9.0577463,49.833229],[9.0572553,49.8336179],[9.0565895,49.8339997],[9.0565856,49.8340046],[9.0561589,49.8345639],[9.0567775,49.8349688],[9.0569284,49.8353427],[9.0568642,49.8353785],[9.0567088,49.8354647],[9.0570807,49.8358088],[9.0580521,49.8367096],[9.0579229,49.8368155],[9.0585638,49.8378723],[9.0593465,49.8387178],[9.0591094,49.8388661],[9.0590164,49.8392622],[9.0585313,49.8396762],[9.0598097,49.8406448],[9.0593231,49.8410085],[9.0589081,49.8410741],[9.0588518,49.8410864],[9.0585713,49.8412058],[9.0584396,49.8412618],[9.0567684,49.840609],[9.0552382,49.8400056],[9.0538374,49.8392366],[9.0535219,49.8395127],[9.0531222,49.8398626],[9.0543863,49.8403001],[9.053462,49.8411839],[9.0545199,49.8415364],[9.0544345,49.8417278],[9.0539686,49.8427752],[9.0544341,49.84289],[9.0546263,49.8429315],[9.0550364,49.8428328],[9.0564968,49.8432088],[9.0561809,49.8437109],[9.0563132,49.8437409],[9.0560294,49.8441506],[9.0564878,49.8443341],[9.056392,49.8444905],[9.0566846,49.8446132],[9.0571118,49.8446527],[9.0585133,49.844703],[9.0584152,49.8450216],[9.0592172,49.8451505],[9.0594139,49.845182],[9.0606186,49.8455393],[9.0605954,49.8455696],[9.0601605,49.8461386],[9.0601327,49.8461748],[9.0580795,49.8456472],[9.0579472,49.8456184],[9.0558753,49.8453636],[9.0547839,49.8454806],[9.0540458,49.8455308],[9.0534084,49.8450373],[9.0524818,49.843883],[9.0518595,49.8430903],[9.0501806,49.8420831],[9.0496953,49.8420799],[9.0469429,49.8420618],[9.0455087,49.8421982],[9.0451184,49.8425953],[9.0446772,49.8428691],[9.043995,49.8432923],[9.0439224,49.8433695],[9.0433802,49.844033],[9.0424954,49.8437116],[9.0425574,49.8430484],[9.0424925,49.8413735],[9.041802,49.8405842],[9.0415797,49.8399299],[9.0406418,49.8404464],[9.0401755,49.8407032],[9.0383247,49.8422086],[9.0378118,49.8426258],[9.0378027,49.842659],[9.0373309,49.8443881],[9.0373015,49.8444954],[9.0372285,49.8447626],[9.0372016,49.8448608],[9.0366115,49.8458904],[9.0361394,49.8463978],[9.0369168,49.8466943],[9.0377893,49.8470499],[9.0383809,49.847161],[9.0395466,49.8472609],[9.0407317,49.8474705],[9.0410051,49.8485061],[9.0414465,49.8492245],[9.0421779,49.8497284],[9.0432552,49.8502826],[9.0428132,49.8519699],[9.0426618,49.8524812],[9.0425943,49.8527406],[9.0425255,49.8530043],[9.0425692,49.8532456],[9.0426186,49.8535201],[9.0427731,49.8543682],[9.0434982,49.8551719],[9.0437906,49.8554858],[9.0425699,49.8559084],[9.0415889,49.8565018],[9.0412679,49.8566959],[9.0403639,49.8569274],[9.0382014,49.8573961],[9.0380647,49.8574826],[9.0372569,49.8579934],[9.0355497,49.8591206],[9.0338196,49.8603891],[9.0338328,49.8604699],[9.0341151,49.8621463],[9.0343905,49.863792],[9.0337911,49.8650658],[9.0332578,49.8665686],[9.0337878,49.866666],[9.0367412,49.8672167],[9.0382443,49.8655446],[9.0392916,49.8658184],[9.0397199,49.8658747],[9.0402445,49.8659436],[9.0409021,49.8660735],[9.0420422,49.8662987],[9.0424208,49.866743],[9.043472,49.8679443],[9.045047,49.8670458],[9.0464477,49.8663862],[9.0471274,49.8662761],[9.0479167,49.8661926],[9.0493237,49.8661082],[9.0502328,49.8662223],[9.0502835,49.8662287],[9.050305,49.8663162],[9.0504921,49.8668934],[9.0504967,49.8672994],[9.0504699,49.8673813],[9.050383,49.8676821],[9.048967,49.8680459],[9.0488924,49.8685431],[9.0482168,49.869081],[9.0470966,49.8693728],[9.0458127,49.869669],[9.0451475,49.8702479],[9.0449469,49.8710429],[9.0442247,49.8723358],[9.0427546,49.8733364],[9.0425848,49.8734521],[9.0416453,49.8739781],[9.0401998,49.8749084],[9.0395151,49.8753283],[9.0385596,49.8761376],[9.0381202,49.8771155],[9.0378315,49.8775871],[9.0375933,49.8781182],[9.0375325,49.8783141],[9.0374485,49.8785922],[9.03722,49.879121],[9.0372653,49.8797334],[9.0373638,49.8803732],[9.0376913,49.8818599],[9.0376913,49.8819809],[9.0376739,49.882751],[9.037658,49.8834616],[9.0376231,49.8835929],[9.0375728,49.8837825],[9.0375021,49.8839332],[9.037199,49.8845306],[9.037505,49.884613],[9.0374251,49.8847581],[9.0376178,49.8849056],[9.0371227,49.8858384],[9.0371074,49.8858672],[9.0373252,49.8858868],[9.0378713,49.8859979],[9.0376977,49.8864856],[9.0375276,49.8868798],[9.0374406,49.8870578],[9.0376794,49.8871105],[9.0376828,49.8872226],[9.0377795,49.8872515],[9.0379162,49.8872924],[9.0378808,49.8873815],[9.0377677,49.8873588],[9.0376863,49.8873426],[9.0375547,49.8875618],[9.037502,49.8876497],[9.0375657,49.8876829],[9.0374662,49.8881444],[9.0374484,49.8882929],[9.037443,49.8884643],[9.0375292,49.8887659],[9.0376421,49.889111],[9.0375345,49.8891493],[9.0379413,49.8898133],[9.0377037,49.88987],[9.0379828,49.8904221],[9.0376338,49.890436],[9.0375202,49.8904405],[9.037371,49.8917135],[9.0374345,49.8917212],[9.0376939,49.8917785],[9.0377122,49.8922844],[9.0376818,49.892331],[9.0376538,49.8923738],[9.0375827,49.8927164],[9.0372487,49.893573],[9.0372339,49.893611],[9.0370974,49.8939281],[9.0369988,49.8941576],[9.0369715,49.894221],[9.0369184,49.8943351],[9.0368746,49.8944292],[9.0366027,49.8949001],[9.0363939,49.8955449],[9.036983,49.8957639],[9.0371117,49.8958463],[9.0361191,49.8961492],[9.0360588,49.8962684],[9.0357448,49.8968893],[9.0354491,49.897077],[9.0356748,49.8988838],[9.0356802,49.8989263],[9.0356499,49.8993827],[9.0355516,49.8993796],[9.033601,49.8993608],[9.0335786,49.8997543],[9.0337737,49.8997974],[9.0332159,49.9003947],[9.0331222,49.9003909],[9.0330055,49.9005833],[9.0324556,49.9003647],[9.0319675,49.9007866],[9.031379,49.9012983],[9.0321863,49.9013742],[9.0327364,49.9013998],[9.0326451,49.9015846],[9.0325014,49.9018749],[9.0321294,49.9023944],[9.0310065,49.9039551],[9.0310508,49.9039592],[9.0326248,49.9043921],[9.0311257,49.9056867],[9.0309389,49.9055272],[9.0299951,49.9058252],[9.0301462,49.9060591],[9.0305483,49.9064291],[9.0309001,49.9067355],[9.0308524,49.9068794],[9.0312945,49.907114],[9.0313261,49.9072134],[9.0313427,49.9072653],[9.031653,49.9082398],[9.0315572,49.9087196],[9.0319727,49.9088218],[9.0322803,49.9089797],[9.0320237,49.9094558],[9.0310301,49.9092607],[9.0310584,49.9090984],[9.0306622,49.9090603],[9.0294332,49.9089985],[9.0291943,49.9096233],[9.0283749,49.909525],[9.0277663,49.9095268],[9.0275243,49.9094789],[9.0272476,49.9099221],[9.0259599,49.9097269],[9.0253735,49.90944],[9.0251337,49.9093886],[9.0250371,49.909475],[9.0245537,49.9093415],[9.0233822,49.910096],[9.0237917,49.9109146],[9.0237466,49.9109872],[9.0237341,49.9110081],[9.0246891,49.9125437],[9.0255637,49.9133441],[9.0262212,49.9141295],[9.0266582,49.9150247],[9.0268734,49.9158196],[9.0274114,49.9169059],[9.0283165,49.9180295],[9.0287708,49.918752],[9.0298315,49.9200008],[9.0303157,49.9210548],[9.0312773,49.9225833],[9.0320391,49.9239139],[9.0322846,49.9245929],[9.0321966,49.9248607],[9.0318424,49.9252214],[9.031413,49.9256586],[9.0313883,49.9256837],[9.0312043,49.925871],[9.0311818,49.9258942],[9.029882,49.9268752],[9.0292465,49.9274948],[9.0296452,49.9284373],[9.0294703,49.9299],[9.0296975,49.931549],[9.0292502,49.9324153],[9.0288498,49.9325361],[9.0285009,49.9326414],[9.0283254,49.9326944],[9.0278909,49.933058],[9.0271417,49.9341759],[9.0270867,49.9343163],[9.0269701,49.934615],[9.0267273,49.935237],[9.0263748,49.9361396],[9.0257815,49.9379553],[9.0257672,49.9386379],[9.0255932,49.9395507],[9.0253752,49.940694],[9.0254319,49.9414298],[9.0255624,49.9431277],[9.0254625,49.9438201],[9.025387,49.9443451],[9.0253378,49.9448435],[9.0254027,49.9456445],[9.0249249,49.9456301],[9.0243785,49.9457417],[9.0190688,49.9468385],[9.0194909,49.9473826],[9.0199503,49.9480135],[9.0201188,49.9480926],[9.0202191,49.9481405],[9.0212737,49.949544],[9.0217314,49.9499749],[9.022584,49.9504151],[9.024137,49.9523021],[9.0243809,49.952541],[9.0246886,49.9528348],[9.0249554,49.953317],[9.0250647,49.9534655],[9.0258746,49.9541503],[9.0259981,49.9543548],[9.026714,49.9550681],[9.0266516,49.9551361],[9.0265599,49.9552359],[9.0261898,49.9553728],[9.0258602,49.9556342],[9.0256064,49.9560921],[9.0241586,49.9586216],[9.0241095,49.9588242],[9.0237048,49.9603742],[9.023781,49.9613411],[9.0238923,49.9620982],[9.0236862,49.9636094],[9.0235871,49.9640344],[9.0235577,49.9646008],[9.0232116,49.9656977],[9.0226724,49.9667937],[9.0218632,49.9677518],[9.0216322,49.9688188],[9.0215631,49.9696559],[9.0215566,49.9697019],[9.0215331,49.9698696],[9.0215116,49.9700227],[9.0214996,49.9700724],[9.0214469,49.9702916],[9.0212486,49.9711171],[9.0206733,49.9729211],[9.0201692,49.9739484],[9.0201375,49.9741136],[9.0200651,49.97449],[9.0198509,49.974469],[9.0193967,49.974418],[9.0190995,49.9745722],[9.0191303,49.9747435],[9.0192599,49.9754632],[9.0192965,49.9756663],[9.0192852,49.9767187],[9.0190024,49.9772292],[9.0186537,49.9778589],[9.018733,49.9783139],[9.0192497,49.9784408],[9.0199834,49.9784344],[9.01998,49.9786324],[9.0199526,49.9801919],[9.0199987,49.9808029],[9.020047,49.9814423],[9.0200272,49.9816127],[9.0199819,49.9820055],[9.020301,49.9826565],[9.0205409,49.9834856],[9.0204779,49.9840179],[9.020319,49.9843302],[9.0200767,49.9848066],[9.0201149,49.9852661],[9.0196753,49.9866009],[9.0194482,49.9869741],[9.0183261,49.9873467],[9.0180283,49.9874546],[9.0171673,49.987922],[9.0164231,49.9884169],[9.015651,49.9892066],[9.0150062,49.9897059],[9.0144256,49.9907036],[9.0143269,49.9910115],[9.0142043,49.9913844],[9.0143241,49.9914457],[9.01457,49.9915972],[9.0149357,49.9918222],[9.0158603,49.992391],[9.0160058,49.9924805],[9.0160989,49.9925377],[9.0161918,49.9925949],[9.0167154,49.9929171],[9.0173385,49.9933004],[9.017588,49.9934539],[9.0185397,49.9939826],[9.0189043,49.9941852],[9.020343,49.9951155],[9.0221551,49.9962871],[9.0229766,49.9970518],[9.0243929,49.9963022],[9.0270841,49.9945271],[9.0282862,49.9935799],[9.0294495,49.9926091],[9.029513,49.9924421],[9.0306429,49.9894743],[9.0307531,49.989185],[9.030953,49.98866],[9.0315204,49.9886188],[9.0361727,49.9882812],[9.0368602,49.9882312],[9.0376604,49.9882013],[9.0409284,49.9879428],[9.0412814,49.9879333],[9.0430481,49.9878859],[9.0447219,49.9879099],[9.0448701,49.9879667],[9.045146,49.9881521],[9.0453798,49.9883719],[9.0469372,49.9898362],[9.0472361,49.9900424],[9.0482248,49.9905243],[9.048449,49.9906525],[9.04882,49.9908646],[9.0494248,49.9912851],[9.0497543,49.9915875],[9.0504329,49.9922128],[9.0513498,49.9930429],[9.0510558,49.9945864],[9.0507979,49.995482],[9.0503114,49.9960943],[9.0493219,49.9968545],[9.0491113,49.9969948],[9.0490807,49.9970149],[9.0490554,49.997032],[9.0479758,49.9977301],[9.046548,49.9986525],[9.0453805,49.9982873],[9.0441329,49.9985321],[9.0433261,49.9987056],[9.0430842,49.9987576],[9.0425372,49.9988753],[9.0425197,49.998879],[9.0420278,49.9990332],[9.0416485,49.9990151],[9.0408386,49.9992701],[9.040534,49.9995243],[9.0403207,49.9996221],[9.0398981,50.0000324],[9.0384906,50.000334],[9.0380659,50.0002393],[9.0373336,50.0008569],[9.0370664,50.0013294],[9.036932,50.001584],[9.0366041,50.0018562],[9.0366542,50.0023365],[9.0361891,50.0027354],[9.0361548,50.0031318],[9.0360014,50.0035806],[9.0358516,50.0037186],[9.0354017,50.0039266],[9.0351832,50.0042964],[9.035419,50.0048594],[9.0354278,50.0048921],[9.0354992,50.0051535],[9.0355178,50.0052219],[9.0359185,50.0056487],[9.0349022,50.0063137],[9.0348146,50.0063709],[9.0348563,50.0064088],[9.0354466,50.0069454],[9.0357827,50.0073544],[9.0361713,50.0075966],[9.0369758,50.0079164],[9.0378976,50.0085005],[9.0381628,50.0086307],[9.0387052,50.008897],[9.0391271,50.0091508],[9.0391759,50.0091802],[9.0387852,50.0100322],[9.0394514,50.0103745],[9.038735,50.0110037],[9.0367533,50.012896],[9.0358399,50.0137625],[9.0357724,50.0138268],[9.0356896,50.0139054],[9.0356067,50.0139839],[9.0355316,50.0140552],[9.0352589,50.0143141],[9.0341778,50.0153886],[9.0326688,50.0172089],[9.0314288,50.019724],[9.0304493,50.0220961],[9.0298094,50.0242645],[9.0296955,50.0261998],[9.0297621,50.0266471],[9.0298881,50.0274925],[9.0301753,50.0287197],[9.0307039,50.0299138],[9.0314979,50.0322961],[9.0315793,50.0325076],[9.0317173,50.0339127],[9.0319018,50.0357917],[9.0319067,50.0358275],[9.0319125,50.0358684],[9.0320479,50.0373253],[9.0314046,50.0389398],[9.0298512,50.0404482],[9.0268749,50.042443],[9.0256131,50.043161],[9.0230013,50.0440379],[9.0226126,50.0440629],[9.0225858,50.0439893],[9.0216648,50.0440876],[9.020528,50.044209],[9.0188021,50.0444972],[9.0184072,50.0445632],[9.0177181,50.0446585],[9.0149427,50.0452988],[9.0127686,50.0456323],[9.0119909,50.0457067],[9.0109756,50.0457701],[9.0098045,50.0457645],[9.0062781,50.0455523],[9.0043206,50.0453239],[9.0016722,50.0448729],[9.0008501,50.0446752],[8.9989545,50.0441967],[8.9983263,50.0437495],[8.9968836,50.04317],[8.994856,50.0427044],[8.9937534,50.0423947],[8.9925637,50.0422904],[8.9918847,50.042026],[8.9903476,50.0416709],[8.9901563,50.0416565],[8.9889824,50.0415681],[8.9875543,50.0415336],[8.9860021,50.0416676],[8.9844819,50.0420064],[8.9835581,50.0423054],[8.9821987,50.0428768],[8.9801371,50.0439789],[8.979677,50.0443279],[8.9792963,50.0446168],[8.9788341,50.0449677],[8.9777977,50.0459129],[8.9771917,50.0469139],[8.9770105,50.0473187],[8.9763497,50.0497851]] \ No newline at end of file diff --git a/benchmarking/src/data/index.js b/benchmarking/src/data/index.js new file mode 100644 index 0000000..820b507 --- /dev/null +++ b/benchmarking/src/data/index.js @@ -0,0 +1,5 @@ +import { data as large } from './large.js' +import { data as small } from './small.js' +import { data as bavaria } from './bavaria.js' + +export const dataSelector = { large, small, bavaria } diff --git a/data/large.js b/benchmarking/src/data/large.js similarity index 100% rename from data/large.js rename to benchmarking/src/data/large.js diff --git a/data/small.js b/benchmarking/src/data/small.js similarity index 100% rename from data/small.js rename to benchmarking/src/data/small.js diff --git a/benchmarking/src/index.js b/benchmarking/src/index.js index d8ebd37..255b77a 100644 --- a/benchmarking/src/index.js +++ b/benchmarking/src/index.js @@ -1,111 +1,52 @@ import React, { Component } from 'react' import ReactDOM from 'react-dom' -import { data } from '../../data/large.js' - import { Form } from './components/form.js' -import { Chart } from './components/chart.js' -import { Progress } from './components/progress.js' +import { DebouncedChart, Chart } from './components/chart.js' +import { BenchmarkRunner } from './components/runner.js' -import { BenchmarkSuite } from './benchmarks/BenchmarkSuite.js' -import { generateCases } from './benchmarkCases/index.js' -import { IterationsBenchmark } from './benchmarks/IterationBenchmark.js' -import { BenchmarkJSBenchmark } from './benchmarks/BenchmarkJSBenchmark.js' -import { OpsPerTimeBenchmark } from './benchmarks/OpsPerTimeBenchmark.js' - -import simplifyJS from '../../lib/simplify-js-alternative/simplify.js' -import { simplifyWasm } from '../../lib/simplify-wasm/index.js' - -export async function simplifyMapper(labels, highQual) { - let items = labels.map(tol => - simplifyWasm(data, tol, highQual).then(arr => arr.length) - ) - return await Promise.all(items) -} +import { simplifyMapper } from './simplifyMapper.js' class App extends Component { constructor(props) { super(props) - this.handleformChange = this.handleformChange.bind(this) - this.handleFormSubmit = this.handleFormSubmit.bind(this) + this.handleFormChange = this.handleFormChange.bind(this) + this.handleStatsChange = this.handleStatsChange.bind(this) this.state = { stats: {}, - formState: { tolRange: [] }, - totalCount: 0, - finishedCount: 0, - numNodes: [] - } - - this.suite = new BenchmarkSuite(new IterationsBenchmark(10)) - this.suite.onCycle = (i, count, stats) => { - this.setState({ - finishedCount: i, - totalCount: count, - stats: stats - }) + formState: {}, + nodeData: [] } } - async handleFormSubmit() { - this.runBenchmarks() - } - - async handleformChange(formState) { - const { tolStart, tolEnd, tolStep } = formState - const tolRange = [] - for (let i = tolStart; i < tolEnd; i += tolStep) { - tolRange.push(i) - if (tolStep === 0) break - if (tolRange.length > 200) break - } + async handleFormChange(formState) { this.setState({ - formState: { ...formState, tolRange }, - numNodes: await simplifyMapper(tolRange, formState.highQual) + formState, + nodeData: await simplifyMapper(formState), + stats: {} }) } - async runBenchmarks() { - this.suite.reset() - let benchtype - console.log(this.state.formState.benchMethod) - switch (this.state.formState.benchMethod) { - case 'benchmarkJS': - benchtype = new BenchmarkJSBenchmark() - break - case 'iteration': - benchtype = new IterationsBenchmark(this.state.formState.iterations) - break - case 'opsPerTime': - benchtype = new OpsPerTimeBenchmark(this.state.formState.timeToRun) - break - default: - console.warn('benchmark type "' + this.state.benchtype + '" not known') - benchtype = new IterationsBenchmark(10) - } - this.suite.setBenchmarkType(benchtype) - this.suite.setCases(generateCases(data, this.state.formState)) - updateStatus('Running') - await this.suite.run() - updateStatus('Finished') + handleStatsChange(stats) { + this.setState({ stats }) } render() { + let ChartComponent = this.state.formState.debouncedChart + ? DebouncedChart + : Chart return ( <> -
+ - - ) @@ -113,7 +54,3 @@ class App extends Component { } ReactDOM.render(, document.getElementsByTagName('main')[0]) - -const updateStatus = status => { - console.log(status) -} diff --git a/benchmarking/src/simplifyMapper.js b/benchmarking/src/simplifyMapper.js new file mode 100644 index 0000000..254b9a6 --- /dev/null +++ b/benchmarking/src/simplifyMapper.js @@ -0,0 +1,16 @@ +import { memoize } from 'lodash' +import { simplifyWasm } from '../../lib/simplify-wasm/index.js' + +import { dataSelector } from './data/index.js' + +async function numberOfNodes(dataset, tol, highQual) { + let data = dataSelector[dataset] + return await simplifyWasm(data, tol, highQual).then(arr => arr.length) +} + +const memNumberOfNodes = memoize(numberOfNodes, (...args) => args.join('|')) + +export async function simplifyMapper({ dataset, tolRange, highQual }) { + let items = tolRange.map(tol => memNumberOfNodes(dataset, tol, highQual)) + return await Promise.all(items) +}