diff --git a/package.json b/package.json index 7a9b53b..eda2079 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "staticPath": "static" }, "dependencies": { - "@sndcds/mvc": "^0.0.33" + "@sndcds/mvc": "^0.0.38" }, "devDependencies": { "@parcel/config-default": "^2.9.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d7fea7b..4c9e6c2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,8 +6,8 @@ settings: dependencies: '@sndcds/mvc': - specifier: ^0.0.33 - version: 0.0.33 + specifier: ^0.0.38 + version: 0.0.38 devDependencies: '@parcel/config-default': @@ -1141,8 +1141,8 @@ packages: nullthrows: 1.1.1 dev: true - /@sndcds/mvc@0.0.33: - resolution: {integrity: sha512-8Ef8txzpmxa7CDr+OXKukPF7Kaj4nrSdM+2Ewuqzs9Z1YU4GYkVlUYwoq4GiDcXSYrPNSnhOX9kQsrVMixGTgQ==} + /@sndcds/mvc@0.0.38: + resolution: {integrity: sha512-4Sk81tmo8VbKMHvkHEbPFhLKWY0560aSuCLAA+elNRmcCEcMLNSYO0+qoPrjq1f4mNkOuVPnWDn3TWXLH1t65w==} dev: false /@swc/core-darwin-arm64@1.3.91: diff --git a/src/app.js b/src/app.js index 2d3cf4f..a4889f1 100644 --- a/src/app.js +++ b/src/app.js @@ -4,25 +4,26 @@ import { Controller, Component } from '@sndcds/mvc' export default class App extends Controller { constructor(model, view) { super(model, view) - this.onDistrictChanged = this.onDistrictChanged.bind(this) // TODO: Description! + + this.onDistrictChanged = this.onDistrictChanged.bind(this) // TODO: Description! Why is this necessary? } initApp(url, id) { - this.data = this.model.getStorage('data') - this.districtId = this.model.getStorage('districtId') + const data = this.model.getStorage('data') + const districtId = this.model.getStorage('districtId') - if (this.districtId === null) { + if (districtId === null) { this.model.setDistrictId(id) } else { - this.model.setDistrictId(this.districtId) + this.model.setDistrictId(districtId) } - if (this.data === null) { + if (data === null) { this.fetchData(url) } else { - this.onDataChanged(this.data) + this.onDataChanged(data) } } @@ -211,7 +212,6 @@ export default class App extends Controller { const c = this.componentById('district-select') if (c !== undefined) { c.setWithData(d) - c.bindDistrictChanged(this.onDistrictChanged) } this.updateView() @@ -242,8 +242,12 @@ export default class App extends Controller { } onDistrictChanged(id) { - this.model.setDistrictId(id + 1) - this.model.setDistrictData(id + 1) + this.model.setDistrictId(id) + this.model.setDistrictData(id) + + this.sendMessageToComponent('district-select', { value: id }) + this.sendMessageToComponent('district-map', { colors: { all: '#d1e4fd' } }) + this.sendMessageToComponent('district-map', { colors: { [`path-${id}`]: '#0069f6' } }) this.updateView() } diff --git a/src/components/button.js b/src/components/button.js index 4eb0ff5..bff259a 100644 --- a/src/components/button.js +++ b/src/components/button.js @@ -5,18 +5,14 @@ export default class Button extends Component { super(parent, id, setupData) this.label = 'Button' - this.onClick = undefined + this.events = null this.setProperties(setupData) } - defaultClass() { - return 'custom-button' - } - propertyNames() { const names = [ - 'label', 'onClick' + 'label', 'events' ] return super.propertyNames(names) } @@ -30,10 +26,13 @@ export default class Button extends Component { build() { this.e = this.addDomElement('button') this.e.innerText = this.label - this.e.addEventListener('click', () => this.onClick(this)) - this.buildChilds() + if (this.events !== null) { + this.events.forEach((item) => { + this.e.addEventListener(item.event, () => item.handler(this)) + }) + } - // this.e.addEventListener('click', this.onClick) + this.buildChilds() } } \ No newline at end of file diff --git a/src/components/demoComponent.js b/src/components/demoComponent.js index d366933..390462c 100644 --- a/src/components/demoComponent.js +++ b/src/components/demoComponent.js @@ -16,10 +16,6 @@ export default class DemoComponent extends Component { this.setProperties(setupData) } - defaultClass() { - return 'custom-demo-component' - } - propertyNames() { return super.propertyNames(['values', 'maxValue', 'width', 'height', 'gap', 'chartType']) } @@ -50,15 +46,15 @@ export default class DemoComponent extends Component { buildSvgContent() { switch (this.chartType) { case 'pie': - this.buildSvgPiChart() + this.buildSvgPieChart() break default: - this.buildSvgBarChart1() + this.buildSvgBarChart() } } - buildSvgPiChart() { + buildSvgPieChart() { if (this.values !== null) { if (Array.isArray(this.values)) { const svg = this.e @@ -107,7 +103,7 @@ export default class DemoComponent extends Component { } } - buildSvgBarChart1() { + buildSvgBarChart() { if (this.values !== null) { if (Array.isArray(this.values)) { const svg = this.e diff --git a/src/components/districtSelect.js b/src/components/districtSelect.js index 535c9d2..5baa2cc 100644 --- a/src/components/districtSelect.js +++ b/src/components/districtSelect.js @@ -4,23 +4,42 @@ import { Component } from '@sndcds/mvc' export default class DistrictSelect extends Component { constructor(parent, id, setupData) { super(parent, id, setupData) - this.setProperties(setupData) - } - defaultClass() { - return 'custom-district-select' + this.events = null + + this.setProperties(setupData) } propertyNames() { - return super.propertyNames() + const names = [ + 'events' + ] + + return super.propertyNames(names) } build() { - this.e = this.addDomElement('div') + this.e = this.addDomElement('select') + + if (this.events !== null) { + this.events.forEach((item) => { + this.e.addEventListener(item.event, () => item.handler(this)) + }) + } + + /* if (typeof this.onChange === 'function') { + const func = this.onChange + const component = this + const value = this.value + this.e.addEventListener('change', function() { + func(component, value) + }) + } +*/ } setWithData(data) { - const selectElement = this.domCreateElement('select') + // const selectElement = this.domCreateElement('select') data.data.detail.forEach((item) => { const optionElement = this.domCreateElement('option') @@ -32,17 +51,17 @@ export default class DistrictSelect extends Component { optionElement.selected = true } - selectElement.appendChild(optionElement) + this.e.appendChild(optionElement) }) - - this.e.appendChild(selectElement) } - bindDistrictChanged(handler) { - const e = this.e.children.item(0) - e.addEventListener('change', (event) => { - const selectedOption = e.value - handler(selectedOption - 1) - }) + setMessage(message) { + if (typeof message === 'object') { + Object.keys(message).forEach((key) => { + if (key === 'value') { + this.e.value = message[key] + } + }) + } } } \ No newline at end of file diff --git a/src/components/grid.js b/src/components/grid.js index a4c0e1e..ad74bcd 100644 --- a/src/components/grid.js +++ b/src/components/grid.js @@ -7,10 +7,6 @@ export default class Grid extends Component { this.setProperties(setupData) } - defaultClass() { - return 'sc-grid' - } - build() { this.e = this.addDomElement('div') this.e.style.display = 'grid' diff --git a/src/components/numPercentView.js b/src/components/numPercentView.js index 4c8be06..63e5b83 100644 --- a/src/components/numPercentView.js +++ b/src/components/numPercentView.js @@ -28,10 +28,6 @@ export default class NumPercentView extends Component { this.setProperties(setupData) } - defaultClass() { - return 'custom-num-percent' - } - /** * Build the DOM Elements for HTML rendering og the component. * @@ -45,21 +41,21 @@ export default class NumPercentView extends Component { let a = this.e.appendChild(this.domCreateElement('div')) a.innerText = this.label - a.classList = this.prefixedClassName('label') + a.classList = 'label' a = this.e.appendChild(this.domCreateElement('div')) a.innerText = this.value - a.classList = this.prefixedClassName('value') + a.classList = 'value' const gradient = this.gradient() a = this.e.appendChild(this.domCreateElement('div')) a.style.background = gradient - a.classList = this.prefixedClassName('bar') + a.classList = 'bar' a = this.e.appendChild(this.domCreateElement('div')) a.innerText = `${this.percentage} %` - a.classList = this.prefixedClassName('percentage') + a.classList = 'percentage' this.buildChilds() } diff --git a/src/components/numView.js b/src/components/numView.js index 4374f1f..e012400 100644 --- a/src/components/numView.js +++ b/src/components/numView.js @@ -25,10 +25,6 @@ export default class NumView extends Component { this.setProperties(setupData) } - defaultClass() { - return 'custom-num-percent' - } - /** * Build the DOM Elements for HTML rendering og the component. * @@ -43,12 +39,12 @@ export default class NumView extends Component { let a = this.e.appendChild(this.domCreateElement('div')) a.style.textAlign = 'center' a.innerText = this.label - a.className = this.prefixedClassName('label') + a.className = 'label' a = this.e.appendChild(this.domCreateElement('div')) a.style.textAlign = 'center' a.innerText = this.value - a.className = this.prefixedClassName('value') + a.className = 'value' this.buildChilds() } diff --git a/src/components/svg.js b/src/components/svg.js index 7a0f492..076c18c 100644 --- a/src/components/svg.js +++ b/src/components/svg.js @@ -7,16 +7,13 @@ export default class Svg extends Component { this.filePath = null this.colors = null + this.events = null this.setProperties(setupData) } - defaultClass() { - return 'custom-svg' - } - propertyNames() { - const names = ['filePath', 'colors'] + const names = ['filePath', 'colors', 'events'] return super.propertyNames(names) } @@ -29,9 +26,6 @@ export default class Svg extends Component { if (key === 'colors') { this.setColors(message[key]) } - else if (key === 'onClick') { - this.setOnClick(message[key]) - } }) } } @@ -40,27 +34,24 @@ export default class Svg extends Component { setColors(items) { if (typeof items === 'object') { Object.keys(items).forEach((key) => { - const pathElement = this.e.getElementById(key) - if (pathElement !== null) { - pathElement.style.fill = 'red' + if (key === 'all') { + // Get all the elements within the SVG + const paths = this.e.querySelectorAll('path') + // Loop through the paths and access their "d" attribute + paths.forEach((path, index) => { + path.style.fill = items[key] + }) } - }) - } - } - - setOnClick(items) { - console.log(items) - if (typeof items === 'object') { - Object.keys(items).forEach((key) => { - const pathElement = this.e.getElementById(key) - if (pathElement !== null) { - pathElement.addEventListener('click', items[key]) + else { + const pathElement = this.e.getElementById(key) + if (pathElement !== null) { + pathElement.style.fill = items[key] + } } }) } } - build() { // Create an SVG element this.e = document.createElementNS('http://www.w3.org/2000/svg', 'svg') @@ -74,7 +65,7 @@ export default class Svg extends Component { this.e.setAttribute('xml:space', 'preserve') this.e.setAttribute('style', 'fill-rule:evenodd;clip-rule:evenodd;') - this.readFileAsString(this.filePath) // TODO: Has to be replaced with a static method from mvc in controller. + this.buildPathsFromFile(this.filePath) this.domAddClasses(this.e, this.classList) this.parent.e.appendChild(this.e) @@ -82,19 +73,32 @@ export default class Svg extends Component { } /** - * Function to fetch and read a file as a string - * TODO: Should be a constant method in controller. + * Function to build paths from data in a file. */ - readFileAsString(filePath) { + buildPathsFromFile(filePath) { fetch(filePath) - .then((response) => response.text()) + .then((response) => response.json()) .then((data) => { - // Update the model with the fetched data - // Muss aufgerufen werden, wenn Daten geladen und temporär in einem Object gespeichert werden - this.e.innerHTML = data + data.forEach((pathItem) => { + // Create a new path element + const path = document.createElementNS('http://www.w3.org/2000/svg', 'path') // TODO: Move to library helper class. + path.setAttribute('d', pathItem.data) + path.setAttribute('id', `path-${pathItem.id}`) + path.setAttribute('data-id', `${pathItem.id}`) + path.setAttribute('class', 'clickable-path') // TODO: Ability to set classList for items in SVG. + + if (this.events !== null) { + this.events.forEach((item) => { + path.addEventListener(item.event, () => item.handler(this, pathItem.id)) + }) + } + + // Append the new path to the SVG container + this.e.appendChild(path) + }) }) .catch((error) => { - console.error('Error fetching data:', error) + console.error('Error fetching data:', error) // TODO: Give a more precise error message }) } } \ No newline at end of file diff --git a/src/components/text.js b/src/components/text.js index c7ad583..c03c01e 100644 --- a/src/components/text.js +++ b/src/components/text.js @@ -10,10 +10,6 @@ export default class Text extends Component { this.setProperties(setupData) } - defaultClass() { - return 'custom-text' - } - propertyNames() { const names = ['html'] return super.propertyNames(names) diff --git a/src/main.css b/src/main.css index d908d68..f3ded24 100644 --- a/src/main.css +++ b/src/main.css @@ -34,20 +34,20 @@ h1 { border-bottom: 1px solid var(--separator-color); } -/* SVG hover, see: https://codepen.io/miguelra/pen/NrjNYr */ -.clickable-path * { - transition: all 0.25s ease-out; - stroke: white; /* Color of the outline */ - stroke-width: 6px; /* Thickness of the outline */ +.clickable-path { fill: #d1e4fd; + stroke: white; + stroke-width: 6px; + transition: all 0.15s ease-out; } -.clickable-path #path12 { +.clickable-path:hover { fill: #0069f6; + cursor: pointer; } -.clickable-path *:hover { - fill: #0069f6; +.district-select select { + color: red; } .supertext { diff --git a/src/main.js b/src/main.js index baf4897..0841321 100644 --- a/src/main.js +++ b/src/main.js @@ -27,18 +27,16 @@ app.configurate({ locale: 'de-DE' }) // Create views and components { const section = new Grid(view, 'section-1', { classList: 'section apple padding-10' }) - new Button(section, 'button-1', { label: 'Hide', onClick: hideAction }) - new Button(section, 'button-2', { label: 'Show', onClick: showAction }) - new DistrictSelect(section, 'district-select') - const fastButtonSection = new Grid(view, 'fast-button-section', { classList: 'section arena padding-10' }) - for (let i = 1; i <= 13; i++) { - new Button(fastButtonSection, `district-button-${i}`, { classList: '', label: i, tag: i, onClick: setDistrictAction }) - } + new Button(section, 'button-event-test', { label: 'Event Test', events: [{ event: 'click', handler: clickHandler }, { event: 'mouseover', handler: hoverHandler }, { event: 'focus', handler: hoverHandler }] }) + + new Button(section, 'button-1', { label: 'Hide', events: [{ event: 'click', handler: hideSectionsHandler }] }) + new Button(section, 'button-2', { label: 'Show', events: [{ event: 'click', handler: showSectionsHandler }] }) + new DistrictSelect(section, 'district-select', { classList: 'district-select', events: [{ event: 'change', handler: districtSelectHandler }] }) new Text(view, 'text-distict-details', { classList: 'supertext', html: '

District' }) - new Svg(view, 'district-map', { filePath: './flensburg-map.svg' }) + new Svg(view, 'district-map', { filePath: './flensburg-district-paths.js', events: [{ event: 'click', handler: mapClickHandler }] }) } @@ -189,14 +187,25 @@ app.buildView('root') app.initApp('./details.json', 1) -function mapClickListener(element) { - const pathId = element.srcElement.id - const districtId = parseInt(pathId.match(/\d+/)[0], 10) - 1 - app.onDistrictChanged(districtId) +// Handlers +// TODO: Move handlers to a handler class +function districtSelectHandler(component) { + app.onDistrictChanged(component.e.value) } -// Handlers -function hideAction(component) { +function mapClickHandler(component, disrictId) { + app.onDistrictChanged(disrictId) +} + +function clickHandler(component) { + console.log('clickHandler', component) +} + +function hoverHandler(component) { + console.log('hoverHandler', component) +} + +function hideSectionsHandler(component) { for (let i = 2; i <= 9; i++) { const s = app.componentById(`section-${i}`) if (s !== undefined) { @@ -205,25 +214,11 @@ function hideAction(component) { } } -function showAction(component) { +function showSectionsHandler(component) { for (let i = 2; i <= 9; i++) { const s = app.componentById(`section-${i}`) if (s !== undefined) { s.e.style.display = 'grid' } } - - // app.sendMessageToComponent('district-map', { colors: { path9: 'yellow', path11: 'red' } }) - - // Set click listener for all paths in SVG. - for (let i = 1; i <= 13; i++) { // TODO: Use property from app instead of fix value. - const propertyName = `path${i}` - const obj = {} - obj[`path${i}`] = mapClickListener - app.sendMessageToComponent('district-map', { onClick: obj }) - } -} - -function setDistrictAction(component) { - app.onDistrictChanged(component.tag - 1) } \ No newline at end of file diff --git a/static/flensburg-district-paths.js b/static/flensburg-district-paths.js new file mode 100644 index 0000000..62ae0ed --- /dev/null +++ b/static/flensburg-district-paths.js @@ -0,0 +1,54 @@ +[ + { + "id": 3, + "data": "M468.9,5.22L468.07,5L468.06,5L467.15,5.64L467.13,5.64L466.13,5.49L466.13,5.5L465.68,5.82L464.91,5.93L465.09,7.11L465.51,7.53L465.78,7.2L465.79,7.2L465.8,7.19L465.81,7.2L465.9,7.32L466.07,7.57L466.32,7.78L466.46,7.9L466.41,8.34L466.41,8.7L465.97,9.09L465.95,9.09L465.37,8.85L465.36,8.86L465.1,9.03L465.13,9.98L464.98,10.57L465.08,10.69L465.2,10.85L465.5,11.12L465.75,11.34L465.86,11.64L466.26,11.82L466.22,12.21L465.91,12.67L465.89,12.66L465.75,12.63L465.74,12.63L465.3,13.04L465.28,13.03L465.05,12.94L465.04,12.95L465.03,12.94L463.3,14.23L463.38,14.44L462.98,14.93L462.49,15.55L462.47,15.56L459.84,16.4L459.31,16.57L458.68,16.18L458.67,16.17L455.42,14.17L455.4,14.17L452.67,15.08L450.84,17.26L450.22,18.49L449.61,20.36L448.45,22.23L447.96,24.35L447.66,26.78L446.4,28.32L446.38,28.31L443.91,26.56L442.06,25.44L441.85,25.37L440.86,24.63L440.17,24.23L439.99,23.96L439.63,23.69L439.61,23.68L439.59,23.66L439.3,23.4L439.01,23.2L438.99,23.21L438.27,23.29L438.01,23.1L438,23.11L437.41,23.54L437.39,23.54L436.87,23.43L436.86,23.44L436.08,24.27L435.85,24.51L435.24,24.78L435.22,24.77L434.64,24.54L434.41,24.19L434.37,24.13L434.34,24.13L433.99,24.14L433.98,24.14L433.73,23.94L431.84,23.79L431.83,23.79L431.21,23.91L431.2,23.91L430.77,23.72L430.76,23.73L430.47,24L430.46,24L430.4,24.06L430.38,24.05L430.15,23.98L429.74,23.86L429.73,23.87L429.55,23.95L429.23,24.1L429.22,24.1L428.9,23.92L428.89,23.92L428.64,23.79L428.21,23.77L427.65,23.86L427.62,23.86L427.16,23.43L426.41,23.31L425.72,22.68L425.54,22.22L424.59,22.17L424.32,22.4L424.08,22.25L424.04,22.23L423.17,22.39L422.65,22.32L422.64,22.52L422.6,22.85L422.5,23.61L422.44,24.05L422.52,24.61L423.06,28.49L423.1,29L423.62,32.71L429.04,40L431.04,42.84L432.88,44.98L435.41,48.28L440.21,54.54L440.6,54.95L441.38,55.53L441.6,55.61L442.79,56.07L444.78,57.02L445.16,57.18L446.26,57.9L446.3,57.93L447.02,58.4L448.49,58.84L450.28,59.41L450.45,59.46L450.76,59.58L453.25,60.35L454.83,61.09L454.96,61.14L455.06,61.18L458.68,62.87L458.69,62.87L459.51,62.84L459.54,62.84L459.72,62.83L460.47,62.31L460.47,62.3L461.72,62.41L461.79,62.56L462.7,62.62L464.09,63.45L464.86,64.45L466.14,65.16L466.72,65.6L467.6,66.06L468.38,66.69L469.82,68.36L470.61,73.06L470.59,73.88L469.9,74.58L469.89,74.6L469.85,74.64L472.02,79.15L472.37,79.31L472.41,79.33L473.37,79.77L472.94,80.34L472.92,80.36L470.33,83.81L470.1,84.28L470.07,84.33L469.58,85.3L469.51,85.39L466.87,87.83L465.98,88.57L465.85,88.68L464.71,89.62L460.96,93.05L460.87,93.11L459.99,93.75L460.01,93.99L460.09,94.65L460.09,94.67L461.52,107.13L461.4,107.13L459.21,107.03L456.98,108.48L456.64,108.84L452.85,111.85L453.19,112.48L453.34,112.74L454.34,114.47L453.17,119.1L451.25,127.51L450.91,129.01L449.66,134.51L455.93,134.39L455.96,134.39L455.25,135.51L455.28,135.51L455.28,135.52L454.73,136.32L452.03,140.6L451.15,141.72L450.54,142.53L450.29,142.9L449.47,144.11L449.41,144.21L448.94,144.71L447.96,145.47L447.42,145.89L447,146.47L446,148.14L444.27,151L443.27,152.66L441.75,155.15L441.6,155.32L440.56,156.48L440.53,156.51L440.31,156.75L439.57,157.29L438.93,157.75L437.28,159.16L437.41,159.35L436.8,160.06L436.06,161.31L435.14,163.22L434.35,165.34L434.26,165.57L433.89,166.09L433.88,166.11L433.74,166.33L433.56,166.61L433.01,167.1L432.4,168.05L431.66,169.42L429.69,173.5L429.29,174.58L428.84,175.76L427.87,178.73L427.16,180.99L426.84,182.23L426.61,183.09L426.32,184.39L426.07,185.57L426.03,186.13L426.02,186.71L426.19,188.72L424.66,191.1L424.15,192.14L423.88,192.87L423.65,193.61L423.49,194.37L423.31,195.55L423.27,196.6L423.27,196.61L423.26,201.68L423.27,203.2L423.27,203.21L423.35,206.61L423.53,210.93L423.68,213.09L424.01,215.13L424.49,217.18L424.99,219.13L425.49,221.07L426.49,224.97L427.07,226.9L427.65,228.86L428.34,231.17L428.88,232.88L428.9,232.92L429.66,235.18L430.51,237.2L431.4,239.3L431.8,240.17L431.85,240.27L432.01,240.61L432.81,242.21L433.81,244.24L435.8,248.4L436.56,249.83L436.65,250.02L437.11,250.88L437.77,251.91L438.9,253.64L439.75,254.62L440.64,255.65L442.44,258.35L443.55,260.26L444.91,262.62L444.92,262.64L444.99,262.75L445.74,263.88L445.95,264.34L445.96,264.37L447.66,268.12L447.76,268.33L448.45,269.91L448.75,270.69L449.42,272.41L450.21,274.91L450.94,277.35L451.14,278.01L451.47,278.88L451.63,279.11L452.12,279.83L452.28,280.16L452.39,280.36L452.56,280.88L452.76,281.68L452.83,282.08L452.96,282.92L453.07,284.2L453.21,285.82L453.25,286.28L453.28,286.56L453.31,287L453.38,287.17L453.42,287.3L453.49,287.4L453.61,287.57L453.74,287.62L453.92,287.7L454.18,287.7L454.21,288.01L454.2,288.02L454.92,288.19L455.51,288.32L455.54,288.33L455.63,288.79L455.65,288.8L455.74,289.3L455.84,289.81L455.86,289.91L455.89,290.14L456.11,291.33L456.72,295.72L456.94,295.73L457.12,295.73L459.51,295.8L459.74,295.84L460.34,295.94L461.48,296.28L462.35,296.55L462.38,296.55L463.64,296.53L466.87,297.15L467.07,297.18L468.58,297.4L468.64,297.41L468.67,297.42L468.84,297.46L469.02,297.5L469.39,297.59L469.4,297.6L469.42,297.68L469.59,298.3L469.68,298.61L469.91,299.55L470.11,300.47L470.11,300.5L470.29,300.44L470.3,300.45L470.58,300.59L470.65,300.63L470.79,300.7L471.76,301.2L471.77,301.2L472.36,300.94L473.4,300.46L474.16,299.97L474.39,299.83L474.96,299.47L475.67,299.04L475.69,299.04L476.74,299.35L478.61,299.89L480.3,300.19L480.61,300.3L482.46,301L483.09,301.29L485.13,302.23L486.02,302.64L486.6,302.94L487.74,303.47L489.78,304.35L491.14,304.76L491.67,305.03L492.61,305.54L493.2,305.81L493.49,305.96L496.29,307.08L497.64,307.79L497.71,307.82L497.93,307.9L497.94,307.89L498.02,307.75L498.32,307.35L498.9,306.59L500.09,305.77L501.42,305.4L502.52,305.17L502.9,305.09L503.14,304.96L504.06,304.42L504.29,304.28L505.41,304.49L510.2,306.98L510.2,306.97L510.51,306.36L510.52,306.35L510.52,306.34L510.64,306.08L510.67,306L510.7,305.89L510.73,305.81L510.78,305.65L510.8,305.58L510.86,305.15L510.86,305.12L510.87,305L510.87,304.96L510.88,304.72L510.93,304.42L510.95,304.33L511.07,303.95L511.16,303.74L511.2,303.65L511.2,303.64L511.24,303.56L511.29,303.47L511.42,303.23L511.49,303.14L511.65,302.88L511.69,302.84L511.81,302.69L511.99,302.47L512.16,302.31L512.27,302.2L512.28,302.2L512.34,302.14L512.72,301.86L514.3,300.98L514.36,300.94L514.8,300.7L515.06,300.57L515.26,300.45L515.95,300.05L516.3,300.65L516.76,301.44L516.78,301.48L517.05,301.94L517.07,301.94L519.48,302.27L519.73,302.31L519.76,302.32L523.32,302.8L523.33,302.8L533.78,304.32L537.97,305.97L537.98,305.96L538.07,305.85L538.36,305.5L539.35,304.29L539.56,304.03L539.89,301.4L539.98,300.71L539.98,300.7L540.05,300.17L540.23,299.14L540.26,298.97L540.76,296.03L540.91,295.14L540.92,295.11L540.96,294.98L540.98,294.96L541.7,290.86L541.49,290.82L541.48,290.82L542.04,287.86L542.3,286.51L543,282.84L543.02,282.75L543.04,282.75L543.17,282.18L543.25,282.2L543.67,282.29L548.96,283.4L549.04,283.41L549.23,283.44L549.31,283.45L549.32,283.46L549.53,283.46L549.68,283.47L550.04,283.43L550.39,283.36L550.73,283.24L551.05,283.08L551.26,282.95L551.35,282.89L551.61,282.68L551.63,282.66L554.81,279.68L555.17,279.37L555.55,279.08L555.94,278.83L556.36,278.61L556.42,278.58L556.76,278.43L557.17,278.28L557.27,278.24L557.42,278.19L560.76,277.09L562.5,276.52L562.59,276.49L562.67,276.46L563.29,276.22L563.98,275.89L564.64,275.49L565.2,275.08L565.23,275.06L565.26,275.03L565.34,274.97L565.59,274.75L565.6,274.74L565.69,274.66L565.73,274.62L565.9,274.46L565.92,274.43L566.01,274.35L566.01,274.34L566.17,274.18L566.44,273.87L566.71,273.52L566.86,273.29L567.58,272.98L569.04,272.36L575.76,270.13L575.77,270.12L575.79,270.12L575.17,268.83L574.85,262.49L574.82,262.49L574.82,262.48L574.79,262.48L574.54,258.14L574.59,254.73L574.67,254.1L574.77,253.89L576.51,250.29L580.05,244.55L580.12,244.59L580.12,244.57L584.37,238.1L584.38,238.09L584.6,237.74L584.7,237.58L584.76,237.49L584.89,237.29L585.09,237.04L585.25,236.85L585.34,236.74L585.99,235.95L586.01,235.97L586.11,236.05L586.12,236.04L586.15,236L586.52,235.54L586.43,235.46L586.91,235.04L586.97,235L587.72,234.58L588.47,234.23L589.87,233.78L590.05,233.76L590.25,233.73L590.26,233.73L591.61,233.57L591.63,233.57L592.63,233.61L592.64,233.61L592.96,233.58L593.27,233.56L593.35,233.97L593.66,234.38L594.63,234.83L596.17,235.28L596.96,235.61L597,235.63L598.81,236.3L599.97,236.39L600.01,236.39L600.56,236.34L602.22,235.98L602.24,235.97L602.85,235.7L602.83,235.67L602.67,235.44L603.13,235.27L604.71,234.4L605.02,234.23L608.6,232.82L612.53,232.24L612.55,232.23L613.22,230.56L614.79,225.46L616.06,221.76L616.34,220.95L616.68,219.85L616.48,219.77L617.2,217.49L618.21,214.28L618.21,214.29L618.29,214.31L618.5,214.38L618.56,214.42L618.6,214.44L618.62,214.44L618.63,214.43L618.64,214.43L619.24,212.39L619.25,212.36L619.71,210.79L623.2,200.02L624.58,195.8L624.83,195.01L624.85,194.97L624.85,194.96L624.8,194.93L624.77,194.92L624.73,194.9L627.35,194.54L629.1,194.31L627.77,184.62L642.45,182.6L642.29,181.43L642.25,181.13L642.25,181.12L626.84,183.24L626.68,183.26L626.65,183.26L626.65,181.95L626.64,181.76L626.63,179.03L626.62,178.67L626.62,178.53L631.93,177.68L634.12,177.33L634.9,177.2L634.02,171.89L631.03,172.38L630.95,172.4L630.93,172.4L630.9,172.26L630.73,172.28L630.7,172.29L630.56,171.51L630.06,168.61L630,168.48L630,168.47L629.97,168.51L629.9,168.59L629.89,168.6L629.82,168.61L627.34,169.02L627.32,169.02L626.93,167.8L626.13,165.23L626.29,164.86L625.92,163.72L624.87,162.14L622.99,157.68L622.35,155.62L621.72,154.57L621.71,154.56L621.29,154.24L621.27,154.23L620.9,154.08L620.88,154.08L620.63,154.03L619.68,153.87L619.66,153.87L619.4,153.95L618.82,154.3L617.26,154.43L615.79,154.7L615.2,154.95L614.91,155.25L614.82,155.34L612.15,155.91L612.13,155.91L611.96,155.88L611.29,155.78L611.28,155.78L611.12,155.81L610.96,156.1L610.85,156.29L610.74,156.25L610.73,156.24L608.22,156.93L608.11,156.96L608.09,156.96L607.89,157.02L607.88,157.02L607.65,156.8L601.71,151.15L601.18,150.64L600.63,150.12L600.83,149.82L601.96,148.18L601.48,147.68L601.48,147.67L601.13,147.31L601.07,147.25L601,147.17L598.63,144.93L593.91,138.66L593.8,138.52L592.88,137.3L589.72,131.41L589.34,130.7L589.03,130.19L586.42,125.9L586.43,125.63L586.43,125.54L585.92,124.66L585.96,124.64L594.81,121.1L595.14,121.2L596.06,120.84L596.3,120.45L597.63,119.92L597.75,120.22L598.6,119.88L598.27,119.02L597.43,119.35L597.55,119.65L596.2,120.18L595.79,120.07L594.87,120.43L594.81,120.45L594.68,120.81L594.6,120.84L585.82,124.38L585.8,124.39L585.63,124.09L585.47,123.81L585.42,123.83L585.05,123.2L585.37,122.69L585.38,122.68L585.37,122.65L585.36,122.54L584.27,121.32L583.79,120.78L581.2,117.89L579.99,116.51L576.25,111.08L574.93,108.68L568.79,97.5L564.88,84.6L564.95,84.38L564.96,84.35L565.52,82.62L564.45,78.85L563.46,75.38L562.46,72.67L559.92,65.87L558.46,61.96L558.43,61.85L557.74,58.9L557.52,57.45L557.45,57.21L557.32,56.72L557.18,55.55L557.07,54.69L556.85,53.12L557.48,52.79L558.18,51.94L556.43,47.25L556.16,44.59L556.17,43.7L553.44,39.7L551.67,38.5L550.71,36.71L550.57,35.35L549.94,34.96L548.73,34.45L548.12,33.91L547.76,33.45L546.68,31.42L545.98,30.43L542.08,25.84L540.64,24.47L539.98,23.84L539.8,23.66L539.71,23.62L538.14,22.74L535.74,19.39L535.47,18.73L534.61,16.64L534.58,16.57L534.55,16.58L534.55,16.57L533.68,16.89L533.67,16.89L533.48,16.96L531.18,17.79L530.93,17.88L530.35,18.09L529.67,18.34L530.23,19.88L530.78,21.38L530.79,21.4L530.19,21.03L525.68,17.44L524.69,16.65L522.37,16.09L521.01,16.83L520.08,17.48L519.49,17.74L518.81,18.53L518.58,20.42L518.56,20.58L517.88,21.4L516.74,21.77L516.24,21.93L515.85,22.16L514.58,22.28L514.01,22.59L513.76,22.92L513.56,23.57L512.68,24.93L511.25,26.33L510.96,26.43L510.58,27.08L510.48,27.75L510.29,28.15L509.76,28.68L509.73,28.68L509.12,28.56L507.76,27.19L507.62,27.05L506.64,26.59L504.51,27.16L504.5,27.9L504.5,27.91L504.48,28.71L503.87,28.8L503.86,28.8L503.63,28.7L503.62,28.71L503.08,29.1L503.06,29.1L502.69,28.98L502.68,28.98L502.4,29.17L502.19,29.17L502.18,29.12L502.17,29.11L502.01,28.52L501.1,28.31L501.09,28.31L500.82,28.75L500.66,28.78L500.33,28.84L499.85,28.42L499.45,28.33L499.01,28.26L498.99,28.26L498.72,28.28L498.71,28.28L498.06,27.86L498.03,27.86L497.36,27.9L497.34,27.9L496.77,27.48L496.61,27.21L495.88,27.31L495.32,27.55L495.37,27.91L494.5,28.56L493.77,28.89L493.11,29.92L493.26,30.47L492.06,33.35L491.84,33.57L491.26,33.89L490.97,34.21L490.88,34.83L490.53,35.12L490.25,35.66L490.29,36.57L489.96,37.23L489.6,37.59L489.59,37.58L488.63,36.93L488.61,36.93L476.81,39.05L476.78,39.05L473.44,10.59L473.04,10.12L472.68,9.99L471.4,9.53L470.68,8.95L470.57,8.26L471.35,6.92L471.39,6.87L472.36,5.51L471.17,5.07L470.57,5.03L469.95,5.2L468.9,5.22Z" + }, + { + "id": 10, + "data": "M729.11,202.32L728.56,201.03L726.2,195.7L724.88,192.73L724.79,192.52L724.77,192.48L724.65,192.23L723.8,190.51L723.47,189.84L723.31,189.51L719.18,191.34L716.61,192.48L713.77,193.75L709.98,195.44L709.15,195.81L707.27,196.52L707.13,196.57L707.12,196.58L706.74,196.87L702.23,198.77L702.22,198.77L702.17,198.79L700.32,199.64L700.02,199.78L695.37,202.01L692.89,203.19L689.06,205.03L687.72,205.71L683.77,207.7L683.76,207.7L680.23,209.49L680.09,209.55L678.93,210.19L678.53,210.4L676.57,211.21L675.58,211.62L674.99,211.89L673.7,212.8L673.06,213.04L672.98,213.08L672.05,213.74L671.5,214.48L671.07,215.08L670.81,215.43L670.45,216.28L663.28,235.9L661.42,240.96L660.92,242.33L660.47,242.16L660.44,242.15L660.03,242L660.65,240.43L660.06,240.19L658.64,243.79L659.22,244.02L659.84,242.46L660.26,242.63L660.29,242.64L652.68,262.38L652.63,262.36L650.34,261.58L647.31,260.54L647.37,260.25L648.36,255.12L648.48,254.53L648.71,253.33L650.83,247.52L653.28,240.86L655.03,236.07L657.66,228.89L657.64,228.18L657.87,227.27L658.29,227.32L658.31,227.33L658.45,226.97L659.82,223.34L660.94,221.15L661.64,219.75L661.59,219.02L661.02,218.34L660.21,217.98L659.55,217.94L658.69,217.96L655.14,218.06L654.24,218.27L652.87,218.36L650.19,218.53L649.08,218.97L648.49,219.48L647.5,220.91L646.27,223.26L646.06,223.66L645.53,224.75L644.42,227.04L641.63,232.36L640.91,233.12L640,232.82L639.56,234.01L631.99,254.44L631.94,254.6L628.2,265.21L629.11,276.84L628.5,276.87L628.56,278.54L628.97,289.12L629.29,297.42L629.51,300.4L629.51,300.44L629.53,300.64L633.66,341.27L634.55,347.96L635.06,361.97L636.82,361.48L637.3,361.35L637.44,361.31L638.27,361.08L639.43,360.77L639.66,360.69L639.77,360.65L640.34,360.45L641.16,360.16L647.36,357.98L652.32,356.23L653.29,355.93L654.26,355.67L654.58,355.59L655.06,355.48L655.24,355.44L656.24,355.26L657.25,355.1L658.27,354.99L659.3,354.93L661.64,354.91L661.65,354.91L662.21,354.89L662.42,354.88L662.77,354.87L662.96,354.86L664.58,354.75L665.36,354.7L666.43,354.59L666.91,354.51L667.67,354.37L670.45,353.81L675.73,352.71L680.94,351.6L684.13,350.95L684.42,350.89L688.93,349.92L692.53,349.2L695.22,348.67L695.81,348.58L696.39,348.5L697.57,348.4L698.64,348.37L698.76,348.37L699.94,348.4L700.62,348.45L700.78,348.46L700.87,348.47L700.88,348.47L701.12,348.49L701.83,348.59L702.3,348.65L702.34,348.66L702.59,348.71L703.46,348.87L704.61,349.16L707.49,349.86L708.22,350.07L708.28,350.08L708.96,350.23L709.71,350.37L710.13,350.43L710.29,350.45L710.72,350.5L711.22,350.54L711.98,350.57L712.74,350.57L713.5,350.54L717.86,350.38L719.61,350.32L720.38,350.28L724.06,350.1L729.23,349.88L730.15,349.84L734.11,349.67L735.39,349.62L740.58,349.4L740.77,349.39L744.08,349.25L745.61,349.28L747.06,349.29L748.51,349.32L749.96,349.38L751.41,349.47L752.37,349.57L753.56,349.68L753.93,349.72L755.9,349.96L756.44,350.02L757.62,350.18L757.64,350.18L758.3,350.28L758.8,350.36L761.16,350.79L765.75,351.69L768.5,352.25L770.64,352.75L772.81,353.3L774.49,353.75L775.01,353.89L776.33,354.23L776.63,354.31L776.74,354.33L780.47,355.2L781.47,355.44L782.47,355.7L783.47,355.99L784.45,356.3L785.43,356.64L786.4,357L787.36,357.38L788.31,357.79L788.67,357.99L788.74,358.03L789.15,358.29L789.26,358.37L789.47,358.44L791.65,359.26L792.19,359.45L792.54,358.38L792.95,357.32L793.41,356.29L793.93,355.28L794.31,354.7L794.71,354.13L795.12,353.57L795.25,353.43L796.02,352.5L797.5,351.03L798.64,350.05L799.52,349.4L799.86,349.16L799.95,349.1L800.13,348.99L800.49,348.75L800.51,348.74L801.81,348.02L802.49,347.69L802.85,347.54L803.25,347.37L803.76,347.17L804.2,346.99L804.21,346.94L804.21,346.88L804.22,346.84L804.18,346.53L803.82,343.35L804.61,343.27L806.85,343.02L806.3,337.41L806.18,336.5L805.93,332.16L805.86,331.79L805.86,331.76L805.49,329.69L805.48,329.66L805.42,329.29L805.41,329.25L805.42,329.04L805.89,328.9L806.01,328.68L806.21,328.53L807.67,327.43L810.12,325L810.31,321.99L814.06,320.8L819.6,319.05L821.35,318.5L821.4,318.49L822.58,318.11L822.53,317.77L821.25,307.85L820,298.26L820.13,298.25L823.41,297.9L823.91,297.75L824.87,297.27L825.02,297.55L825.35,297.41L825.79,297.13L827.43,296.13L827.91,295.92L828.08,295.81L829.48,294.91L831.8,294.52L833.62,294.02L834.02,293.87L834.43,293.58L834.34,293.52L834.25,293.45L834.19,293.4L834.04,293.26L833.85,293.04L833.77,292.93L832.83,290.92L832.44,290.05L831.98,289.04L831.9,288.84L831.35,287.42L830.97,286.31L830.9,286.1L830.84,285.91L830.31,284.39L829.86,282.81L828.94,279.57L828.66,278.34L828.63,277.99L828.64,277.64L828.66,277.45L828.67,277.38L828.68,277.29L828.76,276.94L828.82,276.75L828.87,276.61L829.01,276.28L829.18,275.99L829.18,275.98L829.19,275.97L829.38,275.69L829.59,275.34L829.72,275.14L829.75,275.09L829.75,275.08L830.06,274.44L830.28,273.8L830.29,273.76L830.45,273.07L831.32,268.99L831.41,268.34L831.44,267.69L831.42,267.04L831.34,266.4L831.19,265.12L830.95,262.64L830.96,261.85L831.04,261.07L831.23,260.26L831.36,259.84L831.47,259.46L831.75,258.67L831.83,258.48L832.03,258L832.08,257.9L832.34,257.22L832.61,256.49L832.74,256.1L832.82,255.69L832.83,255.64L832.84,255.53L832.86,255.27L832.86,254.86L832.85,254.72L832.82,254.44L832.8,254.34L832.73,254.03L832.61,253.64L832.44,253.25L832.12,252.56L831.77,251.88L831.39,251.21L830.98,250.56L830.44,249.85L829.87,249.16L829.26,248.51L828.62,247.88L828.06,247.28L827.94,247.14L827.54,246.64L827.39,246.43L827.21,246.18L827.09,246.01L827.07,245.98L826.64,245.28L826.63,245.26L825.98,244.08L825.84,243.81L825.73,243.61L825.45,243.08L825.45,243.07L825.14,242.56L824.81,242.05L824.76,241.99L824.68,241.89L824.52,241.68L824.44,241.57L824.05,241.11L823.63,240.68L823.55,240.6L823.47,240.53L823.19,240.26L822.97,240.08L822.72,239.88L822.17,239.34L821.66,238.76L821.2,238.14L820.78,237.5L820.25,236.68L819.84,236.03L819.73,235.85L819.23,235.02L818.75,234.17L817.86,232.27L817.38,231.23L817.22,230.9L816.57,229.53L816.37,229.05L816.19,228.55L816.06,228.13L816.05,228.09L816.03,228.05L815.9,227.54L815.78,227.03L815.7,226.53L815.32,226.55L815.16,226.56L798.17,226.77L791.15,225.25L790.84,228.81L790.71,229.64L790.77,229.65L791.14,229.71L791.24,229.73L791.89,229.89L792.7,230.14L793.5,230.45L793.98,230.67L794.45,230.91L794.71,231.07L794.91,231.18L795.35,231.48L795.77,231.8L796.35,232.33L796.55,232.51L796.91,232.9L797.26,233.33L797.68,233.94L797.89,234.23L798.17,234.7L798.43,235.19L798.67,235.69L798.69,235.72L798.89,236.19L799.08,236.71L799.83,238.82L799.08,239.11L798.8,239.22L798.73,239.25L795.38,240.55L795.15,240.61L794.92,240.66L794.69,240.68L794.46,240.67L794.45,240.67L794.22,240.65L793.99,240.6L793.76,240.52L793.55,240.43L792.34,239.6L791.74,239.74L786.42,240.63L782.4,241.26L782.25,241.27L779.5,241.72L778.19,241.93L777.38,242.06L775.45,242.44L775.18,242.49L772.65,242.76L771.58,242.87L768.6,243.15L768.46,243.15L768.6,243.68L768.61,243.71L768.75,243.85L768.8,243.99L769.41,246.15L769.42,246.2L769.51,246.52L769.46,246.52L769.4,246.51L769.14,246.46L768.49,246.36L767.65,246.23L767.46,246.2L767.28,246.19L767.24,246.19L767.09,246.2L766.91,246.24L766.7,246.31L766.56,246.38L766.41,246.48L766.27,246.6L766.18,246.73L766.13,246.79L766.04,247.01L765.99,247.21L765.99,247.24L765.98,247.47L765.97,247.83L765.94,248L765.92,248.19L765.82,248.55L765.82,248.56L765.69,248.89L765.52,249.32L765.38,249.67L765.31,249.8L765.28,249.86L765.21,249.98L765.17,250.04L764.94,250.41L764.69,250.75L764.42,251.09L764.07,250.8L764.04,250.78L763.94,250.69L763.91,250.67L763.39,250.27L762.86,249.89L762.31,249.52L761.15,248.9L760.06,248.21L759.38,247.93L758.78,247.67L758.42,247.58L758.4,247.58L757.99,247.46L757.27,247.32L755.41,247.13L753.55,247.01L747.02,246.65L746.29,246.61L746.07,246.59L745.9,247.41L745.89,247.41L744.86,247.19L738.29,245.76L738.13,245.73L738.13,245.72L738.18,245.2L738.17,244.54L738.22,243.87L738.35,242.4L738.39,241.11L738.4,240.69L738.37,240.55L738.02,238.51L737.73,236.81L737.31,234.08L737.27,233.72L737.26,233.71L737.23,233.42L737.2,233.23L737.06,232.87L736.78,232.13L736.55,231.58L735.1,231.76L734.25,231.97L733.61,232.12L733.01,232.23L733,232.23L732.8,232.27L732.79,232.27L733.42,229.5L733.9,227.6L734.99,223.24L735.1,222.82L735.2,222.42L735.91,219.59L736.64,216.68L737.31,214.03L738.03,211.14L739.64,205.03L740.02,203.24L740.34,201.97L740.47,201.45L740.74,200.35L740.83,199.88L740.91,199.46L740.96,199.21L740.98,199.1L740.98,199.07L740.33,199.09L740.2,199.1L739.96,199.1L739.66,199.11L739.52,199.13L738.92,199.2L737.77,199.32L737.65,199.34L737.49,199.37L736.01,199.71L735.66,199.8L734.25,200.25L734.18,200.27L734.13,200.29L734.1,200.3L734.03,200.32L733.36,200.59L732.73,200.83L732.45,200.94L732.23,201.04L731.22,201.51L731.2,201.51L730.28,201.99L729.19,202.51L729.11,202.32Z" + }, + { + "id": 2, + "data": "M576.1,270.83L576.07,270.76L575.77,270.12L575.76,270.13L569.04,272.36L567.58,272.98L566.86,273.29L566.71,273.52L566.44,273.87L566.17,274.18L566.01,274.34L566.01,274.35L565.92,274.43L565.9,274.46L565.73,274.62L565.69,274.66L565.6,274.74L565.59,274.75L565.34,274.97L565.26,275.03L565.23,275.06L565.2,275.08L564.64,275.49L563.98,275.89L563.29,276.22L562.67,276.46L562.59,276.49L562.5,276.52L560.76,277.09L557.42,278.19L557.27,278.24L557.17,278.28L556.76,278.43L556.42,278.58L556.36,278.61L555.94,278.83L555.55,279.08L555.17,279.37L554.81,279.68L551.63,282.66L551.61,282.68L551.35,282.89L551.26,282.95L551.05,283.08L550.73,283.24L550.39,283.36L550.04,283.43L549.68,283.47L549.53,283.46L549.32,283.46L549.31,283.45L549.23,283.44L549.04,283.41L548.96,283.4L543.67,282.29L543.25,282.2L543.17,282.18L543.04,282.75L543.02,282.75L543,282.84L542.3,286.51L542.04,287.86L541.48,290.82L541.49,290.82L541.7,290.86L540.98,294.96L540.96,294.98L540.92,295.11L540.91,295.14L540.76,296.03L540.26,298.97L540.23,299.14L540.05,300.17L539.98,300.7L539.98,300.71L539.89,301.4L539.56,304.03L539.35,304.29L538.36,305.5L538.07,305.85L537.98,305.96L537.97,305.97L533.78,304.32L523.33,302.8L523.32,302.8L519.76,302.32L519.73,302.31L519.48,302.27L517.07,301.94L517.05,301.94L516.78,301.48L516.76,301.44L516.3,300.65L515.95,300.05L515.26,300.45L515.06,300.57L515.04,300.58L515.11,300.7L515.32,301.04L515.33,301.05L515.49,301.31L520.61,309.59L520.63,309.62L521.26,310.79L521.73,311.74L522.03,312.44L522.08,312.55L522.15,312.71L522.53,313.7L522.88,314.7L523.09,315.36L523.21,315.77L523.23,315.85L523.29,316.04L523.46,316.71L523.61,317.4L523.74,318.08L523.76,318.22L523.85,318.77L523.93,319.47L523.96,319.78L523.97,319.83L523.97,319.88L523.98,319.96L524,320.16L524.13,321.73L524.19,323.31L524.18,324.88L524.1,326.45L524.02,327.61L524.02,327.71L524.01,327.75L524,327.91L523.85,329.37L523.65,330.82L523.4,332.27L523.34,332.51L523.34,332.55L523.83,332.63L524.33,332.71L527.92,333.41L528.37,333.5L528.36,333.57L528.26,334.02L528.44,334.06L529.94,334.39L532.23,334.85L532.37,334.88L532.4,334.89L532.86,334.98L533.38,335.1L533.54,334.42L533.56,334.34L533.69,333.78L535.22,334.1L537.81,332.81L538.01,331.9L538.33,331.97L538.35,331.98L540.28,332.37L543.15,332.97L551.59,334.72L551.64,335.04L551.66,335.19L551.3,336.96L551.47,337.2L553.53,337.27L553.85,337.53L555.02,337.7L555.15,337.78L555.33,337.85L555.52,337.89L559.04,338.32L559.06,338.32L559.74,338.4L559.57,338.9L558.5,342.01L557.81,344.03L557.54,344.74L555.34,350.47L555.29,350.59L553.55,355.11L553.33,355.65L552.26,357.48L551.9,358.09L551.85,358.19L551.5,358.93L551.33,359.37L551.65,359.73L552.1,360.21L552.1,360.22L554.32,362.66L555.97,364.47L557.03,365.46L557.44,365.84L558.05,366.42L560.35,368.63L567.46,375.47L567.83,375.84L568.14,376.2L568.16,376.21L568.18,376.24L568.5,376.66L568.78,377.1L569.74,378.69L569.95,379.05L571.05,381.01L571.06,381.02L571.06,381.03L571.5,382.03L571.9,383.05L572.16,383.83L572.25,384.09L572.54,385.14L572.85,386.43L573.85,386.16L574.1,386.07L574.33,385.95L574.44,385.86L574.48,385.83L574.53,385.79L574.71,385.59L574.86,385.38L574.97,385.14L575.03,384.89L575.06,384.63L575.09,383.66L575.11,382.92L575.19,382.32L575.22,382.2L575.24,382.09L575.33,381.74L575.53,381.17L575.63,380.98L575.68,380.86L575.8,380.63L576.06,380.2L576.32,379.88L576.35,379.84L576.37,379.81L576.73,379.46L577.12,379.15L577.31,379.04L577.41,378.99L577.5,378.95L577.71,378.89L577.92,378.85L578.13,378.83L578.34,378.84L578.46,378.86L578.56,378.87L578.76,378.92L579.12,379.06L579.17,379.08L579.38,379.16L579.4,379.17L579.41,379.17L579.49,379.21L579.97,379.46L580.14,379.57L580.52,379.83L580.62,379.92L580.63,379.92L581.03,380.26L581.56,380.65L581.76,380.78L581.86,380.85L582.11,381.01L582.68,381.33L583.26,381.63L583.7,381.85L584,382.01L584.76,382.36L585.53,382.67L586.04,382.86L586.07,382.87L586.09,382.88L586.1,382.75L586.3,379.54L585.74,376.45L585.74,376.44L585.72,376.34L585.64,372.27L584.7,372.28L584.1,372.27L583.51,372.2L583.49,372.2L583.01,372.11L582.92,372.1L582.34,371.94L579.99,371.22L579.7,371.12L579.72,371.06L580.1,370.1L580.23,369.91L580.24,369.89L580.41,369.75L580.61,369.64L580.79,369.58L580.83,369.57L581.05,369.53L582.82,369.49L583.51,369.48L583.59,369.46L583.6,369.45L583.65,369.44L583.83,369.4L584.14,369.27L584.42,369.1L584.51,369.03L584.55,368.99L584.67,368.89L584.89,368.64L584.98,368.49L585.02,368.43L585.06,368.36L585.2,368.06L585.22,367.96L585.24,367.9L585.28,367.74L585.31,363.01L585.43,354.47L585.54,344.84L585.54,344.79L585.74,344.83L586.58,341.14L586.63,340.94L586.67,340.82L586.68,340.8L586.84,339.86L586.85,339.84L586.85,339.82L586.92,339.18L587.33,337.6L587.44,337.16L587.56,336.7L587.7,336.09L587.83,336.13L587.93,336.16L588.12,335.52L588.14,335.48L588.18,335.29L588.26,334.96L588.32,334.7L588.36,334.56L588.37,334.56L588.43,334.31L588.51,334.03L588.62,333.69L588.63,333.35L588.78,332.11L588.69,331.41L588.55,330.66L588.51,330.17L588.12,330.26L587.98,330.31L587.66,329.77L587.66,329.76L586.89,328.54L586.77,328.45L586.67,328.28L586.24,327.54L586.21,327.47L585.98,326.8L585.8,326.43L585.31,325.72L585.09,325.3L584.9,324.87L584.84,324.26L585.11,322.81L585.69,322.72L585.74,322.69L585.45,321.56L585.47,321.55L585.26,320.88L585,320.26L584.68,319.63L584.66,319.59L584.51,319.28L584.47,319.18L584.36,318.91L584.37,318.54L584.37,318.39L584.38,318.18L584.38,318.17L584.47,318.11L584.54,318.07L584.58,318.04L584.6,318.03L584.61,318.02L584.64,318L584.68,317.97L584.74,317.93L584.74,317.92L584.77,317.9L584.78,317.9L584.81,317.87L584.85,317.84L584.91,317.78L586.21,316.56L586.5,316.28L587.02,315.79L591.1,311.93L591.37,311.68L591.98,311.1L592.8,311.68L593.04,311.84L593.19,311.95L593.25,311.89L593.69,312.29L593.57,312.48L594.39,313.1L594.74,313.4L594.91,313.54L595.04,313.4L595.07,313.19L595.05,312.98L595,312.84L594.92,312.68L594.67,312.26L594.66,312.22L594.62,311.97L594.61,311.97L594.55,311.66L594.88,311.5L595.35,311.26L595.34,311.25L595.3,311.14L595.74,310.93L595.95,310.79L596.34,310.55L596.63,310.36L596.91,310.18L597.04,310.1L590.4,293.04L590.34,293.04L590.07,292.33L589.86,291.78L587.67,292.37L587.35,292.46L587.09,292.4L587.06,292.34L584.18,286.57L584.3,286.5L582.34,282.46L581.01,280.11L578.46,274.54L577.94,274.75L576.1,270.83Z" + }, + { + "id": 4, + "data": "M461.48,296.28L460.34,295.94L459.74,295.84L459.51,295.8L457.12,295.73L456.94,295.73L456.72,295.72L456.11,291.33L455.89,290.14L455.86,289.91L455.84,289.81L455.74,289.3L455.65,288.8L455.63,288.79L455.54,288.33L455.51,288.32L454.92,288.19L454.2,288.02L453.76,288.35L451.76,289.87L450.43,290.89L450.34,290.96L450.33,290.96L448.66,292.49L448.09,293.01L447.89,293.19L443.5,296.65L443.18,296.9L443.67,297.52L443.87,297.77L444.06,298.02L444.09,298.06L440.11,301.17L439.99,301.26L440.26,302.11L440.63,303.32L440.69,303.51L434.31,307.35L429.86,310.03L424.23,313.72L422.12,315.1L421.31,315.63L420.48,316.18L420.47,316.16L420.27,315.8L420.11,315.89L419.11,316.47L411.35,320.95L409.53,321.88L409.21,322.59L407.69,323.23L400.22,326.33L399.74,326.52L396.62,327.72L393.5,329.13L393.45,329.15L392.59,329.54L392.45,329.6L390.62,330.4L389.6,330.88L387.41,331.99L387.3,332.05L387.28,332.06L381.26,335.25L380.61,335.59L378.74,336.57L370.65,340.48L365.13,343.37L365.23,343.75L365.27,343.87L365.34,344.14L365.39,344.33L364.53,344.43L364.2,344.51L362.24,345.03L361.54,345.05L360.54,345.07L360.52,345.18L360.48,345.36L360.03,345.77L359.99,345.8L359.8,345.9L359.13,346.22L356.87,347.33L356.73,347.4L356.48,347.54L355,348.39L351.94,350.15L349.69,351.44L348.29,352.27L345.55,353.91L344.21,354.71L334.31,360.22L334.06,360.36L325.96,364.94L317.1,369.62L309.91,373.14L304.75,375.51L295.8,379.43L288.25,382.59L279.39,385.87L278.87,386.17L278.47,386.39L278.29,386.49L277.97,386.53L276.58,386.71L275.29,387.03L275.04,387.1L272.69,387.68L272.6,387.7L268.92,388.48L268.86,388.52L268.4,388.81L268.14,388.97L267.28,389.21L263.94,389.97L261.29,390.49L260.82,390.54L258.81,390.8L259.49,392.81L260.18,394.82L260.32,395.24L260.87,397.08L261.48,399.13L261.98,400.79L261.57,400.93L261.19,401.07L260.6,401.28L260.66,401.42L261.39,403.38L261.69,404.2L261.77,404.41L261.82,404.53L261.69,404.61L260.4,405.77L260.16,406.04L259.69,406.58L259.25,407.07L259.23,407.09L259.05,407.28L258.09,408.26L257.72,408.79L257.35,409.49L257.27,409.74L257.1,410.29L257.02,410.66L256.79,411.82L255.97,412.5L255.86,412.79L255.79,413.88L255.78,414.09L255.09,415.42L254.93,417.22L254.92,417.38L254.7,418.09L254.08,419.08L253.43,419.84L253.3,420L252.94,420.52L252.51,420.82L251.45,421.34L249.99,422.05L249.96,422.06L249.41,422.58L249.38,422.6L248.94,423.71L248.75,424.12L248.38,424.92L247.98,425.69L247.61,426.39L246.91,426.81L246.01,427.12L245.79,427.16L244.83,427.36L244.55,427.51L243.99,427.99L243.4,429.06L243.41,429.6L243.4,429.63L242.97,430.61L242.98,430.73L242.98,430.87L243,430.88L243.73,432.06L243.64,432.18L245.09,433.28L245.96,433.95L248.04,435.7L249.88,437.15L251.2,438.2L254.36,440.39L254.46,440.45L254.83,440.69L256.28,441.63L256.29,441.64L256.46,441.78L256.48,441.8L257.81,442.65L261.06,445.06L264.82,447.83L264.84,447.84L266.87,449.24L268.81,451.18L269.33,451.71L269.35,451.72L269.25,451.84L269.29,451.88L269.93,452.54L269.94,452.54L270.53,453.2L271.32,453.95L271.38,454.01L272.27,454.86L275.41,457.51L275.43,457.52L275.53,457.44L275.56,457.42L275.58,457.44L277.05,456.35L277.18,456.27L277.88,455.79L278.62,455.28L278.63,455.28L278.64,455.31L278.68,455.28L278.68,455.29L278.67,455.29L281.2,462.91L281.27,463.09L281.28,463.12L281.63,464L283.94,470L284.34,471.02L284.32,471.35L289.87,484.78L290,485.11L290.01,485.1L290.02,485.13L290.33,485.89L290.34,485.9L290.37,485.89L296.11,483.5L297.36,483.01L298.49,482.56L306.87,479.19L308.4,478.59L309.72,478.06L311.23,477.45L315.63,475.68L316.73,475.32L317.06,475.21L317.38,475.08L317.4,475.03L317.43,475.08L317.46,475.02L317.6,474.65L317.61,474.63L317.67,474.6L317.68,474.6L317.84,474.54L317.9,474.51L318.19,474.37L319.46,473.74L341.96,462.49L341.99,462.48L341.99,462.47L342.01,462.46L342.06,462.44L342.31,462.31L342.36,462.29L342.69,462.89L342.74,463.01L343.01,463.54L343.04,463.63L343.24,464.08L343.29,464.2L343.55,464.87L343.72,465.46L344.76,470L345.2,472.03L345.54,473.63L346.04,476.29L346.29,477.79L346.45,478.81L346.86,480.43L347.85,483.91L348.91,487.57L349.18,488.48L349.28,488.78L349.33,488.9L349.38,489.01L349.64,489.53L349.64,489.54L349.65,489.55L349.7,489.53L350.47,489.14L351.26,488.76L354.83,487.07L355.09,486.96L355.43,486.82L356.05,486.64L356.69,486.52L357.33,486.48L357.38,486.48L357.9,486.5L357.96,486.5L358,486.51L358.62,486.6L358.68,486.61L358.97,486.69L359.11,486.72L359.25,486.76L359.41,486.82L359.69,486.93L359.85,486.99L360.42,487.24L360.64,487.33L360.9,487.45L360.95,487.47L361.33,487.64L361.35,487.64L361.11,488.11L360.88,488.59L360.78,488.85L360.68,489.08L360.5,489.57L360.41,489.82L360.33,490.07L360.2,490.54L359.92,492.04L359.85,492.8L359.84,493.06L359.9,495.69L359.97,496.39L360.48,500.09L361.44,507.42L362.28,513.63L362.32,513.96L362.59,515.92L362.59,515.93L362.6,515.93L366.7,515.42L366.71,515.42L367.16,515.36L367.78,515.28L368.89,515.14L371.07,514.86L372.53,514.68L373.51,514.58L373.52,514.58L374.5,514.43L377.56,513.74L377.95,513.65L378.01,513.64L379.54,513.28L381.09,512.99L382.95,512.72L386.51,512.29L386.7,512.26L386.83,512.24L386.86,512.24L387.21,512.18L387.23,512.17L387.24,512.17L389.51,511.85L391.1,511.63L394.02,511.2L394.15,511.2L395.53,511.15L395.62,511.15L395.81,511.14L396.5,511.06L396.72,511.04L397.65,510.94L397.76,510.92L398.23,510.87L399.83,510.6L402.72,509.98L402.87,509.95L403.6,509.78L403.89,509.72L404.08,509.67L405.16,509.47L405.33,509.44L405.77,509.39L406.67,509.28L407.18,509.25L407.56,509.23L408.11,509.2L408.72,509.16L410.71,508.88L411.49,508.71L411.65,508.68L412.52,508.5L413.07,508.39L413.14,508.37L413.35,508.35L414.63,508.2L414.75,508.19L419.61,507.52L420.16,507.47L421.98,507.29L422.68,507.23L423.29,507.12L423.68,507.05L424.26,506.88L424.49,506.82L425.04,506.66L425.13,506.64L425.32,506.58L425.8,506.41L426.65,506.1L431.68,504.34L431.8,504.3L432.53,504.04L434.3,503.42L441.38,500.93L441.89,500.74L442.23,500.61L442.48,500.53L443.81,500.1L444.32,499.94L444.84,499.77L444.85,499.77L445.26,499.62L447.22,498.91L447.24,498.91L448.36,498.42L456.7,493.85L457.03,493.67L457.46,493.44L460.43,491.86L462.19,490.92L464.71,489.58L464.95,489.45L472.22,485.59L475.45,483.87L478.22,482.4L478.33,482.34L478.36,482.33L478.57,482.55L478.98,482.95L479.47,483.38L479.98,483.79L480.5,484.19L480.88,484.45L481.03,484.56L481.59,484.91L482.15,485.23L482.73,485.54L483.01,485.65L483.68,485.92L484.6,486.23L484.65,486.25L485.64,486.52L486.65,486.72L489.31,487.15L490.26,487.3L490.4,487.32L490.45,487.33L490.54,486.56L490.57,486.24L490.63,485.8L490.72,485.15L490.91,484.07L491.13,482.99L491.24,482.49L491.37,482L491.39,481.93L491.52,481.51L491.55,481.43L491.69,481.03L491.88,480.56L492.08,480.09L492.31,479.64L492.39,479.48L492.55,479.19L492.98,478.35L493.11,478.14L493.46,477.53L494.06,476.59L497.29,471.92L497.76,471.28L497.85,471.17L498.26,470.66L498.53,470.35L498.72,470.13L499.2,469.6L499.69,469.09L500.2,468.6L502.56,466.42L502.63,466.35L502.79,466.2L503.73,465.33L505.22,463.94L505.44,463.73L506.06,463.16L506.18,463.05L506.63,462.63L508.86,460.56L509.77,459.72L510.67,458.96L511.62,458.24L511.95,458.01L512.01,457.97L512.59,457.56L513.59,456.93L514.77,456.14L515.99,455.4L517.25,454.73L518.53,454.12L519.5,453.69L520.47,453.27L521.45,452.88L522.44,452.51L530.06,449.79L530.32,449.7L530.84,449.46L531,449.38L531.26,449.24L531.34,449.2L531.45,449.14L531.83,448.92L532.31,448.63L532.78,448.31L533.07,448.1L533.24,447.98L533.36,447.88L533.38,447.86L533.68,447.62L534.11,447.25L535.24,446.17L535.93,445.52L536.05,445.4L536.06,445.38L536.44,445.02L538.76,442.81L538.8,442.77L542.01,440.02L548.47,434.72L549.15,434.17L549.42,433.95L551.1,432.57L551.59,432.17L551.6,432.16L551.69,432.19L551.79,432.12L552.06,432.31L552.11,432.34L552.24,432.39L552.27,432.4L552.44,432.47L552.47,432.48L553.38,432.87L554.55,433.5L554.75,433.61L555.09,433.8L556.64,434.8L558.53,435.33L559.43,435.46L560.4,436.64L560.97,437.46L561.02,437.45L561.03,437.46L569.36,434.63L571.18,434.01L578.2,431.62L578.93,431.4L579.65,431.18L580.09,430.93L580.26,430.73L580.33,430.52L580.47,430.02L580.43,429.53L581.02,429.33L581.34,429.22L582.28,428.91L582.77,428.75L586.78,427.41L587.94,427.02L588.6,426.8L588.74,426.75L586.49,420.7L586.33,420.29L586.28,420.16L586.49,420.06L586.87,419.88L589.31,418.73L589.92,416.74L589.9,415.27L589.9,414.86L589.92,414.73L589.99,414.32L590.55,412.88L590.95,412.24L592.01,410.77L593.77,408.32L594.21,407.7L594.3,407.58L594.22,407.43L594.19,407.38L594.18,407.36L594.01,406.93L593.97,406.78L593.78,406.19L593.76,406.15L592.52,402.29L592.52,402.27L591.19,398.15L590.3,395.38L589.88,394.07L589.69,393.58L589.68,393.57L589.68,393.56L589.41,393.08L589.37,393.03L589.07,392.64L588.68,392.25L588.47,392.09L588.24,391.92L587.76,391.65L587.39,391.51L587.25,391.45L586.71,391.32L586.02,391.2L585.09,391.04L584.73,390.93L584.74,390.98L577.32,389.72L575.64,389.38L573.45,388.94L573.44,388.88L573.37,388.87L573.41,388.78L573.41,388.76L573.31,388.37L573.2,387.87L573.17,387.78L572.85,386.43L572.54,385.14L572.25,384.09L572.16,383.83L571.9,383.05L571.5,382.03L571.06,381.03L571.06,381.02L571.05,381.01L569.95,379.05L569.74,378.69L568.78,377.1L568.5,376.66L568.18,376.24L568.16,376.21L568.14,376.2L567.83,375.84L567.46,375.47L560.35,368.63L558.05,366.42L557.44,365.84L557.03,365.46L555.97,364.47L554.32,362.66L552.1,360.22L552.1,360.21L551.65,359.73L551.33,359.37L551.5,358.93L551.85,358.19L551.9,358.09L552.26,357.48L553.33,355.65L553.55,355.11L555.29,350.59L555.34,350.47L557.54,344.74L557.81,344.03L558.5,342.01L559.57,338.9L559.74,338.4L559.06,338.32L559.04,338.32L555.52,337.89L555.33,337.85L555.15,337.78L555.02,337.7L553.85,337.53L553.53,337.27L551.47,337.2L551.3,336.96L551.66,335.19L551.64,335.04L551.59,334.72L543.15,332.97L540.28,332.37L538.35,331.98L538.33,331.97L538.01,331.9L537.81,332.81L535.22,334.1L533.69,333.78L533.56,334.34L533.54,334.42L533.38,335.1L532.86,334.98L532.4,334.89L532.37,334.88L532.23,334.85L529.94,334.39L528.44,334.06L528.26,334.02L528.36,333.57L528.37,333.5L527.92,333.41L524.33,332.71L523.83,332.63L523.34,332.55L523.34,332.51L523.4,332.27L523.65,330.82L523.85,329.37L524,327.91L524.01,327.75L524.02,327.71L524.02,327.61L524.1,326.45L524.18,324.88L524.19,323.31L524.13,321.73L524,320.16L523.98,319.96L523.97,319.88L523.97,319.83L523.96,319.78L523.93,319.47L523.85,318.77L523.76,318.22L523.74,318.08L523.61,317.4L523.46,316.71L523.29,316.04L523.23,315.85L523.21,315.77L523.09,315.36L522.88,314.7L522.53,313.7L522.15,312.71L522.08,312.55L522.03,312.44L521.73,311.74L521.26,310.79L520.63,309.62L520.61,309.59L515.49,301.31L515.33,301.05L515.32,301.04L515.11,300.7L515.04,300.58L514.8,300.7L514.36,300.94L514.3,300.98L512.72,301.86L512.34,302.14L512.28,302.2L512.27,302.2L512.16,302.31L511.99,302.47L511.81,302.69L511.69,302.84L511.65,302.88L511.49,303.14L511.42,303.23L511.29,303.47L511.24,303.56L511.2,303.64L511.2,303.65L511.16,303.74L511.07,303.95L510.95,304.33L510.93,304.42L510.88,304.72L510.87,304.96L510.87,305L510.86,305.12L510.86,305.15L510.8,305.58L510.78,305.65L510.73,305.81L510.7,305.89L510.67,306L510.64,306.08L510.52,306.34L510.52,306.35L510.51,306.36L510.2,306.97L510.2,306.98L505.41,304.49L504.29,304.28L504.06,304.42L503.14,304.96L502.9,305.09L502.52,305.17L501.42,305.4L500.09,305.77L498.9,306.59L498.32,307.35L498.02,307.75L497.94,307.89L497.93,307.9L497.71,307.82L497.64,307.79L496.29,307.08L493.49,305.96L493.2,305.81L492.61,305.54L491.67,305.03L491.14,304.76L489.78,304.35L487.74,303.47L486.6,302.94L486.02,302.64L485.13,302.23L483.09,301.29L482.46,301L480.61,300.3L480.3,300.19L478.61,299.89L476.74,299.35L475.69,299.04L475.67,299.04L474.96,299.47L474.39,299.83L474.16,299.97L473.4,300.46L472.36,300.94L471.77,301.2L471.76,301.2L470.79,300.7L470.65,300.63L470.58,300.59L470.3,300.45L470.29,300.44L470.11,300.5L470.11,300.47L469.91,299.55L469.68,298.61L469.59,298.3L469.42,297.68L469.4,297.6L469.39,297.59L469.02,297.5L468.84,297.46L468.67,297.42L468.64,297.41L468.58,297.4L467.07,297.18L466.87,297.15L463.64,296.53L462.38,296.55L462.35,296.55L461.48,296.28Z" + }, + { + "id": 1, + "data": "M597.95,310.59L597.46,309.83L597.04,310.1L596.91,310.18L596.63,310.36L596.34,310.55L595.95,310.79L595.74,310.93L595.3,311.14L595.34,311.25L595.35,311.26L594.88,311.5L594.55,311.66L594.61,311.97L594.62,311.97L594.66,312.22L594.67,312.26L594.92,312.68L595,312.84L595.05,312.98L595.07,313.19L595.04,313.4L594.91,313.54L594.74,313.4L594.39,313.1L593.57,312.48L593.69,312.29L593.25,311.89L593.19,311.95L593.04,311.84L592.8,311.68L591.98,311.1L591.37,311.68L591.1,311.93L587.02,315.79L586.5,316.28L586.21,316.56L584.91,317.78L584.85,317.84L584.81,317.87L584.78,317.9L584.77,317.9L584.74,317.92L584.74,317.93L584.68,317.97L584.64,318L584.61,318.02L584.6,318.03L584.58,318.04L584.54,318.07L584.47,318.11L584.38,318.17L584.38,318.18L584.37,318.39L584.37,318.54L584.36,318.91L584.47,319.18L584.51,319.28L584.66,319.59L584.68,319.63L585,320.26L585.26,320.88L585.47,321.55L585.45,321.56L585.74,322.69L585.69,322.72L585.11,322.81L584.84,324.26L584.9,324.87L585.09,325.3L585.31,325.72L585.8,326.43L585.98,326.8L586.21,327.47L586.24,327.54L586.67,328.28L586.77,328.45L586.89,328.54L587.66,329.76L587.66,329.77L587.98,330.31L588.12,330.26L588.51,330.17L588.55,330.66L588.69,331.41L588.78,332.11L588.63,333.35L588.62,333.69L588.51,334.03L588.43,334.31L588.37,334.56L588.36,334.56L588.32,334.7L588.26,334.96L588.18,335.29L588.14,335.48L588.12,335.52L587.93,336.16L587.83,336.13L587.7,336.09L587.56,336.7L587.44,337.16L587.33,337.6L586.92,339.18L586.85,339.82L586.85,339.84L586.84,339.86L586.68,340.8L586.67,340.82L586.63,340.94L586.58,341.14L585.74,344.83L585.54,344.79L585.54,344.84L585.43,354.47L585.31,363.01L585.28,367.74L585.24,367.9L585.22,367.96L585.2,368.06L585.06,368.36L585.02,368.43L584.98,368.49L584.89,368.64L584.67,368.89L584.55,368.99L584.51,369.03L584.42,369.1L584.14,369.27L583.83,369.4L583.65,369.44L583.6,369.45L583.59,369.46L583.51,369.48L582.82,369.49L581.05,369.53L580.83,369.57L580.79,369.58L580.61,369.64L580.41,369.75L580.24,369.89L580.23,369.91L580.1,370.1L579.72,371.06L579.7,371.12L579.99,371.22L582.34,371.94L582.92,372.1L583.01,372.11L583.49,372.2L583.51,372.2L584.1,372.27L584.7,372.28L585.64,372.27L585.72,376.34L585.74,376.44L585.74,376.45L586.3,379.54L586.1,382.75L586.09,382.88L586.07,382.87L586.04,382.86L585.53,382.67L584.76,382.36L584,382.01L583.7,381.85L583.26,381.63L582.68,381.33L582.11,381.01L581.86,380.85L581.76,380.78L581.56,380.65L581.03,380.26L580.63,379.92L580.62,379.92L580.52,379.83L580.14,379.57L579.97,379.46L579.49,379.21L579.41,379.17L579.4,379.17L579.38,379.16L579.17,379.08L579.12,379.06L578.76,378.92L578.56,378.87L578.46,378.86L578.34,378.84L578.13,378.83L577.92,378.85L577.71,378.89L577.5,378.95L577.41,378.99L577.31,379.04L577.12,379.15L576.73,379.46L576.37,379.81L576.35,379.84L576.32,379.88L576.06,380.2L575.8,380.63L575.68,380.86L575.63,380.98L575.53,381.17L575.33,381.74L575.24,382.09L575.22,382.2L575.19,382.32L575.11,382.92L575.09,383.66L575.06,384.63L575.03,384.89L574.97,385.14L574.86,385.38L574.71,385.59L574.53,385.79L574.48,385.83L574.44,385.86L574.33,385.95L574.1,386.07L573.85,386.16L572.85,386.43L573.17,387.78L573.2,387.87L573.31,388.37L573.41,388.76L573.41,388.78L573.37,388.87L573.44,388.88L573.45,388.94L575.64,389.38L577.32,389.72L584.74,390.98L584.73,390.93L585.09,391.04L586.02,391.2L586.71,391.32L587.25,391.45L587.39,391.51L587.76,391.65L588.24,391.92L588.47,392.09L588.68,392.25L589.07,392.64L589.37,393.03L589.41,393.08L589.68,393.56L589.68,393.57L589.69,393.58L589.88,394.07L590.3,395.38L591.19,398.15L592.52,402.27L592.52,402.29L593.76,406.15L593.78,406.19L593.97,406.78L594.01,406.93L594.18,407.36L594.19,407.38L594.22,407.43L594.3,407.58L594.44,407.81L594.67,408.12L594.81,408.27L594.92,408.4L595.21,408.65L595.33,408.74L595.34,408.74L595.52,408.87L596,409.17L596.58,409.56L597.14,409.97L597.69,410.4L598.08,410.73L598.11,410.76L598.22,410.85L598.88,411.56L599.53,412.29L600.12,412.99L600.16,413.03L600.78,413.79L601.33,414.51L601.35,414.55L601.39,414.59L601.96,415.42L602.5,416.27L602.72,416.65L603,417.14L603.02,417.16L603.34,417.68L603.65,418.23L603.94,418.8L604.01,418.94L604.04,418.99L604.22,419.37L604.46,420.19L604.62,420.75L604.69,421L605.07,422.28L605.12,422.41L605.19,422.62L605.36,422.94L605.46,423.11L605.49,423.15L605.51,423.19L605.54,423.24L605.66,423.47L605.76,423.71L606.38,425.57L606.56,426.1L607.78,429.75L608.58,432.14L609.47,434.79L609.77,435.52L611.86,440.7L611.88,440.74L611.89,440.77L611.92,440.83L612,441.04L612.62,442.58L612.62,442.6L613.54,444.89L613.61,445.11L613.7,445.56L613.75,446.01L613.75,446.46L613.71,446.85L613.71,446.92L613.62,447.36L613.49,447.8L613.31,448.22L612.71,449.43L612.7,449.45L612.32,450.23L612.3,450.26L612.23,450.4L611.68,451.52L610.19,454.55L609.74,455.46L609.54,455.82L608.41,457.75L608.31,457.92L608.04,458.33L607.74,458.71L607.41,459.06L607.05,459.39L607.03,459.41L606.78,459.6L606.66,459.69L606.26,459.95L606.17,460L605.93,460.12L605.9,460.14L605.9,460.16L605.92,460.21L606.04,460.78L607.42,466.88L607.5,467.23L607.66,467.96L607.66,467.98L608.25,467.77L608.3,467.75L608.3,467.76L608.4,468.13L608.46,468.39L608.73,469.46L608.8,469.8L608.82,469.92L608.83,470.02L608.85,470.21L608.86,470.43L608.86,470.51L608.87,470.59L608.85,471.01L608.77,471.58L608.65,471.94L608.62,472.04L608.55,472.23L608.26,472.86L607.94,473.4L607.91,473.45L607.84,473.53L607.49,473.98L607.49,474L607.42,474.07L607.39,474.11L607.32,474.19L607.1,474.44L607.08,474.46L606.69,474.86L606.26,475.26L605.86,475.59L605.82,475.62L605.82,475.63L605.8,475.64L605.78,475.67L605.68,475.77L605.59,475.87L605.53,475.95L605.47,476.01L605.23,476.35L605.06,476.63L604.93,476.89L604.85,477.07L604.81,477.15L604.79,477.2L604.73,477.39L604.71,477.43L604.69,477.5L604.59,477.83L604.59,477.85L604.52,478.21L604.4,478.86L604.35,479.18L604.35,479.2L604.3,479.52L604.24,480.18L604.21,480.84L604.18,481.1L604.16,481.35L604.16,481.4L604.15,481.5L604.16,481.67L604.16,481.87L604.17,482.05L604.18,482.19L604.21,482.48L604.26,482.76L604.29,482.88L604.3,482.93L604.49,483.6L604.65,484.04L604.74,484.3L604.75,484.34L604.98,484.87L605.03,484.98L605.09,485.1L605.25,485.41L605.34,485.6L605.36,485.64L605.9,485.55L605.98,485.54L606.26,485.49L606.53,485.45L607.15,485.37L607.66,485.33L607.89,485.32L608.26,485.3L608.32,485.3L608.33,485.29L608.96,485.27L609.01,485.27L609.94,485.28L610.91,485.24L611.89,485.17L612.86,485.06L613.83,484.91L614.79,484.72L615.03,484.67L615.05,484.66L615.3,484.6L615.74,484.5L616.68,484.24L616.92,484.17L620.62,482.85L621.83,482.42L623.4,481.86L624.14,481.6L625.49,481.12L625.63,481.07L628.67,479.99L630.63,479.29L631.1,479.08L631.31,479.13L631.33,479.13L631.42,479.16L631.47,479.17L631.76,479.28L631.82,479.3L632.15,479.48L632.46,479.7L632.47,479.71L632.51,479.74L632.66,479.88L632.84,480.07L632.86,480.09L633.08,480.43L633.37,480.9L633.86,481.75L634.3,482.63L634.39,482.83L634.69,483.53L635.13,484.59L635.61,485.75L636.42,487.7L636.42,487.71L636.51,487.96L637.04,489.4L637.13,489.66L638.1,488.63L639.76,486.97L641,485.59L641.8,484.68L641.8,484.67L641.96,484.48L642.16,484.23L642.22,484.15L642.28,484.08L642.3,484.05L642.48,483.84L642.6,483.69L642.78,483.46L643.09,483.08L643.16,483L643.22,482.93L643.35,482.76L643.73,482.25L644.23,481.57L644.41,481.32L644.7,480.93L644.94,480.52L645.6,479.43L645.61,479.43L645.86,478.92L645.88,478.88L645.92,478.79L645.94,478.76L646.02,478.6L646.1,478.42L646.18,478.27L646.23,478.16L646.26,478.11L646.41,477.8L646.5,477.62L646.85,476.89L646.87,476.83L647.08,476.3L647.35,475.58L647.61,474.81L647.87,473.94L648.33,472.01L648.56,470.74L648.66,470.18L648.76,469.66L648.75,469.22L648.75,467.69L648.79,466.95L648.81,466.61L648.96,465.06L648.97,465.03L649.05,464.25L649.18,462.83L648.88,458.68L648.8,457.9L648.78,457.71L648.74,457.39L648.69,456.58L648.4,454.31L647.91,452.09L646.82,448.91L641.92,429.31L641.03,424.78L636.24,413L635.77,411.85L635.63,411.5L635.31,410.39L634.58,407.89L630.88,403.76L629.04,401.7L629.07,400.8L629.09,400.26L627.21,397.6L626.45,396.53L625.92,395.77L620.13,389.57L619.33,388.44L619.29,388.37L619.28,388.38L619.12,388.48L616.42,384.6L616.15,384.21L618.43,382.73L618.12,382.23L616.2,383.45L615.86,383.4L615.6,383L613.83,380.22L613.98,379.75L615.22,378.96L615.81,378.58L615.5,378.07L615.15,378.29L613.78,379.17L613.63,379.11L613.05,375.96L613.7,371.03L613.84,370.69L614.06,370.34L614.1,370.17L614.33,369.25L614.34,369.07L614.37,368.63L614.32,368.45L614.16,367.91L614.3,367.86L614.48,367.79L614.27,367.19L613.24,364.2L611.89,345.62L613.38,345.41L613.19,344.54L612.81,342.86L613.18,342.77L613.1,342.48L612.73,342.56L611.95,339.25L612.34,339.13L612.26,338.86L611.86,338.97L611.61,337.83L611.98,337.74L611.89,337.44L611.53,337.54L611.28,336.48L611.66,336.37L611.59,336.08L611.2,336.17L610.94,335.1L611.32,335L611.25,334.71L610.85,334.81L609.83,330.43L608.85,330.64L608.91,330.86L608.76,330.92L608.6,330.44L609.31,329.63L609.57,329.65L609.84,327.71L609.47,327.65L609.14,329.62L609.2,329.62L608.57,330.34L608.52,330.39L607.96,330.48L607.1,328.23L606.69,328.38L606.63,328.17L606.94,328.05L606.77,327.62L605.78,328.01L606.02,328.63L606.02,328.65L605.09,328.96L603.45,323.93L603.71,323.83L603.69,323.77L604.18,323.61L604.2,323.67L604.76,323.46L604.98,324.05L605.32,323.92L605.11,323.33L606.16,322.94L607.12,325.42L607.4,325.32L606.96,324.18L607.03,324.13L606.98,323.99L606.89,323.99L606.33,322.56L605.66,322.81L604.1,323.39L604.12,323.47L603.65,323.64L603.63,323.58L603.37,323.68L603.15,323.77L602.62,322.29L602.69,322.14L602.8,321.93L602.87,321.79L600.46,314.76L600.61,314.65L597.95,310.59Z" + }, + { + "id": 9, + "data": "M711.98,350.57L711.22,350.54L710.72,350.5L710.29,350.45L710.13,350.43L709.71,350.37L708.96,350.23L708.28,350.08L708.22,350.07L707.49,349.86L704.61,349.16L703.46,348.87L702.59,348.71L702.34,348.66L702.3,348.65L701.83,348.59L701.12,348.49L700.88,348.47L700.87,348.47L700.78,348.46L700.62,348.45L699.94,348.4L698.76,348.37L698.64,348.37L697.57,348.4L696.39,348.5L695.81,348.58L695.22,348.67L692.53,349.2L688.93,349.92L684.42,350.89L684.13,350.95L680.94,351.6L675.73,352.71L670.45,353.81L667.67,354.37L666.91,354.51L666.43,354.59L665.36,354.7L664.58,354.75L662.96,354.86L662.77,354.87L662.42,354.88L662.21,354.89L661.65,354.91L661.64,354.91L659.3,354.93L658.27,354.99L657.25,355.1L656.24,355.26L655.24,355.44L655.06,355.48L654.58,355.59L654.26,355.67L653.29,355.93L652.32,356.23L647.36,357.98L641.16,360.16L640.34,360.45L639.77,360.65L639.66,360.69L639.43,360.77L638.27,361.08L637.44,361.31L637.3,361.35L636.82,361.48L635.06,361.97L635.2,362.62L635.76,365.3L634.97,366.53L634.79,367.55L634.39,369.8L634.52,372.44L634.84,373.92L635.43,374.47L635.7,374.73L635.43,376.46L635.18,376.42L629.24,375.47L629.11,375.03L629.05,375.02L629.17,375.46L629.13,375.63L628.79,375.98L628.86,376L629.2,375.63L635.15,376.59L635.4,376.63L634.89,379.95L634.49,379.89L634.47,379.89L634.53,379.51L634.06,379.44L634,379.81L629.51,379.06L629.42,378.65L629.33,378.65L629.42,379.03L629.38,379.22L629.07,379.58L629.14,379.61L629.46,379.24L633.81,379.95L633.68,380.66L634.27,380.76L634.19,381.25L633.99,381.22L633.85,382.07L634.03,382.1L633.94,382.6L633.77,382.58L633.66,383.2L629.63,382.65L629.57,382.23L629.49,382.23L629.56,382.64L629.27,383.19L629.34,383.22L629.6,382.83L633.78,383.46L634.31,383.54L634.3,383.65L633.76,383.58L633.48,383.54L633.21,385.16L633.44,385.19L632.2,391.42L633.14,385.49L632.95,385.46L631.91,392.01L631.9,392.07L632.06,392.1L632.84,392.23L632.33,395.2L631.76,395.07L631.28,396.83L631.1,396.93L630.73,397.14L627.92,396.51L627.98,396.26L626,395.79L625.92,395.77L626.45,396.53L627.21,397.6L629.09,400.26L629.07,400.8L629.04,401.7L630.88,403.76L634.58,407.89L635.31,410.39L635.63,411.5L635.77,411.85L636.24,413L641.03,424.78L641.92,429.31L646.82,448.91L647.91,452.09L648.4,454.31L648.69,456.58L648.74,457.39L648.78,457.71L648.8,457.9L648.88,458.68L649.18,462.83L649.05,464.25L648.97,465.03L648.96,465.06L648.81,466.61L648.79,466.95L648.75,467.69L648.75,468.86L648.84,468.88L649.07,468.9L649.24,468.9L649.44,468.87L649.53,468.86L650.22,468.7L650.42,468.67L650.7,468.63L650.92,468.59L653.37,468.38L656.25,468.2L657.55,468.2L660.3,467.85L660.67,467.78L661.04,467.69L661.41,467.58L661.77,467.46L661.97,467.37L662.12,467.31L662.46,467.14L662.48,467.12L662.79,466.95L663.11,466.75L669.08,463.08L669.43,462.86L669.47,462.84L669.98,462.46L670.45,462.04L670.65,461.83L670.88,461.58L671.24,461.11L671.26,461.08L671.6,460.55L671.86,460.08L672.11,459.4L672.28,458.8L672.77,455.91L673.22,455.59L673.35,455.5L674.51,454.66L676.82,453.71L677.1,453.63L678.76,452.93L679.4,452.72L680.64,452.32L680.65,452.74L681.67,452.58L681.72,452.72L682.59,452.54L683.01,452.48L683.47,452.35L683.64,452.3L684.33,452.12L684.42,452.07L685.63,451.64L686.53,451.31L687.41,450.9L688.21,450.59L688.98,450.26L688.98,449.77L689.71,449.57L690.14,449.48L691.14,449.27L691.79,449.08L692.26,448.96L692.59,448.89L693.06,448.79L693.87,448.6L693.89,448.6L694.3,448.5L694.73,448.4L695.65,448.19L697.07,447.84L697.78,447.68L698.41,447.55L698.98,447.43L699.62,447.3L699.66,447.58L702.31,447.12L702.48,447.1L702.58,447.09L701.87,442.85L702.15,442.8L703.17,442.68L703.94,446.96L704.1,447.88L705.18,447.77L705.19,447.77L705.35,448.68L708.71,448.26L711.21,447.95L711.36,447.93L711.76,447.88L711.91,447.88L712.22,449.34L712.02,449.32L712.27,449.47L712.74,450.79L712.79,451.06L713.15,452.39L713.38,453.18L713.42,453.42L713.45,453.59L713.46,453.66L713.46,453.67L713.61,453.61L713.63,453.61L721.39,450.24L722.05,449.96L725.21,448.58L726.58,448L727.08,447.78L729.49,446.76L730.47,446.34L731.48,445.98L731.78,445.88L732.5,445.66L732.29,445.31L732.28,445.29L731.78,444.16L731.71,444L731.3,443.09L730.74,441.82L730.32,440.91L729.98,440.19L729.85,439.93L729.68,439.57L729.42,438.97L729.12,438.3L728.71,437.39L727.62,435.01L726.98,433.6L726.91,433.45L726.72,432.9L726.58,432.49L726.47,432.15L726.38,431.85L726.21,431.48L724.66,428.1L724.41,427.53L724.23,427.13L723.7,425.93L723.48,425.43L723.09,424.58L723.1,424.58L723.33,424.55L723.57,424.49L724.94,424.2L725.85,424L726.9,423.78L728.6,423.42L729.16,423.32L729.84,423.14L730.57,422.96L730.84,422.9L731.51,422.76L732,422.66L733.12,422.42L734.3,422.16L734.41,422.14L734.38,421.98L734.54,421.96L735.37,421.64L735.5,421.64L735.72,421.59L736.9,421.1L738.2,420.52L739.57,419.98L741.83,418.79L742.29,419.99L743.14,419.73L745.4,419.03L748.22,418.15L749.34,417.8L750.47,417.45L751.8,417.03L754.06,416.33L755.46,415.9L756.87,415.46L758,415.11L758.97,414.8L759.22,414.75L759.44,414.72L760.11,414.65L760.55,414.61L760.7,414.59L761.04,414.56L761.36,414.53L761.73,414.49L762.58,414.41L764.94,414.31L766.39,414.25L766.41,414.25L767.88,414.19L770.24,414.09L771.76,414.03L774.12,413.93L775.59,413.87L777.06,413.8L779.42,413.7L781.95,408.5L782.13,407.99L782.14,407.96L782.19,407.98L782.83,408.23L784.32,408.87L785.08,409.24L785.77,409.58L786.2,409.82L786.49,409.58L786.81,409.36L787.13,409.17L787.4,409.03L787.47,408.99L787.63,408.92L787.82,408.84L788.17,408.71L788.54,408.61L788.91,408.52L790.48,408.3L792.15,408.06L792.37,408.01L792.56,407.9L792.83,407.86L793.14,407.82L795.64,407.5L795.94,407.45L796.75,407.31L797.54,407.14L798.34,406.95L799.13,406.73L799.91,406.48L800.68,406.22L801.44,405.93L802.19,405.61L803.57,405.04L803.66,405L804.03,404.84L806.17,403.97L808.22,403.14L808.74,402.93L809.2,402.74L808.78,401.26L808.35,399.94L807.83,398.56L807.73,398.35L807.48,397.77L807.11,397.01L807.11,397L806.71,396.23L806.29,395.48L805.85,394.74L805.38,393.99L804.91,393.3L804.4,392.6L803.77,391.78L803.12,390.98L803,390.84L802.45,390.2L801.75,389.44L801.04,388.69L800.31,387.96L799.56,387.25L798.79,386.56L798.78,386.55L798.25,386.07L798.2,386.02L797.61,385.46L797.37,385.22L797.04,384.88L796.49,384.29L795.43,383.07L794.92,382.44L794.43,381.8L793.95,381.13L793.5,380.44L793.08,379.74L792.7,379.01L792.35,378.26L792.03,377.48L791.79,376.89L791.53,375.94L791.27,375.01L791.06,374.06L790.88,373.11L790.76,372.15L790.67,371.18L790.63,370.21L790.63,369.24L790.68,368.27L790.74,367.33L790.82,366.39L790.9,365.66L790.93,365.45L791.06,364.51L791.09,364.33L791.22,363.58L791.29,363.22L791.4,362.65L791.61,361.73L791.84,360.81L792,360.13L792.19,359.45L791.65,359.26L789.47,358.44L789.26,358.37L789.15,358.29L788.74,358.03L788.67,357.99L788.31,357.79L787.36,357.38L786.4,357L785.43,356.64L784.45,356.3L783.47,355.99L782.47,355.7L781.47,355.44L780.47,355.2L776.74,354.33L776.63,354.31L776.33,354.23L775.01,353.89L774.49,353.75L772.81,353.3L770.64,352.75L768.5,352.25L765.75,351.69L761.16,350.79L758.8,350.36L758.3,350.28L757.64,350.18L757.62,350.18L756.44,350.02L755.9,349.96L753.93,349.72L753.56,349.68L752.37,349.57L751.41,349.47L749.96,349.38L748.51,349.32L747.06,349.29L745.61,349.28L744.08,349.25L740.77,349.39L740.58,349.4L735.39,349.62L734.11,349.67L730.15,349.84L729.23,349.88L724.06,350.1L720.38,350.28L719.61,350.32L717.86,350.38L713.5,350.54L712.74,350.57L711.98,350.57Z" + }, + { + "id": 13, + "data": "M844.78,404.97L844.7,404.82L844.57,404.56L844.4,404.23L843.94,403.28L840.35,396.09L840.36,395.92L839.04,393.18L837.22,393.06L836.61,393.02L834.97,392.92L832.96,393.38L832.95,393.38L832.43,393.5L830.95,393.84L829.97,394.16L829.94,394.17L828.35,394.69L827.32,395.03L827.3,395.03L827.31,395.1L827.54,396.34L827.6,396.97L827.65,397.61L827.68,398.25L827.69,398.88L827.67,399.52L827.64,400.15L827.59,400.79L827.42,402.05L827.3,402.68L827.17,403.3L827.02,403.92L826.84,404.53L826.65,405.14L826.44,405.74L826.21,406.33L825.56,408.13L823.06,414.52L820.81,420.29L815.77,433.12L815.29,434.33L815.18,434.64L815.1,434.83L815.04,435.04L814.86,435.56L814.49,436.81L814.18,438.07L814.16,438.2L814.13,438.31L814.13,438.3L813.81,438.18L813.72,438.14L813.64,438.07L813.59,437.99L813.55,437.9L813.39,437.66L813.27,437.58L813.12,437.55L812.32,437.4L811.64,437.23L810.96,437.04L810.67,436.92L810.38,436.78L810.11,436.63L809.84,436.45L809.59,436.26L809.35,436.05L809.14,435.85L809.14,435.84L808.92,435.59L807.06,433.03L806.68,432.52L806.68,432.51L806.51,432.93L806.24,433.56L805.32,435.75L805.12,436.21L803.73,439.47L803.14,440.86L803.01,441.16L802.95,441.32L801.93,444.18L801.9,444.26L801.77,444.61L801.73,444.74L801.64,445L801.4,445.76L801.01,447.01L800.86,447.49L800.83,447.59L800.01,450.5L799.38,454.37L798.96,456.99L798.95,457.05L798.94,457.07L798.62,460.91L798.62,461.04L798.67,464.54L798.67,464.6L798.78,466.38L798.87,467.88L798.91,468.44L798.97,469.49L799,469.78L799.05,470.32L799.08,470.5L799.08,470.56L799.13,471.08L799.17,471.5L799.23,472.17L799.43,474.04L799.46,475.56L799.5,481.02L799.47,483.34L799.36,485.72L799.21,488.1L799.12,489.1L799,490.48L798.74,492.85L798.51,494.37L798.25,495.88L797.96,497.38L797.65,498.88L797.34,500.56L796.98,502.22L796.69,503.36L796.62,503.76L796.24,504.96L794.47,510.46L794.38,510.73L793.48,513.12L792.53,515.49L792,516.62L791.77,517.09L791.5,517.65L791.16,518.33L790.34,520.03L789.64,521.3L787.65,524.95L787.61,525.01L786.82,526.38L786.82,526.39L785.5,528.68L785.3,529.03L785.29,529.06L783.77,531.7L782.07,534.6L781.81,535.04L781.55,535.49L780.94,536.74L780.34,538.01L780.21,538.3L779.77,539.28L779.46,540.02L779.42,540.1L779.22,540.56L778.68,541.84L778.16,543.12L778.07,543.37L778.02,543.49L777.67,544.42L777.22,545.72L776.56,547.83L776.31,548.68L776.22,549.01L775.92,550.18L775.58,551.68L775.38,552.76L775.31,553.13L775.07,554.59L774.85,556.05L774.75,556.77L774.74,556.87L774.65,557.51L774.51,558.93L774.4,560.26L774.4,560.36L774.31,561.78L774.24,563.21L774.24,564.85L774.28,566.5L774.36,568.14L774.39,568.48L774.41,568.73L774.5,569.78L774.61,571.06L774.75,572.33L774.92,573.59L775.12,574.86L775.38,576.27L775.68,577.68L776.03,579.08L776.42,580.47L777.17,582.73L777.85,584.78L778.15,585.74L778.53,586.96L778.9,588.12L779.21,589.11L779.24,589.2L779.33,589.53L779.47,589.96L780.11,591.93L780.68,593.9L781.04,595.3L781.1,595.53L781.2,595.9L781.65,597.91L782.07,599.98L782.15,600.57L782.18,600.79L782.22,601.03L782.34,602.16L782.35,602.2L782.49,603.46L782.6,604.84L782.66,606.23L782.68,607.62L782.69,609.51L782.64,611.41L782.64,611.47L782.54,613.3L782.38,615.19L782.09,617.51L781.75,619.82L781.61,620.66L781.56,620.95L781.36,622.12L780.91,624.42L780.33,626.82L780.32,626.88L780.3,626.95L779.64,629.48L778.92,631.99L778.14,634.48L777.56,636.07L776.96,637.66L776.34,639.23L775.96,640.15L775.9,640.3L775.69,640.8L774.85,642.72L773.96,644.61L773.03,646.49L772.74,647.05L772.62,647.28L772.22,648.05L772.06,648.34L771.22,649.84L771.21,649.85L771,650.22L769.89,652.08L769.3,653L769.22,653.15L769.11,653.32L768.74,653.9L767.53,655.7L766.34,657.38L766.28,657.46L765.12,659.05L763.87,660.7L763.04,661.75L762.6,662.31L763.02,662.6L765.07,663.9L765.94,664.15L766.8,664.22L767.83,664.07L767.87,664.06L770.18,662.89L771.13,662.29L771.96,661.93L773.52,661.99L774.71,662.26L775.26,662.58L775.3,662.61L775.68,663.08L776.44,664.31L776.87,665.52L777.84,669.89L778.06,671.06L779.64,675.56L780.38,681.1L780.47,681.89L780.58,682.77L780.6,682.89L780.85,682.49L780.87,682.47L780.89,682.44L781.13,682.06L785.01,677.99L789.4,673.51L789.46,673.45L791.48,671.4L792.09,670.78L792.41,670.43L793.76,668.95L794.64,667.99L796.72,665.67L798.57,663.73L800.61,661.6L804.42,657.82L807.42,654.75L807.6,654.57L808.75,653.49L809.36,652.92L809.85,652.46L811.61,650.42L811.72,650.29L811.78,650.22L814.09,647.88L814.1,647.86L814.12,647.84L815.57,646.37L816.87,645.36L818.34,644.33L819.32,643.79L819.35,643.78L819.46,643.72L819.89,643.49L821.21,642.82L821.55,642.73L828.02,641L827.93,640.61L827.91,640.54L829.44,640.14L831.73,639.54L835.38,638.68L836.01,638.52L842.57,636.84L842.9,636.86L843.34,636.89L843.64,636.35L843.35,633.38L843.4,633.14L843.48,632.75L843.7,632.49L845.51,630.33L847.53,627.76L848.46,626.71L848.51,626.65L849.62,624.7L851.47,621.93L853.23,619.32L853.31,619.07L853.5,618.23L853.54,618.06L853.64,617.62L854.11,616.46L854.4,615.73L854.9,614.6L856.02,612.68L856.82,611.33L857.42,610.55L859.38,608.66L860.46,606.2L860.51,606.07L860.57,605.94L860.83,605.18L861.04,604.59L861.21,604.08L861.23,604.04L862.76,602.6L863.72,601.7L863.87,601.58L865.4,600.32L865.43,600.35L865.68,600.61L865.89,600.83L866.04,601L867.84,599.75L868.28,599.29L870.06,597.94L871.55,596.8L872.21,596.3L872.21,596.18L872.17,595.37L871.55,591.61L870.81,588.31L870.62,587.47L870.45,586.73L869.23,583.16L868.95,582.33L868.22,580.67L868.2,580.64L867.93,580.03L867.7,579.5L867.49,579.02L866.99,578.08L866.85,577.8L866.81,577.28L866.53,575.65L866.51,575.58L866.53,575.13L866.54,575.16L867.65,577.29L867.7,577.39L868.06,577.41L868.21,577.42L868.24,577.42L868.46,577.47L870.17,577.89L871.17,578.17L872.48,578.55L887.31,582.21L887.52,582.26L888.11,582.41L889.59,582.77L890.66,583.12L890.91,583.23L892.43,583.88L894.01,584.56L894.93,584.93L896.56,585.57L897.33,585.92L897.63,586.06L897.66,586.11L897.67,586.13L897.74,586.26L902.04,587.86L902.49,587.98L902.92,588.04L903.37,588.11L904.91,588.33L906.34,588.55L906.37,588.55L907.27,588.69L908.96,588.94L909.2,588.97L910.77,589.16L910.97,589.19L911.03,589.19L911.37,589.2L913.74,589.29L914.93,589.33L931.95,589.33L932.93,589.13L933.2,589.11L934.68,588.78L942.98,586.94L945.33,586.42L945.68,586.34L945.83,586.3L946.08,586.56L946.42,586.9L946.64,587.09L947.02,587.4L947.82,587.77L949.83,588.99L950.25,588.89L950.38,589.01L950.77,589.16L951.31,589.45L951.73,589.68L952.27,589.97L953.06,590.63L953.3,590.83L953.4,590.92L954.83,592.12L956.93,594L958.12,595.38L958.75,596L959.21,596.59L959.28,596.68L960.12,597.77L960.58,598.67L960.59,598.69L961.03,599.56L961.28,600.38L963.04,600.02L964.83,599.73L964.84,599.73L965.44,599.64L967.07,599.39L967.58,599.31L968.03,599.29L968.13,599.29L968.36,599.28L969.3,599.08L970.3,598.91L970.86,598.85L971.2,598.81L971.31,598.8L971.52,598.76L971.83,598.7L972.19,598.63L973.49,598.37L974.19,598.24L975.54,597.98L976.72,597.75L977.58,597.74L979.22,597.47L979.68,597.48L980.81,597.57L982.24,597.79L982.9,598.13L983.6,598.41L984.61,598.85L985.95,599.74L986.79,600.48L987.6,601.28L989.15,603.68L989.08,603.81L989.21,603.77L989.48,603.69L989.49,603.69L990.86,603.27L992.31,602.51L992.86,601.86L993.19,600.87L993.23,600.2L993.47,599.79L993.87,599.5L995.19,598.56L995.51,598.27L996.11,597.32L996.63,596.91L996.43,596.89L997.15,595.71L997.23,595.45L997.55,594.45L997.56,594.39L998.03,591.76L997.64,590.81L997.63,590.79L997.54,590.56L997.08,590.18L996.07,589.34L996.03,589.31L995.92,588.89L995.91,588.87L995.79,588.45L995.52,587.48L995.66,587.49L995.73,587.5L996.05,585.26L996.52,583.71L996.29,583.04L996.23,582.89L995.85,581.81L996.18,581.09L997.12,580.35L997.5,580.05L1001.59,579.54L1002.35,579.88L1002.39,579.9L1003.02,580.19L1003.53,580.77L1003.58,580.83L1003.93,581.23L1004.75,582.16L1005.32,582.81L1005.37,582.9L1006.23,584.38L1006.58,584.97L1006.58,584.99L1006.85,585.67L1007.76,588L1008.54,588.9L1008.72,589.11L1009.26,589.73L1009.35,589.85L1009.46,589.93L1009.56,590.03L1009.71,590.15L1010.09,590.15L1011,589.55L1010.6,586.44L1010.52,585.81L1010.51,585.69L1012.11,585.2L1028.57,580.09L1033.21,578.65L1035.99,577.78L1036.02,577.77L1040.05,576.52L1041,576.22L1042.31,575.76L1045.87,574L1046.51,573.68L1051.04,571.16L1052.54,570.29L1053.59,569.68L1055.61,568.51L1056.3,568.11L1057.48,567.43L1058.32,567.06L1059.26,566.65L1059.35,566.61L1060.06,566.3L1063.77,564.78L1066.97,563.48L1068.6,562.72L1068.75,562.6L1069.27,562.17L1069.5,561.98L1069.51,561.98L1069.62,561.88L1069.63,561.87L1068.98,561.2L1068.82,560.96L1068.2,559.81L1067.53,558.45L1067.52,558.43L1066.67,557.7L1066.53,557.58L1066.17,557.42L1065.18,557L1064.02,557.17L1063.98,557.18L1063.94,557.2L1062.92,558.01L1062.02,558.5L1061.11,558.99L1059.46,559.39L1057.93,559.5L1056.08,559.63L1054.97,560.12L1054.96,560.03L1054.95,560.04L1054.31,560.57L1054.23,560.64L1051.94,561.59L1051.74,560.39L1051.73,560.32L1051.81,559.11L1052.45,555.67L1053.22,552.01L1053.03,551.97L1052.93,551.95L1053.77,548.05L1054.03,546.83L1054.47,544.31L1054.87,541.84L1055.24,539.56L1056.61,532.99L1056.91,531.22L1057.02,531.24L1057.2,531.28L1057.22,531.15L1057.42,530.08L1057.59,529.61L1057.62,529.53L1057.69,529.32L1059.31,529.92L1059.4,529.95L1059.4,529.94L1059.86,529.26L1060.03,529L1060.41,527.85L1060.49,527.58L1060.64,527.28L1060.64,527.27L1060.88,526.78L1061.06,526.42L1061.27,525.53L1061.04,523.63L1060.72,523.01L1060.59,522.84L1060.42,522.61L1059.41,521.25L1059.3,521.1L1059.03,520.67L1057.98,519.06L1056.44,516.69L1056.19,516.3L1055.71,515.55L1055.52,515.19L1055.41,514.96L1055.04,514.25L1054.81,513.69L1054.5,512.92L1054.4,512.69L1053.3,510.74L1053.03,510.41L1052.96,510.31L1052.93,510.29L1052.53,509.44L1052.02,508.48L1051.24,507.72L1050.67,507.25L1050.65,507.24L1050.65,507.23L1050.47,507.04L1049.73,506.27L1049,505.37L1048.77,505.08L1048.56,504.66L1047.62,502.75L1045.45,500.54L1045.45,500.48L1045.44,500.46L1045.44,500.43L1045.03,497.45L1044.73,494.03L1044.72,493.91L1044.72,493.9L1044.7,493.71L1044.74,493.5L1044.99,491.9L1045.07,491.72L1045.51,490.74L1045.8,489.72L1046.05,488.98L1045.8,487.5L1045.71,486.92L1045.68,486.75L1045.78,485.49L1045.97,484.6L1046.03,484.33L1046.08,484.21L1046.23,483.83L1046.45,483.28L1046.7,482.66L1046.85,482.3L1047.86,480.29L1048.42,478.9L1048.67,477.74L1048.53,476.78L1048.85,475.52L1049.4,473.34L1049.42,473.24L1050,471.61L1050.3,470.48L1050.29,469.47L1050.46,468.78L1050.84,467.18L1050.94,467.21L1051.13,466.29L1051.03,466.26L1051.55,464.94L1051.56,464.9L1051.79,464.3L1052.15,463.36L1052.97,462.12L1053.12,461.98L1053.52,461.58L1053.54,461.57L1053.65,461.27L1054.53,458.92L1054.62,458.94L1054.72,458.91L1054.72,457.9L1054.78,457.42L1054.36,456.04L1054,455.27L1053.53,454.58L1053.25,453.5L1053.18,452.76L1053.59,450.91L1053.79,450.47L1053.85,450.08L1053.82,449.97L1053.65,449.31L1053.75,449.3L1054.22,449.07L1054.4,448.98L1054.91,448.19L1055.06,447.64L1055.11,447.54L1055.33,447.09L1055.68,446.7L1055.85,446.31L1055.9,444.67L1056.07,444.06L1056.08,443.93L1056.3,441.25L1056.46,440.36L1056.57,438.89L1056.8,437.88L1057.16,435.06L1057.38,431.5L1057.64,429.84L1057.33,429.8L1055.12,429.53L1055.05,429.08L1054.97,428.62L1054.67,427.13L1054.58,426.66L1054.28,425.06L1054.27,424.97L1053.66,422.13L1053.25,420.21L1052.6,417.45L1052.61,417.4L1052.04,414.71L1051.25,410.95L1051.15,410.97L1050.65,408.64L1049.81,404.61L1049.83,404.56L1049.91,404.33L1048.65,403.44L1048.08,403.11L1046.8,402.52L1045.66,401.79L1044.55,401.44L1042.94,400.87L1042.78,400.93L1042.26,401.12L1040.77,401.66L1038.88,402.35L1038.57,402.46L1037.37,402.9L1036.13,401.79L1035.88,401.75L1035.81,401.75L1033.76,402.66L1033.61,402.73L1031.17,403.84L1028.42,405.21L1028.01,405.19L1027.9,405.19L1027.26,405.16L1025.53,404.29L1023.79,403.82L1023.69,403.79L1021.2,406.37L1020.25,407.45L1020,408.2L1020.03,408.27L1020.64,409.75L1020.59,413.86L1019.62,414.77L1019.02,415.34L1018.41,416.13L1017.18,416.82L1015.27,417.38L1012.69,417.68L1011.27,416.97L1010.69,416.64L1010.25,416.25L1009.24,415.27L1008.78,415L1007.5,414.76L1007.07,414.74L1006.71,414.73L1006.56,414.72L1005.88,415.09L1004.4,416.29L1003.9,416.55L1003.74,416.74L1003.69,416.89L1003.2,418.51L1003.17,421.11L1003.17,421.25L1001.69,421.5L1000.1,421.52L998.94,421.33L995.03,421.31L993.05,421.49L992.21,421.44L991.78,421.38L987.94,420.85L983.49,420.45L981.64,419.11L981.06,418.88L978.74,418.39L978.45,418.4L977.94,418.41L977.59,418.4L976.82,418.6L975.63,418.52L973.83,416.57L972.79,415.92L972.35,415.62L972.25,415.59L971.4,415.43L969.96,415.49L969.33,415.63L967.8,415.82L967.76,415.76L967,415.62L966.87,415.6L965.84,415.62L964.56,415.64L964.5,415.73L963.88,416.61L961.7,419.65L959.61,422.35L959.34,422.66L958.82,423.24L957,425.08L956.1,425.9L955.99,425.96L955.85,426.03L955.27,426.36L954.23,426.82L952.37,427.38L950.09,427.74L950.08,427.64L949.91,426.25L949.66,424.86L949.45,423.5L949.33,422.1L949.22,421.65L949.16,420.75L948.89,418.88L948.69,418.86L946.24,418.69L945.26,418.73L943.31,418.59L942.4,418.45L940.01,418.39L939.27,418.26L938.96,418.21L935.66,418.15L934.22,418.06L933.24,417.97L931.49,417.95L930.81,417.93L925.77,417.49L923.78,417.36L922.23,417.33L920.39,417.07L919.61,417.09L918.8,416.98L916.77,416.85L915.92,416.76L914.05,416.55L913.16,416.48L912.43,416.42L911.05,416.3L910.43,416.25L906.59,415.88L906.43,415.86L905.31,415.76L903.84,415.63L901.3,415.4L898.29,415.04L897.81,414.93L896.74,414.69L897.23,412.39L897.68,410.45L897.68,410.42L897.72,410.27L898.22,408.32L899.15,404.68L899.46,403.91L899.92,403.04L899.93,402.21L899.94,402.05L899.96,400.66L899.15,400.7L896.62,400.82L896.17,400.84L893.97,401L892.05,401.17L890.15,401.33L888.13,401.49L885.98,401.65L883.95,401.79L882.01,401.91L880,402.03L878.43,402.12L878.04,402.06L876.71,402.08L873.83,402.26L873.81,402.16L872.75,402.34L872.48,402.71L872.33,402.21L872.13,401.53L872.07,401.33L871.92,401.35L871.92,401.33L871.91,401.25L871.56,401.3L871.09,401.36L870.88,401.39L861.35,402.69L859.65,402.91L854.7,403.6L853.19,403.82L852.82,403.96L852.74,403.99L844.99,405.04L844.78,404.97Z" + }, + { + "id": 8, + "data": "M810.32,409.8L810.27,408.98L810.09,407.37L810.08,407.32L810.02,406.87L809.85,405.77L809.55,404.17L809.27,402.98L809.21,402.74L809.2,402.74L808.74,402.93L808.22,403.14L806.17,403.97L804.03,404.84L803.66,405L803.57,405.04L802.19,405.61L801.44,405.93L800.68,406.22L799.91,406.48L799.13,406.73L798.34,406.95L797.54,407.14L796.75,407.31L795.94,407.45L795.64,407.5L793.14,407.82L792.83,407.86L792.56,407.9L792.37,408.01L792.15,408.06L790.48,408.3L788.91,408.52L788.54,408.61L788.17,408.71L787.82,408.84L787.63,408.92L787.47,408.99L787.4,409.03L787.13,409.17L786.81,409.36L786.49,409.58L786.2,409.82L785.77,409.58L785.08,409.24L784.32,408.87L782.83,408.23L782.19,407.98L782.14,407.96L782.13,407.99L781.95,408.5L779.42,413.7L777.06,413.8L775.59,413.87L774.12,413.93L771.76,414.03L770.24,414.09L767.88,414.19L766.41,414.25L766.39,414.25L764.94,414.31L762.58,414.41L761.73,414.49L761.36,414.53L761.04,414.56L760.7,414.59L760.55,414.61L760.11,414.65L759.44,414.72L759.22,414.75L758.97,414.8L758,415.11L756.87,415.46L755.46,415.9L754.06,416.33L751.8,417.03L750.47,417.45L749.34,417.8L748.22,418.15L745.4,419.03L743.14,419.73L742.29,419.99L741.83,418.79L739.57,419.98L738.2,420.52L736.9,421.1L735.72,421.59L735.5,421.64L735.37,421.64L734.54,421.96L734.38,421.98L734.41,422.14L734.3,422.16L733.12,422.42L732,422.66L731.51,422.76L730.84,422.9L730.57,422.96L729.84,423.14L729.16,423.32L728.6,423.42L726.9,423.78L725.85,424L724.94,424.2L723.57,424.49L723.33,424.55L723.1,424.58L723.09,424.58L723.48,425.43L723.7,425.93L724.23,427.13L724.41,427.53L724.66,428.1L726.21,431.48L726.38,431.85L726.47,432.15L726.58,432.49L726.72,432.9L726.91,433.45L726.98,433.6L727.62,435.01L728.71,437.39L729.12,438.3L729.42,438.97L729.68,439.57L729.85,439.93L729.98,440.19L730.32,440.91L730.74,441.82L731.3,443.09L731.71,444L731.78,444.16L732.28,445.29L732.29,445.31L732.5,445.66L731.78,445.88L731.48,445.98L730.47,446.34L729.49,446.76L727.08,447.78L726.58,448L725.21,448.58L722.05,449.96L721.39,450.24L713.63,453.61L713.61,453.61L713.46,453.67L713.46,453.66L713.45,453.59L713.42,453.42L713.38,453.18L713.15,452.39L712.79,451.06L712.74,450.79L712.27,449.47L712.02,449.32L712.22,449.34L711.91,447.88L711.76,447.88L711.36,447.93L711.21,447.95L708.71,448.26L705.35,448.68L705.19,447.77L705.18,447.77L704.1,447.88L703.94,446.96L703.17,442.68L702.15,442.8L701.87,442.85L702.58,447.09L702.48,447.1L702.31,447.12L699.66,447.58L699.62,447.3L698.98,447.43L698.41,447.55L697.78,447.68L697.07,447.84L695.65,448.19L694.73,448.4L694.3,448.5L693.89,448.6L693.87,448.6L693.06,448.79L692.59,448.89L692.26,448.96L691.79,449.08L691.14,449.27L690.14,449.48L689.71,449.57L688.98,449.77L688.98,450.26L688.21,450.59L687.41,450.9L686.53,451.31L685.63,451.64L684.42,452.07L684.33,452.12L683.64,452.3L683.47,452.35L683.01,452.48L682.59,452.54L681.72,452.72L681.67,452.58L680.65,452.74L680.64,452.32L679.4,452.72L678.76,452.93L677.1,453.63L676.82,453.71L674.51,454.66L673.35,455.5L673.22,455.59L672.77,455.91L672.28,458.8L672.11,459.4L671.86,460.08L671.6,460.55L671.26,461.08L671.24,461.11L670.88,461.58L670.65,461.83L670.45,462.04L669.98,462.46L669.47,462.84L669.43,462.86L669.08,463.08L663.11,466.75L662.79,466.95L662.48,467.12L662.46,467.14L662.12,467.31L661.97,467.37L661.77,467.46L661.41,467.58L661.04,467.69L660.67,467.78L660.3,467.85L657.55,468.2L656.25,468.2L653.37,468.38L650.92,468.59L650.7,468.63L650.42,468.67L650.22,468.7L649.53,468.86L649.44,468.87L649.24,468.9L649.07,468.9L648.84,468.88L648.75,468.86L648.75,469.22L648.76,469.66L648.66,470.18L648.56,470.74L648.33,472.01L647.87,473.94L647.61,474.81L647.35,475.58L647.08,476.3L646.87,476.83L646.85,476.89L646.5,477.62L646.41,477.8L646.26,478.11L646.23,478.16L646.18,478.27L646.1,478.42L646.02,478.6L645.94,478.76L645.92,478.79L645.88,478.88L645.86,478.92L645.61,479.43L645.6,479.43L644.94,480.52L644.7,480.93L644.41,481.32L644.23,481.57L643.73,482.25L643.35,482.76L643.22,482.93L643.16,483L643.09,483.08L642.78,483.46L642.6,483.69L642.48,483.84L642.3,484.05L642.28,484.08L642.22,484.15L642.16,484.23L641.96,484.48L641.8,484.67L641.8,484.68L641,485.59L639.76,486.97L638.1,488.63L637.13,489.66L637.19,489.83L637.27,490.06L637.28,490.06L637.36,490.29L637.73,491.31L638.54,493.52L639.3,495.58L639.72,496.86L639.77,497.05L640.07,498.17L640.35,499.48L640.35,499.49L640.56,500.82L640.69,502.16L640.75,503.51L640.73,504.86L640.68,505.58L640.64,506.2L640.6,506.54L640.58,506.74L640.48,507.47L640.46,507.63L640.37,508.19L639.03,513.51L638.88,514.22L638.79,514.95L638.78,515.67L638.84,516.4L638.89,516.69L638.92,516.89L638.97,517.14L639.01,517.3L639.17,517.88L639.45,518.59L639.79,519.26L641.63,522.77L641.84,523.11L642.07,523.42L642.35,523.7L642.65,523.95L642.98,524.16L643.15,524.24L643.33,524.33L643.7,524.47L644.08,524.56L644.04,525.1L643.96,525.63L643.87,526.04L643.84,526.16L643.67,526.68L643.64,526.76L642.66,529.31L642.2,530.49L641.64,531.95L641.12,533.3L640.01,536.15L638.36,540.11L638.18,540.54L637.88,541.28L637.6,541.95L636.96,543.51L636.33,545.03L635.88,546.14L635.82,546.28L635.7,546.57L635.63,546.81L635.61,547.05L635.64,547.3L635.71,547.54L635.82,547.76L635.97,547.95L636.15,548.12L636.36,548.25L639.68,550.06L640.68,550.62L642.78,551.83L644.87,553.06L646.95,554.31L649.01,555.58L649.48,555.88L651.07,556.88L653.1,558.19L655.13,559.53L657.14,560.88L659.97,562.62L662.85,564.29L665.17,565.58L665.75,565.9L668.69,567.45L669.62,568.01L670.5,568.62L671.35,569.28L672.16,569.99L672.66,569.23L672.71,569.14L674.98,568.81L678.09,570.83L679.58,571.79L680.6,572.09L681.33,572.3L682.7,572.69L685.55,574.65L686.74,575.44L687.25,575.79L689.23,577.13L692.96,579.53L696.53,581.91L700.44,584.46L704.12,586.89L707.88,589.36L711.49,591.75L710.86,592.82L710.84,592.85L710.7,593.09L713.06,594.39L713.7,594.74L717.41,596.78L723.25,599.81L726.02,601.03L727.3,601.59L727.57,601.71L738,605.64L738.02,605.64L742.61,606.49L748.17,607.54L748.48,607.6L752.81,607.87L752.82,607.87L762.17,607.13L762.39,607.12L762.4,607.12L762.69,607.05L762.68,607.05L762.39,607.12L762.68,607.04L762.69,607.04L762.96,606.97L780,602.83L781.63,602.39L781.89,602.32L782.31,602.21L782.34,602.2L782.35,602.2L782.34,602.16L782.22,601.03L782.18,600.79L782.15,600.57L782.07,599.98L781.65,597.91L781.2,595.9L781.1,595.53L781.04,595.3L780.68,593.9L780.11,591.93L779.47,589.96L779.33,589.53L779.24,589.2L779.21,589.11L778.9,588.12L778.53,586.96L778.15,585.74L777.85,584.78L777.17,582.73L776.42,580.47L776.03,579.08L775.68,577.68L775.38,576.27L775.12,574.86L774.92,573.59L774.75,572.33L774.61,571.06L774.5,569.78L774.41,568.73L774.39,568.48L774.36,568.14L774.28,566.5L774.24,564.85L774.24,563.21L774.31,561.78L774.4,560.36L774.4,560.26L774.51,558.93L774.65,557.51L774.74,556.87L774.75,556.77L774.85,556.05L775.07,554.59L775.31,553.13L775.38,552.76L775.58,551.68L775.92,550.18L776.22,549.01L776.31,548.68L776.56,547.83L777.22,545.72L777.67,544.42L778.02,543.49L778.07,543.37L778.16,543.12L778.68,541.84L779.22,540.56L779.42,540.1L779.46,540.02L779.77,539.28L780.21,538.3L780.34,538.01L780.94,536.74L781.55,535.49L781.81,535.04L782.07,534.6L783.77,531.7L785.29,529.06L785.3,529.03L785.5,528.68L786.82,526.39L786.82,526.38L787.61,525.01L787.65,524.95L789.64,521.3L790.34,520.03L791.16,518.33L791.5,517.65L791.77,517.09L792,516.62L792.53,515.49L793.48,513.12L794.38,510.73L794.47,510.46L796.24,504.96L796.62,503.76L796.69,503.36L796.98,502.22L797.34,500.56L797.65,498.88L797.96,497.38L798.25,495.88L798.51,494.37L798.74,492.85L799,490.48L799.12,489.1L799.21,488.1L799.36,485.72L799.47,483.34L799.5,481.02L799.46,475.56L799.43,474.04L799.23,472.17L799.17,471.5L799.13,471.08L799.08,470.56L799.08,470.5L799.05,470.32L799,469.78L798.97,469.49L798.91,468.44L798.87,467.88L798.78,466.38L798.67,464.6L798.67,464.54L798.62,461.04L798.62,460.91L798.94,457.07L798.95,457.05L798.96,456.99L799.38,454.37L800.01,450.5L800.83,447.59L800.86,447.49L801.01,447.01L801.4,445.76L801.64,445L801.73,444.74L801.77,444.61L801.9,444.26L801.93,444.18L802.95,441.32L803.01,441.16L803.14,440.86L803.73,439.47L805.12,436.21L805.32,435.75L806.24,433.56L806.51,432.93L806.68,432.51L806.96,431.86L807.58,430.17L808.15,428.46L808.66,426.73L809.11,424.99L809.42,423.3L809.68,421.69L809.9,420.07L810.08,418.45L810.21,416.82L810.28,416.06L810.31,415.69L810.35,415.27L810.43,413.72L810.44,412.16L810.38,410.6L810.34,410.09L810.32,409.8Z" + }, + { + "id": 5, + "data": "M609.77,435.52L609.47,434.79L608.58,432.14L607.78,429.75L606.56,426.1L606.38,425.57L605.76,423.71L605.66,423.47L605.54,423.24L605.51,423.19L605.49,423.15L605.46,423.11L605.36,422.94L605.19,422.62L605.12,422.41L605.07,422.28L604.69,421L604.62,420.75L604.46,420.19L604.22,419.37L604.04,418.99L604.01,418.94L603.94,418.8L603.65,418.23L603.34,417.68L603.02,417.16L603,417.14L602.72,416.65L602.5,416.27L601.96,415.42L601.39,414.59L601.35,414.55L601.33,414.51L600.78,413.79L600.16,413.03L600.12,412.99L599.53,412.29L598.88,411.56L598.22,410.85L598.11,410.76L598.08,410.73L597.69,410.4L597.14,409.97L596.58,409.56L596,409.17L595.52,408.87L595.34,408.74L595.33,408.74L595.21,408.65L594.92,408.4L594.81,408.27L594.67,408.12L594.44,407.81L594.3,407.58L594.21,407.7L593.77,408.32L592.01,410.77L590.95,412.24L590.55,412.88L589.99,414.32L589.92,414.73L589.9,414.86L589.9,415.27L589.92,416.74L589.31,418.73L586.87,419.88L586.49,420.06L586.28,420.16L586.33,420.29L586.49,420.7L588.74,426.75L588.6,426.8L587.94,427.02L586.78,427.41L582.77,428.75L582.28,428.91L581.34,429.22L581.02,429.33L580.43,429.53L580.47,430.02L580.33,430.52L580.26,430.73L580.09,430.93L579.65,431.18L578.93,431.4L578.2,431.62L571.18,434.01L569.36,434.63L561.03,437.46L561.02,437.45L560.97,437.46L560.4,436.64L559.43,435.46L558.53,435.33L556.64,434.8L555.09,433.8L554.75,433.61L554.55,433.5L553.38,432.87L552.47,432.48L552.44,432.47L552.27,432.4L552.24,432.39L552.11,432.34L552.06,432.31L551.79,432.12L551.69,432.19L551.6,432.16L551.59,432.17L551.1,432.57L549.42,433.95L549.15,434.17L548.47,434.72L542.01,440.02L538.8,442.77L538.76,442.81L536.44,445.02L536.06,445.38L536.05,445.4L535.93,445.52L535.24,446.17L534.11,447.25L533.68,447.62L533.38,447.86L533.36,447.88L533.24,447.98L533.07,448.1L532.78,448.31L532.31,448.63L531.83,448.92L531.45,449.14L531.34,449.2L531.26,449.24L531,449.38L530.84,449.46L530.32,449.7L530.06,449.79L522.44,452.51L521.45,452.88L520.47,453.27L519.5,453.69L518.53,454.12L517.25,454.73L515.99,455.4L514.77,456.14L513.59,456.93L512.59,457.56L512.01,457.97L511.95,458.01L511.62,458.24L510.67,458.96L509.77,459.72L508.86,460.56L506.63,462.63L506.18,463.05L506.06,463.16L505.44,463.73L505.22,463.94L503.73,465.33L502.79,466.2L502.63,466.35L502.56,466.42L500.2,468.6L499.69,469.09L499.2,469.6L498.72,470.13L498.53,470.35L498.26,470.66L497.85,471.17L497.76,471.28L497.29,471.92L494.06,476.59L493.46,477.53L493.11,478.14L492.98,478.35L492.55,479.19L492.39,479.48L492.31,479.64L492.08,480.09L491.88,480.56L491.69,481.03L491.55,481.43L491.52,481.51L491.39,481.93L491.37,482L491.24,482.49L491.13,482.99L490.91,484.07L490.72,485.15L490.63,485.8L490.57,486.24L490.54,486.56L490.45,487.33L490.4,487.32L490.26,487.3L489.31,487.15L486.65,486.72L485.64,486.52L484.65,486.25L484.6,486.23L483.68,485.92L483.01,485.65L482.73,485.54L482.15,485.23L481.59,484.91L481.03,484.56L480.88,484.45L480.5,484.19L479.98,483.79L479.47,483.38L478.98,482.95L478.57,482.55L478.36,482.33L478.33,482.34L478.22,482.4L475.45,483.87L472.22,485.59L464.95,489.45L464.71,489.58L462.19,490.92L460.43,491.86L457.46,493.44L457.03,493.67L456.7,493.85L448.36,498.42L447.24,498.91L447.22,498.91L445.26,499.62L444.85,499.77L444.84,499.77L444.32,499.94L443.81,500.1L442.48,500.53L442.23,500.61L441.89,500.74L441.38,500.93L434.3,503.42L432.53,504.04L431.8,504.3L431.68,504.34L426.65,506.1L425.8,506.41L425.32,506.58L425.13,506.64L425.04,506.66L424.49,506.82L424.26,506.88L423.68,507.05L423.29,507.12L422.68,507.23L421.98,507.29L420.16,507.47L419.61,507.52L414.75,508.19L414.63,508.2L413.35,508.35L413.14,508.37L413.07,508.39L412.52,508.5L411.65,508.68L411.49,508.71L410.71,508.88L408.72,509.16L408.11,509.2L407.56,509.23L407.18,509.25L406.67,509.28L405.77,509.39L405.33,509.44L405.16,509.47L404.08,509.67L403.89,509.72L403.6,509.78L402.87,509.95L402.72,509.98L399.83,510.6L398.23,510.87L397.76,510.92L397.65,510.94L396.72,511.04L396.5,511.06L395.81,511.14L395.62,511.15L395.53,511.15L394.15,511.2L394.02,511.2L391.1,511.63L389.51,511.85L387.24,512.17L387.23,512.17L387.21,512.18L386.86,512.24L386.83,512.24L386.7,512.26L386.51,512.29L382.95,512.72L381.09,512.99L379.54,513.28L378.01,513.64L377.95,513.65L377.56,513.74L374.5,514.43L373.52,514.58L373.51,514.58L372.53,514.68L371.07,514.86L368.89,515.14L367.78,515.28L367.16,515.36L366.71,515.42L366.7,515.42L362.6,515.93L362.59,515.93L362.59,515.92L362.32,513.96L362.28,513.63L361.44,507.42L360.48,500.09L359.97,496.39L359.9,495.69L359.84,493.06L359.85,492.8L359.92,492.04L360.2,490.54L360.33,490.07L360.41,489.82L360.5,489.57L360.68,489.08L360.78,488.85L360.88,488.59L361.11,488.11L361.35,487.64L361.33,487.64L360.95,487.47L360.9,487.45L360.64,487.33L360.42,487.24L359.85,486.99L359.69,486.93L359.41,486.82L359.25,486.76L359.11,486.72L358.97,486.69L358.68,486.61L358.62,486.6L358,486.51L357.96,486.5L357.9,486.5L357.38,486.48L357.33,486.48L356.69,486.52L356.05,486.64L355.43,486.82L355.09,486.96L354.83,487.07L351.26,488.76L350.47,489.14L349.7,489.53L349.65,489.55L349.64,489.54L349.64,489.53L349.38,489.01L349.33,488.9L349.28,488.78L349.18,488.48L348.91,487.57L347.85,483.91L346.86,480.43L346.45,478.81L346.29,477.79L346.04,476.29L345.54,473.63L345.2,472.03L344.76,470L343.72,465.46L343.55,464.87L343.29,464.2L343.24,464.08L343.04,463.63L343.01,463.54L342.74,463.01L342.69,462.89L342.36,462.29L342.31,462.31L342.06,462.44L342.01,462.46L341.99,462.47L341.99,462.48L341.96,462.49L319.46,473.74L318.19,474.37L317.9,474.51L317.84,474.54L317.68,474.6L317.67,474.6L317.61,474.63L317.6,474.65L317.46,475.02L317.43,475.08L317.4,475.03L317.38,475.08L317.06,475.21L316.73,475.32L315.63,475.68L311.23,477.45L309.72,478.06L308.4,478.59L306.87,479.19L298.49,482.56L297.36,483.01L296.11,483.5L290.37,485.89L290.34,485.9L290.33,485.89L290.02,485.13L290.01,485.1L290,485.11L289.87,484.78L284.32,471.35L284.34,471.02L283.94,470L281.63,464L281.28,463.12L281.27,463.09L281.2,462.91L278.67,455.29L278.68,455.29L278.68,455.28L278.64,455.31L278.63,455.28L278.62,455.28L277.88,455.79L277.18,456.27L277.05,456.35L275.58,457.44L275.56,457.42L275.53,457.44L275.43,457.52L275.41,457.51L272.27,454.86L271.38,454.01L271.32,453.95L270.53,453.2L269.94,452.54L269.93,452.54L269.29,451.88L269.25,451.84L269.35,451.72L269.33,451.71L268.81,451.18L266.87,449.24L264.84,447.84L264.82,447.83L261.06,445.06L257.81,442.65L256.48,441.8L256.46,441.78L256.29,441.64L256.28,441.63L254.83,440.69L254.46,440.45L254.36,440.39L251.2,438.2L249.88,437.15L248.04,435.7L245.96,433.95L245.09,433.28L243.64,432.18L243.73,432.06L243,430.88L242.98,430.87L242.98,430.73L242.97,430.61L242.76,430.39L242.71,430.34L242.68,430.37L240.8,432.12L238.62,434.15L236.41,436.48L235.47,437.47L236.16,438.26L236.06,438.53L235.93,438.89L235.66,439.62L234.82,440.74L230.09,445.29L229.3,446.05L229.23,446.09L228.94,445.8L227.95,444.43L227.32,443.41L226.3,441.76L226.25,441.78L225.77,441.94L225.35,442.09L224.65,442.32L222.67,443.16L210.2,448.44L205.41,450.46L203.45,451.28L203.35,451.33L199.18,453.1L190.16,456.65L188.1,457.46L188.03,457.49L171.94,463.6L169.11,464.68L161.97,467.46L161.95,467.45L161.94,467.44L160.47,468L159.24,468.47L158.39,468.79L152.24,471.22L149.3,472.38L148.86,472.56L148.65,472.64L146.86,473.34L146.37,473.53L136.45,477.39L136.31,477.42L136.18,477.47L133.07,478.67L132.49,478.89L131.26,479.37L127.36,480.88L126.79,490.18L126.22,497.43L128.76,502.24L131.97,508.3L132.01,508.27L135.93,514.29L136.93,515.79L147.87,535.33L148.93,537.6L149.12,538.15L149.42,538.62L149.64,538.96L149.74,539.11L150.1,539.67L150.1,539.69L150.11,539.69L151.22,539.66L151.21,539.68L151.07,539.97L151.09,540.22L151.13,540.68L151.14,540.76L152.41,543.11L152.99,544.18L153.51,545.14L153.65,545.39L153.9,545.85L155.19,545.3L155.41,545.2L156.35,544.8L159.65,543.29L161.03,542.66L162.81,541.84L163.67,541.43L167.12,539.76L171.62,537.64L175.43,535.83L177.99,534.59L178.52,534.34L181.78,532.76L185.85,530.87L185.99,530.81L186.14,530.74L187.85,529.94L189.31,529.27L189.83,529.03L189.84,529.03L189.91,529.04L190.54,529.19L190.81,529.25L190.86,529.26L191.8,529.51L192.29,529.65L192.74,529.78L192.77,529.79L193.66,530.08L194.58,530.42L195.06,530.61L195.21,530.67L195.49,530.78L196.12,531.03L196.29,531.09L197.53,531.59L200.13,532.63L200.65,532.83L201.57,533.09L201.69,533.13L202.75,533.38L203.81,533.6L204.43,533.71L204.87,533.79L205.95,533.94L206.42,533.99L207.02,534.06L208.1,534.13L208.4,534.15L208.46,534.15L209.18,534.18L210.54,534.18L211.33,534.15L211.59,534.15L211.74,534.13L211.9,534.13L213.26,534.01L214.08,533.91L214.66,533.85L215.84,533.72L220.35,533.22L223.52,532.87L223.67,532.85L223.67,532.88L234.74,531.69L236.49,531.5L251.5,529.84L255.58,529.43L256.84,529.33L257.04,529.32L257.57,529.31L258.85,529.3L259.03,529.3L259.03,529.31L259.56,529.32L260.91,529.36L270.26,529.34L270.81,529.34L272.12,529.32L273.94,529.29L275.38,529.27L278.28,529.23L278.29,529.22L279.25,529.21L279.61,529.19L279.63,529.19L280.73,529.13L281.78,529.07L281.86,529.06L282.05,529.05L282.1,529.05L286.19,529.06L288.93,529.06L291.8,529.41L291.82,529.42L293.72,529.87L293.99,529.94L294,529.94L294.68,530.07L295.31,530.19L296,530.32L296.59,530.44L299.96,531.09L306.09,532.27L307.77,532.59L307.78,532.6L340.84,581.99L340.86,582.03L342.48,580.91L342.64,580.8L342.99,580.55L345.05,579.19L347.67,577.42L348.41,576.9L350.1,575.7L352.4,574.21L353.1,573.76L355.5,572.17L356.56,571.47L357.33,571.02L357.38,570.98L358.23,570.53L359.94,569.63L367.03,565.94L367.13,565.89L367.32,565.81L367.33,565.81L368.48,565.3L370.49,564.43L373.79,563.06L375.98,562.32L385.76,560.05L385.99,559.97L386.01,560.01L386.01,560.03L386.46,562.24L389.88,579.2L390.72,583.31L391.89,587.67L391.95,587.89L391.99,588.02L391.99,588.04L392.05,588.07L392.06,588.07L393.9,589L395.25,589.73L395.77,590L399.21,591.86L399.45,591.99L399.86,592.18L400.45,592.44L404.38,594.36L404.44,594.4L406.32,595.44L407.53,595.95L407.96,595.95L408.07,595.97L408.13,595.98L408.41,596.04L408.88,596.13L409.04,596.16L409.07,596.16L409.17,596.15L409.45,596.13L409.57,596.11L410.58,595.93L411.61,595.74L413.31,595.58L415.3,595.53L415.33,595.53L415.71,595.54L416.33,595.57L416.5,595.57L416.84,595.81L417.93,596.25L419.04,596.57L419.67,596.75L420.52,597.09L420.78,597.19L420.88,597.22L423.61,598L425.77,599.99L425.85,600.02L428.45,601.26L428.49,601.28L430.59,600.77L432.59,599.73L433.33,599.49L435.23,598.88L435.23,598.87L436.37,598.88L437.93,598.89L437.98,598.89L439.66,598.42L441.47,597.92L443.7,596.09L444.57,595.1L445.18,594.41L446.72,593.04L450.77,590.64L451.01,590.49L451.05,590.49L451.21,590.46L451.9,590.32L452.14,590.28L452.38,590.23L452.9,590.13L452.96,590.09L454.33,589.23L454.5,589.12L454.81,589.09L457.29,588.83L460.34,588.76L460.42,588.75L461.36,588.58L462.83,588.47L463.01,588.45L463.35,588.43L463.88,588.38L464.04,588.37L464.09,588.37L465.79,589.38L469.14,590.5L471.35,591.42L473.05,592.17L475.21,593.13L476.5,593.7L476.64,593.76L478.03,594.38L478.06,594.39L478.07,594.39L480.74,595.58L482.31,596.29L482.35,596.3L482.37,596.3L482.37,596.31L486.02,596.66L486.08,596.66L491.36,596.18L491.39,596.18L492.57,596.37L492.59,596.37L496.39,595.68L496.56,595.66L502.04,594.89L503.6,594.39L503.62,594.38L504.1,594.33L506.14,594.18L506.18,594.18L506.79,594.69L507.61,595.39L507.71,595.47L508.57,595.62L508.59,595.63L508.75,595.66L508.76,595.66L508.79,595.67L511.62,594.23L512.18,594.17L512.54,594.14L512.6,594.13L512.61,594.13L512.65,594.11L512.73,594.31L512.74,594.31L512.74,594.33L513.44,594L513.69,593.87L513.86,593.78L514.2,593.52L514.21,593.52L514.56,593.17L514.8,592.84L514.81,592.82L515.16,592.18L515.46,591.63L515.66,591.27L516.4,589.89L516.47,589.76L516.59,589.53L516.77,589.19L516.84,589.07L516.85,589.04L516.86,589.02L517.08,588.61L517.07,588.6L517.07,588.59L517.72,587.38L518.98,585.05L520.27,582.65L523.03,577.69L523.07,577.62L523.43,576.98L524.73,574.66L525.93,572.51L529.73,565.56L530.87,563.58L532.98,559.92L533.81,558.47L534.33,557.58L534.4,557.46L534.41,557.45L534.42,557.45L534.44,557.42L534.52,557.28L534.49,557.07L534.5,557.06L534.5,557.01L534.51,556.85L534.59,556.34L534.74,555.83L534.94,555.35L535.21,554.9L535.6,554.27L536.21,553.26L537.28,551.86L538.88,549.66L539.01,549.47L539.15,549.28L539.18,549.24L539.67,548.54L540.16,547.79L540.38,547.43L540.45,547.32L540.46,547.3L540.46,547.31L540.47,547.32L540.74,547.48L540.74,547.49L541.95,545.95L542.04,545.83L542.64,545.07L542.64,545.06L542.68,545.07L543.31,544.82L544.04,544.53L544.11,544.5L545.4,542.4L547.26,539.39L547.84,538.51L548.45,537.63L548.79,537.13L550.24,535.04L551.27,533.72L553.35,531.15L554.64,529.78L555.77,528.47L556.75,527.45L556.76,527.45L558.24,526.16L558.4,526L559.51,524.91L559.52,524.9L561.73,522.94L564.19,521.08L565.77,520.04L566.7,519.43L567.58,518.85L573.62,515.07L574.53,514.51L580.38,510.88L583.26,509.07L585.24,507.83L586.08,507.32L589.32,505.39L592.5,503.52L593.34,503.12L593.68,502.96L593.76,502.92L594.99,502.34L595.91,501.93L597.28,501.37L599.62,499.99L599.63,499.98L599.67,499.77L601.2,492.45L601.2,492.44L603.55,491.66L603.57,491.65L603.58,491.65L603.68,491.54L604.23,490.95L605.01,489.92L605.63,489L607.04,486.88L607.05,486.87L607.05,486.86L607.14,486.87L607.24,486.88L607.31,486.88L607.33,486.86L607.41,486.77L607.65,486.38L607.75,486.24L607.78,486.17L607.79,486.17L607.79,486.16L607.97,485.88L608.33,485.29L608.32,485.3L608.26,485.3L607.89,485.32L607.66,485.33L607.15,485.37L606.53,485.45L606.26,485.49L605.98,485.54L605.9,485.55L605.36,485.64L605.34,485.6L605.25,485.41L605.09,485.1L605.03,484.98L604.98,484.87L604.75,484.34L604.74,484.3L604.65,484.04L604.49,483.6L604.3,482.93L604.29,482.88L604.26,482.76L604.21,482.48L604.18,482.19L604.17,482.05L604.16,481.87L604.16,481.67L604.15,481.5L604.16,481.4L604.16,481.35L604.18,481.1L604.21,480.84L604.24,480.18L604.3,479.52L604.35,479.2L604.35,479.18L604.4,478.86L604.52,478.21L604.59,477.85L604.59,477.83L604.69,477.5L604.71,477.43L604.73,477.39L604.79,477.2L604.81,477.15L604.85,477.07L604.93,476.89L605.06,476.63L605.23,476.35L605.47,476.01L605.53,475.95L605.59,475.87L605.68,475.77L605.78,475.67L605.8,475.64L605.82,475.63L605.82,475.62L605.86,475.59L606.26,475.26L606.69,474.86L607.08,474.46L607.1,474.44L607.32,474.19L607.39,474.11L607.42,474.07L607.49,474L607.49,473.98L607.84,473.53L607.91,473.45L607.94,473.4L608.26,472.86L608.55,472.23L608.62,472.04L608.65,471.94L608.77,471.58L608.85,471.01L608.87,470.59L608.86,470.51L608.86,470.43L608.85,470.21L608.83,470.02L608.82,469.92L608.8,469.8L608.73,469.46L608.46,468.39L608.4,468.13L608.3,467.76L608.3,467.75L608.25,467.77L607.66,467.98L607.66,467.96L607.5,467.23L607.42,466.88L606.04,460.78L605.92,460.21L605.9,460.16L605.9,460.14L605.93,460.12L606.17,460L606.26,459.95L606.66,459.69L606.78,459.6L607.03,459.41L607.05,459.39L607.41,459.06L607.74,458.71L608.04,458.33L608.31,457.92L608.41,457.75L609.54,455.82L609.74,455.46L610.19,454.55L611.68,451.52L612.23,450.4L612.3,450.26L612.32,450.23L612.7,449.45L612.71,449.43L613.31,448.22L613.49,447.8L613.62,447.36L613.71,446.92L613.71,446.85L613.75,446.46L613.75,446.01L613.7,445.56L613.61,445.11L613.54,444.89L612.62,442.6L612.62,442.58L612,441.04L611.92,440.83L611.89,440.77L611.88,440.74L611.86,440.7L609.77,435.52Z" + }, + { + "id": 7, + "data": "M635.13,484.59L634.69,483.53L634.39,482.83L634.3,482.63L633.86,481.75L633.37,480.9L633.08,480.43L632.86,480.09L632.84,480.07L632.66,479.88L632.51,479.74L632.47,479.71L632.46,479.7L632.15,479.48L631.82,479.3L631.76,479.28L631.47,479.17L631.42,479.16L631.33,479.13L631.31,479.13L631.1,479.08L630.63,479.29L628.67,479.99L625.63,481.07L625.49,481.12L624.14,481.6L623.4,481.86L621.83,482.42L620.62,482.85L616.92,484.17L616.68,484.24L615.74,484.5L615.3,484.6L615.05,484.66L615.03,484.67L614.79,484.72L613.83,484.91L612.86,485.06L611.89,485.17L610.91,485.24L609.94,485.28L609.01,485.27L608.96,485.27L608.33,485.29L607.97,485.88L607.79,486.16L607.79,486.17L607.78,486.17L607.75,486.24L607.65,486.38L607.41,486.77L607.33,486.86L607.31,486.88L607.24,486.88L607.14,486.87L607.05,486.86L607.05,486.87L607.04,486.88L605.63,489L605.01,489.92L604.23,490.95L603.68,491.54L603.58,491.65L603.57,491.65L603.55,491.66L601.2,492.44L601.2,492.45L599.67,499.77L599.63,499.98L599.62,499.99L597.28,501.37L595.91,501.93L594.99,502.34L593.76,502.92L593.68,502.96L593.34,503.12L592.5,503.52L589.32,505.39L586.08,507.32L585.24,507.83L583.26,509.07L580.38,510.88L574.53,514.51L573.62,515.07L567.58,518.85L566.7,519.43L565.77,520.04L564.19,521.08L561.73,522.94L559.52,524.9L559.51,524.91L558.4,526L558.24,526.16L556.76,527.45L556.75,527.45L555.77,528.47L554.64,529.78L553.35,531.15L551.27,533.72L550.24,535.04L548.79,537.13L548.45,537.63L547.84,538.51L547.26,539.39L545.4,542.4L544.11,544.5L544.04,544.53L543.31,544.82L542.68,545.07L542.64,545.06L542.64,545.07L542.04,545.83L541.95,545.95L540.74,547.49L540.74,547.48L540.47,547.32L540.46,547.31L540.46,547.3L540.45,547.32L540.38,547.43L540.16,547.79L539.67,548.54L539.18,549.24L539.15,549.28L539.01,549.47L538.88,549.66L537.28,551.86L536.21,553.26L535.6,554.27L535.21,554.9L534.94,555.35L534.74,555.83L534.59,556.34L534.51,556.85L534.5,557.01L534.5,557.06L534.49,557.07L534.52,557.28L534.44,557.42L534.42,557.45L534.41,557.45L534.4,557.46L534.33,557.58L533.81,558.47L532.98,559.92L530.87,563.58L529.73,565.56L525.93,572.51L524.73,574.66L523.43,576.98L523.07,577.62L523.03,577.69L520.27,582.65L518.98,585.05L517.72,587.38L517.07,588.59L517.07,588.6L517.08,588.61L516.86,589.02L516.85,589.04L516.84,589.07L517,589.26L517.08,589.36L517.19,589.5L517.56,589.95L518.01,590.49L518.8,591.45L518.93,591.62L520.26,593.29L522.45,596.07L522.73,596.43L522.75,596.45L531.28,607.28L533.99,610.82L534.1,610.97L534.42,611.39L535.34,612.62L536.15,613.69L536.16,613.71L538.2,616.45L539.1,617.67L539.38,618.07L539.39,618.08L542.13,621.84L545.76,627L546.39,627.91L546.55,628.14L550.98,634.58L552.11,636.27L552.3,636.55L555.08,640.67L558.06,645.35L558.14,645.48L560.98,649.95L564.87,656.29L568.5,662.21L569.47,663.85L569.62,664.1L571.02,666.46L571.7,667.62L573.08,669.94L573.1,669.96L576.22,675.58L576.22,675.59L576.88,676.79L577.13,677.22L578.73,680.2L578.8,680.34L578.83,680.39L578.9,680.53L579.8,682.2L579.91,682.44L581.31,685.38L581.36,685.51L581.77,686.39L583.58,690.48L585,694.29L585.09,694.49L585.15,694.64L585.17,694.71L585.19,694.76L585.97,697.11L586.12,697.57L587,700.19L587.17,700.71L588.55,705.54L589.6,710.09L590.34,713.46L590.58,714.54L590.67,715.13L591.26,718.79L591.95,724.42L591.96,724.44L592.42,730.06L592.62,733.81L592.62,734.42L592.63,734.92L592.64,735.53L592.64,736.13L592.62,737.02L592.61,737.52L592.6,738.28L592.58,738.89L592.54,740.87L592.34,745.2L592.08,748.36L591.79,750.97L591.46,753.87L590.92,757.16L590.53,759.28L590.47,759.96L590.34,760.55L590.34,760.56L588.84,767.38L588.45,768.66L588.32,769.13L587.13,773.34L585.67,777.73L585.31,778.73L585.2,779.02L585.8,779.08L586.28,779.12L588.68,779.33L588.79,779.34L593.03,779.7L601.98,780.45L612.09,781.3L613.57,781.4L617.97,781.83L618,781.84L622.34,782.26L623.12,782.27L623.61,782.15L623.86,782.1L624.29,781.93L624.6,781.77L625.32,781.41L625.75,781.22L629.03,779.84L632.37,778.43L636.81,776.51L638.82,775.64L640.7,775.85L643.1,776.12L646.19,776.46L648.34,776.78L648.38,776.78L651.04,777.2L651.08,777.2L653.88,777.54L656.51,777.93L659.24,778.28L661.01,778.6L667.07,779.44L671.44,780.56L682.35,783.52L686.48,784.58L686.57,784.61L686.77,784.66L687,784.71L687.14,784.69L687.56,784.66L689.89,785.43L690.42,785.74L697.87,789.58L707.71,794.52L708.58,794.93L709.52,795L711.08,794.74L711.66,794.66L715.54,794.14L716.08,794.08L716.46,794.04L717.07,793.97L722.48,793.27L727.37,792.65L730.32,792.27L732.16,791.94L733.28,791.62L735.25,790.95L737.69,790.39L739.6,789.94L755.29,786.06L763.13,784.14L765.17,783.66L777.44,780.6L777.47,780.59L777.9,780.48L777.95,780.46L778.4,780.34L778.47,780.33L778.76,780.22L779.14,780.08L779.33,779.17L779.38,778.74L779.35,778.31L779.41,777.76L779.88,776.02L780.48,774.06L780.85,772.94L782.29,768.64L783.68,764.24L783.69,764.22L783.75,764.05L784,763.28L784.29,762.4L784.46,761.9L784.97,760.08L785.38,758.87L786.15,756.32L786.36,755.15L786.49,753.82L786.77,752.6L786.93,750.91L787.13,749.96L787.35,748.41L787.59,747.19L787.72,746.1L787.88,744.02L787.91,743.25L787.86,742.79L787.84,741.96L787.44,740.91L787.63,736.35L787.63,735.3L787.64,734.72L787.62,734.15L787.56,732.29L787.52,732.02L787.51,730.4L787.51,730.13L787.37,729.55L787.06,728.76L786.75,728.07L786.74,728.04L786.34,726.66L786.07,725.86L785.42,722.88L784.88,720.54L784.87,719.59L784.61,717.86L784.59,717.74L784.18,715.74L784.25,715.62L783.6,713.99L782.98,711.29L782.24,708.42L782.17,708.17L780.76,705.1L780.64,704.84L780.65,704.33L780.53,704.15L780.36,703.86L780.35,703.82L780.07,703.13L779.89,702.83L780.25,702.38L780.36,702.25L780.38,700.73L780.01,700.11L779.85,699.83L779.42,699.11L778.93,697.8L778.63,696.94L778.58,696.45L778.43,695.08L778.96,694.26L779.53,693.4L779.64,693.3L779.69,693.1L779.71,693.07L779.75,693L779.86,692.69L779.89,692.61L779.93,692.21L779.86,690.88L779.78,690.74L779.77,690.72L779.75,690.64L779.68,690.52L779.33,689.95L779.02,689.67L779.02,689.66L778.26,689.34L778.16,689.22L778.31,687.79L778.57,687.2L778.69,686.71L778.8,685.86L779.03,684.73L779.31,684.21L779.5,684.01L779.51,684L780.6,682.89L780.58,682.77L780.47,681.89L780.38,681.1L779.64,675.56L778.06,671.06L777.84,669.89L776.87,665.52L776.44,664.31L775.68,663.08L775.3,662.61L775.26,662.58L774.71,662.26L773.52,661.99L771.96,661.93L771.13,662.29L770.18,662.89L767.87,664.06L767.83,664.07L766.8,664.22L765.94,664.15L765.07,663.9L763.02,662.6L762.6,662.31L763.04,661.75L763.87,660.7L765.12,659.05L766.28,657.46L766.34,657.38L767.53,655.7L768.74,653.9L769.11,653.32L769.22,653.15L769.3,653L769.89,652.08L771,650.22L771.21,649.85L771.22,649.84L772.06,648.34L772.22,648.05L772.62,647.28L772.74,647.05L773.03,646.49L773.96,644.61L774.85,642.72L775.69,640.8L775.9,640.3L775.96,640.15L776.34,639.23L776.96,637.66L777.56,636.07L778.14,634.48L778.92,631.99L779.64,629.48L780.3,626.95L780.32,626.88L780.33,626.82L780.91,624.42L781.36,622.12L781.56,620.95L781.61,620.66L781.75,619.82L782.09,617.51L782.38,615.19L782.54,613.3L782.64,611.47L782.64,611.41L782.69,609.51L782.68,607.62L782.66,606.23L782.6,604.84L782.49,603.46L782.35,602.2L782.34,602.2L782.31,602.21L781.89,602.32L781.63,602.39L780,602.83L762.96,606.97L762.69,607.04L762.68,607.04L762.39,607.12L762.68,607.05L762.69,607.05L762.4,607.12L762.39,607.12L762.17,607.13L752.82,607.87L752.81,607.87L748.48,607.6L748.17,607.54L742.61,606.49L738.02,605.64L738,605.64L727.57,601.71L727.3,601.59L726.02,601.03L723.25,599.81L717.41,596.78L713.7,594.74L713.06,594.39L710.7,593.09L710.84,592.85L710.86,592.82L711.49,591.75L707.88,589.36L704.12,586.89L700.44,584.46L696.53,581.91L692.96,579.53L689.23,577.13L687.25,575.79L686.74,575.44L685.55,574.65L682.7,572.69L681.33,572.3L680.6,572.09L679.58,571.79L678.09,570.83L674.98,568.81L672.71,569.14L672.66,569.23L672.16,569.99L671.35,569.28L670.5,568.62L669.62,568.01L668.69,567.45L665.75,565.9L665.17,565.58L662.85,564.29L659.97,562.62L657.14,560.88L655.13,559.53L653.1,558.19L651.07,556.88L649.48,555.88L649.01,555.58L646.95,554.31L644.87,553.06L642.78,551.83L640.68,550.62L639.68,550.06L636.36,548.25L636.15,548.12L635.97,547.95L635.82,547.76L635.71,547.54L635.64,547.3L635.61,547.05L635.63,546.81L635.7,546.57L635.82,546.28L635.88,546.14L636.33,545.03L636.96,543.51L637.6,541.95L637.88,541.28L638.18,540.54L638.36,540.11L640.01,536.15L641.12,533.3L641.64,531.95L642.2,530.49L642.66,529.31L643.64,526.76L643.67,526.68L643.84,526.16L643.87,526.04L643.96,525.63L644.04,525.1L644.08,524.56L643.7,524.47L643.33,524.33L643.15,524.24L642.98,524.16L642.65,523.95L642.35,523.7L642.07,523.42L641.84,523.11L641.63,522.77L639.79,519.26L639.45,518.59L639.17,517.88L639.01,517.3L638.97,517.14L638.92,516.89L638.89,516.69L638.84,516.4L638.78,515.67L638.79,514.95L638.88,514.22L639.03,513.51L640.37,508.19L640.46,507.63L640.48,507.47L640.58,506.74L640.6,506.54L640.64,506.2L640.68,505.58L640.73,504.86L640.75,503.51L640.69,502.16L640.56,500.82L640.35,499.49L640.35,499.48L640.07,498.17L639.77,497.05L639.72,496.86L639.3,495.58L638.54,493.52L637.73,491.31L637.36,490.29L637.28,490.06L637.27,490.06L637.19,489.83L637.13,489.66L637.04,489.4L636.51,487.96L636.42,487.71L636.42,487.7L635.61,485.75L635.13,484.59Z" + }, + { + "id": 6, + "data": "M209.18,534.18L208.46,534.15L208.4,534.15L208.1,534.13L207.02,534.06L206.42,533.99L205.95,533.94L204.87,533.79L204.43,533.71L203.81,533.6L202.75,533.38L201.69,533.13L201.57,533.09L200.65,532.83L200.13,532.63L197.53,531.59L196.29,531.09L196.12,531.03L195.49,530.78L195.21,530.67L195.06,530.61L194.58,530.42L193.66,530.08L192.77,529.79L192.74,529.78L192.29,529.65L191.8,529.51L190.86,529.26L190.81,529.25L190.54,529.19L189.91,529.04L189.84,529.03L189.83,529.03L189.31,529.27L187.85,529.94L186.14,530.74L185.99,530.81L185.85,530.87L181.78,532.76L178.52,534.34L177.99,534.59L175.43,535.83L171.62,537.64L167.12,539.76L163.67,541.43L162.81,541.84L161.03,542.66L159.65,543.29L156.35,544.8L155.41,545.2L155.19,545.3L153.9,545.85L153.95,545.95L154.21,546.43L155.78,549.34L156.45,550.58L156.85,551.31L157.43,552.38L157.99,553.43L163.11,562.88L163.19,563.03L165.29,566.91L165.47,567.25L168.55,572.94L171.69,578.74L172.23,579.74L172.55,580.32L173.94,582.91L174.15,583.35L175.4,586.03L175.81,586.92L178.88,595.59L179.16,596.38L179.81,598.23L180.12,599.09L180.59,600.43L181.1,601.87L183.62,609.01L183.64,609.07L187.69,620.52L187.27,620.52L187.57,622.19L189.01,627.19L190.47,632.22L191.27,634.99L191.42,635.51L191.58,636.06L191.83,636.9L191.83,636.91L191.91,637.2L192.45,639.05L193.51,642.66L194.33,644.53L198.46,653.66L199.82,656.68L201.58,660.58L203.46,664.74L204.62,667.28L205.6,669.38L207.39,673.25L209.99,678.86L210.04,678.97L211.18,681.43L212.4,684.06L216.37,691.41L217.53,693.54L216.19,694.92L212.67,698.56L211.93,699.32L209.6,701.74L211.15,702.96L211.12,702.99L211.44,703.25L213.06,704.59L220.72,710.82L222.25,712.12L223.64,713.32L224.84,714.35L225.52,714.93L227.47,716.53L229.11,717.87L229.17,717.92L230.38,718.91L230.41,719.07L230.38,719.6L230.37,719.68L230.37,719.72L230.36,719.88L230.33,720.39L230.35,720.46L230.43,720.77L230.52,721.07L230.57,721.27L230.8,721.73L231.32,722.3L231.98,722.79L232.28,722.96L232.91,723.31L233.69,723.99L233.93,724.21L234.59,725.44L235.68,727.54L237.24,730.55L237.19,730.62L236.92,731L238.08,732.28L238.97,733.06L249.94,742.72L251.83,744.39L261.09,768.26L263.81,776.26L263.84,776.35L264.41,775.96L264.51,775.89L265.18,777.71L266.75,781.93L267.33,783.5L268.95,783.46L271.55,783.38L273.41,783.33L277.83,783.21L278.96,783.18L278.96,783.17L279.58,783.3L280.11,783.44L280.63,783.29L280.59,783.26L283.64,783.17L285.22,783.13L286.42,783.1L287.89,783.18L287.94,783.2L288.49,782.16L288.49,782.15L288.58,781.98L289.44,780.35L289.75,779.78L290.02,780.08L289.58,780.98L289.59,781.16L289.59,781.21L289.72,781.44L289.92,781.56L291.94,781.67L292.4,781.7L293.9,781.69L297.85,781.53L302.56,781.35L302.57,781.74L306.09,781.63L307.15,782.44L307.27,782.54L308.9,782.5L310.02,782.47L310.27,782.46L310.47,782.46L310.7,782.45L310.9,782.44L311.45,782.43L314.79,782.34L314.89,782.33L315.76,782.31L316.09,782.31L316.82,782.33L319.98,782.29L321.99,782.26L330.97,782.09L333.5,782.04L335.44,781.99L338.7,781.91L339.44,781.89L339.68,781.89L339.73,781.88L340.66,781.84L340.87,781.84L341.21,781.85L341.22,781.85L341.31,781.84L341.97,781.84L343.45,781.82L344.04,781.81L344.07,781.81L344.81,781.8L347.84,781.78L349.4,781.76L351.9,781.74L353.71,781.72L355.39,781.7L357.79,781.69L364.19,781.88L371.28,782.09L376.09,782.15L393.15,782.66L393.47,782.68L396.73,782.49L396.75,782.49L407.63,781.86L417.06,781.58L417.32,781.57L422.59,781.37L422.78,781.32L423.65,781.09L423.66,781.09L424.02,781.21L424.29,781.18L425.23,781.05L427.83,781L427.88,781L436.31,780.49L450.44,780.5L450.48,780.5L451.1,780.49L451.23,780.5L451.24,780.5L458.89,781.04L458.92,781.04L464.32,781.47L471.39,782.06L476.94,782.52L482.9,783.07L486.72,783.31L490.83,783.53L508.85,782.57L509.27,782.53L509.28,782.53L509.55,782.5L510.13,782.49L511.24,782.49L512.43,782.39L517.62,781.99L522.2,781.72L528.53,781.19L529.59,781.23L529.82,781.23L531.57,781.19L531.64,781.19L531.77,781.18L531.92,781.01L532.57,780.97L535.62,780.75L536.75,780.67L537.25,780.64L543.88,779.95L546.03,779.73L559.72,778.33L565.68,777.73L567.12,777.62L568.13,777.53L570.3,777.72L574.47,778.08L576.02,778.22L577.49,778.35L584.67,778.98L585.2,779.02L585.31,778.73L585.67,777.73L587.13,773.34L588.32,769.13L588.45,768.66L588.84,767.38L590.34,760.56L590.34,760.55L590.47,759.96L590.53,759.28L590.92,757.16L591.46,753.87L591.79,750.97L592.08,748.36L592.34,745.2L592.54,740.87L592.58,738.89L592.6,738.28L592.61,737.52L592.62,737.02L592.64,736.13L592.64,735.53L592.63,734.92L592.62,734.42L592.62,733.81L592.42,730.06L591.96,724.44L591.95,724.42L591.26,718.79L590.67,715.13L590.58,714.54L590.34,713.46L589.6,710.09L588.55,705.54L587.17,700.71L587,700.19L586.12,697.57L585.97,697.11L585.19,694.76L585.17,694.71L585.15,694.64L585.09,694.49L585,694.29L583.58,690.48L581.77,686.39L581.36,685.51L581.31,685.38L579.91,682.44L579.8,682.2L578.9,680.53L578.83,680.39L578.8,680.34L578.73,680.2L577.13,677.22L576.88,676.79L576.22,675.59L576.22,675.58L573.1,669.96L573.08,669.94L571.7,667.62L571.02,666.46L569.62,664.1L569.47,663.85L568.5,662.21L564.87,656.29L560.98,649.95L558.14,645.48L558.06,645.35L555.08,640.67L552.3,636.55L552.11,636.27L550.98,634.58L546.55,628.14L546.39,627.91L545.76,627L542.13,621.84L539.39,618.08L539.38,618.07L539.1,617.67L538.2,616.45L536.16,613.71L536.15,613.69L535.34,612.62L534.42,611.39L534.1,610.97L533.99,610.82L531.28,607.28L522.75,596.45L522.73,596.43L522.45,596.07L520.26,593.29L518.93,591.62L518.8,591.45L518.01,590.49L517.56,589.95L517.19,589.5L517.08,589.36L517,589.26L516.84,589.07L516.77,589.19L516.59,589.53L516.47,589.76L516.4,589.89L515.66,591.27L515.46,591.63L515.16,592.18L514.81,592.82L514.8,592.84L514.56,593.17L514.21,593.52L514.2,593.52L513.86,593.78L513.69,593.87L513.44,594L512.74,594.33L512.74,594.31L512.73,594.31L512.65,594.11L512.61,594.13L512.6,594.13L512.54,594.14L512.18,594.17L511.62,594.23L508.79,595.67L508.76,595.66L508.75,595.66L508.59,595.63L508.57,595.62L507.71,595.47L507.61,595.39L506.79,594.69L506.18,594.18L506.14,594.18L504.1,594.33L503.62,594.38L503.6,594.39L502.04,594.89L496.56,595.66L496.39,595.68L492.59,596.37L492.57,596.37L491.39,596.18L491.36,596.18L486.08,596.66L486.02,596.66L482.37,596.31L482.37,596.3L482.35,596.3L482.31,596.29L480.74,595.58L478.07,594.39L478.06,594.39L478.03,594.38L476.64,593.76L476.5,593.7L475.21,593.13L473.05,592.17L471.35,591.42L469.14,590.5L465.79,589.38L464.09,588.37L464.04,588.37L463.88,588.38L463.35,588.43L463.01,588.45L462.83,588.47L461.36,588.58L460.42,588.75L460.34,588.76L457.29,588.83L454.81,589.09L454.5,589.12L454.33,589.23L452.96,590.09L452.9,590.13L452.38,590.23L452.14,590.28L451.9,590.32L451.21,590.46L451.05,590.49L451.01,590.49L450.77,590.64L446.72,593.04L445.18,594.41L444.57,595.1L443.7,596.09L441.47,597.92L439.66,598.42L437.98,598.89L437.93,598.89L436.37,598.88L435.23,598.87L435.23,598.88L433.33,599.49L432.59,599.73L430.59,600.77L428.49,601.28L428.45,601.26L425.85,600.02L425.77,599.99L423.61,598L420.88,597.22L420.78,597.19L420.52,597.09L419.67,596.75L419.04,596.57L417.93,596.25L416.84,595.81L416.5,595.57L416.33,595.57L415.71,595.54L415.33,595.53L415.3,595.53L413.31,595.58L411.61,595.74L410.58,595.93L409.57,596.11L409.45,596.13L409.17,596.15L409.07,596.16L409.04,596.16L408.88,596.13L408.41,596.04L408.13,595.98L408.07,595.97L407.96,595.95L407.53,595.95L406.32,595.44L404.44,594.4L404.38,594.36L400.45,592.44L399.86,592.18L399.45,591.99L399.21,591.86L395.77,590L395.25,589.73L393.9,589L392.06,588.07L392.05,588.07L391.99,588.04L391.99,588.02L391.95,587.89L391.89,587.67L390.72,583.31L389.88,579.2L386.46,562.24L386.01,560.03L386.01,560.01L385.99,559.97L385.76,560.05L375.98,562.32L373.79,563.06L370.49,564.43L368.48,565.3L367.33,565.81L367.32,565.81L367.13,565.89L367.03,565.94L359.94,569.63L358.23,570.53L357.38,570.98L357.33,571.02L356.56,571.47L355.5,572.17L353.1,573.76L352.4,574.21L350.1,575.7L348.41,576.9L347.67,577.42L345.05,579.19L342.99,580.55L342.64,580.8L342.48,580.91L340.86,582.03L340.84,581.99L307.78,532.6L307.77,532.59L306.09,532.27L299.96,531.09L296.59,530.44L296,530.32L295.31,530.19L294.68,530.07L294,529.94L293.99,529.94L293.72,529.87L291.82,529.42L291.8,529.41L288.93,529.06L286.19,529.06L282.1,529.05L282.05,529.05L281.86,529.06L281.78,529.07L280.73,529.13L279.63,529.19L279.61,529.19L279.25,529.21L278.29,529.22L278.28,529.23L275.38,529.27L273.94,529.29L272.12,529.32L270.81,529.34L270.26,529.34L260.91,529.36L259.56,529.32L259.03,529.31L259.03,529.3L258.85,529.3L257.57,529.31L257.04,529.32L256.84,529.33L255.58,529.43L251.5,529.84L236.49,531.5L234.74,531.69L223.67,532.88L223.67,532.85L223.52,532.87L220.35,533.22L215.84,533.72L214.66,533.85L214.08,533.91L213.26,534.01L211.9,534.13L211.74,534.13L211.59,534.15L211.33,534.15L210.54,534.18L209.18,534.18Z" + }, + { + "id": 12, + "data": "M1050.71,257.74L1050.44,257.74L1049.39,257.06L1048.89,256.27L1048.69,255.04L1048.74,254.72L1048.76,254.62L1048.79,254.42L1049.33,253.67L1051.14,251.14L1051.65,249.48L1051.54,248.41L1051.41,247.6L1051.19,246.22L1051.16,246.01L1051.11,245.88L1051.04,245.67L1051.04,245.65L1050.79,245.31L1049.59,244.26L1047.09,242.47L1046.85,242.3L1046.65,242.15L1046.58,242.11L1045.91,241.68L1044.25,240.63L1043.59,240.21L1040.95,238.35L1038.95,236.95L1038.19,236.41L1037.45,235.9L1035.54,234.6L1033.6,233.23L1031.92,232.06L1030.69,231.2L1028.77,229.87L1025.11,227.34L1025.26,227.24L1025.9,226.82L1025.93,226.8L1026.17,226.61L1026.23,226.56L1027.33,225.68L1028.43,224.51L1028.24,224.29L1028.02,224.04L1027.25,223.15L1026.95,222.82L1026.95,222.81L1026.92,222.78L1026.92,222.44L1026.88,220.39L1026.88,220.13L1026.81,219.52L1026.81,219.49L1026.77,219.26L1026.68,219.11L1026.63,219.03L1026.5,218.9L1026.33,218.74L1026.47,218.62L1026.51,218.59L1026.78,218.37L1027.14,217.9L1027.28,217.8L1027.51,217.64L1028.09,217.23L1028.8,216.52L1029.99,215.19L1031.63,213.43L1031.93,212.92L1031.51,212.16L1031.28,211.75L1031.22,211.64L1031.09,211.3L1030.96,210.97L1030.86,210.99L1029.56,211.31L1028.17,211.67L1027.58,211.84L1027.16,211.96L1026.84,212.05L1026.3,212.21L1025.78,212.37L1025.53,212.45L1024.22,212.87L1022.91,213.32L1021.5,213.81L1020.51,214.16L1019.56,214.5L1018.18,215L1015.24,216.06L1015.21,216.07L1014.84,216.21L999.68,221.68L992.32,224.33L992.14,224.39L991.8,224.52L956.27,237.33L956.26,237.33L955.05,237.76L951.83,238.92L948.79,240.01L944.14,241.71L943.58,241.91L938.74,243.67L934.83,245.13L934.74,245.16L933.73,245.54L930.27,246.83L928.69,247.45L928.51,247.51L926.94,248.2L926.78,248.27L925.07,249.08L923.4,249.97L921.73,250.89L920.06,251.84L918.41,252.82L918.06,253.03L916.77,253.81L913.39,256.22L913.04,256.49L911.05,258.01L910.91,258.12L910.81,258.21L910.63,258.35L910.46,258.49L910.37,258.56L910.33,258.59L909.07,259.6L907.11,261.36L906.52,261.91L905.18,263.14L903.2,265.15L901.99,266.45L901.37,267.11L899.79,268.97L898.19,270.92L895.04,274.88L894.67,275.34L886.52,285.23L885.27,286.53L884.92,286.9L876.78,295.41L876.74,295.45L873.49,298.79L870.69,301.49L870.01,302.15L869.37,302.77L863.65,308.1L859.22,311.96L854.62,315.82L850.34,319.15L845.24,323.13L844.74,323.5L839.34,327.47L834.76,330.79L832.97,332.12L832.18,332.72L829.53,334.72L827.61,336.17L821.69,339.78L819.89,340.75L818.97,341.24L817.52,341.98L816.04,342.67L814.54,343.3L813.02,343.87L810.83,344.7L806.32,346.19L805.03,346.67L804.2,346.99L803.76,347.17L803.25,347.37L802.85,347.54L802.49,347.69L801.81,348.02L800.51,348.74L800.49,348.75L800.13,348.99L799.95,349.1L799.86,349.16L799.52,349.4L798.64,350.05L797.5,351.03L796.02,352.5L795.25,353.43L795.12,353.57L794.71,354.13L794.31,354.7L793.93,355.28L793.41,356.29L792.95,357.32L792.54,358.38L792.19,359.45L792,360.13L791.84,360.81L791.61,361.73L791.4,362.65L791.29,363.22L791.22,363.58L791.09,364.33L791.06,364.51L790.93,365.45L790.9,365.66L790.82,366.39L790.74,367.33L790.68,368.27L790.63,369.24L790.63,370.21L790.67,371.18L790.76,372.15L790.88,373.11L791.06,374.06L791.27,375.01L791.53,375.94L791.79,376.89L792.03,377.48L792.35,378.26L792.7,379.01L793.08,379.74L793.5,380.44L793.95,381.13L794.43,381.8L794.92,382.44L795.43,383.07L796.49,384.29L797.04,384.88L797.37,385.22L797.61,385.46L798.2,386.02L798.25,386.07L798.78,386.55L798.79,386.56L799.56,387.25L800.31,387.96L801.04,388.69L801.75,389.44L802.45,390.2L803,390.84L803.12,390.98L803.77,391.78L804.4,392.6L804.91,393.3L805.38,393.99L805.85,394.74L806.29,395.48L806.71,396.23L807.11,397L807.11,397.01L807.48,397.77L807.73,398.35L807.83,398.56L808.35,399.94L808.78,401.26L809.2,402.74L809.21,402.74L809.27,402.98L809.55,404.17L809.85,405.77L810.02,406.87L810.08,407.32L810.09,407.37L810.27,408.98L810.32,409.8L810.34,410.09L810.38,410.6L810.44,412.16L810.43,413.72L810.35,415.27L810.31,415.69L810.28,416.06L810.21,416.82L810.08,418.45L809.9,420.07L809.68,421.69L809.42,423.3L809.11,424.99L808.66,426.73L808.15,428.46L807.58,430.17L806.96,431.86L806.68,432.51L806.68,432.52L807.06,433.03L808.92,435.59L809.14,435.84L809.14,435.85L809.35,436.05L809.59,436.26L809.84,436.45L810.11,436.63L810.38,436.78L810.67,436.92L810.96,437.04L811.64,437.23L812.32,437.4L813.12,437.55L813.27,437.58L813.39,437.66L813.55,437.9L813.59,437.99L813.64,438.07L813.72,438.14L813.81,438.18L814.13,438.3L814.13,438.31L814.16,438.2L814.18,438.07L814.49,436.81L814.86,435.56L815.04,435.04L815.1,434.83L815.18,434.64L815.29,434.33L815.77,433.12L820.81,420.29L823.06,414.52L825.56,408.13L826.21,406.33L826.44,405.74L826.65,405.14L826.84,404.53L827.02,403.92L827.17,403.3L827.3,402.68L827.42,402.05L827.59,400.79L827.64,400.15L827.67,399.52L827.69,398.88L827.68,398.25L827.65,397.61L827.6,396.97L827.54,396.34L827.31,395.1L827.3,395.03L827.32,395.03L828.35,394.69L829.94,394.17L829.97,394.16L830.95,393.84L832.43,393.5L832.95,393.38L832.96,393.38L834.97,392.92L836.61,393.02L837.22,393.06L839.04,393.18L840.36,395.92L840.35,396.09L843.94,403.28L844.4,404.23L844.57,404.56L844.7,404.82L844.78,404.97L844.99,405.04L852.74,403.99L852.82,403.96L853.19,403.82L854.7,403.6L859.65,402.91L861.35,402.69L870.88,401.39L871.09,401.36L871.56,401.3L871.91,401.25L871.92,401.33L871.92,401.35L872.07,401.33L872.13,401.53L872.33,402.21L872.48,402.71L872.75,402.34L873.81,402.16L873.83,402.26L876.71,402.08L878.04,402.06L878.43,402.12L880,402.03L882.01,401.91L883.95,401.79L885.98,401.65L888.13,401.49L890.15,401.33L892.05,401.17L893.97,401L896.17,400.84L896.62,400.82L899.15,400.7L899.96,400.66L899.94,402.05L899.93,402.21L899.92,403.04L899.46,403.91L899.15,404.68L898.22,408.32L897.72,410.27L897.68,410.42L897.68,410.45L897.23,412.39L896.74,414.69L897.81,414.93L898.29,415.04L901.3,415.4L903.84,415.63L905.31,415.76L906.43,415.86L906.59,415.88L910.43,416.25L911.05,416.3L912.43,416.42L913.16,416.48L914.05,416.55L915.92,416.76L916.77,416.85L918.8,416.98L919.61,417.09L920.39,417.07L922.23,417.33L923.78,417.36L925.77,417.49L930.81,417.93L931.49,417.95L933.24,417.97L934.22,418.06L935.66,418.15L938.96,418.21L939.27,418.26L940.01,418.39L942.4,418.45L943.31,418.59L945.26,418.73L946.24,418.69L948.69,418.86L948.89,418.88L949.16,420.75L949.22,421.65L949.33,422.1L949.45,423.5L949.66,424.86L949.91,426.25L950.08,427.64L950.09,427.74L952.37,427.38L954.23,426.82L955.27,426.36L955.85,426.03L955.99,425.96L956.1,425.9L957,425.08L958.82,423.24L959.34,422.66L959.61,422.35L961.7,419.65L963.88,416.61L964.5,415.73L964.56,415.64L965.84,415.62L966.87,415.6L967,415.62L967.76,415.76L967.8,415.82L969.33,415.63L969.96,415.49L971.4,415.43L972.25,415.59L972.35,415.62L972.79,415.92L973.83,416.57L975.63,418.52L976.82,418.6L977.59,418.4L977.94,418.41L978.45,418.4L978.74,418.39L981.06,418.88L981.64,419.11L983.49,420.45L987.94,420.85L991.78,421.38L992.21,421.44L993.05,421.49L995.03,421.31L998.94,421.33L1000.1,421.52L1001.69,421.5L1003.17,421.25L1003.17,421.11L1003.2,418.51L1003.69,416.89L1003.74,416.74L1003.9,416.55L1004.4,416.29L1005.88,415.09L1006.56,414.72L1006.71,414.73L1007.07,414.74L1007.5,414.76L1008.78,415L1009.24,415.27L1010.25,416.25L1010.69,416.64L1011.27,416.97L1012.69,417.68L1015.27,417.38L1017.18,416.82L1018.41,416.13L1019.02,415.34L1019.62,414.77L1020.59,413.86L1020.64,409.75L1020.03,408.27L1020,408.2L1020.25,407.45L1021.2,406.37L1023.69,403.79L1023.79,403.82L1025.53,404.29L1027.26,405.16L1027.9,405.19L1028.01,405.19L1028.42,405.21L1031.17,403.84L1033.61,402.73L1033.76,402.66L1035.81,401.75L1035.88,401.75L1036.13,401.79L1037.37,402.9L1038.57,402.46L1038.88,402.35L1040.77,401.66L1042.26,401.12L1042.78,400.93L1042.94,400.87L1044.55,401.44L1045.66,401.79L1046.8,402.52L1048.08,403.11L1048.65,403.44L1049.91,404.33L1049.83,404.56L1049.81,404.61L1050.65,408.64L1053.97,408.02L1054.49,407.92L1056.7,407.44L1060.32,406.66L1061.18,406.57L1060.8,406.33L1060.46,405.87L1060.25,405.43L1060.12,404.64L1059.79,397.45L1059.72,395.95L1059.67,395.04L1059.63,394.13L1059.32,392.41L1060.15,392.18L1060.38,392.12L1060.39,392.12L1060.44,392.1L1060.16,391.15L1059.92,390.36L1059.85,390.15L1059.48,389.15L1058.6,387.05L1057.75,385.56L1057.58,385.25L1056.64,384.06L1056.27,383.12L1056.21,382.35L1056.16,382.34L1057.37,380.18L1058.36,379.4L1059.14,378.78L1060.87,377.56L1063.33,375.77L1065.19,374.03L1067.05,372.43L1067.66,369.62L1067.69,369.48L1067.92,369.01L1069.49,365.91L1070.29,364.77L1071.01,363.87L1071.08,363.79L1071.44,363.45L1071.45,363.44L1071.66,363.25L1071.67,363.24L1071.87,363.05L1072.27,362.83L1072.25,361.64L1072.54,359.56L1072.64,359.21L1073.06,357.81L1073.4,356.89L1072.75,353.82L1071.55,352.04L1070.45,350.3L1069.62,349.38L1067.18,346.82L1066.59,346.12L1065.5,345.54L1065.11,345.59L1064.87,345.62L1064.84,345.62L1062.16,344.72L1062.13,344.79L1062.12,344.82L1061.19,344.48L1060.62,344.17L1059.33,343.27L1057.79,342.19L1057.22,341.8L1057.15,341.74L1056.9,341.53L1056.87,341.51L1056.27,341.01L1055.26,340.03L1054.54,339.7L1054.34,339.6L1053.1,338.83L1052.53,338.36L1052.15,338.17L1052.11,338.14L1051.53,337.84L1050.05,336.84L1048.95,335.55L1048.03,334.63L1047.61,334.23L1047.42,334.01L1047.42,334L1047.41,333.99L1047.33,333.9L1046.95,333.46L1046.18,332.58L1045.52,331.82L1044.76,331.14L1042.89,329.47L1042.7,329.31L1040.53,327.56L1040.23,327.32L1040.09,327.14L1039.56,326.5L1039.47,326.28L1039.08,325.4L1038.89,324.96L1038.72,324.55L1038.34,323.69L1038.28,323.55L1038.19,323.37L1037.4,321.72L1037.26,321.41L1036.74,320.28L1036.7,320.2L1036.29,319.23L1035.82,318.49L1035.78,318.44L1035.2,317.53L1034.79,316.71L1034.57,316.05L1034.39,315.5L1034.22,314.86L1034.02,314.08L1033.83,313.52L1033.75,313.31L1033.26,311.84L1033.25,311.8L1033.03,311.16L1032.66,310.04L1031.97,308.55L1030.36,308.39L1029.63,308.33L1028.31,308.22L1028.24,308.21L1028.23,308.21L1028.21,308.15L1028.16,308.03L1028.09,307.83L1028.08,307.81L1028.04,307.21L1028.05,306.56L1028.06,306.53L1028.17,306.32L1028.52,305.58L1028.51,305.14L1028.86,304.27L1028.98,303.39L1029,303.25L1029,303.24L1029.03,303.03L1028.92,302.82L1028.7,302.41L1028.67,302.36L1028.43,301.61L1028.48,301.16L1028.52,300.72L1027.72,299.2L1027.66,299.06L1027.55,298.79L1027.45,298.57L1027.18,299.02L1027.07,299.19L1026.98,299.35L1026.96,299.29L1026.38,297.15L1024.93,291.87L1023.66,287.13L1022.89,284.29L1022.83,284.06L1022.81,284.03L1022.23,281.89L1022.2,281.75L1022.48,281.77L1022.57,281.77L1023.34,281.82L1023.35,281.85L1023.43,281.95L1024.32,281.95L1027.43,282.19L1030.01,282.37L1031.47,282.49L1034.13,282.69L1037.5,283.05L1038.1,283.11L1038.26,283.04L1038.4,282.88L1038.46,282.8L1039.09,282.02L1040.59,280.15L1041.65,279.38L1043.23,278.94L1044.12,278.58L1045.44,277.95L1045.47,277.93L1047.52,277.53L1047.6,277.46L1048.71,276.46L1049.68,275.59L1051.08,274.19L1051.2,274.25L1051.29,274.3L1051.55,274.03L1052.22,273.34L1052.33,273.29L1053.55,272.82L1054.13,272.59L1054.23,272.52L1055.7,271.43L1055.85,271.32L1056.25,271.37L1057.99,271.61L1058.1,271.62L1058.51,271.79L1058.59,271.82L1060.66,271.82L1061.44,271.62L1061.88,271.51L1062.47,271.22L1062.92,270.96L1062.94,270.93L1063.38,270.45L1063.43,270.29L1063.77,269.29L1063.94,268.77L1063.96,267.88L1063.99,266.91L1063.99,266.68L1063.9,266.5L1063.66,266.06L1063.48,265.71L1063.18,265.15L1062.97,264.74L1062.83,263.87L1063.08,262.31L1063.11,262.16L1063.23,261.44L1063.16,261.08L1062.76,259.07L1062.27,258.32L1062.22,258.26L1062.22,258.25L1062.19,258.22L1062.16,258.16L1061.96,257.99L1061.43,257.65L1059.64,256.9L1058.92,256.8L1057.68,257.19L1057.23,257.33L1056.99,257.41L1056.8,257.41L1055.96,257.46L1054.18,257.1L1052.51,257.58L1052.08,257.7L1051.39,257.77L1050.71,257.74Z" + }, + { + "id": 11, + "data": "M972.33,14.98L972.83,14.24L971.72,12.81L968.5,9.01L968.12,8.7L967.74,8.53L967.53,8.43L967.13,8.34L965.05,7.19L963.45,7.09L961.69,7.33L960.29,8.08L957.73,9.89L956.57,13.13L954.3,14.84L948.77,15.71L947.89,15.85L944.83,15.14L943.61,18.81L942.85,19.26L940.24,19.09L937.21,17.3L935.84,19.17L935.24,20L933.68,19.67L931.73,19.27L929.55,17.7L927.33,16.95L924.82,15.24L924.44,15.2L924.13,14.88L923.53,14.25L922.72,14.1L921.44,13.87L921.34,13.86L920.44,14.02L920.15,14.15L918.97,13.66L917.84,13.51L917.55,13.47L916.6,13.38L916.27,13.34L915.91,13.33L914.87,13.31L914.76,13.35L914.48,13.29L914.09,13.22L912.4,12.73L906.98,11.4L902.23,10.93L902.18,10.95L896.86,12.93L892.91,14.17L892.24,14.38L889.32,15.28L885.57,17.03L884.28,17.33L884.15,17.38L883.79,17.51L880.18,18.8L874.59,20.59L874.14,20.74L874.04,20.77L873.29,21.04L868.92,22.6L868.94,22.52L869.04,22.43L870.36,21.95L870,20.95L866.87,12.15L861.17,8.96L860.97,8.85L858.93,8.83L858.93,8.97L860.92,9.01L866.73,12.29L869.83,21.01L870.12,21.82L866.19,23.21L865.94,22.49L863.74,16.23L863.43,15.95L859.06,13.82L858.99,13.98L863.36,16.12L863.55,16.31L865.77,22.55L866.09,23.45L868.29,22.69L868.4,22.7L868.54,22.74L866.56,23.45L862.07,25.65L861.99,25.68L860.07,26.22L854.74,27.72L851.78,27.17L851.67,27.16L851.6,26.47L851.31,23.26L851.53,23.16L851.35,21.98L851.14,21.44L850.83,21.04L855.91,17.49L855.78,17.31L850.71,20.86L847.98,17.13L854.48,12.82L854.36,12.65L846.87,17.63L846.98,17.79L847.79,17.26L850.95,21.55L851.39,26.46L851.45,27.13L851.14,27.09L843.52,26.17L842.75,26.52L840,26.52L838.64,25.55L838.45,25.44L837.65,25.38L832.32,21.75L832.09,21.59L829.53,20.07L827.55,18.61L826.97,18.19L826.9,18.14L825.53,17.13L825.42,17.06L825.18,16.94L816.99,12.91L813.16,15.55L812.33,16.11L811.38,17.25L809.64,19.35L805.36,23.48L797.99,30.05L798.04,30.2L797.77,30.35L797.48,30.51L796.71,31.16L793.06,34.42L792.5,35.11L792.02,35.7L790.5,36.84L790.28,37.17L789.44,38.47L789.34,39.73L788.11,41.53L787.87,41.85L785.09,45.51L782.42,50.2L781.47,51.59L780.72,52.68L776.64,57.56L771.83,61.53L770.78,62.81L769.33,65.73L769.01,66.4L766.68,69.65L764.33,74.37L763.52,76.68L762.96,76.5L762.39,78.16L759.24,87.37L758.59,87.15L756.31,86.35L756.27,86.89L758.4,87.64L758.97,87.84L758.24,97.95L758.12,97.94L758.07,98.36L758.13,98.36L757.97,99.58L757.84,99.62L757.81,99.78L757.64,99.74L750.75,98.28L750.59,98.94L753.5,99.54L753.44,99.82L753.52,99.95L751,109.42L750.26,109.28L750.22,109.49L752.67,109.99L752.71,109.79L751.22,109.48L753.71,100L753.88,99.84L753.92,99.63L757.6,100.39L757.68,100.41L757.6,100.8L758,101.1L757.43,104.22L756.52,108.37L756.03,108.22L755.96,108.46L756.55,108.63L756.45,108.96L755.86,108.77L755.78,109.03L756.26,109.18L755.84,110.58L754.74,113.18L754.58,113.89L755.12,114.13L754.76,114.9L753.99,116.27L753.3,117.25L753.16,117.45L752.46,117.2L752.49,117.11L752.24,117.02L750.07,116.23L749.93,116.64L751.95,117.39L752.95,117.75L752.54,118.3L750.19,121.49L750.07,121.7L749.88,122.11L749.74,122.53L749.73,122.64L749.75,122.84L749.85,123.01L749.92,123.06L749.66,123.6L749.8,123.66L749.26,124.55L748.64,124.25L748.28,125L746.66,124.18L744.36,123.01L741.64,123.57L741.72,123.96L744.44,123.42L746.47,124.43L748.11,125.24L748.06,125.34L747.39,125.01L743.38,130.21L743.11,130.57L742.67,131.13L742.73,131.14L742.74,131.14L742.69,131.2L741.51,130.98L738.46,130.41L733.05,129.53L733.18,128.64L734.09,122.23L732.69,122.02L731.17,121.79L730.22,128.39L727.68,146.03L730.39,146.43L732.55,131.66L743.24,133.32L743.21,133.59L741.98,142.76L741.93,142.75L741.74,144.57L741.07,144.48L740.94,145.3L742.61,145.51L742.63,145.42L743.02,145.47L742.84,147.43L742.75,148.25L742.72,148.58L742.13,152.98L741.43,158.25L739.95,158.07L739.93,158.28L739.79,159.25L740.41,159.33L741,159.41L741.27,159.45L740.09,168.33L739.94,169.51L739.75,169.86L738.53,172.2L738.51,172.19L738.31,172.1L737.63,172.22L737.19,172.68L734.51,170.15L734.62,170.03L734.04,169.48L733.93,169.6L731.66,167.44L731.77,167.32L731.21,166.8L731.1,166.91L728.13,164.09L728.24,163.98L727.44,163.21L727.2,163.2L726.79,163.63L726.82,163.87L727.6,164.64L727.72,164.53L730.69,167.35L730.59,167.45L731.15,167.97L731.24,167.87L733.52,170.03L733.42,170.13L734,170.68L734.1,170.58L736.99,173.34L736.88,173.45L737.52,174.06L730.6,186.29L723.31,189.51L723.47,189.84L723.8,190.51L724.65,192.23L724.77,192.48L724.79,192.52L724.88,192.73L726.2,195.7L728.56,201.03L729.11,202.32L729.19,202.51L730.28,201.99L731.2,201.51L731.22,201.51L732.23,201.04L732.45,200.94L732.73,200.83L733.36,200.59L734.03,200.32L734.1,200.3L734.13,200.29L734.18,200.27L734.25,200.25L735.66,199.8L736.01,199.71L737.49,199.37L737.65,199.34L737.77,199.32L738.92,199.2L739.52,199.13L739.66,199.11L739.96,199.1L740.2,199.1L740.33,199.09L740.98,199.07L740.98,199.1L740.96,199.21L740.91,199.46L740.83,199.88L740.74,200.35L740.47,201.45L740.34,201.97L740.02,203.24L739.64,205.03L738.03,211.14L737.31,214.03L736.64,216.68L735.91,219.59L735.2,222.42L735.1,222.82L734.99,223.24L733.9,227.6L733.42,229.5L732.79,232.27L732.8,232.27L733,232.23L733.01,232.23L733.61,232.12L734.25,231.97L735.1,231.76L736.55,231.58L736.78,232.13L737.06,232.87L737.2,233.23L737.23,233.42L737.26,233.71L737.27,233.72L737.31,234.08L737.73,236.81L738.02,238.51L738.37,240.55L738.4,240.69L738.39,241.11L738.35,242.4L738.22,243.87L738.17,244.54L738.18,245.2L738.13,245.72L738.13,245.73L738.29,245.76L744.86,247.19L745.89,247.41L745.9,247.41L746.07,246.59L746.29,246.61L747.02,246.65L753.55,247.01L755.41,247.13L757.27,247.32L757.99,247.46L758.4,247.58L758.42,247.58L758.78,247.67L759.38,247.93L760.06,248.21L761.15,248.9L762.31,249.52L762.86,249.89L763.39,250.27L763.91,250.67L763.94,250.69L764.04,250.78L764.07,250.8L764.42,251.09L764.69,250.75L764.94,250.41L765.17,250.04L765.21,249.98L765.28,249.86L765.31,249.8L765.38,249.67L765.52,249.32L765.69,248.89L765.82,248.56L765.82,248.55L765.92,248.19L765.94,248L765.97,247.83L765.98,247.47L765.99,247.24L765.99,247.21L766.04,247.01L766.13,246.79L766.18,246.73L766.27,246.6L766.41,246.48L766.56,246.38L766.7,246.31L766.91,246.24L767.09,246.2L767.24,246.19L767.28,246.19L767.46,246.2L767.65,246.23L768.49,246.36L769.14,246.46L769.4,246.51L769.46,246.52L769.51,246.52L769.42,246.2L769.41,246.15L768.8,243.99L768.75,243.85L768.61,243.71L768.6,243.68L768.46,243.15L768.6,243.15L771.58,242.87L772.65,242.76L775.18,242.49L775.45,242.44L777.38,242.06L778.19,241.93L779.5,241.72L782.25,241.27L782.4,241.26L786.42,240.63L791.74,239.74L792.34,239.6L793.55,240.43L793.76,240.52L793.99,240.6L794.22,240.65L794.45,240.67L794.46,240.67L794.69,240.68L794.92,240.66L795.15,240.61L795.38,240.55L798.73,239.25L798.8,239.22L799.08,239.11L799.83,238.82L799.08,236.71L798.89,236.19L798.69,235.72L798.67,235.69L798.43,235.19L798.17,234.7L797.89,234.23L797.68,233.94L797.26,233.33L796.91,232.9L796.55,232.51L796.35,232.33L795.77,231.8L795.35,231.48L794.91,231.18L794.71,231.07L794.45,230.91L793.98,230.67L793.5,230.45L792.7,230.14L791.89,229.89L791.24,229.73L791.14,229.71L790.77,229.65L790.71,229.64L790.84,228.81L791.15,225.25L798.17,226.77L815.16,226.56L815.32,226.55L815.7,226.53L815.78,227.03L815.9,227.54L816.03,228.05L816.05,228.09L816.06,228.13L816.19,228.55L816.37,229.05L816.57,229.53L817.22,230.9L817.38,231.23L817.86,232.27L818.75,234.17L819.23,235.02L819.73,235.85L819.84,236.03L820.25,236.68L820.78,237.5L821.2,238.14L821.66,238.76L822.17,239.34L822.72,239.88L822.97,240.08L823.19,240.26L823.47,240.53L823.55,240.6L823.63,240.68L824.05,241.11L824.44,241.57L824.52,241.68L824.68,241.89L824.76,241.99L824.81,242.05L825.14,242.56L825.45,243.07L825.45,243.08L825.73,243.61L825.84,243.81L825.98,244.08L826.63,245.26L826.64,245.28L827.07,245.98L827.09,246.01L827.21,246.18L827.39,246.43L827.54,246.64L827.94,247.14L828.06,247.28L828.62,247.88L829.26,248.51L829.87,249.16L830.44,249.85L830.98,250.56L831.39,251.21L831.77,251.88L832.12,252.56L832.44,253.25L832.61,253.64L832.73,254.03L832.8,254.34L832.82,254.44L832.85,254.72L832.86,254.86L832.86,255.27L832.84,255.53L832.83,255.64L832.82,255.69L832.74,256.1L832.61,256.49L832.34,257.22L832.08,257.9L832.03,258L831.83,258.48L831.75,258.67L831.47,259.46L831.36,259.84L831.23,260.26L831.04,261.07L830.96,261.85L830.95,262.64L831.19,265.12L831.34,266.4L831.42,267.04L831.44,267.69L831.41,268.34L831.32,268.99L830.45,273.07L830.29,273.76L830.28,273.8L830.06,274.44L829.75,275.08L829.75,275.09L829.72,275.14L829.59,275.34L829.38,275.69L829.19,275.97L829.18,275.98L829.18,275.99L829.01,276.28L828.87,276.61L828.82,276.75L828.76,276.94L828.68,277.29L828.67,277.38L828.66,277.45L828.64,277.64L828.63,277.99L828.66,278.34L828.94,279.57L829.86,282.81L830.31,284.39L830.84,285.91L830.9,286.1L830.97,286.31L831.35,287.42L831.9,288.84L831.98,289.04L832.44,290.05L832.83,290.92L833.77,292.93L833.85,293.04L834.04,293.26L834.19,293.4L834.25,293.45L834.34,293.52L834.43,293.58L834.02,293.87L833.62,294.02L831.8,294.52L829.48,294.91L828.08,295.81L827.91,295.92L827.43,296.13L825.79,297.13L825.35,297.41L825.02,297.55L824.87,297.27L823.91,297.75L823.41,297.9L820.13,298.25L820,298.26L821.25,307.85L822.53,317.77L822.58,318.11L821.4,318.49L821.35,318.5L819.6,319.05L814.06,320.8L810.31,321.99L810.12,325L807.67,327.43L806.21,328.53L806.01,328.68L805.89,328.9L805.42,329.04L805.41,329.25L805.42,329.29L805.48,329.66L805.49,329.69L805.86,331.76L805.86,331.79L805.93,332.16L806.18,336.5L806.3,337.41L806.85,343.02L804.61,343.27L803.82,343.35L804.18,346.53L804.22,346.84L804.21,346.88L804.21,346.94L804.2,346.99L805.03,346.67L806.32,346.19L810.83,344.7L813.02,343.87L814.54,343.3L816.04,342.67L817.52,341.98L818.97,341.24L819.89,340.75L821.69,339.78L827.61,336.17L829.53,334.72L832.18,332.72L832.97,332.12L834.76,330.79L839.34,327.47L844.74,323.5L845.24,323.13L850.34,319.15L854.62,315.82L859.22,311.96L863.65,308.1L869.37,302.77L870.01,302.15L870.69,301.49L873.49,298.79L876.74,295.45L876.78,295.41L884.92,286.9L885.27,286.53L886.52,285.23L894.67,275.34L895.04,274.88L898.19,270.92L899.79,268.97L901.37,267.11L901.99,266.45L903.2,265.15L905.18,263.14L906.52,261.91L907.11,261.36L909.07,259.6L910.33,258.59L910.37,258.56L910.46,258.49L910.63,258.35L910.81,258.21L910.91,258.12L911.05,258.01L913.04,256.49L913.39,256.22L916.77,253.81L918.06,253.03L918.41,252.82L920.06,251.84L921.73,250.89L923.4,249.97L925.07,249.08L926.78,248.27L926.94,248.2L928.51,247.51L928.69,247.45L930.27,246.83L933.73,245.54L934.74,245.16L934.83,245.13L938.74,243.67L943.58,241.91L944.14,241.71L948.79,240.01L951.83,238.92L955.05,237.76L956.26,237.33L956.27,237.33L991.8,224.52L992.14,224.39L992.32,224.33L999.68,221.68L1014.84,216.21L1015.21,216.07L1015.24,216.06L1018.18,215L1019.56,214.5L1020.51,214.16L1021.5,213.81L1022.91,213.32L1024.22,212.87L1025.53,212.45L1025.78,212.37L1026.3,212.21L1026.84,212.05L1027.16,211.96L1027.58,211.84L1028.17,211.67L1029.56,211.31L1030.86,210.99L1030.96,210.97L1031.09,211.3L1031.22,211.64L1031.28,211.75L1031.86,211.61L1032.25,211.51L1032.63,211.44L1034.31,211.11L1036.23,210.75L1036.85,210.66L1037.11,210.62L1038.2,210.45L1039.66,210.32L1042.22,210.08L1045.95,209.92L1046.45,209.94L1046.72,209.95L1047.02,209.97L1047.46,209.99L1048.57,210.04L1048.88,210.06L1049.1,210.06L1050.74,210.08L1050.81,210.02L1050.98,209.81L1051.02,209.77L1051.23,209.49L1051.42,209.25L1051.64,208.89L1051.8,208.62L1051.97,208.35L1052.03,208.24L1052.1,208.14L1052.52,207.88L1052.64,207.88L1054.98,207.98L1058.02,208.24L1058.08,208.24L1060.02,208.19L1062.18,208.48L1063.15,208.81L1063.75,208.92L1064.47,209.06L1065.29,209.15L1067.22,209.38L1067.42,208.92L1067.62,208.48L1067.83,207.76L1068.28,206.26L1068.44,205.77L1068.58,205.3L1068.74,204.77L1069.3,203.07L1069.38,202.9L1069.78,202.06L1070.13,200.67L1071.41,196.53L1072.67,192.6L1072.8,192.18L1073.78,189.06L1073.15,188.91L1072.66,188.8L1071.42,188.51L1070.27,188.24L1064.72,186.95L1064.42,186.88L1063.59,186.74L1063.58,186.74L1063.02,186.72L1062.37,186.68L1061.92,186.61L1061.4,186.53L1061.25,186.48L1060.88,186.13L1060.2,186.04L1059.99,185.95L1059.84,185.89L1058.62,185.42L1058.19,185.25L1057.04,184.81L1056.73,184.67L1056.63,184.62L1056.07,184.21L1055.07,183.25L1054.92,183.1L1054.85,183.04L1054.69,182.88L1054.71,182.74L1055.44,178.77L1056.28,174.48L1056.79,172.33L1057.25,170.41L1057.41,169.73L1057.24,169.25L1057.16,169.04L1056.44,166.51L1056.08,164.12L1055.97,163.07L1056.49,162.38L1057.23,161.63L1057.57,161.28L1057.85,161L1059.49,160.03L1060.35,159.73L1060.44,159.7L1061.67,159.27L1061.78,158.99L1061.8,158.91L1062.23,157.75L1062.23,157.73L1062.29,157.56L1062.28,157.47L1062.28,157.45L1062.23,157.1L1062.19,156.77L1062.38,156.54L1062.4,156.52L1062.39,156.48L1062.35,156.27L1062.28,155.87L1062.27,155.85L1062.22,155.56L1062.21,155.56L1061.96,155.58L1061.93,155.58L1059.19,152.58L1058.46,151.78L1056.34,149.99L1055.31,148.82L1055.14,148.52L1054.35,147.12L1054.2,146.85L1054.01,146.67L1053.8,146.47L1053.41,145.88L1052.88,145.53L1052.46,145.01L1052.29,145.14L1051.83,144.85L1050.97,144.52L1050.81,144.46L1050.52,144.14L1048.25,141.69L1047.27,139.89L1044.88,137.93L1044.27,137.04L1043.78,136.33L1042.9,135.49L1042.31,134.75L1041.63,133.67L1041.53,133.51L1041.29,133.29L1039.68,131.86L1038.17,130.54L1037.81,130.25L1037.15,129.23L1036.33,127.93L1035.93,127.3L1035.52,126.76L1034.92,125.96L1034.77,125.77L1034.24,125.06L1034.15,124.94L1033.85,124.72L1033.69,124.6L1033.21,124.23L1032.27,123.71L1030.25,122.45L1028.45,121.32L1028.19,121.16L1028.03,121.08L1027.45,120.74L1025.3,119.33L1023.65,118.69L1023.25,118.23L1022.84,117.75L1021.74,116.47L1020.03,115.2L1019.02,114.97L1017.5,114.2L1016.1,113.92L1015.59,113.82L1014.08,113.52L1013.29,112.84L1012.69,112.14L1012.24,111.46L1011.99,111.07L1011.51,110.33L1011.18,109.88L1009.22,107.23L1009.05,107.37L1009,107.41L1008.82,107.57L1002.17,113.26L1001.39,113.74L1001.01,113.38L1000.1,112.52L998.5,110.99L998.34,110.83L997.66,110.18L994.88,107.53L993.09,105.8L991.36,104.12L986.55,104.68L985.46,104.12L984.44,103.76L983.31,103.57L982.97,103.56L982.2,103.54L981.03,103.76L979.99,104.27L979.11,104.89L978.69,105.22L978.61,105.29L978.61,105.28L978.07,105.17L977.98,104.94L977.97,104.92L977.97,104.91L977.91,104.76L975.44,98.36L975.22,97.82L975.02,97.06L974.63,95.54L974.33,94.37L974.27,94.16L974.23,93.85L974.18,93.48L973.89,91.41L973.83,91.11L973.46,89.32L973.43,89.18L973.4,89.03L973.24,88.24L972.86,86.36L972.77,85.94L972.76,85.89L972.76,85.87L972.75,85.81L972.53,81.65L972.15,77.15L972.13,76.86L971.89,74.15L971.72,72.34L971.52,70.23L971.49,69.29L971.45,67.72L971.45,67.68L971.42,66.2L971.37,63.55L971.35,63.45L970.47,60.11L970.46,60.06L970.43,59.95L970.43,59.93L970.41,59.88L969.55,56.32L969.13,54.62L969.58,54.31L969.71,54.22L970.05,54.08L970.06,54.08L970.11,54.06L971.98,53.38L973.49,53.13L974.95,52.91L975.37,52.89L975.73,52.88L975.89,52.87L976.18,52.89L976.48,52.9L976.79,52.96L977.16,53.26L977.65,53.97L978.86,54.59L979.17,54.55L979.67,54.46L980.58,54.21L981.75,54.34L983.16,54.03L982.92,53.59L982.56,53.11L982,52.38L981.87,52.16L981.85,52.12L981.46,51.61L980.98,50.66L980.1,49.45L979.51,48.58L979.51,48.57L979.17,48.07L978.92,47.55L978.76,47.22L978.61,46.91L978.54,46.76L978.46,46.61L978.46,46.6L978.23,46.12L977.85,45.12L977.72,44.8L977.5,44.2L977.24,43.51L977.01,42.9L976.84,42.47L976.57,41.28L976.55,41.19L976.49,40.96L976.35,40.35L976.29,39.61L976.16,37.97L976.14,37.84L976.02,36.85L975.84,36.18L975.7,35.56L975.67,35.43L975.55,35.05L975.35,34.44L974.71,32.81L974.35,31.95L974.25,31.68L974.23,31.65L974.23,31.64L974.16,31.47L974.6,31.35L977.29,30.62L977.53,30.68L977.76,30.81L978.75,30.78L978.8,30.78L979.16,30.73L979.59,30.67L981.42,30.52L981.63,30.47L980.96,27.57L980.92,27.39L980.1,25.32L979.46,23.69L977.75,19.37L976.8,18.81L973.78,17.03L972.33,14.98Z" + } +] \ No newline at end of file diff --git a/static/flensburg-map.svg b/static/flensburg-map.svg deleted file mode 100644 index d1a82ec..0000000 --- a/static/flensburg-map.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file